/* ═══════════════════════════════════════════════════════════
   SWARNAPRABHA — Heritage Jewellery
   Luxury editorial · cream/gold/obsidian palette
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Jagdamba-matched palette */

  /* cream / foreground — warm off-white for text on dark */
  --ivory:        #f5eee0;   /* warm cream — main text */
  --ivory-2:      #e6ca91;   /* champagne gold — secondary text */
  --cream:        #f5eee0;
  --cream-line:   #552d30;   /* muted maroon border */

  /* gold accents */
  --gold:         #d1a84b;   /* primary antique gold */
  --gold-2:       #e7b643;   /* bright gold accent */
  --gold-deep:    #b58700;   /* dark amber gold */
  --gold-bright:  #f2c86c;   /* light warm gold */

  /* dark maroon backgrounds */
  --obsidian:     #23060c;   /* main background */
  --obsidian-2:   #310c14;   /* card / elevated surface */
  --umber:        #39131b;   /* secondary section bg */
  --umber-2:      #400b15;   /* maroon accent */

  /* text darks */
  --ink:          #190407;   /* darkest — text on light bg */
  --ink-2:        #26040a;   /* dark maroon text */
  --ink-soft:     rgba(35, 6, 12, 0.62);
  --ivory-soft:   rgba(245, 238, 224, 0.74);

  /* muted / subdued */
  --muted:        #988e7b;   /* warm gray for body copy */

  /* type — headline · subtitle · body */
  --display: 'Quattrocento Sans', sans-serif;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Raleway', sans-serif;

  /* shadow & motion */
  --shadow-soft:  0 18px 60px rgba(35, 6, 12, 0.20);
  --shadow-deep:  0 32px 80px rgba(35, 6, 12, 0.50);
  --ease-out:     cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-luxe:    cubic-bezier(0.65, 0, 0.35, 1);

  /* layout */
  --pad-x: clamp(24px, 6vw, 88px);
  --nav-h: 88px;
}

/* StringTune3D requires animatable custom properties */
@property --rotate-x    { syntax: '<number>'; inherits: false; initial-value: 0; }
@property --rotate-y    { syntax: '<number>'; inherits: false; initial-value: 0; }
@property --rotate-z    { syntax: '<number>'; inherits: false; initial-value: 0; }
@property --translate-x { syntax: '<number>'; inherits: false; initial-value: 0; }
@property --translate-y { syntax: '<number>'; inherits: false; initial-value: 0; }
@property --translate-z { syntax: '<number>'; inherits: false; initial-value: 0; }
@property --scale       { syntax: '<number>'; inherits: false; initial-value: 1; }

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--obsidian);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { overflow-x: clip; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; }

::selection { background: #d1a84b; color: #190407; }

/* ─── shared eyebrow / type ────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow--gold { color: var(--gold-2); }

/* ═══════════════════════════════════════════════════════════
   NAV — floating heritage editorial bar
   Translucent ivory glass · antique-gold border · silk-paper grain ·
   slow cinematic hovers with tracking expansion + thin gold reveals.
   ═══════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: clamp(14px, 1.6vw, 22px);
  left: clamp(14px, 2.6vw, 44px);
  right: clamp(14px, 2.6vw, 44px);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 3vw, 40px);
  z-index: 100;

  /* True frosted glass — tint is light so the background colour shows through.
     Text colour flips via .on-dark (JS) depending on what's behind the nav. */
  background: rgba(35, 6, 12, 0.16);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);

  border: 0;
  border-radius: 999px;
  /* Only a soft warm drop shadow grounds the bar — no cream rim, no insets */
  box-shadow:
    0 14px 44px rgba(35, 6, 12, 0.12),
    0 2px 8px rgba(35, 6, 12, 0.06);
  isolation: isolate;
  overflow: visible;

  transition:
    background 0.9s var(--ease-luxe),
    border-color 0.9s var(--ease-luxe),
    box-shadow 0.9s var(--ease-luxe),
    top 0.9s var(--ease-luxe);
}

/* Very subtle silk-paper grain — kept low so text stays sharp. */
#nav::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.43  0 0 0 0 0.28  0 0 0 0.42 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
  opacity: 0.08;
  mix-blend-mode: overlay;
}

/* No top sheen — the navbar relies entirely on the tinted backdrop-filter
   to define its presence, so colours behind it read through cleanly. */
#nav::after { content: none; }

#nav.is-scrolled {
  top: clamp(10px, 1.2vw, 16px);
  /* Same champagne glass — only the warm shadow deepens slightly to
     register scroll feedback. No cream rim. */
  box-shadow:
    0 22px 60px rgba(35, 6, 12, 0.18),
    0 4px 10px rgba(35, 6, 12, 0.10);
}

/* ── BRAND ─────────────────────────────────────────────── */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 6px 4px;
  transition: transform 0.7s var(--ease-luxe);
}
.nav-brand:hover { transform: translateY(-1px); }

.nav-brand img {
  height: 63px;
  width: auto;
  border-radius: 5px;
  filter: sepia(0.15) saturate(1.2) brightness(1.05)
          drop-shadow(0 2px 6px rgba(35, 6, 12, 0.40));
  transition: filter 0.6s var(--ease-luxe);
}
.nav-brand:hover img {
  filter: sepia(0.1) saturate(1.3) brightness(1.10)
          drop-shadow(0 3px 10px rgba(209, 168, 75, 0.35));
}

.nav-brand .wordmark {
  font-family: var(--display);
  font-weight: 600;
  font-style: normal;
  font-size: 17px;
  letter-spacing: 0.38em;
  color: var(--ink);
  padding-top: 2px;
  text-shadow: none;
  transform-origin: left center;
  will-change: transform, color;
  transition:
    transform 0.9s var(--ease-out),
    color 0.7s var(--ease-luxe);
}
.nav-brand:hover .wordmark {
  transform: translateX(2px);
  color: var(--gold);
}

/* ── LINKS ─────────────────────────────────────────────── */
.nav-links {
  display: flex;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  position: relative;
}

.nav-links a {
  position: relative;
  font-family: var(--display);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 12px 4px;
  text-shadow: none;
  will-change: transform, color;
  transition:
    color 0.7s var(--ease-luxe),
    transform 0.8s var(--ease-out);
}

/* Subtle pill highlight — inherits text colour so it works on any background */
.nav-links a::before {
  content: '';
  position: absolute;
  inset: -5px -14px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s var(--ease-luxe);
  pointer-events: none;
}

/* Underline using currentColor — always visible regardless of section bg */
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.50;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s var(--ease-luxe);
}

.nav-links a:hover {
  color: var(--gold-deep);
  transform: translateY(-2px);
}
.nav-links a:hover::after  { transform: scaleX(1); }
.nav-links a:hover::before { opacity: 0.06; }

.nav-links a.is-active {
  color: var(--gold-deep);
}
.nav-links a.is-active::after {
  transform: scaleX(1);
  opacity: 0.40;
}

@media (max-width: 820px) {
  #nav {
    height: 64px;
    padding: 0 18px;
    top: 10px;
    left: 10px;
    right: 10px;
  }
  .nav-brand img { height: 42px; }
  .nav-brand .wordmark { display: none; }
  .nav-links a { font-size: 11px; letter-spacing: 0.26em; padding: 10px 2px; }
  .nav-links a:hover { transform: translateY(-1px); }
  .nav-links { gap: 18px; }
}

/* ═══════════════════════════════════════════════════════════
   1. HERO — full-bleed image, left-aligned text
   ═══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  background: var(--ivory);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  transform: scale(1.04);
  transition: transform 8s var(--ease-out);
}
#hero.is-mounted .hero-bg { transform: scale(1); }

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(35, 6, 12, 0.78) 0%,
      rgba(35, 6, 12, 0.50) 32%,
      rgba(35, 6, 12, 0.18) 56%,
      rgba(35, 6, 12, 0.00) 80%),
    linear-gradient(180deg,
      rgba(35, 6, 12, 0.30) 0%,
      transparent 24%,
      transparent 76%,
      rgba(35, 6, 12, 0.30) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--nav-h) var(--pad-x) 0;
  max-width: clamp(740px, 60vw, 980px);
}

.hero-inner .eyebrow {
  font-family: 'Quattrocento Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.42em;
  margin-bottom: 36px;
  opacity: 0; transform: translateY(14px);
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(54px, 7vw, 108px);
  line-height: 0.90; /* tightened so total visual line height stays the same after adding padding-bottom on .line */
  letter-spacing: 0;
  color: var(--ivory);
  margin-bottom: 36px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.hero-title .line {
  display: block;
  overflow: hidden;
  /* Room for descenders ("g", "y", etc.) that would otherwise be clipped
     by the slide-reveal overflow. */
  padding-bottom: 0.18em;
}
.hero-title .line em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
}

.hero-sub {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.78;
  letter-spacing: 0.025em;
  color: rgba(250, 245, 232, 0.84);
  max-width: 620px;
  margin-bottom: 48px;
  opacity: 0; transform: translateY(16px);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.hero-ctas .btn {
  font-family: 'Quattrocento Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0; transform: translateY(16px);
}

/* ─── Buttons (gold + ghost) with shine sweep ─────────── */
.btn {
  --pad-y: 17px;
  --pad-x: 36px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--display);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.6s var(--ease-luxe),
              box-shadow 0.6s var(--ease-luxe),
              color 0.6s var(--ease-luxe),
              border-color 0.6s var(--ease-luxe);
  cursor: pointer;
}
.btn .arrow {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0;
  transition: transform 0.5s var(--ease-luxe);
}
.btn:hover .arrow { transform: translateX(5px); }

.btn-gold {
  color: var(--ivory);
  background: #a87916;
  box-shadow:
    inset 0 0 0 1px rgba(209, 168, 75, 0.18),
    0 6px 22px rgba(35, 6, 12, 0.18);
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -70%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(245, 238, 224, 0.0) 20%,
    rgba(245, 238, 224, 0.65) 50%,
    rgba(245, 238, 224, 0.0) 80%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.btn-gold:hover {
  transform: translateY(-2px);
  background: #91680f;
  box-shadow:
    inset 0 0 0 1px rgba(209, 168, 75, 0.22),
    0 14px 32px rgba(35, 6, 12, 0.28);
}
.btn-gold:hover::before { left: 110%; }

.btn-line {
  color: var(--ivory);
  background: transparent;
  border: 1px solid rgba(250, 245, 232, 0.55);
}
.btn-line:hover {
  background: rgba(250, 245, 232, 0.08);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

/* hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 38px;
  left: var(--pad-x);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.hero-scroll-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg,
    var(--gold-deep) 0%,
    var(--gold-deep) 30%,
    transparent 30%);
  background-size: 200% 100%;
  background-position: 100% 0;
  animation: scrollSweep 2.4s ease-in-out infinite;
}
@keyframes scrollSweep {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ─── Hero — right model image via pseudo-element ────────── */
#hero::after {
  content: '';
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 50%;
  height: 100%;
  background: url('/H-1t.webp') right bottom / auto 92% no-repeat;
  filter:
    drop-shadow(0 28px 36px rgba(35, 6, 12, 0.42))
    drop-shadow(0 0 18px rgba(209, 168, 75, 0.16));
  -webkit-mask-image:
    radial-gradient(ellipse 78% 88% at 64% 56%, #000 58%, rgba(0, 0, 0, 0.82) 72%, transparent 100%),
    linear-gradient(90deg, transparent 0%, #000 16%, #000 92%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 78% 88% at 64% 56%, #000 58%, rgba(0, 0, 0, 0.82) 72%, transparent 100%),
    linear-gradient(90deg, transparent 0%, #000 16%, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  pointer-events: none;
}
@media (max-width: 768px) {
  #hero::after { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   STRIP — cream → dark gradient with certifications
   ═══════════════════════════════════════════════════════════ */
.strip {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--pad-x);
  background: var(--umber);
  border-top: 1px solid rgba(200, 160, 80, 0.22);
  border-bottom: 1px solid rgba(200, 160, 80, 0.16);
}
.strip-marks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 32px);
  font-family: var(--display);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.strip-marks .dot { color: var(--gold); opacity: 0.7; }

/* ═══════════════════════════════════════════════════════════
   2. 360° SHOOT — dark placeholder
   ═══════════════════════════════════════════════════════════ */
/* ─── ATELIER FILM — pinned scroll-driven canvas ─── */
#atelier-film {
  position: relative;
  width: 100%;
  background: var(--obsidian);
  color: var(--ivory);
  /* Total scroll length = stage (100vh) + spacer below.
     Spacer drives the frame scrub; the stage stays pinned. */
}

.film-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  width: 100%;
  overflow: hidden;
  background: var(--obsidian);
}

#film-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

/* Soft cinematic vignette over the canvas */
.film-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%,
      transparent 50%,
      rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Overlay caption blocks — positioned around the canvas, fade in/out via JS */
.film-overlay {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s var(--ease-luxe), transform 0.9s var(--ease-luxe);
  will-change: opacity, transform;
}

.film-overlay--label {
  top: calc(var(--nav-h) + 28px);
  left: var(--pad-x);
  opacity: 1;
  transform: none !important;
}
.film-eyebrow {
  font-family: var(--display);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-2);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.film-overlay--title {
  bottom: 14%;
  left: var(--pad-x);
  max-width: 720px;
  transform: translateY(20px);
}
.film-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ivory);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}
.film-title em {
  display: block;
  font-style: italic;
  color: var(--gold-2);
}

