/* ============================================================
   LUZ — Núria Boladeres
   Plaster base. Cool shadows. Gold as captured highlight, not brand fill.
   Light is the protagonist, made visible through real materials.
   ============================================================ */

:root {
  /* Warmer optical white. Lighter, less chromatic than before but still warm.
     Read as a sunlit interior wall, not concrete, not cream. */
  --bg-plaster: oklch(0.974 0.014 74);   /* page default */
  --bg-pearl:   oklch(0.948 0.024 65);
  --bg-bone:    oklch(0.895 0.034 58);
  --bg-shadow:  oklch(0.835 0.036 50);

  /* Ink, warm */
  --ink:        oklch(0.22 0.014 50);
  --ink-soft:   oklch(0.42 0.012 50);
  --ink-quiet:  oklch(0.60 0.010 55);

  /* Gold, captured highlight. Pulled back from brief literal but still gold. */
  --gold:       oklch(0.78 0.090 72);
  --gold-soft:  oklch(0.90 0.055 75);
  --gold-deep:  oklch(0.58 0.105 58);

  /* Cool shadow cast — the thing that makes a warm wall feel real */
  --shadow:     oklch(0.78 0.012 240);

  /* Default page background */
  --page-bg:    var(--bg-plaster);

  /* Seam intensity (0 - 1) */
  --seam-alpha: 0.45;
  --seam-width: 1.3;

  /* Type */
  --font-serif: "Newsreader", "Cambria", Georgia, serif;
  --font-mono:  "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Grid */
  --gutter:     clamp(20px, 4vw, 56px);
  --max:        1440px;

  /* Motion */
  --ease-out-soft: cubic-bezier(0.16, 0.84, 0.3, 1);
}

/* Background warmth tweak overrides */
[data-warmth="plaster"] { --page-bg: var(--bg-plaster); }
[data-warmth="pearl"]   { --page-bg: var(--bg-pearl); }
[data-warmth="bone"]    { --page-bg: var(--bg-bone); }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-serif);
  font-weight: 360;
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 18;
  color: var(--ink);
  background: var(--page-bg);
  line-height: 1.55;
  font-size: clamp(17px, 1.05vw + 0.6rem, 19px);
  letter-spacing: 0.005em;
  transition: background-color 1.2s var(--ease-out-soft);
  overflow-x: hidden;
}

/* ---------- Atmosphere: paper grain + faint blush, no orange glows ---------- */
.luz {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
/* Single warm captured-sunlight glow upper-right, a deeper warm pool low-left.
   No cool radials washing the surface. Cool only enters as cast shadows. */
.luz::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(58vmax 50vmax at 92% 6%, rgba(255, 232, 198, 0.55), transparent 58%),
    radial-gradient(48vmax 42vmax at 4% 96%, rgba(245, 212, 170, 0.32), transparent 65%);
  filter: blur(28px);
  animation: drift-a 73s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
/* Paper grain. Much lighter now — atmosphere, not noise. */
.luz::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.10  0 0 0 0 0.08  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 280px 280px;
  opacity: 0.28;
  mix-blend-mode: multiply;
}
@keyframes drift-a {
  0%   { transform: translate3d(0, 0, 0) scale(1.00); opacity: 0.85; }
  41%  { transform: translate3d(-1.6%, 1.2%, 0) scale(1.03); opacity: 1; }
  72%  { transform: translate3d(1.2%, -0.8%, 0) scale(1.01); opacity: 0.78; }
  100% { transform: translate3d(2.0%, 1.8%, 0) scale(1.04); opacity: 0.92; }
}

main, header.site, footer.site { position: relative; z-index: 1; }

/* ---------- Window-cast shadow: the signature material moment ---------- */
/* A real-feeling shadow of a window mullion cast across a section.
   Multiple soft linear gradients angled, blurred, drifting slow. */
.window-shadow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.window-shadow::before, .window-shadow::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    linear-gradient(108deg,
      transparent 0%,
      transparent 18%,
      rgba(70, 72, 95, 0.16) 22%,
      rgba(70, 72, 95, 0.26) 32%,
      transparent 38%,
      transparent 46%,
      rgba(70, 72, 95, 0.13) 50%,
      rgba(70, 72, 95, 0.22) 60%,
      transparent 68%);
  filter: blur(28px);
  animation: shadow-drift 89s ease-in-out infinite alternate;
}
.window-shadow::after {
  background:
    linear-gradient(112deg,
      transparent 0%,
      transparent 42%,
      rgba(55, 65, 88, 0.10) 48%,
      rgba(55, 65, 88, 0.16) 56%,
      transparent 64%);
  filter: blur(34px);
  animation: shadow-drift 127s ease-in-out infinite alternate-reverse;
}
@keyframes shadow-drift {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(2.2%, 1.4%, 0); }
}

/* Soft silk drape, used behind hero portrait area */
.silk-drape {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.silk-drape::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    /* fold highlights */
    linear-gradient(82deg,
      transparent 0%, transparent 12%,
      rgba(255, 250, 240, 0.45) 18%, rgba(255, 250, 240, 0.20) 22%,
      transparent 28%, transparent 38%,
      rgba(255, 245, 230, 0.30) 44%, transparent 52%,
      transparent 64%,
      rgba(255, 248, 235, 0.35) 72%, transparent 80%),
    /* fold shadows */
    linear-gradient(95deg,
      transparent 0%, transparent 24%,
      rgba(180, 165, 145, 0.10) 32%, transparent 40%,
      transparent 56%,
      rgba(180, 165, 145, 0.08) 64%, transparent 72%);
  filter: blur(36px);
  animation: shadow-drift 113s ease-in-out infinite alternate;
}

/* ---------- Typography ---------- */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  display: inline-block;
}
.eyebrow .dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-deep);
  margin: 0 0.7em;
  vertical-align: middle;
  transform: translateY(-1px);
  opacity: 0.7;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 280;
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin: 0;
  text-wrap: balance;
  font-variation-settings: "opsz" 36;
}

