/* ============================================================
   BLOMMA CONCEPT — LUXURY FLAGSHIP
   Register: Brand. Strategy: Committed.
   Tone: Artisanal. Untamed. Considered.

   Type: Gilda Display (editorial serif w/ soul) +
         Jost (warm geometric sans, precise) +
         Fira Code (mono, chosen for optical warmth).
         None on the reflex-reject list.

   Palette: Deep forest-earth neutrals, warm ivory,
            single gold accent — Committed strategy,
            color carries the brand at full weight.

   Scene: A dim, cool flower atelier off Sheikh Zayed Road.
          Aged concrete floors. Scent of eucalyptus.
          The light is warm and directional. Nothing is loud.
   ============================================================ */

/* ── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  /* Surfaces — warm ivory pulling toward parchment, never pure white */
  --ivory:     oklch(97.4% 0.008 82);
  --parchment: oklch(94.2% 0.013 79);
  --sand:      oklch(90.0% 0.018 76);
  --dune:      oklch(84.6% 0.022 74);

  /* Dark — forest espresso, not black */
  --espresso:  oklch(18.0% 0.012 60);
  --forest:    oklch(23.0% 0.015 58);
  --shadow:    oklch(28.0% 0.016 62);
  --muted:     oklch(50.0% 0.018 70);

  /* Single accent — antique gold. Restrained chroma, high dignity. */
  --gold:      oklch(66.0% 0.082 72);
  --gold-hi:   oklch(78.0% 0.076 76);
  --gold-lo:   oklch(55.0% 0.065 68);
  --gold-ghost:oklch(66.0% 0.082 72 / 0.14);

  /* Light inverse — for dark sections */
  --light:     oklch(96.6% 0.010 82);
  --light-dim: oklch(96.6% 0.010 82 / 0.70);
  --light-faint: oklch(96.6% 0.010 82 / 0.40);

  /* Type stacks — deliberate, not default */
  --serif:     'Gilda Display', 'Palatino Linotype', Georgia, serif;
  --sans:      'Jost', 'Futura', system-ui, sans-serif;
  --mono:      'Fira Code', 'Menlo', monospace;

  /* Layout */
  --gutter:    clamp(28px, 5.6vw, 80px);
  --max:       1400px;
  --gap:       clamp(80px, 13vw, 180px);

  /* Easing — exponential, botanical pace. Never bounce. */
  --e1: cubic-bezier(.22, 1, .36, 1);
  --e2: cubic-bezier(.12, 1, .20, 1);
  --e3: cubic-bezier(.76, 0, .24, 1);

  /* Shadow — warm tinted, never cold grey */
  --sh-1: 0 2px 8px oklch(18% 0.015 60 / 0.06), 0 8px 32px -12px oklch(18% 0.015 60 / 0.12);
  --sh-2: 0 4px 12px oklch(18% 0.015 60 / 0.08), 0 28px 64px -20px oklch(18% 0.015 60 / 0.22);
  --sh-3: 0 8px 24px oklch(18% 0.015 60 / 0.10), 0 48px 96px -28px oklch(18% 0.015 60 / 0.32);
}

/* ── FONT IMPORTS (Google Fonts) ─────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&family=Jost:wght@300;400;500;600&family=Fira+Code:wght@400;500&display=swap');

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--espresso);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: 0; cursor: pointer; color: inherit; font: inherit; }
/* em: Gilda Display italic as brand voice element */
em { font-family: var(--serif); font-style: italic; font-weight: 400; }
::selection { background: var(--gold); color: var(--ivory); }

.skip-link {
  position: absolute; left: -9999px; top: 12px; z-index: 999;
  background: var(--espresso); color: var(--ivory);
  padding: 10px 18px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
}
.skip-link:focus { left: 12px; }

/* ── GRAIN — premium analogue texture ────────────────────── */
.grain {
  position: fixed; inset: 0; z-index: 4; pointer-events: none;
  opacity: .04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.09 0 0 0 0 0.06 0 0 0 .6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ── AMBIENT WARMTH ──────────────────────────────────────── */
.ambient {
  position: fixed; inset: -30vmax; z-index: 0; pointer-events: none;
  background:
    radial-gradient(50vmax 50vmax at 15% 20%, oklch(78% 0.076 76 / 0.07), transparent 65%),
    radial-gradient(40vmax 40vmax at 85% 75%, oklch(84% 0.022 74 / 0.06), transparent 70%);
  animation: drift 32s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to   { transform: translate3d(-3vmax, 2vmax, 0) rotate(.5deg); }
}

/* ── SCROLL PROGRESS ─────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 1px; z-index: 300;
  background: var(--gold);
  transform: scaleX(0); transform-origin: 0 50%;
}

/* ── REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  filter: blur(5px);
  transition: opacity 1.1s var(--e2), transform 1.2s var(--e2), filter 1.1s var(--e2);
}
.reveal.is-in { opacity: 1; transform: none; filter: none; }
.reduce-motion .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
.reduce-motion * { animation-duration: .01ms !important; transition-duration: .01ms !important; }

/* ── CURSOR ──────────────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 999;
  pointer-events: none;
  display: none;
}
.has-cursor .cursor { display: block; }
.has-cursor * { cursor: none !important; }
.cursor-dot {
  position: absolute; top: -4px; left: -4px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  transition: transform .15s var(--e1), opacity .3s;
}
.cursor-ring {
  position: absolute; top: -20px; left: -20px;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid oklch(66% 0.082 72 / 0.5);
  transition: transform .55s var(--e2), width .45s var(--e2), height .45s var(--e2),
              top .45s var(--e2), left .45s var(--e2), border-color .3s;
}
.cursor-label {
  position: absolute; top: -12px; left: 16px;
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  opacity: 0; transform: translateY(4px);
  transition: opacity .3s, transform .3s var(--e1);
  white-space: nowrap;
}
.cursor.is-hover .cursor-ring {
  width: 72px; height: 72px; top: -36px; left: -36px;
  border-color: var(--gold);
}
.cursor.is-hover .cursor-label { opacity: 1; transform: none; }
.cursor.is-link .cursor-ring { border-color: oklch(66% 0.082 72 / 0.75); }
.cursor.is-down .cursor-dot { transform: scale(1.6); }

/* ── EYEBROW ─────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 500;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
}
/* Hero eyebrow gets a left-extending rule before the dot */
.hero-text .eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: oklch(66% 0.082 72 / 0.45);
  flex-shrink: 0;
}
.eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px oklch(66% 0.082 72 / 0.16);
}
.eyebrow--light { color: oklch(96.6% 0.010 82 / 0.55); }
.eyebrow--light .eyebrow-dot { box-shadow: 0 0 0 3px oklch(66% 0.082 72 / 0.22); }