.film-overlay--mid {
  bottom: 18%;
  right: var(--pad-x);
  max-width: 480px;
  text-align: right;
  transform: translateY(20px);
}
.film-caption {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.3;
  color: var(--ivory);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}
.film-caption em {
  display: block;
  font-style: italic;
  color: var(--gold-2);
  margin-top: 6px;
}
.film-caption .hi {
  font-family: 'Noto Serif Devanagari', serif;
  color: var(--gold-2);
  font-size: 1.04em;
}

.film-overlay--end {
  left: 50%;
  bottom: 22%;
  transform: translate(-50%, 20px);
  text-align: center;
  max-width: 720px;
}
.film-end {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.15;
  color: var(--ivory);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}
.film-end em { font-style: italic; color: var(--gold-2); }

/* When an overlay is active, pop it into place */
.film-overlay.is-active {
  opacity: 1;
  transform: translateY(0);
}
.film-overlay--end.is-active {
  transform: translate(-50%, 0);
}

/* Thin progress bar at the bottom of the stage */
.film-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 4;
}
.film-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-2));
  transition: width 0.05s linear;
}

/* The scroll spacer is invisible but creates scroll distance.
   Tweak height to control how long the film lasts. */
.film-scroll-spacer {
  height: 220vh;
}

@media (max-width: 720px) {
  .film-overlay--title { bottom: 16%; }
  .film-overlay--mid   { right: var(--pad-x); left: var(--pad-x); max-width: none; text-align: left; }
  .film-scroll-spacer  { height: 160vh; }
}

.shoot-grid {
  position: relative;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  z-index: 2;
}

/* ── 3D stage ─── */
.shoot-stage-3d {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-width: 600px;
  justify-self: center;
  perspective: 1500px;
  perspective-origin: 50% 50%;
}

/* The 3D piece — sized to its 3:4 stage container, rotation driven by
   --rotate-x / --rotate-y custom properties that the cursor JS updates. */
.atelier-piece {
  --rotate-x: 0;
  --rotate-y: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}
.atelier-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-style: preserve-3d;
  transform:
    rotateX(calc(var(--rotate-x, 0) * 1deg))
    rotateY(calc(var(--rotate-y, 0) * 1deg))
    translateZ(0);
  filter: drop-shadow(0 60px 80px rgba(0, 0, 0, 0.65))
          drop-shadow(0 0 50px rgba(209, 168, 75, 0.22));
  will-change: transform;
}

/* Soft warm glow behind the piece — adds depth, looks like a velvet pin spot */
.shoot-glow {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 50%,
      rgba(209, 168, 75, 0.20) 0%,
      rgba(209, 168, 75, 0.05) 35%,
      transparent 65%);
  z-index: -1;
  pointer-events: none;
}

/* ── text column ─── */
.shoot-text {
  max-width: 540px;
}
.shoot-label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 28px;
}
.shoot-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 24px;
}
.shoot-title em {
  display: block;
  font-style: italic;
  color: var(--gold-2);
}
.shoot-note {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--ivory-soft);
  margin-bottom: 28px;
}
.shoot-note .hi {
  font-family: 'Noto Serif Devanagari', serif;
  color: var(--gold-2);
  font-size: 1.06em;
}
.shoot-cue {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid rgba(209, 168, 75, 0.18);
}

@media (max-width: 920px) {
  .shoot-grid       { grid-template-columns: 1fr; gap: 48px; }
  .shoot-stage-3d   { max-width: 460px; aspect-ratio: 3 / 4; }
  .shoot-text       { max-width: 100%; text-align: center; }
  .shoot-cue        { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   3. QUOTE WITH FLANKING IMAGES
   ═══════════════════════════════════════════════════════════ */
#quote {
  position: relative;
  background: var(--ivory);
  padding: 180px var(--pad-x) 200px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
}
/* ─── Floating 3D cards — real CSS 3D transforms ─── */
.quote-3d {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4;
  perspective: 1600px;
  perspective-origin: 50% 50%;
}
.quote-3d--left  { justify-self: end;   transform: translateY(-32px); }
.quote-3d--right { justify-self: start; transform: translateY(32px); }

/* Soft ellipse shadow grounded behind each card — does NOT rotate with the
   card, so the card appears to float over a fixed shadow on the surface. */
.quote-3d::before {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -28px;
  height: 56px;
  background: radial-gradient(
    ellipse at center,
    rgba(35, 6, 12, 0.32) 0%,
    rgba(35, 6, 12, 0.16) 35%,
    rgba(35, 6, 12, 0)    72%
  );
  filter: blur(14px);
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.7s var(--ease-luxe), transform 0.7s var(--ease-luxe);
  transform: translateZ(-40px);
}
.quote-3d:has(.quote-card-3d:hover)::before {
  opacity: 1.1;
  transform: translateZ(-40px) scale(1.08);
}

/* The 3D card itself — rotates in real 3D space via preserve-3d.
   Left card tilts right, right card tilts left — both face inward toward
   the quote text, creating an immersive "looking-in" perspective. */
.quote-card-3d {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  transition: transform 0.9s var(--ease-luxe),
              filter 0.9s var(--ease-luxe);
  filter: drop-shadow(0 32px 60px rgba(35, 6, 12, 0.26))
          drop-shadow(0 12px 22px rgba(35, 6, 12, 0.16));
  cursor: pointer;
  will-change: transform;
}
.quote-3d--left  .quote-card-3d { animation: floatA 6.5s ease-in-out infinite; }
.quote-3d--right .quote-card-3d { animation: floatB 6.5s ease-in-out infinite; }

/* Left card: rotateY stays positive (faces right, toward the quote) */
@keyframes floatA {
  0%, 100% { transform: translateY(0)     translateZ(0)    rotateY(28deg) rotateX( 1deg); }
  50%      { transform: translateY(-14px) translateZ(20px) rotateY(32deg) rotateX(-1deg); }
}
/* Right card: rotateY stays negative (faces left, toward the quote) */
@keyframes floatB {
  0%, 100% { transform: translateY(0)     translateZ(0)    rotateY(-28deg) rotateX( 1deg); }
  50%      { transform: translateY(-14px) translateZ(20px) rotateY(-32deg) rotateX(-1deg); }
}

.quote-3d--left .quote-card-3d:hover {
  animation-play-state: paused;
  transform: translateY(-22px) translateZ(80px) rotateY(36deg) rotateX(-6deg) scale(1.04);
  filter: drop-shadow(0 50px 90px rgba(35, 6, 12, 0.30))
          drop-shadow(0 20px 30px rgba(35, 6, 12, 0.18));
}
.quote-3d--right .quote-card-3d:hover {
  animation-play-state: paused;
  transform: translateY(-22px) translateZ(80px) rotateY(-36deg) rotateX(-6deg) scale(1.04);
  filter: drop-shadow(0 50px 90px rgba(35, 6, 12, 0.30))
          drop-shadow(0 20px 30px rgba(35, 6, 12, 0.18));
}

/* Mobile / touch: kill the 3D tilt + float animation entirely so the
   quote images sit flat. Desktop tilt + animation untouched. */
@media (max-width: 768px) {
  .quote-3d--left  .quote-card-3d,
  .quote-3d--right .quote-card-3d {
    animation: none;
    transform: none;
  }
  .quote-3d--left  .quote-card-3d:hover,
  .quote-3d--right .quote-card-3d:hover {
    transform: none;
  }
  .quote-3d { perspective: none; }
  .quote-card-3d { transform-style: flat; }
}

.quote-card-3d img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  backface-visibility: hidden;
}

/* Glossy glare layer that sits slightly in front of the photo for a true
   3D depth feel — also rotates with the card */
.quote-card-glare {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0)   30%,
    rgba(245, 238, 224, 0.18) 50%,
    rgba(255, 255, 255, 0)   70%
  );
  mix-blend-mode: screen;
  transform: translateZ(2px);
  opacity: 0.7;
}

.quote-text {
  text-align: center;
  position: relative;
  padding: 0 24px;
}
.quote-mark {
  display: block;
  font-family: var(--serif);
  font-size: 180px;
  line-height: 0.4;
  color: var(--gold);
  opacity: 0.42;
  margin-top: -10px;
  margin-bottom: 22px;
}
.quote-text p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.16;
  color: #23060c;
  letter-spacing: -0.005em;
}
.quote-text p em {
  font-style: italic;
  color: #39131b;
  display: block;
  margin-top: 8px;
}
.quote-text cite {
  display: block;
  margin-top: 36px;
  font-family: var(--display);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(35, 6, 12, 0.55);
}

/* ═══════════════════════════════════════════════════════════
   4. LIVE GOLD PRICES (dark)
   ═══════════════════════════════════════════════════════════ */
#gold {
  background: var(--obsidian);
  color: var(--ivory);
  padding: 140px var(--pad-x) 150px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#gold::before {
  content: '';
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 0%,
    rgba(209, 168, 75, 0.12),
    transparent 60%);
  pointer-events: none;
}
.gold-head { position: relative; max-width: 720px; margin: 0 auto 70px; }
.gold-head .eyebrow { margin-bottom: 22px; }
.gold-title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 18px;
}
.gold-sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ivory-soft);
}

.gold-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1px;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(209, 168, 75, 0.18);
  border: 1px solid rgba(209, 168, 75, 0.18);
}
.gold-card {
  background: linear-gradient(180deg, #23060c 0%, #23060c 100%);
  padding: 64px 36px;
  text-align: center;
  position: relative;
  transition: background 0.6s var(--ease-out);
}
.gold-card--feature {
  background: linear-gradient(180deg, #23060c 0%, #23060c 100%);
  padding: 84px 36px;
}
.gold-card--feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%,
    rgba(209, 168, 75, 0.12),
    transparent 60%);
  pointer-events: none;
}

.gold-karat {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 0.28em;
  color: var(--gold-2);
  margin-bottom: 30px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(209, 168, 75, 0.22);
  min-width: 140px;
}
.gold-card--feature .gold-karat {
  font-size: 24px;
  color: var(--gold-bright);
  border-bottom-color: rgba(209, 168, 75, 0.45);
}

.gold-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 18px;
}
.gold-price .cur {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--gold-2);
  margin-right: 2px;
}
.gold-price .num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.4vw, 60px);
  letter-spacing: -0.02em;
  color: var(--ivory);
  font-variant-numeric: tabular-nums;
}
.gold-card--feature .gold-price .num { font-size: clamp(48px, 5.2vw, 72px); }

.gold-price .unit {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  margin-left: 8px;
}