.display-1 {
  font-size: clamp(56px, 9.4vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.032em;
  font-weight: 240;
  font-variation-settings: "opsz" 72;
}
.display-2 {
  font-size: clamp(40px, 5.6vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.024em;
  font-weight: 260;
  font-variation-settings: "opsz" 60;
}
.display-3 {
  font-size: clamp(30px, 3.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  font-weight: 300;
}

.lede {
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.45;
  font-weight: 340;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.body p {
  font-size: clamp(17px, 1vw + 0.5rem, 19.5px);
  line-height: 1.65;
  color: var(--ink-soft);
  text-wrap: pretty;
}

em, .italic {
  font-style: italic;
  font-variation-settings: "opsz" 18;
}

.gold-word {
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 320;
  position: relative;
  white-space: nowrap;
}

/* ---------- Layout shell ---------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }

/* ---------- Header ---------- */
header.site {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px var(--gutter);
  transition:
    padding 0.55s var(--ease-out-soft),
    background-color 0.55s var(--ease-out-soft),
    box-shadow 0.55s var(--ease-out-soft),
    backdrop-filter 0.55s var(--ease-out-soft);
}
header.site.scrolled {
  padding: 12px var(--gutter);
  background: color-mix(in oklab, var(--page-bg) 84%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
          backdrop-filter: blur(16px) saturate(1.1);
  box-shadow: 0 1px 0 rgba(33, 25, 19, 0.07), 0 16px 40px -30px rgba(33, 25, 19, 0.45);
}
header.site .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 44px);
}
.lockup {
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.01em;
  font-weight: 380;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.lockup .glyph {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-soft) 0%, var(--gold) 65%, var(--gold-deep) 100%);
  box-shadow: 0 0 18px rgba(217, 178, 130, 0.30);
  opacity: 0.92;
}
.lockup .name { font-style: italic; white-space: nowrap; }

/* Section nav — centered, quiet, gold underline on hover / active */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 38px);
}
.nav-links a {
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 0;
  white-space: nowrap;
  transition: color 0.4s var(--ease-out-soft);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-soft);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

nav.utility { display: flex; align-items: center; gap: 24px; flex: none; }

/* Anchored sections clear the fixed nav when jumped to */
#top, #approach, #where, #about, #fees, #booking { scroll-margin-top: 86px; }

@media (max-width: 960px) {
  .nav-links { display: none; }
}

.lang {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  gap: 8px;
}
.lang button { padding: 2px 4px; transition: color 0.4s var(--ease-out-soft); }
.lang button.active { color: var(--ink); }
.lang .sep { opacity: 0.4; }

.book {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 10px 0 11px;
}
.book::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-soft);
}
.book:hover::after { transform: scaleX(0.4); }

/* ---------- Hero ---------- */
/* Full-bleed image hero. Núria right (image flipped), text overlays left over curtains. */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: block;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  transform: scaleX(-1);
  z-index: 1;
  /* Subtle warm tone wash from the image. No filter that flattens it. */
}

/* Soft white fade from left edge so the curtain area accepts the text
   without losing the photographic feel. */
.hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(247, 242, 235, 0.78) 0%,
      rgba(247, 242, 235, 0.55) 18%,
      rgba(247, 242, 235, 0.20) 36%,
      rgba(247, 242, 235, 0.04) 50%,
      transparent 62%),
    linear-gradient(to bottom,
      rgba(247, 242, 235, 0.20) 0%,
      transparent 22%,
      transparent 78%,
      rgba(247, 242, 235, 0.10) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px var(--gutter) 100px;
  max-width: 720px;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.hero-content > .eyebrow {
  /* pinned top, with dead space below toward the headline */
  margin-bottom: 0;
}

/* Cinematic headline: the supporting line, word-revealed.
   margin-top: auto pushes it to the bottom of the flex column so the
   eyebrow can breathe at the top. */
.hero-line {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.4vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  font-weight: 260;
  font-variation-settings: "opsz" 60;
  margin: auto 0 56px;
  text-wrap: balance;
  color: var(--ink);
}
.hero-line em {
  font-style: italic;
  color: var(--ink);
  font-weight: 240;
  transition: color 0.6s var(--ease-out-soft);
}

/* Gold flicker that runs through the italic words, sequentially. */
.js .hero-line.in em {
  animation: em-flicker 9s ease-in-out infinite;
}
.js .hero-line.in em:nth-of-type(1) { animation-delay: 2.6s; }
.js .hero-line.in em:nth-of-type(2) { animation-delay: 3.4s; }
.js .hero-line.in em:nth-of-type(3) { animation-delay: 4.2s; }

@keyframes em-flicker {
  0%, 100%   { color: var(--ink); }
  6%         { color: var(--gold-deep); }
  9%         { color: var(--ink); }
  12%        { color: var(--gold-deep); }
  17%        { color: var(--ink); }
  50%        { color: var(--ink); }
}

/* Word-by-word reveal, soft cinematic stagger. */
.reveal-words { display: block; }
.js .reveal-words > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  filter: blur(7px);
  transition:
    opacity 1.4s var(--ease-out-soft),
    transform 1.4s var(--ease-out-soft),
    filter 1.4s var(--ease-out-soft);
}
.js .reveal-words.in > span { opacity: 1; transform: none; filter: blur(0); }
.js .reveal-words.in > span:nth-child(1)  { transition-delay: 0ms; }
.js .reveal-words.in > span:nth-child(2)  { transition-delay: 90ms; }
.js .reveal-words.in > span:nth-child(3)  { transition-delay: 170ms; }
.js .reveal-words.in > span:nth-child(4)  { transition-delay: 260ms; }
.js .reveal-words.in > span:nth-child(5)  { transition-delay: 340ms; }
.js .reveal-words.in > span:nth-child(6)  { transition-delay: 430ms; }
.js .reveal-words.in > span:nth-child(7)  { transition-delay: 510ms; }
.js .reveal-words.in > span:nth-child(8)  { transition-delay: 590ms; }
.js .reveal-words.in > span:nth-child(9)  { transition-delay: 690ms; }
.js .reveal-words.in > span:nth-child(10) { transition-delay: 800ms; }
.js .reveal-words.in > span:nth-child(11) { transition-delay: 890ms; }
.js .reveal-words.in > span:nth-child(12) { transition-delay: 990ms; }
.js .reveal-words.in > span:nth-child(13) { transition-delay: 1090ms; }

/* Small italic signature, replaces the giant name H1. */
.hero-signature {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 44px;
}
.hero-signature .line-dash {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-deep);
  opacity: 0.7;
}

/* Inline-text CTA, no pill. Underline via text-decoration so it auto-fits
   the visible text and respects [lang-show] hide rules. */
.cta-text {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(18px, 1vw + 0.6rem, 22px);
  font-style: italic;
  color: var(--ink);
  font-weight: 320;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  transition: text-decoration-color 0.5s var(--ease-out-soft), text-decoration-thickness 0.5s var(--ease-out-soft);
}
.cta-text:hover {
  text-decoration-color: var(--gold-deep);
  text-decoration-thickness: 2px;
}

.hero .right {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: stretch;
  z-index: 2;
}

/* Hero portrait: full image, hard edge. No dissolve. */
.hero-portrait {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 78vh;
}

/* CTA */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--ink);
  padding: 18px 28px 18px 30px;
  border: 1px solid rgba(33, 25, 19, 0.20);
  border-radius: 999px;
  background: transparent;
  transition: border-color 0.7s var(--ease-out-soft), background 0.7s var(--ease-out-soft), transform 0.6s var(--ease-out-soft);
  position: relative;
}
.cta:hover {
  border-color: rgba(33, 25, 19, 0.42);
  background: rgba(255, 250, 240, 0.35);
  transform: translateY(-1px);
}
.cta .arrow {
  width: 22px; height: 1px;
  background: var(--ink);
  position: relative;
  transition: width 0.6s var(--ease-out-soft);
}
.cta .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 7px; height: 7px;
  border-right: 1px solid var(--ink);
  border-top: 1px solid var(--ink);
  transform: translateY(-50%) rotate(45deg);
}
.cta:hover .arrow { width: 32px; }