/* ── SECTION HEADERS ─────────────────────────────────────── */
.sec-head { display: flex; flex-direction: column; gap: 20px; margin-bottom: clamp(48px, 6vw, 80px); }
.sec-head--center { align-items: center; text-align: center; }
.sec-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.sec-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 6.8vw, 100px);
  line-height: .93;
  letter-spacing: -0.024em;
  color: var(--espresso);
  text-wrap: balance;
}
.sec-title em { color: var(--gold); letter-spacing: -0.018em; }
.sec-lede {
  font-family: var(--serif);
  font-size: 18px; font-style: italic; font-weight: 400;
  color: var(--muted);
  line-height: 1.55;
  max-width: 58ch;
  text-wrap: pretty;
}
.sec-head--center .sec-lede { margin-inline: auto; }

/* ── LINKS & BUTTONS ─────────────────────────────────────── */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--shadow);
  padding-bottom: 3px;
  border-bottom: 1px solid oklch(18% 0.012 60 / 0.2);
  transition: color .3s var(--e1), border-color .3s var(--e1);
}
.link-arrow span { transition: transform .4s var(--e2); display: inline-block; }
.link-arrow:hover { color: var(--gold); border-color: var(--gold); }
.link-arrow:hover span { transform: translateX(4px); }

.link-underline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--espresso);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--gold);
  transition: color .3s var(--e1), gap .35s var(--e1);
}
.link-underline:hover { color: var(--gold); gap: 14px; }
.link-underline--light { color: var(--light); border-color: oklch(66% 0.082 72 / 0.6); }
.link-underline--light:hover { color: var(--gold-hi); }

.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 11px 11px 11px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12.5px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  white-space: nowrap;
  transition: transform .5s var(--e2), background .35s var(--e1), color .35s var(--e1), box-shadow .35s var(--e1);
  will-change: transform;
}
.btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: oklch(100% 0 0 / 0.1); color: inherit;
  transition: transform .5s var(--e2), background .35s var(--e1);
  flex-shrink: 0;
}
.btn:hover .btn-icon { transform: translate(4px, -1px) rotate(-12deg); }
.btn:active { transform: translateY(1px) scale(.985); }

.btn--solid { background: var(--espresso); color: var(--ivory); box-shadow: var(--sh-2); }
.btn--solid:hover { background: var(--forest); }
.btn--solid .btn-icon { background: oklch(96.6% 0.010 82 / 0.10); }
.btn--solid-light { background: var(--ivory); color: var(--espresso); box-shadow: var(--sh-1); }
.btn--solid-light .btn-icon { background: oklch(18% 0.012 60 / 0.07); }

.btn--ghost {
  padding: 13px 24px;
  border: 1px solid currentColor;
  color: var(--espresso);
}
.btn--ghost:hover { background: var(--espresso); color: var(--ivory); }
.btn--ghost-light { color: var(--light); }
.btn--ghost-light:hover { background: var(--light); color: var(--espresso); }

/* ── ANNOUNCEMENT MARQUEE ────────────────────────────────── */
.ann-bar {
  position: relative; z-index: 5;
  background: var(--espresso);
  color: oklch(96.6% 0.010 82 / 0.55);
  height: 38px;
  overflow: hidden;
  display: flex; align-items: center;
}
/* Edge fade vignette */
.ann-bar::before,
.ann-bar::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.ann-bar::before { left: 0;  background: linear-gradient(90deg,  var(--espresso), transparent); }
.ann-bar::after  { right: 0; background: linear-gradient(-90deg, var(--espresso), transparent); }
.ann-track {
  display: flex; align-items: center; gap: 40px;
  white-space: nowrap;
  animation: ann-scroll 55s linear infinite;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .20em; text-transform: uppercase;
  will-change: transform;
}
.ann-bar:hover .ann-track { animation-play-state: paused; }
.ann-item { flex-shrink: 0; transition: color .25s; }
.ann-bar:hover .ann-item { color: oklch(96.6% 0.010 82 / 0.85); }
.ann-dot {
  color: var(--gold); flex-shrink: 0;
  font-size: .8em; opacity: .7;
  display: inline-block; transform: translateY(-.5px);
}
@keyframes ann-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* ── HEADER ──────────────────────────────────────────────── */
.hdr {
  position: sticky; top: 12px; z-index: 200;
  display: flex; justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}
.hdr-pill {
  pointer-events: auto;
  display: flex; align-items: center; gap: 6px;
  width: 100%; max-width: 1240px;
  height: 62px;
  padding: 8px 8px 8px 26px;
  background: oklch(97.4% 0.008 82 / 0.80);
  border: 1px solid oklch(18% 0.012 60 / 0.08);
  border-radius: 999px;
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  box-shadow:
    inset 0 1px 0 oklch(100% 0 0 / 0.65),
    var(--sh-2);
  transition: background .4s var(--e1), box-shadow .4s var(--e1);
}
.hdr.is-scrolled .hdr-pill {
  background: oklch(97.4% 0.008 82 / 0.95);
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.7), var(--sh-3);
}