.gold-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.gold-change {
  font-weight: 500;
  color: var(--gold-2);
  padding: 4px 10px;
  border: 1px solid rgba(209, 168, 75, 0.35);
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
/* Up/down indicators stay within the brand palette — direction is signalled
   by the ▲ / ▼ glyphs and tone intensity, not by an off-palette red/green. */
.gold-change.is-up   { color: #6fcf97; border-color: rgba(111, 207, 151, 0.45); }
.gold-change.is-down { color: #e05c5c; border-color: rgba(224, 92, 92, 0.45); }
.gold-change.is-flat { color: var(--ivory-soft); }
.gold-vs { color: var(--ivory-soft); }

.gold-stamp {
  margin-top: 44px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ivory-soft);
}

/* ═══════════════════════════════════════════════════════════
   5. COLLECTIONS — asymmetric editorial grid
   ═══════════════════════════════════════════════════════════ */
#collections {
  background: var(--ivory);
  padding: 170px var(--pad-x) 180px;
}

.col-head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(24px, 5vw, 100px);
  align-items: end;
  margin-bottom: 80px;
}
.col-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 100px);
  line-height: 0.96;
  letter-spacing: -0.012em;
  color: #23060c;
}
.col-title em {
  font-style: italic;
  color: #39131b;
  display: block;
}
.col-body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.78;
  color: rgba(35, 6, 12, 0.75);
  max-width: 380px;
  justify-self: end;
}

.col-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: 360px 360px minmax(420px, 48vw);
  gap: 18px;
}

.col-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: var(--cream);
  isolation: isolate;
  transition: box-shadow 0.7s var(--ease-luxe);
  box-shadow:
    0 18px 40px rgba(35, 6, 12, 0.08),
    0 4px 12px rgba(35, 6, 12, 0.05);
}
.col-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
  transform: scale(1.02);
}
.col-card--maharastrian img { object-position: center 78%; }
.col-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 45%,
    rgba(35, 6, 12, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.col-card:hover img { transform: scale(1.06); }
.col-card:hover {
  box-shadow:
    0 28px 60px rgba(35, 6, 12, 0.16),
    0 10px 22px rgba(35, 6, 12, 0.10);
}

.col-num {
  position: absolute;
  top: 26px; left: 28px;
  z-index: 2;
  font-family: var(--display);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(245, 238, 224, 0.92);
}

.col-foot {
  position: absolute;
  left: 32px; right: 32px;
  bottom: 26px;
  z-index: 2;
  color: var(--ivory);
}
.col-foot h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
}
.col-foot p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  color: var(--ivory-soft);
  max-width: 360px;
  line-height: 1.55;
}

.col-arrow {
  position: absolute;
  right: 26px; bottom: 26px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(250, 245, 232, 0.55);
  border-radius: 50%;
  color: var(--ivory);
  font-size: 14px;
  transition: background 0.5s var(--ease-luxe),
              transform 0.5s var(--ease-luxe);
}
.col-card:hover .col-arrow {
  background: var(--ivory);
  color: var(--ink);
  transform: rotate(45deg);
}

/* layout positions — explicit grid placement, fixed heights */
.col-card--hero  { grid-column: 1; grid-row: 1 / span 2; height: 100%; }
.col-card--small { grid-column: 2; height: 100%; }
.col-card--maharastrian { grid-column: 1 / -1; grid-row: 3; min-height: 420px; }

/* ═══════════════════════════════════════════════════════════
   6. PLEDGE OF PURITY (dark)
   ═══════════════════════════════════════════════════════════ */
#about {
  background: var(--obsidian);
  color: var(--ivory);
  padding: 130px var(--pad-x);
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
}
.pledge-figure {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.pledge-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.pledge-figure::after {
  content: 'ATELIER · MUMBAI · ESTD. 1948';
  position: absolute;
  left: 30px; right: 30px; bottom: 22px;
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--ivory-soft);
}

.pledge-body { max-width: 720px; }
.pledge-body .eyebrow { margin-bottom: 28px; }
.pledge-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 26px;
}
.pledge-title em {
  font-style: italic;
  color: var(--gold-2);
}
.pledge-lede {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--ivory-soft);
  margin-bottom: 50px;
  max-width: 560px;
}
.pledge-lede .hi {
  font-family: 'Noto Serif Devanagari', 'Mangal', 'Devanagari Sangam MN', serif;
  font-weight: 500;
  font-size: 1.06em;
  color: var(--gold-2);
  letter-spacing: 0.01em;
}

.pledge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 56px;
  padding: 32px 0 38px;
  border-top: 1px solid rgba(209, 168, 75, 0.18);
  border-bottom: 1px solid rgba(209, 168, 75, 0.18);
}
.pledge-item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 22px;
  align-items: center;
}
.pledge-icon {
  grid-row: 1 / span 2;
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(209, 168, 75, 0.32);
  color: var(--gold-2);
  flex-shrink: 0;
  align-self: center;
}
.pledge-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.pledge-item h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 6px;
}
.pledge-item p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  color: var(--ivory);
  letter-spacing: -0.003em;
}

/* ═══════════════════════════════════════════════════════════
   6.5 MODEL SHOWCASE — editorial asymmetric collage (light)
   ═══════════════════════════════════════════════════════════ */
#showcase {
  position: relative;
  background: var(--umber);
  padding: 130px 0 160px;
  overflow: hidden;
}

.showcase-head {
  position: relative;
  z-index: 3;
  padding: 0 var(--pad-x);
  max-width: 880px;
  margin-bottom: 70px;
}
.showcase-head .eyebrow { margin-bottom: 22px; }
.showcase-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 100px);
  line-height: 0.96;
  letter-spacing: -0.012em;
  color: var(--ivory);
  margin-bottom: 22px;
}
.showcase-title em {
  display: block;
  font-style: italic;
  color: var(--gold-2);
}
.showcase-body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.78;
  color: var(--ivory-soft);
  max-width: 460px;
}

.showcase-stage {
  position: relative;
  width: 100%;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1.22fr 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
}

/* Cards live on the grid — no overlapping, just staggered Y offsets +
   tiny intentional rotations so it still reads editorial. */
.showcase-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(35, 6, 12, 0.16),
    0 10px 22px rgba(35, 6, 12, 0.08);
  transition:
    transform 0.9s var(--ease-luxe),
    box-shadow 0.9s var(--ease-luxe);
  cursor: pointer;
}
.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.showcase-card:hover img { transform: scale(1.05); }

/* Bottom gradient + caption layer */
.showcase-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 55%,
    rgba(35, 6, 12, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.showcase-meta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.showcase-num {
  font-family: var(--display);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(245, 238, 224, 0.9);
}
.showcase-caption {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.3;
  color: var(--ivory);
  font-style: italic;
}

/* Each card in its own column, all straight and vertically centered */
.showcase-card--1 {
  margin-top: 0;
}
.showcase-card--2 {
  margin-top: 0;
}
.showcase-card--3 {
  margin-top: 0;
}

.showcase-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 44px 90px rgba(35, 6, 12, 0.26),
    0 18px 36px rgba(35, 6, 12, 0.16);
}

@media (max-width: 980px) {
  .showcase-stage   { grid-template-columns: 1fr; gap: 36px; }
  .showcase-card    { max-width: 540px; margin-left: auto; margin-right: auto; }
  .showcase-card--1 { margin-top: 0; }
  .showcase-card--2 { margin-top: 0; }
  .showcase-card--3 { margin-top: 0; }
}

@media (max-width: 540px) {
  #showcase      { padding: 90px 0 110px; }
  .showcase-card { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   7. TESTIMONIALS — moving carousel with center 3D scale
   ═══════════════════════════════════════════════════════════ */
#voices {
  background: var(--obsidian);
  padding: 150px 0 170px;
  position: relative;
  overflow: hidden;
}
.voices-head {
  text-align: center;
  margin-bottom: 70px;
  padding: 0 var(--pad-x);
}
.voices-head .eyebrow { margin-bottom: 18px; }
.voices-title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.05;
  color: var(--ivory);
}

/* Uniform card width so the slide step is constant.
   The currently-centered card is scaled up via .is-center (transform only,
   so it doesn't disturb layout / step math). */
:root {
  --vc-w: clamp(240px, 24vw, 320px);
  --vc-h: clamp(380px, 44vw, 480px);
  --vc-gap: clamp(18px, 2.4vw, 44px);
}

.voices-stage {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 80px 0 100px; /* room for the scaled-up center card */
}
.voices-track {
  display: flex;
  align-items: center;
  gap: var(--vc-gap);
  width: max-content;
  /* Padding-left positions the FIRST card so its center sits at viewport center */
  padding-left: calc(50vw - (var(--vc-w) / 2));
  padding-right: calc(50vw - (var(--vc-w) / 2));
  will-change: transform;
}

.voice-card {
  position: relative;
  flex: 0 0 var(--vc-w);
  width: var(--vc-w);
  height: var(--vc-h);
  padding: 40px 30px 32px;
  background: #39131b;
  border: 1px solid rgba(209, 168, 75, 0.22);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  transform-origin: center center;
  transform: scale(0.92);
  opacity: 0.62;
  box-shadow: 0 12px 30px rgba(35, 6, 12, 0.30);
  transition:
    box-shadow 0.7s var(--ease-luxe),
    background 0.7s var(--ease-luxe),
    border-color 0.7s var(--ease-luxe);
  will-change: transform, opacity;
}

/* Gold inner outline always exists — fades in/out on .is-center via opacity */
.voice-card::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(209, 168, 75, 0.30);
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s var(--ease-luxe);
}

.voice-card.is-center {
  background: linear-gradient(180deg, #400b15 0%, #39131b 100%);
  border-color: rgba(209, 168, 75, 0.55);
  box-shadow:
    0 38px 80px rgba(35, 6, 12, 0.40),
    inset 0 0 0 1px rgba(209, 168, 75, 0.30);
  z-index: 3;
}
.voice-card.is-center::after {
  opacity: 1;
}

.voice-quote-mark {
  display: block;
  font-family: var(--serif);
  font-size: 78px;
  line-height: 0.5;
  color: var(--gold-2);
  opacity: 0.55;
  margin-bottom: 22px;
  transition: color 0.6s var(--ease-luxe), opacity 0.6s var(--ease-luxe);
}
.voice-card.is-center .voice-quote-mark {
  color: var(--gold-2);
  opacity: 0.80;
}

.voice-quote {
  font-family: var(--sans);
  font-weight: 300;
  font-style: normal;
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--ivory);
  letter-spacing: 0.015em;
  margin-bottom: auto;
}

.voice-meta {
  border-top: 1px solid rgba(209, 168, 75, 0.28);
  padding-top: 18px;
  margin-top: 24px;
}
.voice-meta strong {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15.5px;
  color: var(--ivory);
  letter-spacing: 0.015em;
}

/* ═══════════════════════════════════════════════════════════
   8. FOOTER
   ═══════════════════════════════════════════════════════════ */
#footer {
  background: var(--obsidian);
  color: var(--ivory);
  padding: 110px var(--pad-x) 40px;
}
.foot-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(209, 168, 75, 0.14);
  margin-bottom: 60px;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.foot-brand img {
  height: 50px;
  width: auto;
  border-radius: 6px;
  filter: sepia(0.15) saturate(1.2) brightness(1.05);
}
.foot-brand span {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.32em;
  color: var(--gold-2);
}
.foot-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.5;
  color: var(--ivory-soft);
  max-width: 780px;
}