.hero-meta {
  position: absolute;
  bottom: 60px;
  right: var(--gutter);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  text-align: right;
  z-index: 4;
  line-height: 1.8;
}
.hero-meta .marker { color: var(--gold-deep); }

/* ---------- Image slot placeholder ---------- */
/* Warm bone material, with subtle catch-of-light shimmer. */
.slot {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, oklch(0.93 0.022 68), oklch(0.88 0.030 58)),
    var(--bg-bone);
  border: 1px solid rgba(33, 25, 19, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.slot::before {
  /* Faint material shimmer to evoke the references */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg,
      transparent 0%, transparent 30%,
      rgba(255, 250, 240, 0.40) 38%, rgba(255, 250, 240, 0.18) 44%,
      transparent 52%, transparent 70%,
      rgba(255, 248, 235, 0.28) 76%, transparent 84%);
  filter: blur(20px);
  pointer-events: none;
}
.slot::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.14  0 0 0 0 0.12  0 0 0 0 0.10  0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  mix-blend-mode: multiply;
  opacity: 0.6;
  pointer-events: none;
}
.slot.has-image { background: none; border: 0; }
.slot.has-image::before, .slot.has-image::after { display: none; }
.slot img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.slot .label {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  text-align: center;
  padding: 24px;
  max-width: 70%;
}
.slot .label small {
  display: block;
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 10px;
  opacity: 0.7;
  margin-top: 8px;
  font-style: italic;
  font-family: var(--font-serif);
}

/* ---------- Statement ---------- */
.statement {
  padding: clamp(120px, 14vw, 220px) var(--gutter) clamp(100px, 12vw, 200px);
  position: relative;
  overflow: hidden;
}
.statement .inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.statement .eyebrow { margin-bottom: 64px; }
.statement-body {
  font-size: clamp(34px, 4.2vw, 72px);
  line-height: 1.15;
  letter-spacing: -0.022em;
  font-weight: 280;
  color: var(--ink);
  font-variation-settings: "opsz" 60;
  text-wrap: balance;
}
/* Quiet "continue" cue that fades in once the line has finished revealing,
   telegraphing the calm glide into the wave section below. */
.statement-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(30px, 5.5vh, 74px);
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  transition: opacity 1.8s var(--ease-out-soft);
  pointer-events: none;
}
.statement-cue.on { opacity: 1; }
.statement-cue .cue-line {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--gold-deep) 78%);
  transform-origin: top center;
  animation: cueDrift 3s var(--ease-out-soft) infinite;
}
@keyframes cueDrift {
  0%   { transform: scaleY(0.28); opacity: 0.25; }
  50%  { transform: scaleY(1);    opacity: 0.85; }
  100% { transform: scaleY(0.28); opacity: 0.25; }
}

/* ---------- Light moment ---------- */
.light-moment {
  position: relative;
  padding: 0;
  margin-top: -8vh;
  background: var(--page-bg);
  transition: background-color 1s var(--ease-out-soft);
  overflow: hidden;
}
/* Full-bleed video backdrop for the breath moment */
.breath-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--page-bg);
}
.breath-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.breath-scrim {
  position: absolute;
  inset: 0;
  background:
    /* top: long, many-stop dissolve so the beach emerges with no visible seam */
    linear-gradient(to bottom,
      var(--page-bg) 0%,
      var(--page-bg) 6%,
      color-mix(in oklab, var(--page-bg) 92%, transparent) 12%,
      color-mix(in oklab, var(--page-bg) 80%, transparent) 18%,
      color-mix(in oklab, var(--page-bg) 64%, transparent) 25%,
      color-mix(in oklab, var(--page-bg) 46%, transparent) 33%,
      color-mix(in oklab, var(--page-bg) 28%, transparent) 42%,
      color-mix(in oklab, var(--page-bg) 14%, transparent) 52%,
      transparent 64%),
    /* bottom-left: keep the overlaid text legible */
    linear-gradient(105deg, rgba(20, 24, 30, 0.5) 0%, rgba(20, 24, 30, 0.22) 36%, rgba(20, 24, 30, 0) 66%),
    linear-gradient(0deg, rgba(20, 24, 30, 0.34) 0%, rgba(20, 24, 30, 0) 42%);
}
.light-moment .grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  min-height: 92vh;
  position: relative;
  z-index: 2;
}
.light-moment .text {
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 100px);
  max-width: 720px;
}
.light-moment .text p {
  font-size: clamp(26px, 2.8vw, 44px);
  line-height: 1.25;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.012em;
  margin: 0;
  text-wrap: balance;
}
.light-moment .text .eyebrow { margin-bottom: 40px; color: rgba(255, 255, 255, 0.8); }
.light-moment .breath-line { color: #fff; text-shadow: 0 1px 26px rgba(20, 24, 30, 0.4); }
.light-moment .slot { height: 100%; min-height: 70vh; }

/* Changing line — stacked, cross-fade in sync with the image deck */
.breath-lines {
  position: relative;
  display: grid;
}
.breath-line {
  grid-area: 1 / 1;
  margin: 0;
  font-size: clamp(26px, 2.8vw, 44px);
  line-height: 1.25;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
  opacity: 0;
  transform: translateY(10px);
  filter: blur(5px);
  transition: opacity 1.4s var(--ease-out-soft), transform 1.4s var(--ease-out-soft), filter 1.4s var(--ease-out-soft);
  pointer-events: none;
}
.breath-line.is-active {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Static signature quote over the video */
.breath-quote {
  margin: 0;
  border: 0;
  padding: 0;
}
.breath-quote p {
  margin: 0;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.3;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.012em;
  color: #fff;
  text-shadow: 0 1px 26px rgba(20, 24, 30, 0.4);
  text-wrap: balance;
}
.breath-quote-mark {
  display: block;
  width: 38px;
  height: 1px;
  margin-top: clamp(28px, 3vw, 40px);
  background: rgba(255, 255, 255, 0.6);
}

/* Image deck — cross-fading frames with a slow ken-burns drift */
.breath-deck {
  position: relative;
  height: 100%;
  min-height: 70vh;
  overflow: hidden;
  background: var(--bg-bone);
}
.breath-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s var(--ease-out-soft);
  will-change: opacity;
}
.breath-frame.is-active { opacity: 1; }
.breath-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  will-change: transform;
}
.breath-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
}
/* Only the active frame drifts, so motion is always present but singular */
@media (prefers-reduced-motion: no-preference) {
  .breath-frame.is-active img { animation: breath-drift 9s ease-out forwards; }
}
@keyframes breath-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.11) translate3d(-1.2%, -1.5%, 0); }
}