.hdr-logo {
  display: inline-flex; align-items: baseline; gap: 1px;
  font-family: var(--serif);
  font-weight: 400; font-size: 22px;
  letter-spacing: -0.02em; color: var(--espresso);
  margin-right: 10px; flex-shrink: 0;
}
.hdr-logo-mark { font-style: italic; color: var(--gold); font-size: 26px; line-height: 1; }

.hdr-nav { display: flex; align-items: center; gap: 0; margin-left: 4px; }
.hdr-nav > a, .hdr-nav > .dn {
  position: relative;
  display: inline-flex; align-items: center;
  height: 46px; padding: 0 16px;
  font-family: var(--sans);
  font-size: 12.5px; font-weight: 400;
  color: var(--shadow);
  letter-spacing: .03em;
  border-radius: 999px;
  cursor: pointer;
  transition: color .25s var(--e1), background .25s var(--e1);
  user-select: none;
}
.hdr-nav > a:hover, .hdr-nav > .dn:hover { color: var(--espresso); background: oklch(18% 0.012 60 / 0.05); }

.dn { position: relative; }
.dn::after {
  content: ''; display: inline-block; margin-left: 5px;
  width: 4px; height: 4px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .45;
}
.dd {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 210px; padding: 10px;
  background: oklch(97.4% 0.008 82 / 0.97);
  border: 1px solid oklch(18% 0.012 60 / 0.08);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow: var(--sh-2); z-index: 400;
}
.dd li a {
  display: block; padding: 10px 16px;
  font-family: var(--sans); font-size: 13px;
  color: var(--shadow); border-radius: 12px;
  transition: background .2s, color .2s;
}
.dd li a:hover { background: oklch(66% 0.082 72 / 0.08); color: var(--gold); }
.dn:hover .dd, .dn:focus-within .dd { display: block; animation: ddIn .3s var(--e2); }
@keyframes ddIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

.hdr-actions { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.hdr-icon {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--shadow);
  transition: background .2s, color .2s;
}
.hdr-icon:hover { background: oklch(18% 0.012 60 / 0.05); color: var(--espresso); }

.hdr-cta {
  display: inline-flex; align-items: center; gap: 10px;
  height: 46px; padding: 0 6px 0 18px;
  background: var(--espresso); color: var(--ivory);
  border-radius: 999px;
  font-family: var(--sans); font-size: 12.5px; font-weight: 500;
  letter-spacing: .04em;
  transition: background .3s var(--e1), transform .5s var(--e2);
  margin-left: 8px; will-change: transform;
}
.hdr-cta:hover { background: var(--forest); }
.hdr-cta-icon {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: oklch(96.6% 0.010 82 / 0.12); border-radius: 50%;
}
.hdr-cta-count {
  position: absolute; top: -3px; right: -3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); color: var(--espresso);
  font-family: var(--mono); font-size: 9px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--espresso);
}

.hdr-burger { display: none; width: 42px; height: 42px; position: relative; }
.hdr-burger span {
  position: absolute; left: 11px; width: 20px; height: 1.2px;
  background: var(--espresso); border-radius: 2px;
  transition: transform .45s var(--e2), top .35s var(--e2), opacity .25s;
}
.hdr-burger span:nth-child(1) { top: 18px; }
.hdr-burger span:nth-child(2) { top: 24px; }
.hdr-burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hdr-burger.is-open span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

/* ── MOBILE OVERLAY MENU ─────────────────────────────────── */
.m-menu {
  position: fixed; inset: 0; z-index: 190;
  background: oklch(97.4% 0.008 82 / 0.97);
  backdrop-filter: blur(28px);
  padding: 120px 40px 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; pointer-events: none;
  transform: translateY(-14px);
  transition: opacity .4s var(--e1), transform .5s var(--e1);
}
.m-menu.is-open { opacity: 1; pointer-events: auto; transform: none; }
.m-menu-nav { display: flex; flex-direction: column; gap: 0; }
.m-menu-nav a {
  font-family: var(--serif);
  font-size: clamp(36px, 8.5vw, 60px);
  font-weight: 400; letter-spacing: -0.025em;
  color: var(--espresso); padding: 8px 0;
  opacity: 0; transform: translateY(22px);
  transition:
    opacity .55s var(--e2) calc(var(--i, 0) * 65ms + 100ms),
    transform .65s var(--e2) calc(var(--i, 0) * 65ms + 100ms),
    color .25s;
}
.m-menu.is-open .m-menu-nav a { opacity: 1; transform: none; }
.m-menu-nav a:hover { color: var(--gold); }
.m-menu-foot {
  display: flex; gap: 32px; padding-top: 24px;
  border-top: 1px solid oklch(18% 0.012 60 / 0.08);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
  opacity: 0; transform: translateY(20px);
  transition: opacity .55s var(--e2) calc(var(--i, 0) * 65ms + 100ms),
              transform .65s var(--e2) calc(var(--i, 0) * 65ms + 100ms);
}
.m-menu.is-open .m-menu-foot { opacity: 1; transform: none; }
.m-menu-foot a { transition: color .25s; }
.m-menu-foot a:hover { color: var(--gold); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100dvh;
  margin-top: -74px; /* tuck under sticky header */
  padding: 0 var(--gutter) clamp(72px, 10vw, 130px);
  overflow: hidden;
  display: flex; align-items: flex-end;
  isolation: isolate;
}

