/* ============================================================
   DRUVTARA STUDIO — PARISIAN NOIR
   www.druvtara.studio
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@200;300;400&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ── */
:root {
  --black:       #080808;
  --charcoal:    #111111;
  --smoke:       #1a1a1a;
  --ash:         #252525;
  --mid:         #4a4a4a;
  --silver:      #8a8a8a;
  --off-white:   #e8e4df;
  --white:       #f4f1ed;

  --playfair:    'Playfair Display', Georgia, serif;
  --inter:       'Inter', system-ui, sans-serif;

  /* Subtle film-grain via SVG data URI */
  --grain-url:   url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ── BASE ── */
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--inter);
  font-weight: 200;
  line-height: 1.7;
  letter-spacing: 0.04em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Global grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--grain-url);
  background-size: 300px 300px;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.035;
  mix-blend-mode: screen;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--ash); border-radius: 0; }

/* ── TYPOGRAPHY UTILITIES ── */
.eyebrow {
  font-family: var(--inter);
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--silver);
}

.display {
  font-family: var(--playfair);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.display-italic {
  font-family: var(--playfair);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
}

.body-text {
  font-family: var(--inter);
  font-weight: 200;
  font-size: 0.875rem;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: var(--off-white);
}

/* ── LAYOUT ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 768px) { .container { padding: 0 3.5rem; } }
@media (min-width: 1280px) { .container { padding: 0 4rem; } }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--inter);
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.btn:hover, .btn:focus-visible {
  background: var(--white);
  color: var(--black);
  outline: none;
}
.btn-fill {
  background: var(--white);
  color: var(--black);
}
.btn-fill:hover { background: transparent; color: var(--white); }

/* WhatsApp / CTA black button */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--inter);
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 1.1rem 2.4rem;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  transition: background 0.25s, color 0.25s;
}
.btn-wa:hover { background: transparent; color: var(--white); }
.btn-wa svg { flex-shrink: 0; }

/* ── HAIRLINE RULE ── */
.rule { width: 36px; height: 1px; background: var(--ash); }

/* ── FADE-UP ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem;
  transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 1.1rem 2rem;
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--ash);
}
@media (min-width: 768px) {
  .nav       { padding: 2rem 3.5rem; }
  .nav.scrolled { padding: 1.25rem 3.5rem; }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  flex-shrink: 0;
  color: var(--white);
}
.nav-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.88;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .nav-logo img { width: 32px; height: 32px; }
}
/* No italics on the studio wordmark — weight contrast does the work */
.nav-logo span, .nav-logo em {
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.nav-links {

  display: none;
  list-style: none;
  gap: 2.5rem;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  font-family: var(--inter);
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 4px 0;
}
@media (min-width: 768px) { .nav-hamburger { display: none; } }

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 490;
  background: var(--black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--playfair);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--silver); }

/* ============================================================
   HERO CAROUSEL  (Fold 1)
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: var(--black);
}

.hero-track {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Dark gradient vignette - more dramatic at bottom */
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(8,8,8,0.55) 0%,
      rgba(8,8,8,0.1)  30%,
      rgba(8,8,8,0.1)  55%,
      rgba(8,8,8,0.75) 85%,
      rgba(8,8,8,0.95) 100%
    );
  pointer-events: none;
}

/* Slide label – top right, thin italic */
.hero-label {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--playfair);
  font-style: italic;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(244,241,237,0.45);
  pointer-events: none;
  transition: opacity 0.6s;
  z-index: 10;
}
@media (min-width: 768px) { .hero-label { right: 3.5rem; } }

/* Bottom content block */
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 2rem 4rem;
  z-index: 10;
}
@media (min-width: 768px) {
  .hero-content { padding: 0 3.5rem 5rem; }
}

.hero-eyebrow {
  font-family: var(--inter);
  font-weight: 300;
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(244,241,237,0.5);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: var(--playfair);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 14ch;
}
.hero-headline em {
  font-style: normal;
  font-weight: 400;
}

.hero-statement {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  letter-spacing: 0.08em;
  color: rgba(244,241,237,0.65);
  margin-bottom: 2.5rem;
  line-height: 1.4;
}

/* Swipe indicator */
.hero-swipe {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}
.hero-dot {
  width: 18px;
  height: 1px;
  background: rgba(244,241,237,0.3);
  transition: width 0.4s, background 0.4s;
  cursor: pointer;
}
.hero-dot.active {
  width: 40px;
  background: var(--white);
}

.hero-swipe-hint {
  font-family: var(--inter);
  font-weight: 200;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244,241,237,0.35);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-swipe-hint svg { opacity: 0.5; animation: nudge 2s ease-in-out infinite; }
@keyframes nudge {
  0%,100% { transform: translateX(0); }
  50%      { transform: translateX(5px); }
}

/* ============================================================
   FOLD 2 — CATALOG SECTION  (Home page)
   ============================================================ */
.section-catalog {
  padding: 7rem 0;
  border-top: 1px solid var(--ash);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 1rem;
}
.section-header-left { display: flex; flex-direction: column; gap: 0.75rem; }