/* ---------- Approach ---------- */
.approach {
  padding: clamp(100px, 12vw, 180px) 0 0;
  position: relative;
  overflow: hidden;
}
.approach-intro {
  max-width: 760px;
  margin: 0 auto clamp(56px, 6vw, 96px) 0;
  position: relative;
  z-index: 2;
}
.approach-intro .eyebrow { margin-bottom: 28px; }
.approach-intro h2 { margin-bottom: 36px; }
.approach-lede p {
  font-size: clamp(19px, 1.15vw + 0.5rem, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
  margin: 0;
}

/* Stage: full-bleed, edge-to-edge. */
.approach-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 11;
  min-height: clamp(620px, 82vh, 1080px);
  overflow: hidden;
  background: var(--bg-bone);
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.approach-stage-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  transform-origin: 50% 50%;
  will-change: transform;
  transition: transform 1.6s var(--ease-out-soft);
}
.approach-stage-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    /* deeper darken at the bottom to seat the tile banner */
    linear-gradient(to bottom,
      transparent 50%,
      rgba(33, 25, 19, 0.10) 75%,
      rgba(33, 25, 19, 0.30) 100%),
    radial-gradient(120% 80% at 50% 40%, transparent 55%, rgba(33, 25, 19, 0.10) 100%);
}

/* ---- Approach timeline: kintsugi gold thread + glass cards ---- */
.approach-timeline {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 clamp(20px, 5vw, 86px) clamp(36px, 6vh, 86px);
}
.approach-rail {
  position: relative;
}

/* Kintsugi thread — a quiet gold line through the middle of the card row,
   tucked behind the glass so it shows softly through and bridges the gaps */
.kintsugi {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: 44px;
  transform: translateY(-50%);
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}
.kintsugi path { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.kintsugi-core {
  stroke: url(#kintsugiGrad);
  stroke-width: 1;
  opacity: 0.5;
  filter: drop-shadow(0 0 1px rgba(227, 197, 133, 0.35));
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
[data-approach-timeline].drawn .kintsugi-core {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 2.2s var(--ease-out-soft);
}

/* Three glass cards, lifted above the thread */
.approach-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 28px);
}
.glass-card {
  position: relative;
  cursor: pointer;
  outline: none;
  border-radius: 18px;
}
.glass-card:focus-visible { box-shadow: 0 0 0 2px rgba(236, 206, 134, 0.8); }
.gc-inner {
  position: relative;
  overflow: hidden;
  padding: 28px clamp(20px, 2.2vw, 34px) 26px;
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(255, 251, 244, 0.62), rgba(255, 247, 237, 0.34));
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
          backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 22px 50px -26px rgba(33, 25, 19, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition:
    transform 0.5s var(--ease-out-soft),
    box-shadow 0.5s var(--ease-out-soft),
    background 0.5s var(--ease-out-soft);
}
.glass-card:hover .gc-inner,
.glass-card:focus-visible .gc-inner {
  background: linear-gradient(155deg, rgba(255, 252, 246, 0.72), rgba(255, 248, 239, 0.44));
  box-shadow:
    0 38px 80px -30px rgba(33, 25, 19, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 0 1px rgba(236, 206, 134, 0.55);
}
/* cursor-tracking specular sheen */
.gc-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s var(--ease-out-soft);
  background: radial-gradient(240px 240px at var(--mx, 50%) var(--my, 0%),
    rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 60%);
  mix-blend-mode: screen;
}
.glass-card:hover .gc-sheen,
.glass-card:focus-visible .gc-sheen { opacity: 1; }

.gc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.gc-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.20em;
  color: var(--gold-deep);
}
.gc-dash { height: 1px; width: 34px; background: var(--gold-deep); opacity: 0.55; }
.gc-title {
  font-family: var(--font-serif);
  font-size: clamp(21px, 1.6vw, 29px);
  font-style: italic;
  font-weight: 320;
  letter-spacing: -0.012em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 14px;
  font-variation-settings: "opsz" 36;
}
.gc-copy p {
  font-size: clamp(14.5px, 0.7vw + 0.4rem, 15.5px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  text-wrap: pretty;
}
.gc-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  white-space: nowrap;
}
.gc-more-arr { transition: transform 0.4s var(--ease-out-soft); }
.glass-card:hover .gc-more-arr,
.glass-card:focus-visible .gc-more-arr { transform: translateX(5px); }

/* ---- Approach glassmorphism detail modal ---- */
.approach-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 46px);
}
.approach-modal.open { display: flex; }
.approach-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(22, 17, 12, 0.52);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-soft);
}
.approach-modal.open .approach-modal-bg { opacity: 1; }

.glass-modal {
  position: relative;
  width: min(620px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: clamp(40px, 5vw, 62px) clamp(30px, 4vw, 58px) clamp(32px, 4vw, 46px);
  border-radius: 26px;
  background: linear-gradient(155deg, rgba(255, 252, 247, 0.17), rgba(255, 250, 242, 0.07));
  -webkit-backdrop-filter: blur(30px) saturate(1.5);
          backdrop-filter: blur(30px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  color: oklch(0.97 0.012 80);
  opacity: 1;
  animation: gmPop 0.6s var(--ease-out-soft);
}
@keyframes gmPop {
  from { opacity: 0; transform: translateY(22px) scale(0.95); }
  to   { opacity: 1; transform: none; }
}
/* vertical kintsugi accent down the left edge */
.gm-thread {
  position: absolute;
  left: 0;
  top: 16%;
  bottom: 16%;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(to bottom, transparent, #ecce86 22%, #b8884a 78%, transparent);
  box-shadow: 0 0 12px rgba(236, 206, 134, 0.6);
}
.gm-x {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: oklch(0.97 0.012 80);
  font-size: 20px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.3s, border-color 0.3s;
}
.gm-x:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.6); }
.gm-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 320;
  line-height: 1;
  color: #ecce86;
  margin-bottom: 14px;
}
.gm-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 0 0 12px;
  color: oklch(0.98 0.012 82);
  text-wrap: pretty;
}
.gm-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(236, 206, 134, 0.92);
  margin: 0 0 22px;
}
.gm-lead {
  font-size: clamp(16.5px, 1vw + 0.4rem, 19px);
  line-height: 1.5;
  color: oklch(0.95 0.012 82);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.gm-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.gm-points li {
  position: relative;
  padding-left: 26px;
  font-size: clamp(15px, 0.8vw + 0.4rem, 16.5px);
  line-height: 1.55;
  color: rgba(255, 250, 244, 0.84);
  text-wrap: pretty;
}
.gm-points li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #fff, #ecce86 45%, #b8884a);
  box-shadow: 0 0 8px rgba(236, 206, 134, 0.7);
}
.gm-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: clamp(28px, 3.2vw, 38px);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.gm-nav button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 250, 244, 0.8);
  transition: color 0.3s;
}
.gm-nav button:hover { color: #ecce86; }
.gm-count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 250, 244, 0.55);
  flex: none;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .glass-modal { animation: none; }
  .approach-modal-bg { transition: none; }
  .gc-inner { transition: none; }
}