/* Ghost BLOOM watermark — third depth layer */
.hero-ghost-word {
  position: absolute;
  bottom: -4vw; left: -2vw; z-index: 1;
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(160px, 22vw, 340px);
  line-height: 1; letter-spacing: -0.05em;
  color: var(--gold);
  opacity: 0.042;
  transform: rotate(-6deg);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { position: absolute; inset: -10%; will-change: transform; }
.hero-img img { object-position: center 28%; }

/* Veil: committed strategy — image visible at 55-65%, warm shadow pools at corners */
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(162deg,
      oklch(18% 0.012 60 / 0.62) 0%,
      oklch(18% 0.012 60 / 0.15) 32%,
      oklch(12% 0.010 58 / 0.70) 100%
    ),
    radial-gradient(65% 50% at 14% 100%, oklch(55% 0.065 68 / 0.28), transparent 68%),
    radial-gradient(45% 35% at 88% 8%, oklch(84% 0.022 74 / 0.12), transparent 68%);
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  gap: 56px; align-items: end;
  width: 100%; max-width: var(--max);
  margin: 0 auto;
  padding-top: 160px;
}

.hero-text { color: var(--light); }
.hero-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 9.6vw, 152px);
  line-height: .88;
  letter-spacing: -0.04em;
  color: var(--light);
  margin: 24px 0 32px;
  text-wrap: balance;
  margin-left: clamp(-40px, -8vw, -12px);
}
.hero-headline em { color: var(--gold-hi); letter-spacing: -0.022em; }

/* Inline image pill — unexpected bohemian gesture */
.hero-headline-pill {
  display: inline-block;
  width: clamp(72px, 10vw, 168px);
  height: clamp(44px, 6vw, 90px);
  border-radius: 999px;
  background-size: cover; background-position: center;
  vertical-align: middle;
  margin: 0 16px;
  box-shadow: 0 12px 40px -8px oklch(12% 0.010 58 / 0.6),
              inset 0 0 0 1px oklch(96.6% 0.010 82 / 0.16);
  transform: translateY(-8px) rotate(-3deg);
  transition: transform .9s var(--e2);
}
.hero-text:hover .hero-headline-pill { transform: translateY(-8px) rotate(3deg) scale(1.05); }

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(15.5px, 1.4vw, 20px);
  font-style: italic; font-weight: 400;
  color: oklch(96.6% 0.010 82 / 0.72);
  line-height: 1.55; max-width: 50ch;
  text-wrap: pretty; margin-bottom: 40px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-credentials {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0;
  margin-top: 56px; padding-top: 26px;
  border-top: 1px solid oklch(96.6% 0.010 82 / 0.14);
  max-width: 680px;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .18em; text-transform: uppercase;
  color: oklch(96.6% 0.010 82 / 0.48);
}
.hero-cred-item { display: inline-flex; align-items: center; margin-right: 14px; }
.hero-cred-dot { color: var(--gold); margin-left: 14px; opacity: .7; }

.hero-aside { align-self: end; padding-bottom: 8px; }
.hero-spec {
  display: flex; flex-direction: column; gap: 7px;
  padding: 20px 24px;
  border: none;
  border-left: 2px solid var(--gold);
  border-radius: 0;
  background: transparent;
  max-width: 290px; margin-left: auto;
}
.hero-spec-label {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: .18em; text-transform: uppercase;
  color: oklch(66% 0.082 72 / 0.90);
}
.hero-spec-name {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--light);
}
.hero-spec-meta {
  font-family: var(--sans); font-size: 12px;
  color: oklch(96.6% 0.010 82 / 0.48);
  letter-spacing: .02em;
}

.hero-scroll-hint {
  position: absolute; bottom: 36px; right: var(--gutter); z-index: 3;
  display: inline-flex; flex-direction: column; align-items: center; gap: 14px;
  color: oklch(96.6% 0.010 82 / 0.45);
  font-family: var(--mono); font-size: 9px; letter-spacing: .24em; text-transform: uppercase;
  transition: color .3s;
}
.hero-scroll-hint:hover { color: var(--gold-hi); }
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold-hi) 50%, transparent);
  animation: scrollLine 2.6s var(--e2) infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(.15); transform-origin: top; }
  50%  { transform: scaleY(1);   transform-origin: top; }
  51%  { transform: scaleY(1);   transform-origin: bottom; }
  100% { transform: scaleY(.15); transform-origin: bottom; }
}

/* ── WELCOME ─────────────────────────────────────────────── */
.welcome {
  position: relative;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) var(--gutter);
  display: flex; flex-direction: column; align-items: flex-start; gap: 40px;
  overflow: hidden;
}

/* Gold hairline at top — section transition accent */
.welcome::before {
  content: '';
  position: absolute; top: 0; left: var(--gutter); right: var(--gutter);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
}

/* Ghost "20" pull-quote number — magazine editorial anchor */
.welcome-pullnum {
  position: absolute; left: calc(var(--gutter) - 2vw); top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(120px, 18vw, 280px);
  line-height: 1; letter-spacing: -0.06em;
  color: var(--gold); opacity: 0.08;
  pointer-events: none; user-select: none;
  z-index: 0;
}

.welcome-rule {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--muted) 50%, transparent);
  display: none;
}
.welcome-copy {
  position: relative; z-index: 1;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.32; letter-spacing: -0.018em;
  color: var(--forest); text-wrap: pretty;
  max-width: 55ch;
  padding-left: clamp(0px, 8vw, 120px);
}
.welcome-copy em { color: var(--gold); }
/* Word-by-word scrub animation spans */
.welcome-copy .word { display: inline-block; }