.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 64px;
}
.foot-cols h5 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 22px;
}
.foot-cols li { margin-bottom: 12px; }
.foot-cols a {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16px;
  color: var(--ivory);
  letter-spacing: 0.005em;
  transition: color 0.4s var(--ease-luxe);
}
.foot-cols a:hover { color: var(--gold-bright); }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(209, 168, 75, 0.12);
}
.foot-social { display: flex; gap: 14px; }
.foot-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(209, 168, 75, 0.22);
  border-radius: 50%;
  color: var(--ivory-soft);
  background: transparent;
  transition:
    color 0.4s var(--ease-luxe),
    border-color 0.4s var(--ease-luxe),
    background 0.4s var(--ease-luxe),
    transform 0.4s var(--ease-luxe);
}
.foot-social a:hover {
  color: var(--gold-bright);
  border-color: rgba(209, 168, 75, 0.55);
  background: rgba(209, 168, 75, 0.06);
  transform: translateY(-2px);
}
.foot-social svg {
  width: 18px;
  height: 18px;
  display: block;
}
.foot-copy {
  font-family: var(--display);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(245, 238, 224, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .col-head    { grid-template-columns: 1fr; gap: 22px; }
  .col-body    { justify-self: start; }

  .col-grid          { grid-template-columns: 1fr; grid-template-rows: 480px 360px 360px 440px; }
  .col-card--hero    { grid-column: 1; grid-row: 1; height: 100%; }
  .col-card--small   { grid-column: 1; height: 100%; }
  .col-card--maharastrian { grid-column: 1; grid-row: auto; min-height: 440px; }

  #about       { grid-template-columns: 1fr; gap: 60px; }
  .pledge-figure img { aspect-ratio: 16 / 11; }

  .pledge-grid { gap: 28px 32px; }
}

@media (max-width: 820px) {
  :root { --nav-h: 72px; }

  .nav-brand .wordmark { display: none; }
  .nav-links           { gap: 26px; }
  .nav-links a         { font-size: 12px; letter-spacing: 0.24em; }

  .hero-title          { font-size: clamp(42px, 11vw, 78px); }
  .hero-sub            { font-size: 20px; }
  .hero-ctas           { gap: 10px; }
  .btn                 { padding: 14px 22px; font-size: 10px; }

  .strip               { height: 180px; }
  .strip-marks         { font-size: 9.5px; gap: 14px; }

  #shoot-360 .shoot-frame { padding: 60px 28px; }

  #quote               { grid-template-columns: 1fr; padding: 110px var(--pad-x) 130px; gap: 42px; }
  .quote-3d--left, .quote-3d--right { transform: none; justify-self: center; }
  .quote-3d            { aspect-ratio: 4 / 3; max-width: 480px; }

  .gold-grid           { grid-template-columns: 1fr; }
  .gold-card, .gold-card--feature { padding: 44px 24px; }

  .pledge-grid         { grid-template-columns: 1fr; }
  .foot-top            { grid-template-columns: 1fr; }
  .foot-cols           { grid-template-columns: 1fr 1fr; gap: 36px; }

  :root              { --vc-w: 220px; --vc-h: 380px; --vc-gap: 14px; }
  .voice-card        { padding: 26px 22px 22px; }
  .voice-card.is-center { transform: scale(1.10); }
  .voice-quote       { font-size: 14.5px; line-height: 1.5; }
  .voice-quote-mark  { font-size: 58px; margin-bottom: 14px; }
}

@media (max-width: 520px) {
  .foot-cols           { grid-template-columns: 1fr; }
  .foot-bottom         { flex-direction: column; align-items: flex-start; }
  .col-foot            { left: 22px; right: 22px; bottom: 20px; }
  .col-foot h3         { font-size: 22px; }
}

/* ═══════════════════════════════════════════════════════════
   PLACEHOLDER PAGES — Collections / About / Contact stubs
   ═══════════════════════════════════════════════════════════ */
.page-stub {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 80px) var(--pad-x) 120px;
  gap: 28px;
  background: var(--ivory);
  position: relative;
}
.page-stub::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(209, 168, 75, 0.3), transparent);
}
.page-stub .eyebrow { color: var(--gold-deep); }
.stub-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(46px, 6.4vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.012em;
  color: #23060c;
  max-width: 880px;
}
.stub-title em {
  display: block;
  font-style: italic;
  color: #39131b;
}
.stub-body {
  max-width: 480px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.78;
  color: rgba(35, 6, 12, 0.75);
}
.stub-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — Mulund showroom story
   ═══════════════════════════════════════════════════════════ */
.about-page {
  background: var(--ivory);
  color: var(--ink);
  overflow: hidden;
}

.about-hero {
  min-height: 78svh;
  display: flex;
  align-items: end;
  padding: calc(var(--nav-h) + 96px) var(--pad-x) 110px;
  background:
    radial-gradient(ellipse at 82% 24%, rgba(209, 168, 75, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(245, 238, 224, 0.96), var(--ivory));
  position: relative;
}
.about-hero::after {
  content: '';
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(85, 45, 48, 0.55), transparent);
}
.about-hero-copy .eyebrow {
  color: var(--gold-deep);
  margin-bottom: 28px;
}
.about-page-title {
  max-width: 920px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.92;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 34px;
}
.about-page-title em {
  display: block;
  font-style: italic;
  color: var(--umber);
}
.about-hero-copy p {
  max-width: 680px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.86;
  color: rgba(35, 6, 12, 0.72);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--obsidian);
  border-top: 1px solid rgba(209, 168, 75, 0.18);
  border-bottom: 1px solid rgba(209, 168, 75, 0.18);
}
.about-stats div {
  min-height: 230px;
  padding: 46px clamp(46px, 5.4vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-right: 1px solid rgba(209, 168, 75, 0.18);
}
.about-stats div:last-child { border-right: 0; }
.about-stats strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(38px, 4.6vw, 72px);
  line-height: 1;
  color: var(--gold-2);
}
.about-stats span {
  max-width: 220px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.28em;
  line-height: 1.65;
  text-transform: uppercase;
  color: rgba(245, 238, 224, 0.70);
}

.about-visual-story {
  padding: 130px var(--pad-x);
  display: grid;
  gap: 86px;
  background:
    radial-gradient(ellipse at 14% 20%, rgba(209, 168, 75, 0.12), transparent 34%),
    var(--ivory);
}
.about-visual-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
}
.about-visual-row--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
}
.about-visual-row--reverse .about-photo-placeholder {
  order: 2;
}
.about-photo-placeholder {
  min-height: clamp(340px, 34vw, 520px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(85, 45, 48, 0.18);
  background:
    linear-gradient(135deg, rgba(35, 6, 12, 0.04), rgba(209, 168, 75, 0.11)),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 12px,
      rgba(85, 45, 48, 0.045) 12px,
      rgba(85, 45, 48, 0.045) 13px
    );
  box-shadow: 0 24px 70px rgba(35, 6, 12, 0.08);
}
.about-photo-placeholder span {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(35, 6, 12, 0.46);
}
.about-visual-copy {
  max-width: 620px;
}
.about-visual-row--reverse .about-visual-copy {
  justify-self: end;
}
.about-visual-copy .eyebrow {
  color: var(--gold-deep);
  margin-bottom: 22px;
}
.about-visual-copy h2 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 70px);
  line-height: 1.0;
  color: var(--umber);
}
.about-visual-copy p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(35, 6, 12, 0.72);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 120px);
  padding: 140px var(--pad-x);
}
.about-story-head {
  position: sticky;
  top: calc(var(--nav-h) + 42px);
  align-self: start;
}
.about-story-head .eyebrow {
  color: var(--gold-deep);
  margin-bottom: 24px;
}
.about-story-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.8vw, 72px);
  line-height: 1.02;
  color: var(--umber);
}
.about-story-body {
  display: grid;
  gap: 28px;
  padding-top: 8px;
}
.about-story-body p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(35, 6, 12, 0.72);
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #f0e6d3;
  border-top: 1px solid rgba(85, 45, 48, 0.18);
  border-bottom: 1px solid rgba(85, 45, 48, 0.18);
}
.about-pillars article {
  min-height: 360px;
  padding: clamp(32px, 3.6vw, 58px) clamp(24px, 2.6vw, 42px);
  border-right: 1px solid rgba(85, 45, 48, 0.18);
  display: flex;
  flex-direction: column;
}
.about-pillars article:last-child { border-right: 0; }
.about-pillars span {
  display: block;
  margin-bottom: auto;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 42px;
  line-height: 1;
  color: rgba(181, 135, 0, 0.78);
}
.about-pillars h3 {
  margin: 40px 0 16px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.1;
  color: var(--ink);
}
.about-pillars p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.78;
  color: rgba(35, 6, 12, 0.68);
}

.about-closing {
  padding: 130px var(--pad-x) 140px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(209, 168, 75, 0.14), transparent 54%),
    var(--umber);
  color: var(--ivory);
}
.about-closing .eyebrow { margin-bottom: 22px; }
.about-closing h2 {
  max-width: 780px;
  margin: 0 auto 26px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
}
.about-closing p {
  max-width: 620px;
  margin: 0 auto 42px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.82;
  color: rgba(245, 238, 224, 0.76);
}

@media (max-width: 960px) {
  .about-hero,
  .about-visual-row,
  .about-visual-row--reverse,
  .about-story {
    grid-template-columns: 1fr;
  }
  .about-visual-row--reverse .about-photo-placeholder {
    order: 0;
  }
  .about-visual-row--reverse .about-visual-copy {
    justify-self: start;
  }
  .about-story-head {
    position: static;
  }
  .about-stats,
  .about-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stats div:nth-child(2),
  .about-pillars article:nth-child(2) {
    border-right: 0;
  }
  .about-stats div:nth-child(-n+2),
  .about-pillars article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(209, 168, 75, 0.18);
  }
}

@media (max-width: 640px) {
  .about-hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 74px);
    padding-bottom: 76px;
  }
  .about-stats,
  .about-pillars {
    grid-template-columns: 1fr;
  }
  .about-stats div,
  .about-pillars article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(209, 168, 75, 0.18);
  }
  .about-stats div:last-child,
  .about-pillars article:last-child {
    border-bottom: 0;
  }
  .about-visual-story {
    padding-top: 78px;
    padding-bottom: 84px;
    gap: 60px;
  }
  .about-photo-placeholder {
    min-height: 280px;
  }
  .about-story {
    padding: 86px var(--pad-x);
    gap: 32px;
  }
  .about-pillars span {
    margin-bottom: 42px;
  }
  .about-closing {
    padding: 86px var(--pad-x) 96px;
  }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — private atelier enquiry
   ═══════════════════════════════════════════════════════════ */
.contact-page {
  background: var(--ivory);
  color: var(--ink);
  overflow: hidden;
}

.contact-hero {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.64fr);
  align-items: end;
  gap: clamp(38px, 6vw, 96px);
  padding: calc(var(--nav-h) + 98px) var(--pad-x) 96px;
  position: relative;
  isolation: isolate;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 52% 48% at 88% 22%, rgba(209, 168, 75, 0.18), transparent 64%),
    radial-gradient(ellipse 72% 70% at 8% 88%, rgba(85, 45, 48, 0.16), transparent 62%),
    linear-gradient(180deg, var(--ivory) 0%, #efe2ca 100%);
}

.contact-hero::after {
  content: '';
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 0;
  height: 1px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(85, 45, 48, 0.34), transparent);
}

.contact-hero-copy {
  max-width: 860px;
}

.contact-hero-copy .eyebrow {
  margin-bottom: 26px;
}

.contact-page-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(50px, 7.7vw, 118px);
  line-height: 0.94;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 30px;
}

.contact-page-title em {
  display: block;
  font-style: italic;
  color: var(--umber);
}

.contact-page-lede {
  max-width: 620px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.78;
  color: rgba(35, 6, 12, 0.72);
  margin-bottom: 38px;
}

.contact-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.contact-hero .btn-line {
  color: var(--ink);
  border-color: rgba(35, 6, 12, 0.40);
  background: rgba(245, 238, 224, 0.24);
}
.contact-hero .btn-line:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
  background: rgba(35, 6, 12, 0.04);
}

.contact-hero-note {
  align-self: end;
  padding: clamp(32px, 4vw, 50px);
  background: var(--obsidian);
  color: var(--ivory);
  border: 1px solid rgba(209, 168, 75, 0.28);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.contact-hero-note::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(209, 168, 75, 0.18);
  pointer-events: none;
}

.contact-note-kicker,
.contact-detail-label,
.contact-form label span {
  font-family: var(--display);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
}

.contact-note-kicker {
  display: block;
  color: var(--gold-2);
  margin-bottom: 20px;
}

.contact-hero-note p {
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.35;
  color: var(--ivory);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(85, 45, 48, 0.22);
  border-top: 1px solid rgba(85, 45, 48, 0.24);
  border-bottom: 1px solid rgba(85, 45, 48, 0.24);
}

.contact-detail-card {
  min-height: 235px;
  padding: clamp(28px, 3.8vw, 56px);
  background: #f8f0df;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  transition: background 0.45s var(--ease-luxe);
}

.contact-detail-card:hover {
  background: #fbf4e6;
}

.contact-detail-label {
  display: block;
  color: var(--gold-deep);
}

.contact-detail-value {
  display: block;
  font-family: var(--serif);
  font-size: clamp(22px, 2.15vw, 34px);
  line-height: 1.08;
  color: var(--umber);
  word-break: break-word;
  max-width: 11ch;
}

.contact-detail-card p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.68;
  color: rgba(35, 6, 12, 0.66);
}