/* Tile reveal — scroll-driven, from below */
.js [data-tile-reveal] {
  opacity: 0.001;
  filter: blur(8px);
  transform: translateY(28px);
  transition:
    opacity 1.1s var(--ease-out-soft),
    transform 1.1s var(--ease-out-soft),
    filter 1.1s var(--ease-out-soft);
}
.js [data-tile-reveal].in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Gentle scroll-driven ken-burns on the photo via CSS var --stage-progress
   (0 -> 1). site.js sets this as the section scrolls past. */
.approach-stage[style*="--stage-progress"] .approach-stage-image {
  transform: scale(calc(1.03 + 0.03 * var(--stage-progress, 0)))
             translateY(calc(-1% * var(--stage-progress, 0)));
}

/* ---------- Where we work together ---------- */
.where {
  padding: clamp(100px, 12vw, 180px) var(--gutter) clamp(120px, 14vw, 200px);
  position: relative;
  overflow: hidden;
  background: var(--bg-pearl);
  transition: background-color 1s var(--ease-out-soft);
}
/* Drifting color-blocking field — warm blocks of pearl, bone, and gold
   that move slowly on long, offset cycles. Borrowed from the A breath
   atmosphere, made section-local and a touch more present. */
.where::before,
.where::after {
  content: "";
  position: absolute;
  inset: -25%;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}
.where::before {
  background:
    radial-gradient(38vmax 34vmax at 18% 22%, rgba(240, 200, 135, 0.30), transparent 62%),
    radial-gradient(42vmax 38vmax at 84% 30%, rgba(236, 226, 207, 0.55), transparent 65%),
    radial-gradient(36vmax 32vmax at 70% 88%, rgba(217, 166, 107, 0.18), transparent 60%);
  filter: blur(30px);
  animation: where-drift-a 67s ease-in-out infinite alternate;
}
.where::after {
  background:
    radial-gradient(40vmax 36vmax at 8% 82%, rgba(248, 220, 170, 0.26), transparent 62%),
    radial-gradient(34vmax 30vmax at 60% 12%, rgba(244, 237, 223, 0.50), transparent 66%);
  filter: blur(36px);
  mix-blend-mode: multiply;
  animation: where-drift-b 91s ease-in-out infinite alternate;
}
@keyframes where-drift-a {
  0%   { transform: translate3d(0, 0, 0) scale(1.00); }
  44%  { transform: translate3d(2.4%, -1.8%, 0) scale(1.05); }
  78%  { transform: translate3d(-1.6%, 1.4%, 0) scale(1.02); }
  100% { transform: translate3d(-2.8%, -2.2%, 0) scale(1.06); }
}
@keyframes where-drift-b {
  0%   { transform: translate3d(0, 0, 0) scale(1.03); }
  50%  { transform: translate3d(-2.2%, 1.6%, 0) scale(1.00); }
  100% { transform: translate3d(2.6%, 2.0%, 0) scale(1.05); }
}
.where .header,
.where .seam-nav { position: relative; z-index: 2; }

.where .header {
  max-width: 900px;
  margin: 0 auto clamp(60px, 8vw, 120px);
  text-align: center;
}
.where .header h2 { font-size: clamp(36px, 4.4vw, 76px); }

/* ---------- Seam navigator (Where we work together) ---------- */
.seam-nav {
  --channel: clamp(64px, 9vw, 150px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--channel);
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

/* Central seam rail */
.seam-rail {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  pointer-events: none;
}
.seam-rail-base,
.seam-rail-fill {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  border-radius: 2px;
}
.seam-rail-base {
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(33, 25, 19, 0.10) 6%,
    rgba(33, 25, 19, 0.14) 50%,
    rgba(33, 25, 19, 0.10) 94%,
    transparent 100%);
}
.seam-rail-fill {
  background: linear-gradient(to bottom,
    var(--gold-deep) 0%,
    var(--gold) 55%,
    var(--gold-soft) 100%);
  transform-origin: top center;
  transform: scaleY(var(--seam-progress, 0));
  box-shadow: 0 0 14px rgba(184, 136, 74, 0.35);
  opacity: 0.9;
}

.seam-col { position: relative; }
.seam-col--left  { padding-bottom: 40px; }
.seam-col--right { padding-top: clamp(60px, 8vw, 120px); } /* offset so items interleave */

.seam-col-title {
  font-family: var(--font-serif);
  font-size: clamp(13px, 0.9vw, 15px);
  font-family: var(--font-mono);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-weight: 500;
  font-style: normal;
  color: var(--ink-quiet);
  margin: 0 0 24px;
}
.seam-col--left .seam-col-title  { text-align: right; }
.seam-col--right .seam-col-title { text-align: left; }

/* Items */
.seam-item {
  position: relative;
  border-top: 1px solid rgba(33, 25, 19, 0.10);
}
.seam-item:last-child { border-bottom: 1px solid rgba(33, 25, 19, 0.10); }

.seam-item-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  position: relative;
  transition: color 0.5s var(--ease-out-soft);
}
.seam-col--left .seam-item-head  { flex-direction: row-reverse; text-align: right; }

.seam-phrase {
  flex: 1;
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.25vw, 23px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 360;
  transition: color 0.5s var(--ease-out-soft);
  text-wrap: pretty;
}
.seam-item-head:hover .seam-phrase { color: var(--gold-deep); }

/* Plus / minus toggle */
.seam-toggle {
  position: relative;
  flex: none;
  width: 16px;
  height: 16px;
}
.seam-toggle::before,
.seam-toggle::after {
  content: "";
  position: absolute;
  background: var(--gold-deep);
  transition: transform 0.5s var(--ease-out-soft), opacity 0.5s var(--ease-out-soft);
}
.seam-toggle::before { /* horizontal */
  top: 50%; left: 0; right: 0; height: 1.5px;
  transform: translateY(-50%);
}
.seam-toggle::after {  /* vertical */
  left: 50%; top: 0; bottom: 0; width: 1.5px;
  transform: translateX(-50%) scaleY(1);
}
.seam-item.open .seam-toggle::after { transform: translateX(-50%) scaleY(0); opacity: 0; }

/* Connector stitch + node toward the seam */
.seam-item-head::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(var(--channel) / 2);
  height: 1px;
  background: rgba(184, 136, 74, 0.30);
  transform: translateY(-50%) scaleX(0.001);
  transition: transform 0.6s var(--ease-out-soft), background 0.5s var(--ease-out-soft);
}
.seam-col--left  .seam-item-head::after { left: 100%;  transform-origin: left center;  transform: translateY(-50%) scaleX(0.001); }
.seam-col--right .seam-item-head::after { right: 100%; transform-origin: right center; transform: translateY(-50%) scaleX(0.001); }