/* ── KINETIC TYPE MARQUEE ────────────────────────────────── */
.type-marquee {
  overflow: hidden; padding: 0;
  border-top: 1px solid oklch(18% 0.012 60 / 0.07);
  border-bottom: 1px solid oklch(18% 0.012 60 / 0.07);
  background: var(--parchment);
  position: relative;
  display: flex; flex-direction: column; gap: 0;
}
.type-marquee::before, .type-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 10vw; z-index: 2;
  pointer-events: none;
}
.type-marquee::before { left: 0; background: linear-gradient(90deg, var(--parchment), transparent); }
.type-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--parchment), transparent); }

/* Row 1 — large editorial serif, primary weight */
.type-marquee-track {
  display: flex; align-items: center; gap: 48px;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 400; letter-spacing: -0.03em;
  color: var(--espresso); line-height: 1;
  animation: tm-scroll 32s linear infinite;
  padding: 28px 0 12px;
  will-change: transform;
}
/* Row 2 — smaller mono label, counter-scroll */
.type-marquee-track--reverse {
  font-family: var(--mono);
  font-size: clamp(9px, 1vw, 12px);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 1;
  gap: 48px;
  animation: tm-scroll-rev 40s linear infinite;
  padding: 4px 0 22px;
}
.type-marquee:hover .type-marquee-track,
.type-marquee:hover .type-marquee-track--reverse {
  animation-play-state: paused;
}
.type-marquee-track > span { flex-shrink: 0; }
/* Row 1 separator — small gold star */
.tm-sep {
  color: var(--gold); opacity: .65;
  font-size: .45em; font-style: normal;
  display: inline-block; transform: translateY(-.1em);
  flex-shrink: 0;
}
/* Row 2 separator — tiny gold dot */
.type-marquee-track--reverse .tm-sep {
  font-size: 1em; opacity: .4;
  transform: none;
}
@keyframes tm-scroll     { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes tm-scroll-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ── BEST SELLERS ────────────────────────────────────────── */
.bs {
  padding: clamp(64px, 10vw, 130px) 0 clamp(64px, 10vw, 130px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.bs-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding-right: var(--gutter);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.bs-head-left { display: flex; flex-direction: column; gap: 18px; }
.bs-count {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
}
.bs-count span { font-size: 1.1em; color: var(--gold); }

.bs-viewall {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--shadow); padding-bottom: 3px;
  border-bottom: 1px solid oklch(18% 0.012 60 / 0.18);
  transition: color .3s var(--e1), border-color .3s var(--e1);
  flex-shrink: 0;
}
.bs-viewall:hover { color: var(--gold); border-color: var(--gold); }
.bs-viewall-icon { transition: transform .4s var(--e2); }
.bs-viewall:hover .bs-viewall-icon { transform: translateX(4px); }

/* Horizontal scroll rail — native scroll, no JS dependency */
.bs-rail {
  display: flex; gap: clamp(16px, 2vw, 24px);
  overflow-x: auto; overflow-y: visible;
  padding-right: var(--gutter);
  padding-bottom: 32px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.bs-rail::-webkit-scrollbar { display: none; }
.bs-rail:active { cursor: grabbing; }

/* Cards */
.bs-card {
  flex: 0 0 clamp(300px, 28vw, 420px);
  scroll-snap-align: start;
  display: flex; flex-direction: column;
}
.bs-card-inner { display: flex; flex-direction: column; gap: 22px; }
.bs-card-img {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 24px;
  overflow: hidden;
  background: var(--sand);
  isolation: isolate;
  transition: border-radius .8s var(--e2);
}
.bs-card-inner:hover .bs-card-img { border-radius: 32px; }
.bs-card-img > img { transition: transform 1.2s var(--e2), opacity .6s var(--e1); }
.bs-img-h {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .7s var(--e1), transform 1.2s var(--e2);
}
.bs-card-inner:hover .bs-card-img > img:first-child { transform: scale(1.05); opacity: 0; }
.bs-card-inner:hover .bs-img-h { opacity: 1; transform: scale(1.02); }

.bs-card-cta {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%) translateY(8px);
  opacity: 0;
  display: inline-flex; align-items: center; gap: 8px;
  background: oklch(97.4% 0.008 82 / 0.92);
  color: var(--espresso);
  font-family: var(--sans); font-size: 11.5px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 999px;
  backdrop-filter: blur(12px);
  transition: opacity .35s var(--e1), transform .45s var(--e2);
  white-space: nowrap;
}
.bs-card-inner:hover .bs-card-cta { opacity: 1; transform: translateX(-50%) translateY(0); }

.bs-card-info {
  display: flex; flex-direction: column; gap: 7px;
  padding: 0 4px;
}
.bs-card-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .20em; text-transform: uppercase;
  color: var(--gold);
}
.bs-card-name {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 2vw, 28px); color: var(--espresso);
  letter-spacing: -.016em; line-height: 1.1;
  transition: color .3s var(--e1);
}
.bs-card-inner:hover .bs-card-name { color: var(--gold-lo); }
.bs-card-price {
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  color: var(--muted); letter-spacing: .02em;
  margin-top: 2px;
}
.bs-card-price strong { color: var(--espresso); font-weight: 500; }

.bs-rail-end { flex: 0 0 4px; }

/* Dot indicator */
.bs-dots {
  display: flex; gap: 6px; align-items: center;
  padding-top: 8px; padding-left: 2px;
  margin-top: 4px;
}
.bs-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: oklch(18% 0.012 60 / 0.18);
  transition: width .4s var(--e1), background .3s;
}
.bs-dot.is-active { width: 20px; border-radius: 3px; background: var(--gold); }