.contact-request {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 90px);
  align-items: start;
  padding: 116px var(--pad-x) 130px;
  background: var(--umber);
  color: var(--ivory);
}

.contact-request-copy {
  position: sticky;
  top: 132px;
}

.contact-request-copy .eyebrow {
  margin-bottom: 22px;
}

.contact-request-copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}

.contact-request-copy p {
  max-width: 430px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.78;
  color: rgba(245, 238, 224, 0.72);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: clamp(24px, 3.4vw, 46px);
  background:
    linear-gradient(145deg, rgba(35, 6, 12, 0.82), rgba(57, 19, 27, 0.62)),
    radial-gradient(circle at 100% 0%, rgba(231, 182, 67, 0.16), transparent 36%);
  border: 1px solid rgba(231, 182, 67, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(245, 238, 224, 0.035),
    var(--shadow-deep);
  position: relative;
  color-scheme: dark;
  overflow: hidden;
}

.contact-form::before,
.contact-form::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.contact-form::before {
  inset: 12px;
  border: 1px solid rgba(209, 168, 75, 0.10);
}

.contact-form::after {
  top: 0;
  left: clamp(24px, 3.4vw, 46px);
  right: clamp(24px, 3.4vw, 46px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 200, 108, 0.64), transparent);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.contact-form label span {
  color: rgba(242, 200, 108, 0.92);
  transition:
    color 0.35s var(--ease-luxe),
    transform 0.35s var(--ease-luxe);
}

.contact-form label:focus-within span {
  color: var(--gold-bright);
  transform: translateY(-1px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(231, 182, 67, 0.26);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(245, 238, 224, 0.115), rgba(245, 238, 224, 0.055));
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
  padding: 18px 18px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  box-shadow:
    inset 0 1px 0 rgba(245, 238, 224, 0.08),
    0 12px 28px rgba(25, 4, 7, 0.16);
  transition:
    border-color 0.35s var(--ease-luxe),
    background 0.35s var(--ease-luxe),
    box-shadow 0.35s var(--ease-luxe),
    transform 0.35s var(--ease-luxe);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form select {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'%3E%3Cpath d='M1 1.25L6.5 6.25L12 1.25' stroke='%23f2c86c' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(245, 238, 224, 0.115), rgba(245, 238, 224, 0.055));
  background-position: calc(100% - 18px) 50%, 0 0;
  background-size: 13px 8px, 100% 100%;
  background-repeat: no-repeat;
  padding-right: 48px;
}

.contact-form option {
  color: var(--ink);
  background: var(--ivory);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245, 238, 224, 0.46);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(242, 200, 108, 0.86);
  background:
    linear-gradient(180deg, rgba(245, 238, 224, 0.155), rgba(245, 238, 224, 0.075));
  box-shadow:
    inset 0 1px 0 rgba(245, 238, 224, 0.12),
    0 0 0 3px rgba(209, 168, 75, 0.14),
    0 16px 34px rgba(25, 4, 7, 0.24);
  transform: translateY(-1px);
}

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ivory);
  caret-color: var(--ivory);
  transition: background-color 9999s ease-in-out 0s;
  box-shadow:
    inset 0 0 0 1000px rgba(57, 19, 27, 0.94),
    0 0 0 3px rgba(209, 168, 75, 0.12);
}

.contact-form-wide,
.contact-form-submit {
  grid-column: 1 / -1;
}

.contact-form-submit {
  justify-content: center;
  border: 0;
  cursor: pointer;
  min-height: 58px;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

/* (Active page indicator handled in the main nav block above.) */

/* ── Dark-section nav: swap all text to light scheme ─── */
body.showcase-page #nav .nav-brand .wordmark,
body.showcase-page #nav .nav-links a,
#nav.on-dark .nav-brand .wordmark,
#nav.on-dark .nav-links a {
  color: var(--ivory);
  text-shadow:
    0 0 14px rgba(35, 6, 12, 0.78),
    0 1px 4px rgba(35, 6, 12, 0.62);
}
body.showcase-page #nav .nav-brand img,
#nav.on-dark .nav-brand img {
  filter: drop-shadow(0 1px 1px rgba(35, 6, 12, 0.55)) brightness(1.05);
}
body.showcase-page #nav .nav-links a:hover,
#nav.on-dark .nav-links a:hover     { color: var(--gold-2); }
body.showcase-page #nav .nav-links a.is-active,
#nav.on-dark .nav-links a.is-active { color: var(--gold-2); }
body.showcase-page #nav .nav-brand:hover .wordmark,
#nav.on-dark .nav-brand:hover .wordmark { color: var(--gold-2); }
body.showcase-page #nav .nav-appt,
#nav.on-dark .nav-appt {
  color: var(--gold-2);
  border-color: rgba(209, 168, 75, 0.42);
}
body.showcase-page #nav .nav-appt:hover,
#nav.on-dark .nav-appt:hover {
  background: rgba(209, 168, 75, 0.10);
  border-color: var(--gold-2);
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOATING ACTION
   ═══════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #ffffff;
  box-shadow:
    0 10px 26px rgba(37, 211, 102, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.18);
  z-index: 9000;
  transition:
    transform 0.5s var(--ease-luxe),
    box-shadow 0.5s var(--ease-luxe);
  cursor: pointer;
}
.wa-float::before {
  /* gentle pulse halo */
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: waPulse 2.6s ease-out infinite;
  pointer-events: none;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 16px 36px rgba(37, 211, 102, 0.46),
    0 6px 16px rgba(0, 0, 0, 0.22);
}
.wa-float svg {
  width: 30px;
  height: 30px;
  display: block;
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  padding: 9px 14px;
  background: rgba(35, 6, 12, 0.92);
  color: var(--ivory);
  font-family: var(--display);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-luxe), transform 0.4s var(--ease-luxe);
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  80%  { transform: scale(1.6); opacity: 0;    }
  100% { transform: scale(1.6); opacity: 0;    }
}

@media (max-width: 640px) {
  .wa-float    { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .wa-tooltip  { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   PHONE & TABLET — final responsive pass
   Only activates at ≤ 1023px. Anything ≥ 1024px (laptop) is
   completely untouched by these rules.
   ═══════════════════════════════════════════════════════════ */

/* ── TABLET (≤ 1023px) ────────────────────────────────── */
@media (max-width: 1023px) {
  /* Atelier film overlays — give them more breathing room and align
     edge-to-edge so the wide title isn't squashed against the canvas. */
  .film-overlay--title { left: var(--pad-x); right: var(--pad-x); max-width: none; bottom: 18%; }
  .film-overlay--mid   { left: var(--pad-x); right: var(--pad-x); max-width: none; text-align: left; bottom: 22%; }
  .film-overlay--end   { max-width: 80%; }
  .film-title          { font-size: clamp(34px, 5.4vw, 60px); }
  .film-caption        { font-size: clamp(20px, 2.8vw, 28px); }
  .film-end            { font-size: clamp(24px, 3.6vw, 38px); }
  .film-scroll-spacer  { height: 200vh; }

  /* Showcase already collapses to 1-col at 980px; nudge typography */
  .showcase-title      { font-size: clamp(40px, 6vw, 72px); }

  /* Gold prices — tighten the feature card so it doesn't dominate */
  .gold-card--feature  { padding: 60px 28px; }

  /* Pledge feature grid stays 2-col on tablet (already covered).
     Reduce icon-to-text gap on portrait tablets. */
  .pledge-item         { column-gap: 18px; }

  /* Quote section padding tighter */
  #quote               { padding: 110px var(--pad-x) 130px; }
}

/* ── PHONE (≤ 640px) ─────────────────────────────────── */
@media (max-width: 640px) {
  :root { --pad-x: 18px; }

  /* HERO ───────── */
  .hero-inner          { max-width: 100%; padding-right: var(--pad-x); padding-bottom: 24px; }
  .hero-title          { font-size: clamp(38px, 11vw, 64px); margin-bottom: 26px; }
  .hero-sub            { font-size: 18px; line-height: 1.72; margin-bottom: 30px; max-width: none; }
  .hero-ctas           { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas .btn      { width: 100%; justify-content: center; padding: 16px 22px; font-size: 11px; }

  /* STRIP ──────── */
  .strip               { height: auto; padding: 22px var(--pad-x); }
  .strip-marks         { font-size: 9.5px; gap: 8px 14px; line-height: 1.8; }

  /* ATELIER FILM ─ */
  .film-overlay--label { top: calc(var(--nav-h) + 18px); left: var(--pad-x); }
  .film-eyebrow        { font-size: 9.5px; letter-spacing: 0.24em; }
  .film-overlay--title { bottom: 24%; left: var(--pad-x); right: var(--pad-x); max-width: none; }
  .film-overlay--mid   { bottom: 30%; left: var(--pad-x); right: var(--pad-x); max-width: none; text-align: left; }
  .film-overlay--end   { bottom: 38%; max-width: 90%; }
  .film-title          { font-size: clamp(28px, 9vw, 44px); }
  .film-caption        { font-size: clamp(16px, 4.4vw, 22px); }
  .film-end            { font-size: clamp(22px, 6vw, 32px); }
  .film-scroll-spacer  { height: 160vh; }

  /* QUOTE ──────── */
  #quote               { padding: 80px var(--pad-x) 90px; gap: 36px; }
  .quote-3d            { max-width: 320px; }
  .quote-text p        { font-size: clamp(24px, 7vw, 36px); }
  .quote-text cite     { font-size: 10px; letter-spacing: 0.22em; }

  /* GOLD PRICES ── */
  #gold                { padding: 90px var(--pad-x) 100px; }
  .gold-head           { margin-bottom: 48px; }
  .gold-title          { font-size: clamp(32px, 9vw, 48px); }
  .gold-sub            { font-size: 13.5px; }
  .gold-card           { padding: 40px 22px; }
  .gold-card--feature  { padding: 50px 22px; }
  .gold-price .num     { font-size: clamp(36px, 12vw, 56px); }
  .gold-card--feature .gold-price .num { font-size: clamp(42px, 14vw, 60px); }

  /* COLLECTIONS ── */
  #collections         { padding: 90px var(--pad-x) 100px; }
  .col-title           { font-size: clamp(38px, 11vw, 56px); }
  .col-body            { font-size: 14px; }
  .col-grid            { grid-template-rows: 360px 280px 280px 390px; gap: 14px; }
  .col-card--hero      { min-height: 360px; }
  .col-card--small     { min-height: 280px; }
  .col-card--maharastrian { min-height: 390px; }
  .col-foot h3         { font-size: clamp(20px, 5.6vw, 28px); }
  .col-foot p          { font-size: 12.5px; }
  .col-arrow           { width: 38px; height: 38px; right: 18px; bottom: 18px; }

  /* SHOWCASE ───── */
  #showcase            { padding: 80px 0 100px; }
  .showcase-head       { margin-bottom: 50px; }
  .showcase-title      { font-size: clamp(38px, 11vw, 56px); }
  .showcase-body       { font-size: 14px; }
  .showcase-num        { font-size: 9.5px; letter-spacing: 0.26em; }
  .showcase-caption    { font-size: 14px; }

  /* PLEDGE ─────── */
  #about               { padding: 90px var(--pad-x); gap: 48px; }
  .pledge-title        { font-size: clamp(30px, 9vw, 46px); }
  .pledge-lede         { font-size: 14px; margin-bottom: 36px; }
  .pledge-grid         { gap: 22px 16px; padding: 28px 0 32px; }
  .pledge-icon         { width: 46px; height: 46px; }
  .pledge-icon svg     { width: 18px; height: 18px; }
  .pledge-item h4      { font-size: 10px; letter-spacing: 0.22em; margin-bottom: 4px; }
  .pledge-item p       { font-size: 16px; }
  .pledge-figure::after{ left: 18px; right: 18px; bottom: 16px; font-size: 9px; letter-spacing: 0.24em; }

  /* VOICES ─────── */
  #voices              { padding: 80px 0 90px; }
  .voices-head         { margin-bottom: 50px; }
  .voices-title        { font-size: clamp(32px, 9vw, 48px); }

  /* FOOTER ─────── */
  #footer              { padding: 80px var(--pad-x) 30px; }
  .foot-top            { gap: 24px; padding-bottom: 36px; margin-bottom: 40px; }

  /* WHATSAPP FAB ─ */
  .wa-float            { right: 12px; bottom: 12px; }

  /* Universal eyebrow tightening so caps don't dominate */
  .eyebrow             { font-size: 10px; letter-spacing: 0.24em; }
}

/* ── VERY SMALL PHONES (≤ 380px) ─────────────────────── */
@media (max-width: 380px) {
  :root                { --pad-x: 14px; }
  .hero-title          { font-size: clamp(32px, 11vw, 48px); }
  .nav-links           { gap: 12px; }
  .nav-links a         { font-size: 9.5px; letter-spacing: 0.18em; }
  .hero-ctas .btn      { font-size: 10.5px; padding: 14px 18px; }
}

/* ═══════════════════════════════════════════════════════════
   HAMBURGER + MOBILE MENU OVERLAY
   Visible only at ≤ 768px. Above that the inline links remain.
   ═══════════════════════════════════════════════════════════ */
.nav-toggle {
  display: none; /* desktops & tablets keep the inline nav */
  background: transparent;
  border: 0;
  padding: 0;
  width: 42px;
  height: 42px;
  position: relative;
  cursor: pointer;
  z-index: 101;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle-bar {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.6px;
  background: var(--ink);
  border-radius: 1px;
  transition:
    transform 0.45s var(--ease-luxe),
    opacity 0.3s var(--ease-luxe),
    background-color 0.4s var(--ease-luxe);
  transform-origin: 50% 50%;
}
.nav-toggle-bar:nth-child(1) { top: 14px; }
.nav-toggle-bar:nth-child(2) { top: 20.2px; }
.nav-toggle-bar:nth-child(3) { top: 26.4px; }

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(6.2px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6.2px) rotate(-45deg);
}

/* On dark sections, bars + label invert */
#nav.on-dark .nav-toggle-bar { background: var(--ivory); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  /* Hide the inline nav row; the mobile drawer styles take over below */
  .nav-links {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background:
      linear-gradient(180deg,
        rgba(35, 6, 12, 0.97) 0%,
        rgba(30, 5, 8, 0.97) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      opacity 0.45s var(--ease-luxe),
      transform 0.55s var(--ease-luxe);
    z-index: 99;
  }
  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a {
    font-family: var(--serif);
    font-style: italic;
    font-size: 28px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ivory);
    text-shadow: none;
    padding: 12px 24px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s var(--ease-luxe), transform 0.5s var(--ease-luxe);
  }
  .nav-links.is-open a { opacity: 1; transform: translateY(0); }
  .nav-links.is-open a:nth-child(1) { transition-delay: 0.10s; }
  .nav-links.is-open a:nth-child(2) { transition-delay: 0.18s; }
  .nav-links.is-open a:nth-child(3) { transition-delay: 0.26s; }
  .nav-links.is-open a:nth-child(4) { transition-delay: 0.34s; }
  .nav-links a::after { display: none; } /* drop the desktop underline animation */

  /* Lock body scroll while menu is open — applied via JS toggling class */
  body.nav-open { overflow: hidden; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE AUDIT — extra fixes for tight layouts on phones
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Prevent any accidental horizontal overflow at the root */
  body { overflow-x: clip; max-width: 100%; }

  /* Hero — leave a bit of breathing room above the buttons so they don't
     cosy up against the WhatsApp FAB on short screens */
  .hero-ctas           { padding-bottom: 56px; }

  /* Quote section — keep the cards from getting wider than usable space
     and centre the quote text padding cleanly */
  #quote               { gap: 28px; }
  .quote-3d            { max-width: 280px; aspect-ratio: 3 / 4; }
  .quote-text          { padding: 0 8px; }

  /* Atelier film — overlays were occasionally touching the right edge */
  .film-overlay--mid   { left: var(--pad-x); right: var(--pad-x); padding-right: 0; }
  .film-overlay--title { right: var(--pad-x); padding-right: 0; }

  /* Voices/testimonials — center the centered card vertically */
  .voices-stage        { padding: 44px 0 82px; }
  :root                { --vc-w: 210px; --vc-h: 430px; }

  /* Collections cards — text safe-zone keeps the gold arrow from
     overlapping the body copy on narrow widths */
  .col-foot            { right: 70px; }

  /* Footer brand block aligns left, single column already at this width */
  .foot-brand          { gap: 12px; }
  .foot-brand span     { font-size: 18px; letter-spacing: 0.28em; }
  .foot-quote          { line-height: 1.55; }

  /* WhatsApp FAB clear of the hero buttons */
  .wa-float            { bottom: 16px; }
}

/* ═══════════════════════════════════════════════════════════
   COLLECTIONS PAGE — page hero · chapter sections · marquee
   ═══════════════════════════════════════════════════════════ */

/* ── Page hero ─────────────────────────────────────────── */
.cpage-hero {
  background: var(--ivory);
  padding: calc(var(--nav-h) + 96px) var(--pad-x) 108px;
  text-align: center;
  position: relative;
}
.cpage-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16%; right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cream-line), transparent);
}
.cpage-hero .eyebrow { display: block; margin-bottom: 26px; }

.cpage-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 7.2vw, 108px);
  line-height: 0.88;
  letter-spacing: -0.014em;
  color: #23060c;
  margin-bottom: 38px;
}
.cpage-title em { display: block; font-style: italic; color: #39131b; }

.cpage-sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.76;
  color: rgba(35, 6, 12, 0.75);
  max-width: 500px;
  margin: 0 auto 72px;
}