/* Bento grid — 4 cells: [large] [small] [small] [view-all] */
.catalog-bento {
  display: grid;
  gap: 2px;
  background: var(--ash);

  /* Mobile: single column */
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}

@media (min-width: 768px) {
  .catalog-bento {
    /* Desktop: 2 cols, 2 rows */
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 1fr 1fr;
  }
  .bento-large {
    grid-row: 1 / 3;   /* spans both rows */
  }
}

.bento-cell {
  background: var(--charcoal, #111);
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

/* Image container */
.bento-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.bento-large .bento-img  { aspect-ratio: 3/4; }
.bento-small .bento-img  { aspect-ratio: 4/3; }
.bento-viewall           { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }

@media (min-width: 768px) {
  .bento-large .bento-img  { height: 100%; aspect-ratio: unset; }
  .bento-small .bento-img  { aspect-ratio: 16/9; }
  .bento-viewall           { aspect-ratio: unset; }
}

.bento-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.9s ease;
  filter: brightness(0.92) contrast(1.05);
  background: var(--charcoal);
}
.bento-cell:hover .bento-img img {
  transform: scale(1.03);
  filter: brightness(0.7) contrast(1.12);
}

/* Bento overlay gradient */
.bento-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.8) 0%, transparent 50%);
  pointer-events: none;
}

/* Bento text overlay */
.bento-info {
  padding: 1.5rem 2rem 2rem;
}
.bento-num {
  font-family: var(--inter);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--silver);
  margin-bottom: 0.5rem;
}
.bento-name {
  font-family: var(--playfair);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.4rem);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}
.bento-price {
  font-family: var(--inter);
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--silver);
  margin-bottom: 1rem;
}
.bento-arrow {
  font-family: var(--inter);
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--off-white);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: gap 0.3s;
}
.bento-cell:hover .bento-arrow { gap: 1.1rem; }

/* View All cell */
.bento-viewall-inner {
  text-align: center;
  padding: 3rem 2rem;
}
.bento-viewall-count {
  font-family: var(--playfair);
  font-weight: 900;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ash);
  margin-bottom: 1rem;
}
.bento-viewall-label {
  font-family: var(--inter);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 2rem;
  display: block;
}
@media (min-width: 768px) {
  .bento-viewall {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: unset;
  }
}

/* ============================================================
   FOLD 3 — ABOUT / THE BUILDER
   ============================================================ */
.section-about {
  padding: 0;
  border-top: 1px solid var(--ash);
  position: relative;
}

/* Full-bleed photo behind the section */
.about-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
  opacity: 0.32;
  filter: contrast(1.15) brightness(0.75) saturate(0.4);
}
/* Dark overlay to ensure text readability */
.about-bg-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.85) 0%,
    rgba(8,8,8,0.55) 55%,
    rgba(8,8,8,0.10) 100%
  );
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
  }
}

/* Image side — hidden on desktop (bg handles it), shown on mobile */
.about-img-col {
  display: block;
  position: relative;
  overflow: hidden;
  max-height: 380px;
}
@media (min-width: 768px) {
  .about-img-col {
    display: none; /* desktop uses the bg photo instead */
  }
}
.about-img-col img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: right center;
  display: block;
  opacity: 0.75;
  filter: contrast(1.05) brightness(0.88) saturate(0.6);
}

/* Text side */
.about-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 2rem;
  background: transparent;
}
@media (min-width: 768px) {
  .about-text-col {
    padding: 7rem 5rem;
    max-width: 640px;
  }
}

.about-heading {
  font-family: var(--playfair);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.about-heading em {
  font-style: italic;
  font-weight: 400;
}
.about-subheading {
  font-family: var(--playfair);
  font-style: italic;
  font-size: 1rem;
  color: var(--silver);
  margin-bottom: 2rem;
}

.about-body {
  font-family: var(--inter);
  font-weight: 200;
  font-size: 0.875rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--off-white);
  margin-bottom: 1.25rem;
}

/* ============================================================
   FOLD 4 — CONTACT STRIP (Home page)
   ============================================================ */
.section-contact-strip {
  border-top: 1px solid var(--ash);
  padding: 6rem 0;
  background: var(--charcoal);
}

.contact-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .contact-strip-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.contact-strip-heading {
  font-family: var(--playfair);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 0.95;
}
.contact-strip-heading em { font-style: italic; font-weight: 400; }

.contact-strip-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.contact-link-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--inter);
  font-weight: 200;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--off-white);
  transition: color 0.2s;
}
.contact-link-row:hover { color: var(--white); }
.contact-link-label {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  min-width: 80px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--ash);
  padding: 4rem 0 2.5rem;
  background: var(--black);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-brand {
  font-family: var(--playfair);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-family: var(--inter);
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--mid);
  text-transform: uppercase;
}

.footer-nav, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-nav a, .footer-social a {
  font-family: var(--inter);
  font-weight: 200;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-social a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--ash);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-copy {
  font-family: var(--inter);
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: var(--mid);
}