/* ── OCCASIONS (occ2) — cinematic triptych ───────────────── */
.occ2 {
  padding: var(--gap) var(--gutter);
  max-width: var(--max); margin: 0 auto;
  position: relative;
}
.occ2::before {
  content: '';
  position: absolute; top: 0; left: var(--gutter); right: var(--gutter);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
}
.occ2-head {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.occ2-strip {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 14px;
  min-height: clamp(480px, 56vw, 720px);
}
.occ2-panel {
  position: relative; overflow: hidden;
  border-radius: 28px;
  isolation: isolate;
  background: var(--espresso);
}
.occ2-panel-img {
  position: absolute; inset: 0;
  transition: transform 1.4s var(--e2);
}
.occ2-panel:hover .occ2-panel-img { transform: scale(1.08); }
.occ2-panel-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top,
    oklch(12% 0.010 58 / 0.85) 0%,
    oklch(12% 0.010 58 / 0.22) 45%,
    transparent 100%);
  transition: opacity .4s;
}
.occ2-panel:hover .occ2-panel-veil { opacity: .9; }
.occ2-panel-body {
  position: absolute; inset: 0; z-index: 2;
  padding: 32px 32px 36px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--light);
}
.occ2-numeral {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(48px, 6vw, 80px);
  color: oklch(96.6% 0.010 82 / 0.18);
  line-height: 1; letter-spacing: -.04em;
  pointer-events: none;
}
.occ2-panel-text { display: flex; flex-direction: column; gap: 10px; }
.occ2-tagline {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: .2em; text-transform: uppercase;
  color: oklch(96.6% 0.010 82 / 0.50);
}
.occ2-name {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(24px, 2.8vw, 42px);
  letter-spacing: -0.02em; line-height: 1.05;
}
.occ2-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: oklch(96.6% 0.010 82 / 0.55);
  padding-top: 6px;
  border-top: 1px solid oklch(96.6% 0.010 82 / 0.16);
  margin-top: 6px;
  transition: color .3s, gap .35s var(--e1);
}
.occ2-panel:hover .occ2-cta { color: var(--gold-hi); gap: 12px; }

/* ── STUDIO (categories editorial masonry) ───────────────── */
.studio {
  padding: 0 var(--gutter) var(--gap);
  max-width: var(--max); margin: 0 auto;
}
.studio-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 12px;
}
.studio-tile {
  position: relative; overflow: hidden;
  border-radius: 24px; isolation: isolate;
  background: var(--dune);
}
.studio-tile--tall  { grid-column: span 4; grid-row: span 2; }
.studio-tile--wide  { grid-column: span 6; grid-row: span 1; }
.studio-tile--sm    { grid-column: span 4; grid-row: span 1; }
.studio-tile--wide2 { grid-column: span 6; grid-row: span 1; }

.studio-frame { position: absolute; inset: 0; }
.studio-frame img { transition: transform 1.3s var(--e2); }
.studio-tile:hover .studio-frame img { transform: scale(1.08); }
.studio-tile::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(220deg, oklch(12% 0.010 58 / 0) 30%, oklch(12% 0.010 58 / 0.60) 100%);
  transition: opacity .4s;
}

.studio-tile-foot {
  position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  color: var(--light);
}
.studio-rule { flex: 1; height: 1px; background: oklch(96.6% 0.010 82 / 0.30); }
.studio-cat-name {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -.015em; color: var(--light);
  white-space: nowrap;
}
.studio-cat-arrow {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--gold-hi);
  transition: transform .4s var(--e2);
}
.studio-tile:hover .studio-cat-arrow { transform: translate(4px, -4px); }

/* ── SERVICES ────────────────────────────────────────────── */
.services {
  background: linear-gradient(180deg, var(--parchment), var(--dune) 100%);
  padding: var(--gap) 0;
}
.services .sec-head { padding: 0 var(--gutter); max-width: var(--max); margin: 0 auto clamp(64px, 8vw, 100px); }

.srv {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(56px, 8vw, 108px);
  align-items: center;
  max-width: var(--max); margin: 0 auto;
  padding: 64px var(--gutter);
}
.srv--reverse { grid-template-columns: 1fr 1.1fr; }
.srv--reverse .srv-figure { order: 2; }

.srv-figure { position: relative; }
.srv-num {
  position: absolute; top: -48px; left: -16px; z-index: 3;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(120px, 20vw, 320px);
  color: var(--gold); opacity: .50;
  line-height: 1; letter-spacing: -.02em;
  pointer-events: none;
}
.srv-img {
  position: relative; aspect-ratio: 5/6;
  border-radius: 24px; overflow: hidden;
  background: var(--espresso); box-shadow: var(--sh-3);
}
.srv-img img { transition: transform 1.5s var(--e2); }
.srv:hover .srv-img img { transform: scale(1.04); }

.srv-text { display: flex; flex-direction: column; gap: 24px; }
.srv-title {
  font-family: var(--serif);
  font-weight: 400; font-style: italic;
  font-size: clamp(38px, 5vw, 72px);
  line-height: .97; letter-spacing: -.03em;
  color: var(--espresso); text-wrap: balance;
}
.srv-body {
  font-family: var(--serif); font-style: italic;
  font-size: 17px; font-weight: 400;
  color: var(--shadow); line-height: 1.6;
  max-width: 54ch; text-wrap: pretty;
}
.srv-list { display: flex; flex-direction: column; gap: 11px; padding-top: 6px; }
.srv-list li {
  position: relative; padding-left: 22px;
  font-family: var(--sans); font-size: 13.5px;
  color: var(--muted); letter-spacing: .01em;
}
.srv-list li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 10px; height: 1px; background: var(--gold);
}
/* Ghost service text band — scrolling texture between srv articles */
.srv-divider {
  overflow: hidden;
  padding: 0; margin: 0;
  height: clamp(60px, 8vw, 100px);
  position: relative;
  display: flex; align-items: center;
}
.srv-divider-track {
  display: flex; align-items: center; gap: 48px;
  white-space: nowrap;
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(28px, 5vw, 72px);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--espresso); opacity: 0.04;
  line-height: 1;
  animation: tm-scroll 28s linear infinite;
  flex-shrink: 0;
}