/* Index navigation — bordered pill row */
.cpage-index {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--cream-line);
  border-radius: 3px;
  overflow: hidden;
}
.cpage-index-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 40px;
  transition: background 0.4s var(--ease-out);
}
.cpage-index-item:hover { background: rgba(209, 168, 75, 0.06); }
.cpage-index-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
  min-width: 34px;
  text-align: right;
}
.cpage-index-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-align: left;
  line-height: 1.55;
  transition: color 0.4s var(--ease-out);
}
.cpage-index-item:hover .cpage-index-name { color: var(--gold-deep); }
.cpage-index-sep {
  display: block;
  width: 1px;
  background: var(--cream-line);
  flex-shrink: 0;
  align-self: stretch;
}

/* ── Chapter sections ─────────────────────────────────── */
.col-chapter {
  position: relative;
  padding: 130px 0 0;
}
.col-chapter--temple  { background: var(--obsidian); }
.col-chapter--diamond { background: var(--obsidian); }
.col-chapter--emerald { background: var(--ivory); }
.col-chapter--maharastrian { background: var(--ivory); }

/* Chapter head: position:relative contains the ghost number */
.col-chapter-head {
  position: relative;
  overflow: hidden;
  padding: 0 var(--pad-x) 80px;
}

/* Oversized editorial ghost number */
.col-chapter-ghost {
  position: absolute;
  right: calc(var(--pad-x) - 16px);
  top: -52px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(190px, 28vw, 360px);
  line-height: 0.75;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(209, 168, 75, 0.16);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.col-chapter--diamond .col-chapter-ghost {
  -webkit-text-stroke-color: rgba(90, 120, 175, 0.12);
}
.col-chapter--emerald .col-chapter-ghost {
  -webkit-text-stroke-color: rgba(40, 130, 80, 0.16);
}
.col-chapter--maharastrian .col-chapter-ghost {
  -webkit-text-stroke-color: rgba(181, 135, 0, 0.18);
}

/* Head content stacks above the ghost */
.col-chapter-head > *:not(.col-chapter-ghost) {
  position: relative;
  z-index: 1;
}

.col-chapter-head .eyebrow { margin-bottom: 18px; }

.col-chapter-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(46px, 6.4vw, 94px);
  line-height: 0.93;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 28px;
}
.col-chapter--temple .col-chapter-title,
.col-chapter--diamond .col-chapter-title { color: var(--ivory); }
.col-chapter-title em { display: block; font-style: italic; color: var(--gold-deep); }
.col-chapter--temple .col-chapter-title em,
.col-chapter--diamond .col-chapter-title em { color: var(--gold-2); }

.col-chapter-body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.76;
  color: var(--ink-2);
  max-width: 520px;
}
.col-chapter--temple .col-chapter-body,
.col-chapter--diamond .col-chapter-body { color: var(--ivory-soft); }

/* ── Marquee ────────────────────────────────────────────── */
.col-marquee-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 110px;
  cursor: grab;
}
.col-marquee-outer:active { cursor: grabbing; }

/* Edge fade vignettes */
.col-marquee-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.col-marquee-fade--left  { left: 0; }
.col-marquee-fade--right { right: 0; }
.col-chapter--emerald .col-marquee-fade--left,
.col-chapter--maharastrian .col-marquee-fade--left { background: linear-gradient(to right, var(--ivory), transparent); }
.col-chapter--emerald .col-marquee-fade--right,
.col-chapter--maharastrian .col-marquee-fade--right { background: linear-gradient(to left,  var(--ivory), transparent); }
.col-chapter--temple .col-marquee-fade--left,
.col-chapter--diamond .col-marquee-fade--left  { background: linear-gradient(to right, var(--obsidian), transparent); }
.col-chapter--temple .col-marquee-fade--right,
.col-chapter--diamond .col-marquee-fade--right { background: linear-gradient(to left,  var(--obsidian), transparent); }

/* Moving track — LTR: starts at -50% (shows clone set B), ends at 0 (shows set A).
   The jump back to -50% is invisible because set B = set A. */
.col-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 16px 20px;
  animation: colMarqueeLTR 44s linear infinite;
  will-change: transform;
}
.col-marquee-outer:hover .col-marquee-track { animation-play-state: paused; }