/* ============================================================
   CATALOG LIST PAGE
   ============================================================ */
.catalog-page-hero {
  padding: 12rem 0 5rem;
  border-bottom: 1px solid var(--ash);
}
.catalog-page-title {
  font-family: var(--playfair);
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.catalog-page-title em { font-style: italic; font-weight: 400; }

/* Product grid – 1 col mobile, 2 col desktop */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--ash);
}
@media (min-width: 768px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
}

.product-card {
  background: var(--black);
  display: block;
  position: relative;
  overflow: hidden;
}
.product-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0f0f0f;
  filter: brightness(0.92) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.8s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.04);
  filter: brightness(0.65) contrast(1.12);
}
.product-card-body {
  padding: 2rem 2.5rem 2.5rem;
  border-top: 1px solid var(--ash);
}
.product-card-num {
  font-family: var(--inter);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--mid);
  margin-bottom: 0.6rem;
}
.product-card-name {
  font-family: var(--playfair);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}
.product-card-price {
  font-family: var(--inter);
  font-weight: 200;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--silver);
  margin-bottom: 1rem;
}
.product-card-excerpt {
  font-family: var(--inter);
  font-weight: 200;
  font-size: 0.78rem;
  line-height: 1.75;
  color: var(--silver);
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-cta {
  font-family: var(--inter);
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--off-white);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: gap 0.3s;
}
.product-card:hover .product-card-cta { gap: 1.1rem; }

/* ============================================================
   INDIVIDUAL PRODUCT PAGE
   ============================================================ */
.product-hero-section {
  padding-top: 9rem;
  padding-bottom: 6rem;
}

.breadcrumb {
  font-family: var(--inter);
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--mid); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: var(--ash); }

/* 2-col layout on desktop */
.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 900px) {
  .product-layout {
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
  }
}

/* Gallery */
.gallery-main {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  margin-bottom: 0.75rem;
}
@media (min-width: 900px) {
  .gallery-main { position: sticky; top: 7rem; }
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
  transition: opacity 0.4s ease;
}
.gallery-thumbs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.gallery-thumb {
  width: 64px;
  height: 64px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.45;
  border: 1px solid transparent;
  transition: opacity 0.25s, border-color 0.25s;
  flex-shrink: 0;
}
.gallery-thumb.active, .gallery-thumb:hover {
  opacity: 1;
  border-color: var(--white);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
}

/* Product info panel */
.product-info-panel { padding-top: 0.5rem; }

.product-label {
  font-family: var(--inter);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1rem;
}
.product-title {
  font-family: var(--playfair);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.product-price {
  font-family: var(--playfair);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--off-white);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--ash);
}

.product-desc {
  font-family: var(--inter);
  font-weight: 200;
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--off-white);
  margin-bottom: 1.25rem;
}

/* Specs table */
.product-specs {
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--ash);
  border-bottom: 1px solid var(--ash);
}
.specs-heading {
  font-family: var(--inter);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.25rem;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 1rem;
}
.spec-key {
  font-family: var(--inter);
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  flex-shrink: 0;
}
.spec-val {
  font-family: var(--inter);
  font-weight: 200;
  font-size: 0.78rem;
  color: var(--off-white);
  text-align: right;
}

/* Care notes */
.care-section {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--smoke, #1a1a1a);
  border: 1px solid var(--ash);
}
.care-heading {
  font-family: var(--inter);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.75rem;
}
.care-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.care-list li {
  font-family: var(--inter);
  font-weight: 200;
  font-size: 0.78rem;
  color: var(--silver);
  display: flex;
  gap: 0.6rem;
}
.care-list li::before { content: '—'; color: var(--ash); flex-shrink: 0; }

/* CTA row */
.product-cta { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 480px) { .product-cta { flex-direction: row; flex-wrap: wrap; } }

.product-note {
  margin-top: 1.5rem;
  font-family: var(--inter);
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--mid);
  line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 0 6rem;
}

.contact-title {
  font-family: var(--playfair);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.contact-title em { font-style: italic; font-weight: 400; }

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--ash);
  margin: 4rem 0;
}
@media (min-width: 600px) {
  .contact-cards { grid-template-columns: 1fr 1fr 1fr; }
}

.contact-card {
  background: var(--charcoal);
  padding: 2.5rem;
}
.contact-card-icon {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}
.contact-card-label {
  font-family: var(--inter);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.75rem;
}
.contact-card-value {
  font-family: var(--playfair);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.contact-process {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--ash);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .contact-process { grid-template-columns: repeat(4,1fr); } }

.process-step-num {
  font-family: var(--playfair);
  font-weight: 900;
  font-size: 3rem;
  color: var(--ash);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step-title {
  font-family: var(--inter);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 0.6rem;
}
.process-step-text {
  font-family: var(--inter);
  font-weight: 200;
  font-size: 0.78rem;
  line-height: 1.75;
  color: var(--silver);
}