.srv-cta { text-align: center; padding: 48px var(--gutter) 0; }

/* ── CONCEPT — full-bleed editorial split dark ───────────── */
.concept {
  display: grid; grid-template-columns: 1.15fr 1fr;
  background: var(--espresso); color: var(--light);
  position: relative; min-height: 860px;
}
.concept::before {
  content: '';
  position: absolute; top: 0; left: var(--gutter); right: var(--gutter);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  z-index: 4;
}
.concept-img { position: relative; overflow: hidden; min-height: 520px; }
.concept-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--espresso) 100%);
}
.concept-text {
  display: flex; align-items: center;
  padding: 100px clamp(48px, 6.5vw, 100px);
}
.concept-pin {
  position: sticky; top: 100px;
  display: flex; flex-direction: column; gap: 30px;
  max-width: 500px;
}
.concept-quote {
  display: flex; flex-direction: column;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(72px, 10vw, 130px);
  line-height: .92; letter-spacing: -.042em;
  color: var(--light); margin: 12px 0;
}
.concept-quote em { color: var(--gold-hi); }
/* Sculptural indentation — alternate lines shift right */
.concept-quote .cq-l1 { padding-left: 0; }
.concept-quote .cq-l2 { padding-left: 60px; color: var(--gold-hi); font-style: italic; }
.concept-quote .cq-l3 { padding-left: 12px; }
.concept-quote .cq-l4 { padding-left: 60px; color: var(--gold-hi); font-style: italic; }
.concept-body {
  font-family: var(--serif); font-style: italic;
  font-size: 16.5px; font-weight: 400;
  color: oklch(96.6% 0.010 82 / 0.60);
  line-height: 1.62; max-width: 46ch;
}

/* ── STORES ──────────────────────────────────────────────── */
.stores { max-width: var(--max); margin: 0 auto; padding: var(--gap) var(--gutter); }
.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 32px);
  align-items: start;
}
.store { display: flex; flex-direction: column; gap: 20px; }
.store-img {
  aspect-ratio: 4/5; border-radius: 26px; overflow: hidden;
  background: var(--dune); box-shadow: var(--sh-1); position: relative;
}
.store-img img { transition: transform 1.3s var(--e2), filter .5s; }
.store:hover .store-img img { transform: scale(1.05); }
.store-info { display: flex; flex-direction: column; gap: 5px; padding: 0 4px; }
.store-num {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}
.store-name {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.2vw, 30px); color: var(--espresso);
  letter-spacing: -.012em; transition: color .25s;
}
.store:hover .store-name { color: var(--gold); }
.store-meta {
  font-family: var(--mono); font-size: 10.5px;
  color: var(--muted); letter-spacing: .05em;
}
.store-flagship-badge {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .20em; text-transform: uppercase;
  color: var(--espresso);
  background: var(--gold);
  padding: 5px 13px; border-radius: 999px;
  pointer-events: none;
}

/* ── CARE ────────────────────────────────────────────────── */
.care {
  position: relative; min-height: 78dvh; overflow: hidden;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 0 var(--gutter);
}
.care-img { position: absolute; inset: 0; }
.care-img img { object-position: center; transition: transform 1.6s var(--e2); }
.care:hover .care-img img { transform: scale(1.04); }
.care-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to left, oklch(12% 0.010 58 / 0.90) 0%, oklch(12% 0.010 58 / 0.44) 52%, oklch(12% 0.010 58 / 0.04) 100%),
    radial-gradient(55% 80% at 100% 50%, oklch(12% 0.010 58 / 0.38), transparent 72%);
}
.care-text {
  position: relative; z-index: 2;
  max-width: 500px; text-align: right;
  display: flex; flex-direction: column; align-items: flex-end; gap: 26px;
  padding: 88px 0; color: var(--light);
}
.care-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.8vw, 70px);
  line-height: 1.02; letter-spacing: -.028em;
  color: var(--light); text-wrap: balance;
}
.care-title em { color: var(--gold-hi); }
.care-body {
  font-family: var(--serif); font-style: italic;
  font-size: 16.5px; font-weight: 400;
  color: oklch(96.6% 0.010 82 / 0.68);
  line-height: 1.6; max-width: 46ch; text-wrap: pretty;
}

/* ── THANK YOU ───────────────────────────────────────────── */
.ty {
  position: relative; min-height: 88dvh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ty-img { position: absolute; inset: 0; }
.ty-img img { object-position: center; }
.ty-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, oklch(12% 0.010 58 / 0.52), oklch(12% 0.010 58 / 0.80)),
    radial-gradient(65% 65% at 50% 50%, transparent 0%, oklch(12% 0.010 58 / 0.55) 80%);
}
.ty-body {
  position: relative; z-index: 2; text-align: center;
  max-width: 660px; padding: 0 var(--gutter);
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  color: var(--light);
}
.ty-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; align-items: center;
}
.ty-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(64px, 10vw, 148px);
  line-height: .92; letter-spacing: -.04em;
  color: var(--light); text-wrap: balance;
  margin: 8px 0;
}
.ty-title em { color: var(--gold-hi); }
.ty-text {
  font-family: var(--serif); font-style: italic;
  font-size: 17px; font-weight: 400;
  color: oklch(96.6% 0.010 82 / 0.70);
  line-height: 1.6; max-width: 52ch; text-wrap: pretty;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.ftr {
  background: var(--forest); color: oklch(96.6% 0.010 82 / 0.50);
  position: relative; overflow: visible;
}
.ftr-hero {
  padding: 88px var(--gutter) 20px;
  max-width: var(--max); margin: 0 auto;
  overflow: visible;
}
.ftr-wordmark {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(100px, 20vw, 280px);
  line-height: .88; letter-spacing: -.05em;
  color: oklch(96.6% 0.010 82 / 0.13);
  user-select: none; pointer-events: none;
  margin-top: -40px;
  overflow: visible;
}

.ftr-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding: 64px var(--gutter) 80px;
  max-width: var(--max); margin: 0 auto;
  border-top: 1px solid oklch(96.6% 0.010 82 / 0.07);
}