@keyframes colMarqueeLTR {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ── Piece card ─────────────────────────────────────────── */
.col-piece {
  flex-shrink: 0;
  width: 256px;
  cursor: pointer;
  transition: transform 0.6s var(--ease-luxe);
}
.col-piece:hover { transform: translateY(-10px); }

.col-piece-img {
  width: 256px;
  height: 330px;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 20px;
}

.col-piece-img::before {
  content: 'Coming soon';
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 246, 224, 0.78);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.col-chapter--emerald .col-piece-img::before {
  color: rgba(235, 255, 238, 0.76);
}

/* Temple gradients — warm amber → burnished gold */
.col-piece-img--t1 { background: linear-gradient(150deg, #2A1200 0%, #7A4510 48%, #B87820 100%); }
.col-piece-img--t2 { background: linear-gradient(150deg, #3A1D00 0%, #8B5E18 48%, #C49232 100%); }
.col-piece-img--t3 { background: linear-gradient(150deg, #221000 0%, #6A3C0E 48%, #A87228 100%); }

/* Diamond gradients — near-black → deep indigo-navy */
.col-piece-img--d1 { background: linear-gradient(150deg, #050810 0%, #0E1626 48%, #1A2442 100%); }
.col-piece-img--d2 { background: linear-gradient(150deg, #070A18 0%, #111D2E 48%, #1E2E48 100%); }
.col-piece-img--d3 { background: linear-gradient(150deg, #040710 0%, #0B1420 48%, #162038 100%); }

/* Emerald gradients — near-black green → deep forest */
.col-piece-img--e1 { background: linear-gradient(150deg, #031208 0%, #0A3C1C 48%, #197040 100%); }
.col-piece-img--e2 { background: linear-gradient(150deg, #041508 0%, #0C4420 48%, #1A7038 100%); }
.col-piece-img--e3 { background: linear-gradient(150deg, #030E08 0%, #083818 48%, #167038 100%); }

/* Maharastrian gradients — saffron gold → festive ruby */
.col-piece-img--m1 { background: linear-gradient(150deg, #3A1204 0%, #8A3E0B 48%, #D19A32 100%); }
.col-piece-img--m2 { background: linear-gradient(150deg, #2D080E 0%, #7B1724 48%, #C9852A 100%); }
.col-piece-img--m3 { background: linear-gradient(150deg, #241004 0%, #7A4314 48%, #C7A24A 100%); }

/* Sweep sheen on hover */
.col-piece-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(209, 168, 75, 0.09) 50%, transparent 70%);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-luxe);
}
.col-chapter--diamond .col-piece-sheen {
  background: linear-gradient(115deg, transparent 30%, rgba(180, 210, 255, 0.07) 50%, transparent 70%);
}
.col-chapter--emerald .col-piece-sheen {
  background: linear-gradient(115deg, transparent 30%, rgba(130, 220, 160, 0.07) 50%, transparent 70%);
}
.col-chapter--maharastrian .col-piece-sheen {
  background: linear-gradient(115deg, transparent 30%, rgba(242, 200, 108, 0.11) 50%, transparent 70%);
}
.col-piece:hover .col-piece-sheen { opacity: 1; }

/* Decorative geometric motif */
.col-piece-motif {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  opacity: 0.28;
  color: rgba(255, 228, 152, 0.95);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-luxe), transform 0.8s var(--ease-luxe);
}
.col-chapter--diamond .col-piece-motif { color: rgba(170, 200, 255, 0.95); }
.col-chapter--emerald .col-piece-motif { color: rgba(120, 220, 155, 0.95); }
.col-chapter--maharastrian .col-piece-motif { color: rgba(255, 220, 138, 0.96); }
.col-piece:hover .col-piece-motif {
  opacity: 0.52;
  transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
}

/* Thin accent rule at card top edge */
.col-piece-img::after {
  content: '';
  position: absolute;
  top: 0; left: 18%; right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 95, 0.55), transparent);
  z-index: 2;
}
.col-chapter--diamond .col-piece-img::after {
  background: linear-gradient(90deg, transparent, rgba(160, 190, 255, 0.2), transparent);
}
.col-chapter--emerald .col-piece-img::after {
  background: linear-gradient(90deg, transparent, rgba(100, 210, 140, 0.25), transparent);
}
.col-chapter--maharastrian .col-piece-img::after {
  background: linear-gradient(90deg, transparent, rgba(242, 200, 108, 0.46), transparent);
}

/* Card text */
.col-piece-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 5px;
  transition: color 0.4s var(--ease-out);
}
.col-chapter--temple .col-piece-name,
.col-chapter--diamond .col-piece-name { color: var(--ivory); }
.col-piece:hover .col-piece-name { color: var(--gold-deep); }
.col-chapter--temple .col-piece:hover .col-piece-name,
.col-chapter--diamond .col-piece:hover .col-piece-name { color: var(--gold-2); }
.col-chapter--emerald .col-piece:hover .col-piece-name { color: #186838; }
.col-chapter--maharastrian .col-piece:hover .col-piece-name { color: var(--gold-deep); }

.col-piece-type {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.col-chapter--temple .col-piece-type,
.col-chapter--diamond .col-piece-type { color: var(--ivory-soft); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1023px) {
  .cpage-index        { flex-wrap: wrap; max-width: 540px; }
  .cpage-index-sep    { width: 100%; height: 1px; align-self: auto; }
  .cpage-index-item   { width: 100%; justify-content: center; padding: 18px 28px; }
  .col-chapter        { padding-top: 90px; }
  .col-chapter-head   { padding-bottom: 60px; }
}

@media (max-width: 768px) {
  .cpage-hero         { padding-top: calc(var(--nav-h) + 64px); padding-bottom: 72px; }
  .cpage-sub          { margin-bottom: 44px; }
  .col-chapter        { padding-top: 70px; }
  .col-chapter-head   { padding-bottom: 44px; }
  .col-marquee-outer  { padding-bottom: 80px; }
  .col-marquee-fade   { width: 60px; }
  .col-piece          { width: 208px; }
  .col-piece-img      { width: 208px; height: 268px; }
  .col-piece-motif    { width: 72px; height: 72px; }
}

@media (max-width: 480px) {
  .cpage-index        { display: block; width: 100%; border: none; }
  .cpage-index-item   { border-bottom: 1px solid var(--cream-line); padding: 16px 0; justify-content: flex-start; }
  .cpage-index-sep    { display: none; }
  .col-piece          { width: 185px; }
  .col-piece-img      { width: 185px; height: 238px; }
}

/* ═══════════════════════════════════════════════════════════
   PHONE — comprehensive mobile pass
   ═══════════════════════════════════════════════════════════ */

/* clip = clips without creating a scroll container, so position:sticky still works on iOS */
body { overflow-x: clip; }

@media (max-width: 640px) {

  /* COLLECTIONS PAGE HERO ──────────────────────────────── */
  .cpage-hero         { padding-top: calc(var(--nav-h) + 44px); padding-bottom: 56px; }
  .cpage-title        { font-size: clamp(32px, 9vw, 50px); line-height: 1.0; margin-bottom: 22px; }
  .cpage-sub          { font-size: 14px; line-height: 1.72; margin-bottom: 36px; }

  /* CHAPTER SECTIONS ───────────────────────────────────── */
  .col-chapter        { padding-top: 56px; }
  .col-chapter-head   { padding-bottom: 44px; }
  .col-chapter-title  { font-size: clamp(30px, 9vw, 46px); margin-bottom: 18px; }
  .col-chapter-ghost  { font-size: clamp(120px, 36vw, 190px); }
  .col-chapter-body   { font-size: 14px; }

  /* STUB PAGES (Contact / About) ───────────────────────── */
  .stub-title         { font-size: clamp(30px, 9vw, 46px); }
  .stub-body          { font-size: 14px; }
  .stub-actions       { flex-direction: column; align-items: stretch; width: 100%; gap: 12px; }
  .stub-actions .btn  { width: 100%; justify-content: center; }

  /* CONTACT PAGE ───────────────────────────────────────── */
  .contact-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--nav-h) + 76px);
    padding-bottom: 72px;
  }
  .contact-hero-note {
    max-width: 620px;
  }
  .contact-details {
    grid-template-columns: 1fr;
  }
  .contact-detail-card {
    min-height: auto;
    padding: 34px var(--pad-x);
  }
  .contact-request {
    grid-template-columns: 1fr;
    padding-top: 84px;
    padding-bottom: 96px;
  }
  .contact-request-copy {
    position: static;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-page-actions,
  .contact-page-actions .btn {
    width: 100%;
  }
  .contact-page-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-page-actions .btn {
    justify-content: center;
  }
  /* HERO IMAGE ─────────────────────────────────────────── */
  .hero-bg            { object-position: 72% center; }
}

@media (max-width: 390px) {
  .cpage-title        { font-size: clamp(28px, 9vw, 36px); }
  .col-chapter-title  { font-size: clamp(26px, 9vw, 34px); }
  .col-chapter-ghost  { font-size: clamp(90px, 32vw, 130px); }
  .stub-title         { font-size: clamp(26px, 9vw, 36px); }
  .contact-page-title { font-size: clamp(36px, 14vw, 48px); }
  .contact-request-copy h2 { font-size: clamp(30px, 12vw, 42px); }
}

/* ═══════════════════════════════════════════════════════════
   NAV — Book Appointment pill button
   ═══════════════════════════════════════════════════════════ */
.nav-appt {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  /* default: dark text for light-bg sections */
  color: var(--ink);
  border: 1px solid rgba(25, 4, 7, 0.38);
  border-radius: 999px;
  white-space: nowrap;
  text-shadow: none;
  transition:
    background 0.4s var(--ease-luxe),
    border-color 0.4s var(--ease-luxe),
    color 0.4s var(--ease-luxe);
}
.nav-appt:hover {
  background: rgba(25, 4, 7, 0.08);
  border-color: var(--ink);
}
@media (max-width: 900px) { .nav-appt { display: none; } }

/* ═══════════════════════════════════════════════════════════
   TEMPORARY SHOWCASE PAGE
   ═══════════════════════════════════════════════════════════ */
.showcase-page {
  background:
    radial-gradient(circle at 86% 8%, rgba(211, 168, 75, 0.13), transparent 28%),
    radial-gradient(circle at 10% 18%, rgba(105, 12, 26, 0.58), transparent 34%),
    linear-gradient(180deg, var(--obsidian) 0%, #2b0710 58%, var(--obsidian) 100%);
}

.showcase-page-hero {
  max-width: 1260px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 96px) var(--pad-x) 62px;
}

.showcase-page-title {
  max-width: 780px;
  margin: 22px 0 20px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(78px, 11vw, 156px);
  font-weight: 400;
  line-height: 0.82;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

.showcase-page-title em {
  display: block;
  color: var(--gold-2);
  font-style: italic;
  text-shadow: 0 10px 30px rgba(209, 168, 75, 0.2);
}

.showcase-page-sub {
  max-width: 660px;
  color: rgba(255, 248, 232, 0.78);
  font-family: var(--body);
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.8;
}

.showcase-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 var(--pad-x) 120px;
}

.showcase-photo {
  min-width: 0;
}

.showcase-photo-frame {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(209, 168, 75, 0.2);
  border-radius: 4px;
  background:
    repeating-linear-gradient(135deg, rgba(209, 168, 75, 0.07) 0 1px, transparent 1px 18px),
    linear-gradient(145deg, rgba(71, 16, 25, 0.88), rgba(33, 6, 12, 0.96));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26);
}

.showcase-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  cursor: zoom-in;
  transition: transform 0.8s var(--ease-luxe);
}

.showcase-photo-frame img:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: -6px;
}

.showcase-photo--filled:hover .showcase-photo-frame img {
  transform: scale(1.055);
}

.showcase-lightbox {
  --showcase-lightbox-y: clamp(54px, 6.5vh, 72px);
  --showcase-lightbox-max-height: calc(100dvh - (var(--showcase-lightbox-y) * 2));
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: var(--showcase-lightbox-y) clamp(18px, 3vw, 44px);
  background:
    radial-gradient(circle at 50% 20%, rgba(105, 12, 26, 0.5), transparent 34%),
    rgba(12, 2, 5, 0.9);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-luxe);
}

.showcase-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.showcase-lightbox-frame {
  display: grid;
  place-items: center;
  width: min(92vw, 1120px);
  height: auto;
  max-height: var(--showcase-lightbox-max-height);
}

.showcase-lightbox-frame img {
  width: auto;
  height: auto;
  max-width: min(100%, 1120px);
  max-height: var(--showcase-lightbox-max-height);
  display: block;
  object-fit: contain;
  border: 1px solid rgba(231, 182, 67, 0.34);
  border-radius: 4px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
}

.showcase-lightbox-close {
  position: fixed;
  top: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 38px);
  z-index: 1;
  appearance: none;
  border: 1px solid rgba(231, 182, 67, 0.38);
  border-radius: 999px;
  background: rgba(35, 6, 12, 0.72);
  color: var(--ivory);
  cursor: pointer;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.28em;
  line-height: 1;
  padding: 14px 18px;
  text-transform: uppercase;
  transition:
    background 0.3s var(--ease-luxe),
    border-color 0.3s var(--ease-luxe),
    color 0.3s var(--ease-luxe);
}

.showcase-lightbox-close:hover,
.showcase-lightbox-close:focus-visible {
  background: rgba(231, 182, 67, 0.16);
  border-color: var(--gold-2);
  color: var(--gold-2);
  outline: none;
}

body.lightbox-open {
  overflow: hidden;
}

.showcase-photo--empty .showcase-photo-frame span {
  color: rgba(255, 248, 232, 0.55);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.showcase-photo-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  padding-top: 18px;
}

.showcase-photo-meta span {
  grid-row: span 2;
  color: var(--gold);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 300;
}

.showcase-photo-meta h2 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 400;
  line-height: 1;
}

.showcase-photo-meta p {
  margin: 0;
  color: rgba(255, 248, 232, 0.68);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .showcase-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .showcase-page-hero {
    padding-top: calc(var(--nav-h) + 58px);
    padding-bottom: 44px;
  }
  .showcase-page-title {
    font-size: clamp(62px, 20vw, 96px);
  }
  .showcase-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
    padding-bottom: 86px;
  }
  .showcase-photo-meta {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-top: 12px;
  }
  .showcase-photo-meta span {
    grid-row: auto;
    font-size: 12px;
  }
  .showcase-photo-meta h2 {
    font-size: 24px;
  }
  .showcase-photo-meta p {
    font-size: 13px;
  }
}

@media (max-width: 460px) {
  .showcase-gallery {
    grid-template-columns: 1fr;
  }
  .showcase-photo-frame {
    aspect-ratio: 1 / 1.12;
  }
  .showcase-lightbox {
    --showcase-lightbox-y: 54px;
  }
  .showcase-lightbox-frame,
  .showcase-lightbox-frame img {
    max-height: var(--showcase-lightbox-max-height);
  }
}

/* ═══════════════════════════════════════════════════════════
   STATS — heritage numbers band
   ═══════════════════════════════════════════════════════════ */
#stats {
  background: var(--obsidian);
  border-top: 1px solid rgba(209, 168, 75, 0.12);
  border-bottom: 1px solid rgba(209, 168, 75, 0.12);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 72px 32px;
}
.stat-num {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  color: var(--gold-2);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.stat-suffix {
  font-size: 0.65em;
  vertical-align: baseline;
  margin-left: 4px;
}
.stat-label {
  display: block;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ivory-soft);
}
.stat-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(209, 168, 75, 0.30), transparent);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .stat-item    { padding: 48px 16px; }
  .stat-num     { font-size: clamp(40px, 11vw, 60px); }
  .stat-label   { font-size: 9px; letter-spacing: 0.22em; }
  .stat-divider { height: 56px; }
}

/* ═══════════════════════════════════════════════════════════
   COLLECTION CARD — shine sweep on hover
   ═══════════════════════════════════════════════════════════ */
.col-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 25%,
    rgba(245, 238, 224, 0.11) 50%,
    transparent 75%
  );
  transform: translateX(-130%) skewX(-12deg);
  transition: transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 2;
  pointer-events: none;
}
.col-card:hover .col-shine { transform: translateX(130%) skewX(-12deg); }

/* ═══════════════════════════════════════════════════════════
   PLEDGE FIGURE — corner bracket decorations
   ═══════════════════════════════════════════════════════════ */
.pledge-figure-wrap {
  position: relative;
}
.bracket {
  position: absolute;
  width: clamp(36px, 5vw, 56px);
  height: clamp(36px, 5vw, 56px);
  z-index: 10;
  pointer-events: none;
}
.bracket--tl { top: -12px; left: -12px; border-top: 1px solid rgba(209, 168, 75, 0.52); border-left: 1px solid rgba(209, 168, 75, 0.52); }
.bracket--tr { top: -12px; right: -12px; border-top: 1px solid rgba(209, 168, 75, 0.52); border-right: 1px solid rgba(209, 168, 75, 0.52); }
.bracket--bl { bottom: -12px; left: -12px; border-bottom: 1px solid rgba(209, 168, 75, 0.52); border-left: 1px solid rgba(209, 168, 75, 0.52); }
.bracket--br { bottom: -12px; right: -12px; border-bottom: 1px solid rgba(209, 168, 75, 0.52); border-right: 1px solid rgba(209, 168, 75, 0.52); }

/* ═══════════════════════════════════════════════════════════
   PROMISE — 4-col why-choose-us cards
   ═══════════════════════════════════════════════════════════ */
#promise {
  background: var(--ivory);
  padding: 130px var(--pad-x) 140px;
}
.promise-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.promise-head {
  text-align: center;
  margin-bottom: 72px;
}
.promise-head .eyebrow { margin-bottom: 18px; }
.promise-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.05;
  color: #23060c;
}
.promise-title em {
  font-style: italic;
  color: #39131b;
}
.promise-sub {
  max-width: 660px;
  margin: 22px auto 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.78;
  color: rgba(35, 6, 12, 0.66);
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.promise-card {
  border: 1px solid rgba(35, 6, 12, 0.14);
  padding: 42px 30px 38px;
  text-align: center;
  min-height: 310px;
  transition:
    border-color 0.45s var(--ease-luxe),
    box-shadow 0.45s var(--ease-luxe),
    transform 0.45s var(--ease-luxe);
}
.promise-card:hover {
  border-color: rgba(209, 168, 75, 0.45);
  box-shadow: 0 14px 36px rgba(35, 6, 12, 0.08);
  transform: translateY(-3px);
}
.promise-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(35, 6, 12, 0.20);
  margin-bottom: 26px;
  color: var(--obsidian);
  transition: border-color 0.45s var(--ease-luxe), color 0.45s var(--ease-luxe);
}
.promise-card:hover .promise-icon {
  border-color: rgba(209, 168, 75, 0.50);
  color: var(--gold-deep);
}
.promise-icon svg { width: 22px; height: 22px; display: block; }
.promise-card h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #23060c;
  margin-bottom: 14px;
}
.promise-card p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.76;
  color: rgba(35, 6, 12, 0.78);
}
.promise-close {
  max-width: 760px;
  margin: 54px auto 0;
  text-align: center;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.86;
  color: rgba(35, 6, 12, 0.74);
}
@media (max-width: 960px) {
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-card { min-height: 280px; }
}
@media (max-width: 540px) {
  .promise-grid { grid-template-columns: 1fr; gap: 14px; }
  .promise-card { min-height: auto; padding: 36px 24px 34px; }
  .promise-card p { font-size: 15px; line-height: 1.74; }
  #promise      { padding: 90px var(--pad-x) 100px; }
  .promise-head { margin-bottom: 48px; }
  .promise-sub  { font-size: 14px; }
  .promise-close { margin-top: 38px; font-size: 14.5px; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT CTA — centered info section
   ═══════════════════════════════════════════════════════════ */
#contact-cta {
  background: var(--umber);
  padding: 120px var(--pad-x) 130px;
  text-align: center;
}
.contact-cta-inner {
  max-width: 960px;
  margin: 0 auto;
}
.contact-cta-inner > .eyebrow { margin-bottom: 20px; }
.contact-cta-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 60px;
}
.contact-cta-title em {
  display: block;
  font-style: italic;
  color: var(--gold-2);
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(209, 168, 75, 0.20);
  border: 1px solid rgba(209, 168, 75, 0.20);
  margin-bottom: 52px;
}
.contact-info-item {
  background: var(--umber);
  padding: 44px 28px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.contact-info-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(209, 168, 75, 0.40);
  color: var(--gold-2);
  margin-bottom: 6px;
}
.contact-info-icon svg { width: 20px; height: 20px; display: block; }
.contact-info-label {
  font-family: var(--display);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.contact-info-value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ivory);
}
.contact-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 760px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  #contact-cta            { padding: 80px var(--pad-x) 90px; }
  .contact-cta-title      { margin-bottom: 40px; }
  .contact-info-item      { padding: 36px 22px 32px; }
}