.seam-item-head::before { /* node dot on the seam */
  content: "";
  position: absolute;
  top: 50%;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--page-bg);
  border: 1px solid rgba(184, 136, 74, 0.45);
  transform: translateY(-50%) scale(0.85);
  transition: background 0.5s var(--ease-out-soft), border-color 0.5s var(--ease-out-soft), transform 0.5s var(--ease-out-soft), box-shadow 0.7s var(--ease-out-soft);
  z-index: 2;
}
.seam-col--left  .seam-item-head::before { left: calc(100% + var(--channel) / 2 - 3.5px); }
.seam-col--right .seam-item-head::before { right: calc(100% + var(--channel) / 2 - 3.5px); }

/* On hover / open: stitch draws to the seam, node lights */
.seam-item-head:hover::after,
.seam-item.open .seam-item-head::after {
  transform: translateY(-50%) scaleX(1);
  background: var(--gold-deep);
}
.seam-item-head:hover::before,
.seam-item.open .seam-item-head::before {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 0 4px rgba(184, 136, 74, 0.12);
}

/* Collapsible detail — JS sets exact max-height on open */
.seam-detail {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.6s var(--ease-out-soft);
}
.seam-detail-inner {
  padding-top: 2px;
}
.seam-detail-inner p {
  margin: 0 0 22px;
  font-size: clamp(15.5px, 0.85vw + 0.3rem, 17px);
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.5s var(--ease-out-soft) 0.1s, transform 0.5s var(--ease-out-soft) 0.1s;
}
.seam-item.open .seam-detail-inner p { opacity: 1; transform: none; }
.seam-col--left .seam-detail-inner p { text-align: right; }

/* The seam detail is now a hidden data source — the copy pops out in a modal */
.seam-detail { display: none; }

/* ---------- Where-we-work pop-out detail modal ---------- */
.info-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 44px);
}
.info-modal.open { display: flex; }

.info-bg {
  position: absolute;
  inset: 0;
  background: rgba(22, 17, 12, 0.52);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-soft);
}
.info-modal.open .info-bg { opacity: 1; }

.info-card {
  position: relative;
  width: min(560px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: clamp(40px, 5vw, 60px) clamp(30px, 4vw, 56px) clamp(32px, 4vw, 44px);
  border-radius: 26px;
  background: linear-gradient(155deg, rgba(255, 252, 247, 0.17), rgba(255, 250, 242, 0.07));
  -webkit-backdrop-filter: blur(30px) saturate(1.5);
          backdrop-filter: blur(30px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  color: oklch(0.97 0.012 80);
  opacity: 1;
  animation: infoPop 0.62s var(--ease-out-soft);
}
@keyframes infoPop {
  from { opacity: 0; transform: translateY(22px) scale(0.95); }
  to   { opacity: 1; transform: none; }
}
/* vertical kintsugi accent down the left edge */
.info-thread {
  position: absolute;
  left: 0;
  top: 16%;
  bottom: 16%;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(to bottom, transparent, #ecce86 22%, #b8884a 78%, transparent);
  box-shadow: 0 0 12px rgba(236, 206, 134, 0.6);
}

.info-x {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: oklch(0.97 0.012 80);
  font-size: 20px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.3s, border-color 0.3s;
}
.info-x:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
}
.info-x:focus-visible,
.gm-x:focus-visible {
  outline: 2px solid rgba(236, 206, 134, 0.85);
  outline-offset: 2px;
}

.info-kicker {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(227, 197, 133, 0.92);
  margin-bottom: 18px;
}
.info-mk {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
  color: #ecce86;
}
.info-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(26px, 2.9vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: oklch(0.98 0.012 82);
  text-wrap: pretty;
}
.info-body p {
  font-size: clamp(16px, 0.9vw + 0.4rem, 18px);
  line-height: 1.62;
  color: rgba(255, 250, 244, 0.86);
  margin: 0;
}
.info-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: clamp(28px, 3.2vw, 38px);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.info-nav button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 250, 244, 0.8);
  transition: color 0.3s, opacity 0.3s;
}
.info-nav button:hover { color: #ecce86; }
.info-count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 250, 244, 0.55);
  flex: none;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .info-card { animation: none; }
  .info-bg { transition: none; }
}

@media (max-width: 560px) {
  .info-card { border-radius: 22px; }
}

/* ---------- Additional areas ---------- */
.additional {
  padding: clamp(100px, 12vw, 180px) var(--gutter);
  position: relative;
  overflow: hidden;
}
/* Full-section water backdrop, softened into the linen page so text stays legible */
.additional-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.additional-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.additional-wash {
  position: absolute;
  inset: 0;
  background:
    /* dissolve edges into the page background for a seamless blend */
    linear-gradient(to bottom,
      var(--page-bg) 0%,
      color-mix(in oklab, var(--page-bg) 60%, transparent) 16%,
      color-mix(in oklab, var(--page-bg) 40%, transparent) 84%,
      var(--page-bg) 100%),
    /* overall light wash to keep the dark copy readable */
    color-mix(in oklab, var(--page-bg) 64%, transparent);
}
.additional .inner { max-width: 920px; margin: 0 auto; position: relative; z-index: 2; }
.additional p {
  font-size: clamp(22px, 2vw + 0.5rem, 32px);
  line-height: 1.45;
  font-weight: 300;
  letter-spacing: -0.008em;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 36;
  text-wrap: pretty;
}
.additional .eyebrow { margin-bottom: 40px; }

/* ---------- About ---------- */
.about {
  padding: clamp(120px, 14vw, 200px) var(--gutter) clamp(100px, 12vw, 180px);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
  position: relative;
}