.ftr-col--brand { grid-column: span 1; }
.ftr-tag {
  font-family: var(--serif); font-style: italic;
  font-size: 20px; line-height: 1.35; letter-spacing: -.012em;
  color: oklch(96.6% 0.010 82 / 0.70); margin-bottom: 28px;
}
.ftr-form-lbl {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  color: oklch(96.6% 0.010 82 / 0.38);
  display: block; margin-bottom: 12px;
}
.ftr-form-row {
  display: flex; gap: 0;
  border-bottom: 1px solid oklch(96.6% 0.010 82 / 0.20);
  padding-bottom: 2px;
  transition: border-color .3s;
}
.ftr-form-row:focus-within { border-color: var(--gold); }
.ftr-form-row input {
  flex: 1; background: none; border: 0; outline: 0;
  font-family: var(--sans); font-size: 13px;
  color: oklch(96.6% 0.010 82 / 0.80);
  padding: 4px 0;
}
.ftr-form-row input::placeholder { color: oklch(96.6% 0.010 82 / 0.28); }
.ftr-form-row button {
  color: oklch(96.6% 0.010 82 / 0.45);
  transition: color .25s;
  padding: 4px 0 4px 8px;
}
.ftr-form-row button:hover { color: var(--gold); }

.ftr-h {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: oklch(96.6% 0.010 82 / 0.35);
  margin-bottom: 20px;
}
.ftr-nav { display: flex; flex-direction: column; gap: 10px; }
.ftr-nav a {
  font-family: var(--sans); font-size: 13.5px;
  color: oklch(96.6% 0.010 82 / 0.55);
  transition: color .25s;
}
.ftr-nav a:hover { color: oklch(96.6% 0.010 82 / 0.90); }
.ftr-nav--meta a { font-size: 12.5px; }

.ftr-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 24px var(--gutter);
  border-top: 1px solid oklch(96.6% 0.010 82 / 0.07);
  max-width: var(--max); margin: 0 auto;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  color: oklch(96.6% 0.010 82 / 0.28);
}
.ftr-policies { display: flex; gap: 24px; flex-wrap: wrap; }
.ftr-policies a { transition: color .25s; }
.ftr-policies a:hover { color: oklch(96.6% 0.010 82 / 0.65); }


/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .occ2-strip { grid-template-columns: 1.6fr 1fr; }
  .occ2-strip .occ2-panel:last-child { display: none; }
  .stores-grid { grid-template-columns: repeat(3, 1fr); }
  .ftr-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .ftr-col--brand { grid-column: span 3; }
}

@media (max-width: 860px) {
  :root { --gutter: 24px; }

  /* Overdrive elements — mobile adjustments */
  .hero-ghost-word { font-size: clamp(100px, 38vw, 200px); bottom: 0; left: -4vw; }
  .hero-headline { margin-left: 0; } /* restore flush on mobile */
  .welcome-pullnum { font-size: clamp(80px, 22vw, 160px); left: 0; opacity: 0.06; }
  .welcome-copy { padding-left: 0; }
  .srv-num { font-size: clamp(80px, 18vw, 180px); }

  .hdr-nav { display: none; }
  .hdr-icon { display: none; }
  .hdr-burger { display: flex; align-items: center; justify-content: center; }

  .hero-grid { grid-template-columns: 1fr; gap: 0; padding-top: 140px; }
  .hero-aside { display: none; }
  .hero-meta { gap: 28px; }

  .occ2-strip { grid-template-columns: 1fr; min-height: auto; }
  .occ2-strip .occ2-panel:not(:first-child) { display: none; }
  .occ2-strip .occ2-panel:first-child { min-height: 64vw; }

  .studio-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .studio-tile--tall  { grid-column: 1 / -1; }
  .studio-tile--wide  { grid-column: 1 / -1; }
  .studio-tile--wide2 { grid-column: 1 / -1; }
  .studio-tile--sm    { grid-column: span 1; }

  .srv { grid-template-columns: 1fr; gap: 40px; }
  .srv--reverse .srv-figure { order: 0; }

  .concept { grid-template-columns: 1fr; }
  .concept-img { display: none; }
  .concept-text { padding: 80px var(--gutter); }

  .stores-grid { grid-template-columns: 1fr; }
  .stores-grid .store:not(:first-child) { display: none; }

  .ftr-top { grid-template-columns: 1fr 1fr; }
  .ftr-col--brand { grid-column: span 2; }

  .wa-fab { bottom: 24px; left: 20px; }
}

@media (max-width: 520px) {
  .studio-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .ftr-top { grid-template-columns: 1fr; }
  .ftr-col--brand { grid-column: span 1; }
  .type-marquee-track { font-size: clamp(28px, 7.5vw, 48px); }
}

/* ── ACCESSIBILITY / MOTION REDUCTION ───────────────────── */
@media (prefers-reduced-motion: reduce) {
  .grain { animation: none !important; }
  .ambient { animation: none !important; }
  .ann-track { animation: none !important; }
  .type-marquee-track { animation: none !important; }
  .hero-scroll-line { animation: none !important; }
}

/* ── FOCUS VISIBLE ───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