/* Numeric typography — keep visible figures in Raleway Light */
.stat-num,
.stat-suffix,
.gold-karat,
.gold-price .cur,
.gold-price .num,
.gold-change,
.gold-stamp,
.cpage-index-num,
.col-chapter-ghost,
.showcase-num,
.contact-detail-value,
.contact-form input[name="contact"],
.contact-form input[name="date"],
.contact-info-value,
.foot-copy {
  font-family: var(--sans);
  font-weight: 300;
  font-style: normal;
}

/* ═══════════════════════════════════════════════════════════
   IMAGE PLACEHOLDERS
   ═══════════════════════════════════════════════════════════ */
.ph {
  display: block;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 9px,
      rgba(209, 168, 75, 0.055) 9px,
      rgba(209, 168, 75, 0.055) 10px
    ),
    var(--obsidian);
}

/* Hero — red velvet texture (CSS-only, no image) */
.ph.hero-bg {
  transform: none !important;
  transition: none !important;
  /* Layered directional gradients simulate light raking across crushed velvet */
  background:
    radial-gradient(ellipse 170% 85% at 18% 26%, rgba(60, 12, 18, 0.72) 0%, transparent 52%),
    radial-gradient(ellipse 110% 65% at 82% 72%, rgba(44, 8, 14, 0.52) 0%, transparent 50%),
    radial-gradient(ellipse 80%  100% at 52% 46%, rgba(32, 6, 10, 0.38) 0%, transparent 60%),
    radial-gradient(ellipse 140% 55% at 35% 85%, rgba(24, 4, 8, 0.55) 0%, transparent 55%),
    linear-gradient(148deg,
      #240910  0%,
      #2E0A11  22%,
      #380D15  48%,
      #240910  72%,
      #240910 100%);
  isolation: isolate;
}

/* Two-layer velvet texture: large organic folds + fine horizontal nap */
.ph.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='900' height='900'><filter id='f'><feTurbulence type='fractalNoise' baseFrequency='0.028 0.042' numOctaves='3' seed='17' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0.32  0 0 0 0 0.03  0 0 0 0 0.07  0 0 0 0.30 0'/></filter><rect width='100%25' height='100%25' filter='url(%23f)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='520' height='520'><filter id='v'><feTurbulence type='fractalNoise' baseFrequency='0.76 0.11' numOctaves='5' seed='9' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0.18  0 0 0 0 0.02  0 0 0 0 0.04  0 0 0 0.22 0'/></filter><rect width='100%25' height='100%25' filter='url(%23v)'/></svg>");
  background-size: 900px 900px, 520px 520px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Slowly drifting highlight — catch-light of moving velvet over dark ground */
.ph.hero-bg::after {
  content: '';
  position: absolute;
  inset: -30%;
  background: radial-gradient(
    ellipse 58% 38% at 50% 50%,
    rgba(80, 18, 26, 0.48) 0%,
    rgba(50, 10, 16, 0.26) 42%,
    transparent 72%
  );
  animation: velvetFlow 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes velvetFlow {
  0%   { transform: translate(-20%, -14%) rotate(-4deg) scale(1.10); opacity: 0.60; }
  30%  { transform: translate(14%,   8%)  rotate( 2deg) scale(1.00); opacity: 1.00; }
  65%  { transform: translate( 8%,  18%) rotate(-2deg) scale(1.08); opacity: 0.72; }
  100% { transform: translate(-20%, -14%) rotate(-4deg) scale(1.10); opacity: 0.60; }
}

/* Logo dots in nav + footer */
.ph-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px dashed rgba(209, 168, 75, 0.38);
  flex-shrink: 0;
}
.ph-logo-sm {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px dashed rgba(209, 168, 75, 0.38);
  flex-shrink: 0;
}

/* Atelier film stage placeholder — fills the pinned stage */
.ph-film {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Quote 3D card placeholder — fills the card */
.ph-q {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

/* Collection card placeholder — fills the card */
.ph-c {
  display: block;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 9px,
      rgba(209, 168, 75, 0.06) 9px,
      rgba(209, 168, 75, 0.06) 10px
    ),
    var(--umber);
}

/* Pledge figure placeholder — preserves 4:5 ratio */
.ph-pledge {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
}

/* Showcase card placeholder — fills the 4:5 card */
.ph-s {
  display: block;
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE PLAYWRIGHT POLISH — compact sections, clean scroll rows
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  #atelier-film {
    display: none;
  }

  #quote {
    padding: 66px var(--pad-x) 74px;
    gap: 26px;
  }

  .quote-3d {
    max-width: 250px;
  }

  .quote-3d--right {
    display: none;
  }

  .quote-mark {
    display: none;
  }

  .quote-text p {
    font-size: clamp(26px, 8.2vw, 34px);
  }

  #about {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  #promise {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  #showcase {
    padding: 72px 0 82px;
  }

  .showcase-head {
    margin-bottom: 34px;
  }

  .showcase-stage {
    gap: 16px;
  }

  .col-shine {
    display: none;
  }

  #voices {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  #contact-cta {
    padding-top: 76px;
    padding-bottom: 84px;
  }

  .col-marquee-outer {
    overflow: visible;
    padding-bottom: 58px;
    cursor: auto;
  }

  .col-marquee-track {
    animation: none !important;
    transform: none !important;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: auto;
    gap: 20px 14px;
    padding: 10px var(--pad-x) 4px;
  }

  .col-piece[aria-hidden="true"] {
    display: none;
  }

  .col-marquee-fade {
    display: none;
  }

  .col-piece {
    width: auto;
    min-width: 0;
  }

  .col-piece-img {
    width: 100%;
    height: auto;
    aspect-ratio: 174 / 224;
    margin-bottom: 14px;
  }

  .col-piece-name {
    font-size: 16px;
    line-height: 1.22;
  }

  .col-piece-type {
    font-size: 8.5px;
    letter-spacing: 0.22em;
    line-height: 1.35;
  }

  .col-chapter {
    padding-top: 50px;
  }

  .col-chapter-head {
    padding-bottom: 34px;
  }

  .col-chapter:last-of-type .col-marquee-outer {
    padding-bottom: 66px;
  }

  #footer {
    padding-top: 68px;
  }

}

@media (max-width: 380px) {
  .col-marquee-track {
    gap: 18px 12px;
  }
}