/* Framed portrait — offset hairline frame, image bleeds past it */
.about-figure {
  position: relative;
  position: sticky;
  top: 96px;
  margin: 28px 0 28px 28px;   /* room for the frame to peek top-left */
}
.about-frame {
  position: absolute;
  top: -28px;
  left: -28px;
  right: 28px;
  bottom: 28px;
  border: 1px solid rgba(33, 25, 19, 0.32);
  z-index: 0;
  pointer-events: none;
}
/* small gold tick where the frame would 'pin' */
.about-frame-tick {
  position: absolute;
  top: -28px;
  left: -28px;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--gold-deep);
  border-left: 1px solid var(--gold-deep);
  z-index: 2;
  pointer-events: none;
}
.about-photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-bone);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  transition: transform 1.6s var(--ease-out-soft);
}
.about-figure:hover .about-photo img { transform: scale(1.025); }
.about-figure-cap {
  position: absolute;
  bottom: -28px;
  right: 28px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

.about .text { padding-top: 40px; }
.about .text .eyebrow { margin-bottom: 28px; }
.about .text h2 { margin-bottom: 36px; }

/* Read-more expander */
.about-more {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.7s var(--ease-out-soft);
}
.about-more-inner { padding-top: 4px; }
.about-more-inner p {
  font-size: clamp(17px, 1vw + 0.5rem, 19.5px);
  line-height: 1.65;
  color: var(--ink-soft);
  text-wrap: pretty;
  margin: 0 0 20px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.6s var(--ease-out-soft), transform 0.6s var(--ease-out-soft);
}
.about.more-open .about-more-inner p { opacity: 1; transform: none; }

.about-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.5s var(--ease-out-soft);
}
.about-toggle:hover { color: var(--gold-deep); }
.about-toggle-arrow {
  position: relative;
  width: 14px;
  height: 14px;
}
.about-toggle-arrow::before,
.about-toggle-arrow::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.5s var(--ease-out-soft), opacity 0.5s var(--ease-out-soft);
}
.about-toggle-arrow::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.about-toggle-arrow::after  { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.about.more-open .about-toggle-arrow::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.about .credentials {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(33, 25, 19, 0.10);
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  line-height: 1.8;
}
.about .credentials span { display: inline-flex; align-items: center; }
.about .credentials span + span::before {
  content: "·";
  margin: 0 14px;
  color: var(--gold-deep);
  font-size: 14px;
  opacity: 0.7;
}

/* ---------- Testimonial — framed portrait + cycling quotes ---------- */
.testimonial {
  background: var(--bg-pearl);
  color: var(--ink);
  padding: clamp(120px, 14vw, 200px) var(--gutter);
  position: relative;
  overflow: hidden;
  transition: background-color 1s var(--ease-out-soft);
}
.testimonial .inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
}
/* Quote left, framed portrait right */
.testimonial .quote-stage { order: 1; }
.testimonial .quote-figure { order: 2; }
/* Frame mirrored: pins top-right, caption bottom-left */
.quote-figure {
  position: relative;
  margin: 28px 28px 28px 0;
}
.quote-figure .about-frame {
  top: -28px;
  left: 28px;
  right: -28px;
  bottom: 28px;
}
.quote-figure .about-frame-tick {
  top: -28px;
  left: auto;
  right: -28px;
  border-top: 1px solid var(--gold-deep);
  border-left: 0;
  border-right: 1px solid var(--gold-deep);
}
.quote-figure .about-figure-cap {
  right: auto;
  left: 28px;
}
.quote-figure .about-photo { aspect-ratio: 4 / 5; }
.quote-figure .about-photo img { object-position: 50% 28%; }

/* Quote stage */
.quote-stage { position: relative; }
.quote-stage .eyebrow { margin-bottom: 40px; }

.quote-deck {
  position: relative;
  display: grid;
}
.quote-slide {
  margin: 0;
  grid-area: 1 / 1;        /* stack all slides */
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
  transition: opacity 1s var(--ease-out-soft), transform 1s var(--ease-out-soft), filter 1s var(--ease-out-soft);
  pointer-events: none;
}
.quote-slide.is-active {
  opacity: 1;
  transform: none;
  filter: blur(0);
  pointer-events: auto;
}
.quote-slide blockquote {
  margin: 0;
  font-size: clamp(20px, 1.65vw, 30px);
  line-height: 1.4;
  font-weight: 280;
  font-style: italic;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: pretty;
  font-variation-settings: "opsz" 36;
}
.quote-slide blockquote::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-deep);
  margin-bottom: 36px;
  opacity: 0.6;
}
.quote-slide figcaption {
  margin-top: 36px;
}
.quote-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

/* Dots */
.quote-nav {
  display: flex;
  gap: 12px;
  margin-top: 44px;
}
.quote-dot {
  width: 28px;
  height: 2px;
  background: rgba(33, 25, 19, 0.18);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease-out-soft);
}
.quote-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-deep);
  transform-origin: left center;
  transform: scaleX(0);
}
.quote-dot.is-active::after {
  transform: scaleX(1);
  transition: transform 7s linear;   /* fills across the dwell time */
}
.quote-dot.is-active { background: rgba(184, 136, 74, 0.22); }
.quote-dot:hover { background: rgba(33, 25, 19, 0.32); }

/* ---------- Fees & support ---------- */
.fees {
  padding: clamp(110px, 13vw, 200px) var(--gutter);
  background: var(--page-bg);
  position: relative;
}
.fees-inner { max-width: 920px; margin: 0 auto; }
.fees-head { max-width: 640px; margin-bottom: clamp(46px, 6vw, 78px); }
.fees-head .eyebrow { margin-bottom: 26px; }
.fees-head .display-3 { margin: 0 0 22px; color: var(--ink); }
.fees-intro {
  font-size: clamp(17px, 0.9vw + 0.5rem, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 54ch;
  margin: 0;
  text-wrap: pretty;
}

/* Rate ledger */
.fee-ledger {
  border-top: 1px solid rgba(33, 25, 19, 0.12);
  margin-bottom: clamp(54px, 7vw, 92px);
}
.fee-row {
  display: grid;
  grid-template-columns: 1fr auto minmax(78px, auto);
  align-items: baseline;
  gap: clamp(16px, 3vw, 48px);
  padding: clamp(20px, 2.4vw, 30px) 0;
  border-bottom: 1px solid rgba(33, 25, 19, 0.12);
}
.fee-name {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.6vw, 28px);
  font-style: italic;
  font-weight: 360;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variation-settings: "opsz" 28;
}
.fee-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  white-space: nowrap;
}
.fee-price {
  font-family: var(--font-serif);
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 360;
  color: var(--gold-deep);
  text-align: right;
  white-space: nowrap;
}

/* Packages */
.fee-pkg-eyebrow { display: block; margin-bottom: 26px; }
.fee-pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.4vw, 34px);
}
.fee-pkg {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(33, 25, 19, 0.12);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255, 251, 244, 0.6), rgba(255, 248, 238, 0.22));
  transition: border-color 0.5s var(--ease-out-soft), box-shadow 0.5s var(--ease-out-soft), transform 0.5s var(--ease-out-soft);
}
.fee-pkg:hover {
  border-color: rgba(184, 136, 74, 0.5);
  box-shadow: 0 26px 56px -34px rgba(33, 25, 19, 0.4);
  transform: translateY(-3px);
}
.fee-pkg-head {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 20px;
}
.fee-pkg-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(21px, 1.7vw, 27px);
  font-weight: 360;
  letter-spacing: -0.01em;
  line-height: 1.08;
  white-space: nowrap;
  color: var(--ink);
  font-variation-settings: "opsz" 28;
}
.fee-pkg-count {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  white-space: nowrap;
}
.fee-pkg-desc {
  font-size: clamp(14.5px, 0.7vw + 0.4rem, 16px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.fee-pkg-price {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  padding-top: 18px;
  border-top: 1px solid rgba(33, 25, 19, 0.1);
}
.fee-pkg-price strong { font-weight: 500; color: var(--gold-deep); }

/* Logistics line */
.fee-detail {
  margin-top: clamp(40px, 5vw, 64px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  text-align: center;
}

@media (max-width: 600px) {
  .fee-row {
    grid-template-columns: 1fr auto;
    row-gap: 6px;
  }
  .fee-name { grid-column: 1; grid-row: 1; }
  .fee-meta { grid-column: 1; grid-row: 2; }
  .fee-price { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
  .fee-pkg-grid { grid-template-columns: 1fr; }
}

/* ---------- Booking ---------- */
.booking {
  padding: clamp(140px, 16vw, 220px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.booking .inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  position: relative;
  z-index: 2;
}
.booking h2 {
  font-size: clamp(56px, 8vw, 140px);
  font-style: italic;
  letter-spacing: -0.034em;
  line-height: 0.9;
  color: var(--ink);
  font-variation-settings: "opsz" 72;
  font-weight: 240;
}
.booking .body { max-width: 380px; padding-bottom: 8px; }
.booking .body p {
  margin: 0 0 32px;
  font-size: clamp(18px, 1.1vw + 0.4rem, 21px);
  line-height: 1.5;
}
.booking .note {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-top: 28px;
}

/* ---------- Footer ---------- */
footer.site {
  padding: 80px var(--gutter) 56px;
  border-top: 1px solid rgba(33, 25, 19, 0.10);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}
footer.site .center { text-align: center; }
footer.site .right  { text-align: right; }
footer.site a:hover { color: var(--ink); transition: color 0.4s var(--ease-out-soft); }

/* ---------- The Golden Seam ---------- */
.seam {
  position: absolute;
  pointer-events: none;
  z-index: 4;
  opacity: var(--seam-alpha);
  mix-blend-mode: multiply;
}
.seam path {
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: var(--seam-width);
  stroke-linecap: round;
  stroke-linejoin: round;
}
.seam .glow {
  stroke: var(--gold);
  stroke-width: calc(var(--seam-width) * 4);
  opacity: 0.30;
  filter: blur(6px);
}
.seam .core {
  stroke-dasharray: 0.1 4 0.8 2 1.6 6 0.6 1;
  stroke-dashoffset: 0;
  animation: seam-breathe 13s ease-in-out infinite alternate, seam-drift 29s linear infinite;
}
@keyframes seam-breathe {
  0%   { opacity: 0.80; stroke-width: calc(var(--seam-width) * 0.85); }
  50%  { opacity: 1;    stroke-width: calc(var(--seam-width) * 1.00); }
  100% { opacity: 0.65; stroke-width: calc(var(--seam-width) * 0.90); }
}
@keyframes seam-drift { to { stroke-dashoffset: -120; } }

/* Seam intensity tweak */
[data-seam="whisper"]   { --seam-alpha: 0.22; --seam-width: 1.0; }
[data-seam="throughline"]{ --seam-alpha: 0.45; --seam-width: 1.3; }
[data-seam="signature"] { --seam-alpha: 0.70; --seam-width: 1.8; }

/* ---------- Section reveals ---------- */
.reveal {
  transition: transform 1.4s var(--ease-out-soft), opacity 1.4s var(--ease-out-soft), filter 1.4s var(--ease-out-soft);
}
.js .reveal {
  opacity: 0.001;
  transform: translateY(28px);
  filter: blur(8px);
}
.js .reveal.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Slide a whole block in from the right → left */
.reveal-x {
  transition: transform 1.9s var(--ease-out-soft), opacity 1.7s var(--ease-out-soft), filter 1.7s var(--ease-out-soft);
}
.js .reveal-x {
  opacity: 0.001;
  transform: translateX(52px);
  filter: blur(9px);
}
.js .reveal-x.in {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .luz::before, .testimonial::before { animation: none !important; }
  .window-shadow::before, .window-shadow::after, .silk-drape::before { animation: none !important; }
  .where::before, .where::after { animation: none !important; }
  .seam .core { animation: none !important; }
  .statement-cue .cue-line { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero {
    min-height: auto;
  }
  .hero-image {
    position: relative;
    transform: none;
    object-position: 25% center;
    height: 60vh;
    width: 100%;
  }
  .hero-fade {
    background:
      linear-gradient(to bottom,
        transparent 0%,
        transparent 60%,
        rgba(247, 242, 235, 0.85) 100%);
  }
  .hero-content {
    min-height: auto;
    padding: 60px var(--gutter) 80px;
    max-width: 100%;
  }
  .hero .right { min-height: 60vh; }
  .hero-meta { position: static; text-align: left; margin-top: 32px; }

  .light-moment .grid { grid-template-columns: 1fr; }
  .light-moment .slot { min-height: 50vh; }
  .breath-deck { min-height: 56vh; }

  .approach-intro { padding: 0 var(--gutter); }

  .seam-nav {
    grid-template-columns: 1fr;
    column-gap: 0;
    --channel: 0px;
  }
  .seam-rail { display: none; }
  .seam-col--right { padding-top: 60px; }
  .seam-col--left .seam-col-title,
  .seam-col--left .seam-item-head { text-align: left; flex-direction: row; }
  .seam-col--left .seam-detail-inner p { text-align: left; }
  .seam-item-head::after,
  .seam-item-head::before { display: none; }

  .about { grid-template-columns: 1fr; }
  .about-figure {
    position: static;
    max-width: 420px;
    margin: 28px 0 28px 28px;
  }

  .booking .inner { grid-template-columns: 1fr; gap: 40px; }

  .testimonial .inner { grid-template-columns: 1fr; gap: 56px; }
  .testimonial .quote-figure { order: 0; max-width: 420px; margin: 28px 28px 28px 0; }
  .testimonial .quote-stage { order: 1; }

  footer.site {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 16px;
  }
  footer.site .center, footer.site .right { text-align: left; }
}

@media (max-width: 768px) {
  .approach-stage {
    aspect-ratio: auto;
    min-height: auto;
  }
  .approach-stage-image {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }
  .approach-stage-vignette { display: none; }
  .approach-timeline { padding: 0 var(--gutter) 40px; }
  .approach-rail { padding-top: 0; }
  .kintsugi, .kintsugi-nodes { display: none; }
  .approach-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .statement-body { font-size: clamp(28px, 7vw, 40px); }
  .hero h1 { font-size: clamp(56px, 16vw, 96px); }
  .booking h2 { font-size: clamp(56px, 18vw, 96px); }
  header.site { padding-top: 20px; }
  .lockup .name { display: none; }
}

/* ---------- Language switching ----------
   Bump specificity so component-level rules (e.g. .cta-text > span) don't
   override the hide. */
[lang-show="es"][lang-show="es"] { display: none; }
[data-lang="es"] [lang-show="en"][lang-show="en"] { display: none; }
[data-lang="es"] [lang-show="es"][lang-show="es"] { display: inline; }
[data-lang="es"] [lang-show="es"].block { display: block; }
