/* ============================================================
   FONTS
============================================================ */
@font-face {
  font-family: 'IM Fell French Canon Pro';
  src: url('../assets/fonts/FeFCrm27C.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IM Fell French Canon Pro';
  src: url('../assets/fonts/FeFCit27C.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('../assets/fonts/Urbanist-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('../assets/fonts/Urbanist-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --bone:        #FAF6EF;
  --fragrance:   #F2EAE2;
  --linen:       #EDE0D0;
  --stone:       #D8C7B8;
  --sand:        #CDBBA8;

  --ink-deep:    #1F1C19;
  --ink-warm:    #363534;
  --brown-deep:  #2A211B;

  --amber:       #EFBE9C;
  --amber-muted: #D8A77F;
  --amber-glow:  #F3D3A4;
  --gold-light:  #E8C47A;

  --sage:        #ADBBAD;
  --olive:       #7F8B79;
  --olive-deep:  #4E594D;

  --serif:       'IM Fell French Canon Pro', Georgia, 'Times New Roman', serif;
  --sans:        'Urbanist', system-ui, -apple-system, sans-serif;

  --container:   1320px;
  --gutter:      clamp(24px, 5vw, 80px);
  --section-v:   clamp(80px, 10vw, 160px);

  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
  --ease-mask:    cubic-bezier(0.20, 0.86, 0.30, 1);
  --dur-slow:     0.9s;
  --dur-med:      0.6s;
  --mask-dur:     1.1s;
  --mask-stagger: 0.09s;
  --scene-dur:    1.2s;
}

/* ============================================================
   TEXT LINE-MASK REVEAL SYSTEM
============================================================ */
[data-mask] {
  display: block;
}
[data-mask]:not(.mask-ready) {
  visibility: hidden;
}
[data-mask] .mask-word {
  display: inline-block;
  white-space: pre;
}
.mask-line {
  display: block;
  overflow: hidden;
  line-height: inherit;
  padding-bottom: 0.04em;
}
.mask-line-inner {
  display: inline-block;
  transform: translate3d(0, 110%, 0);
  transition: transform var(--mask-dur) var(--ease-mask);
  will-change: transform;
}
[data-mask].is-revealed .mask-line-inner {
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  [data-mask] { visibility: visible; }
  .mask-line-inner { transform: none !important; transition: none; }
}

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

html {
  font-size: 16px;
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  /* `clip` doesn't break position:sticky on modern browsers like `hidden` would */
  overflow-x: clip;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  background: #0b0806;          /* dark warm-ink: safe fallback if any edge gap appears */
  color: var(--ink-warm);
  line-height: 1.7;
  width: 100%;
  overflow-x: clip;
}

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

/* ============================================================
   UTILITY
============================================================ */
.section-label {
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: 1.5rem;
}

.serif-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.desktop-only { display: block; }
.mobile-only  { display: none; }

@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only  { display: block !important; }
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-warm);
  border: 1px solid rgba(54, 53, 52, 0.35);
  padding: 0.85rem 1.8rem;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.btn-ghost:hover {
  border-color: var(--ink-warm);
  background: var(--ink-warm);
  color: var(--bone);
}
.btn-ghost--light {
  color: var(--bone);
  border-color: rgba(250, 246, 239, 0.5);
}
.btn-ghost--light:hover {
  background: var(--bone);
  color: var(--ink-warm);
  border-color: var(--bone);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-warm);
  border-bottom: 1px solid rgba(54, 53, 52, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}
.btn-text:hover { border-color: var(--ink-warm); }

.arrow { transition: transform 0.3s var(--ease-out); }
a:hover .arrow,
button:hover .arrow { transform: translateX(4px); }

/* ============================================================
   GLOBAL SCENT PARTICLE OVERLAY
============================================================ */
#global-particles {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 50;
  mix-blend-mode: screen;
}

@media (prefers-reduced-motion: reduce) {
  #global-particles { display: none; }
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--gutter) 0;
  height: 120px;
  display: flex;
  align-items: center;
  transition: background 0.5s ease,
              backdrop-filter 0.5s ease,
              box-shadow 0.5s ease,
              height 0.5s var(--ease-out),
              padding 0.5s var(--ease-out);
}

.site-header.scrolled {
  height: 76px;
  padding: 0 var(--gutter);
  background: rgba(250, 246, 239, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(54, 53, 52, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  height: 100%;
}

/* Header logo
   - Not scrolled: Principal-negativo CENTERED in header, large (20% bigger)
   - Scrolled:     Principal-Positivo, left-aligned, compact */
/* The logo-link is a 0×0 anchor point at the header center.
   Each <img> inside is absolutely positioned so its ISOTIPO (the leaf symbol)
   lands exactly at this anchor — no matter which logo variant is shown.
   This makes the crossfade feel like the symbol stays anchored while
   the wordmark reforms around it. */
.logo-link {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: 1;
  overflow: visible;
  pointer-events: auto;
}

/* Invisible hit-area around the anchor so the logo is clickable */
.logo-link::after {
  content: '';
  position: absolute;
  top: -48px;
  left: -100px;
  width: 200px;
  height: 96px;
}

.logo {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  max-width: none;
  transition: opacity 0.85s var(--ease-out);
}

/* Each logo image is centered as a WHOLE around the wrapper anchor.
   (Isotipo isn't perfectly anchored during crossfade — but the resting
    states are visually balanced, which matters more for legibility.) */

/* Principal-negativo — viewBox 117.48 × 95.58, rendered 100 × 81.4 on desktop */
.logo-principal {
  width: 100px;
  height: 81.4px;
  transform: translate(-50px, -40.7px);
  opacity: 1;
}
/* Smaller on mobile */
@media (max-width: 768px) {
  .logo-principal {
    width: 78px;
    height: 63.4px;
    transform: translate(-39px, -31.7px);
  }
}

/* Horizontal-positive — viewBox 172.41 × 48.58, rendered 138 × 38.9 */
.logo-positive {
  width: 138px;
  height: 38.9px;
  transform: translate(-69px, -19.45px);
  opacity: 0;
}

.site-header.scrolled .logo-positive  { opacity: 1; }
.site-header.scrolled .logo-principal { opacity: 0; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  /* Hidden over the hero — appears only when scrolled past, so the centered logo can breathe */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out);
}
.site-header.scrolled .desktop-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.desktop-nav a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-warm);
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0.75;
}
.desktop-nav a:hover { opacity: 1; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-cta {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--bone);
  border: 1px solid rgba(250, 246, 239, 0.5);
  padding: 0.55rem 1.2rem;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.nav-cta:hover {
  background: var(--bone);
  color: var(--ink-warm);
  border-color: var(--bone);
}
.site-header.scrolled .nav-cta {
  color: var(--ink-warm);
  border-color: rgba(54, 53, 52, 0.3);
}
.site-header.scrolled .nav-cta:hover {
  background: var(--ink-warm);
  color: var(--bone);
  border-color: var(--ink-warm);
}

/* Burger menu — always visible, with a soft pulse halo */
.menu-toggle {
  position: relative;
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  border-radius: 50%;
}

/* Pulse halo — sits behind the burger lines */
.menu-toggle::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(243, 211, 164, 0.35);
  opacity: 0;
  animation: burgerPulse 2.6s ease-in-out infinite;
  pointer-events: none;
}
.site-header.scrolled .menu-toggle::before {
  border-color: rgba(54, 53, 52, 0.35);
}
@keyframes burgerPulse {
  0%   { transform: scale(0.85); opacity: 0; }
  35%  { opacity: 0.85; }
  100% { transform: scale(1.45); opacity: 0; }
}

.menu-toggle-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 24px;
  position: relative;
  z-index: 1;
}

.menu-toggle-inner span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--bone);
  transition: transform 0.4s var(--ease-out), opacity 0.4s ease, width 0.4s ease, background 0.3s ease;
  transform-origin: center;
}

.site-header.scrolled .menu-toggle-inner span {
  background: var(--ink-warm);
}

.menu-toggle.is-active .menu-toggle-inner span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-toggle.is-active .menu-toggle-inner span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}
.menu-toggle.is-active::before {
  animation: none;
  opacity: 0;
}

/* Desktop nav is no longer shown anywhere — keep semantic markup in the DOM, hide visually */
.desktop-nav { display: none !important; }

@media (max-width: 960px) {
  .nav-cta.desktop-only { display: none; }
  /* Balance the header on small screens — give the right side the
     same visual weight as the burger so the centered logo doesn't drift. */
  .header-actions {
    width: 44px;       /* same as burger button */
    height: 44px;
    min-width: 44px;
    flex-shrink: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-toggle::before { animation: none; opacity: 0; }
}

/* ============================================================
   FULL-SCREEN MENU
============================================================ */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.fullscreen-menu.is-open {
  pointer-events: all;
  visibility: visible;
}

.menu-bg {
  position: absolute;
  inset: 0;
  background: var(--fragrance);
  transform: translateX(100%);
  transition: transform 0.65s var(--ease-out);
}
.fullscreen-menu.is-open .menu-bg {
  transform: translateX(0);
}

.menu-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--gutter) 60px;
  opacity: 0;
  transition: opacity 0.4s ease 0.35s;
}
.fullscreen-menu.is-open .menu-content { opacity: 1; }

.menu-logo {
  position: absolute;
  top: 24px;
  left: var(--gutter);
}
.menu-logo img { height: 39px; width: auto; }

.menu-close {
  position: absolute;
  top: 22px;
  right: var(--gutter);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-warm);
  opacity: 0.6;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.menu-close:hover { opacity: 1; transform: rotate(90deg); }
.menu-close svg { pointer-events: none; }

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 3rem;
}

.menu-link {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 400;
  color: var(--ink-warm);
  line-height: 1.3;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(54, 53, 52, 0.1);
  display: block;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out), color 0.3s ease;
}
.menu-link:last-child { border-bottom: none; }
.menu-link:hover { color: var(--olive); }

.fullscreen-menu.is-open .menu-link {
  opacity: 1;
  transform: translateY(0);
}
.fullscreen-menu.is-open .menu-link:nth-child(1) { transition-delay: 0.38s; }
.fullscreen-menu.is-open .menu-link:nth-child(2) { transition-delay: 0.44s; }
.fullscreen-menu.is-open .menu-link:nth-child(3) { transition-delay: 0.50s; }
.fullscreen-menu.is-open .menu-link:nth-child(4) { transition-delay: 0.56s; }
.fullscreen-menu.is-open .menu-link:nth-child(5) { transition-delay: 0.62s; }
.fullscreen-menu.is-open .menu-link:nth-child(6) { transition-delay: 0.68s; }
.fullscreen-menu.is-open .menu-link:nth-child(7) { transition-delay: 0.74s; }

.menu-cta-wrap {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.72s, transform 0.5s var(--ease-out) 0.72s;
}
.fullscreen-menu.is-open .menu-cta-wrap {
  opacity: 1;
  transform: translateY(0);
}

.menu-cta {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink-warm);
  border: 1px solid rgba(54, 53, 52, 0.35);
  padding: 0.9rem 2rem;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease;
}
.menu-cta:hover {
  background: var(--ink-warm);
  color: var(--bone);
}

.menu-footer-note {
  position: absolute;
  bottom: 40px;
  left: var(--gutter);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--olive);
  opacity: 0;
  transition: opacity 0.4s ease 0.8s;
}
.fullscreen-menu.is-open .menu-footer-note { opacity: 1; }

/* ============================================================
   SECTION 1 — HERO (video-led, copy below)
============================================================ */
.hero-video {
  position: relative;
  background: #0b0806;
  color: var(--bone);
  display: block;
}

/* Video frame — clean cinematic block, no overlay text */
.hero-video-frame {
  position: relative;
  width: 100%;
  height: min(66svh, 720px);
  min-height: 360px;
  overflow: hidden;
  background: #0b0806;
}

.hero-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 0;
  background: #0b0806;
}

/* Soft amber-tinted feathered transition into the copy block */
.hero-video-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22%;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(11, 8, 6, 0.0) 0%,
    rgba(11, 8, 6, 0.55) 65%,
    rgba(11, 8, 6, 0.95) 100%
  );
}

/* Editorial copy below the video — text LEFT, CTA RIGHT, more breathing room on the sides */
.hero-copy {
  background: #0b0806;
  padding: clamp(36px, 5vw, 72px) clamp(40px, 10vw, 180px) clamp(72px, 9vw, 130px);
}

.hero-copy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 80px);
}

.hero-copy-text {
  flex: 1 1 auto;
  max-width: 760px;
  text-align: left;
}

.hero-tag {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber-glow);
  margin-bottom: 1.4rem;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.8vw, 3.0rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.22;
  color: var(--bone);
  margin: 0 0 1.3rem;
  letter-spacing: 0.005em;
  max-width: 760px;
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: rgba(250, 246, 239, 0.74);
  margin: 0;
  max-width: 580px;
}

/* Underlined-only CTA — sits on the RIGHT, slightly smaller text */
.hero-cta {
  display: inline-flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--bone);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  flex-shrink: 0;
  align-self: center;
  white-space: nowrap;
}
.hero-cta-label::after {
  content: ' →';
  transition: transform 0.4s var(--ease-out);
  display: inline-block;
}
.hero-cta:hover .hero-cta-label::after { transform: translateX(6px); }
.hero-cta-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--amber-glow), rgba(243, 211, 164, 0));
}

/* Reveal-on-view base */
[data-hero-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.0s var(--ease-out), transform 1.0s var(--ease-out);
}
[data-hero-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-video-frame {
    height: min(58svh, 600px);
    min-height: 340px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-video-frame {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    max-height: 56svh;
  }
  .hero-video-el { object-fit: cover; }
  .hero-video-fade { height: 18%; }

  .hero-copy {
    padding: clamp(40px, 7vw, 56px) 24px clamp(72px, 9vw, 110px);
  }
  .hero-copy-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1.6rem;
  }
  .hero-copy-text { max-width: 100%; }

  /* Stronger hierarchy on small screens */
  .hero-tag {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    margin-bottom: 1.1rem;
  }
  .hero-h1 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 1.1rem;
  }
  .hero-sub {
    font-size: 0.92rem;
    line-height: 1.65;
    letter-spacing: 0.02em;
    color: rgba(250, 246, 239, 0.7);
  }
  .hero-cta {
    margin-top: 0.4rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    align-self: flex-start;
  }
  .hero-cta-rule {
    /* Constrain the underline so it doesn't span absurdly wide */
    max-width: 260px;
  }
}

/* Reduced motion — don't autoplay video, hide fade overlap reveals immediately */
@media (prefers-reduced-motion: reduce) {
  /* Video autoplay is suppressed via JS (pauses on load) */
  [data-hero-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   SECTION 2 — LAYERS (unified spatial story, mobile + desktop)
   - One sticky stage with the room image + atmospheric overlays
   - 5 phase segments (each 100svh) that scroll past the sticky stage
   - Each segment activates a phase-panel that slides in editorially
   - Scroll progress drives the atmospheric system continuously
============================================================ */
.layers-section {
  position: relative;
  background: #0a0807;
}

/* Sticky stage — the room image + all atmospheric layers */
.layers-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  width: 100%;
  overflow: hidden;
  background: #0a0807;
  z-index: 0;
}

/* Room image (single plane, no more 3-depth split) */
.layers-room {
  position: absolute;
  inset: -3%;
  will-change: transform, filter;
  transform-origin: 50% 50%;
}
.layers-room img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: filter;
  filter: brightness(0.86) contrast(1.04) saturate(0.94);
}

/* Window godrays */
.layers-godrays {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 32% 70% at 22% 32%,
      rgba(252, 235, 198, 0.18) 0%,
      rgba(252, 235, 198, 0.06) 40%,
      transparent 75%);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

/* Heat shimmer over fireplace zone */
.layers-shimmer-zone {
  position: absolute;
  left: 60%; right: 22%;
  top: 38%;  bottom: 30%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(248, 200, 150, 0.10) 0%,
    transparent 75%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0;
}

/* Atmospheric overlays */
.atm {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: opacity;
}
.atm-vignette {
  background: radial-gradient(ellipse at 50% 50%,
    transparent 30%, rgba(10, 8, 7, 0.35) 75%, rgba(10, 8, 7, 0.80) 100%);
  opacity: 0.75;
}
.atm-window-light {
  background: radial-gradient(ellipse 60% 50% at 20% 28%,
    rgba(252, 240, 215, 0.30) 0%, rgba(243, 211, 164, 0.12) 40%, transparent 75%);
  mix-blend-mode: screen;
  opacity: 0;
}
.atm-fireplace {
  background: radial-gradient(ellipse 38% 32% at 72% 62%,
    rgba(239, 158, 88, 0.32) 0%, rgba(216, 142, 80, 0.16) 35%, transparent 70%);
  mix-blend-mode: screen;
  opacity: 0;
}
.atm-grade-cool {
  background: linear-gradient(180deg,
    rgba(31, 38, 47, 0.0) 0%, rgba(20, 22, 28, 0.30) 60%, rgba(15, 17, 22, 0.55) 100%);
  mix-blend-mode: multiply;
  opacity: 0;
}
.atm-grade-warm {
  background: linear-gradient(165deg,
    rgba(248, 218, 175, 0.20) 0%, rgba(232, 167, 110, 0.18) 50%, rgba(216, 138, 80, 0.16) 100%);
  mix-blend-mode: soft-light;
  opacity: 0;
}
.atm-tactile {
  background: linear-gradient(180deg,
    transparent 35%, rgba(205, 170, 130, 0.10) 65%, rgba(160, 110, 75, 0.22) 100%);
  mix-blend-mode: overlay;
  opacity: 0;
}
.atm-scent-field {
  background: radial-gradient(ellipse 90% 80% at 50% 62%,
    rgba(239, 190, 156, 0.22) 0%, rgba(232, 175, 130, 0.10) 45%, transparent 85%);
  mix-blend-mode: screen;
  opacity: 0;
}
.atm-completion {
  background: linear-gradient(180deg,
    transparent 40%, rgba(15, 12, 10, 0.18) 70%, rgba(10, 8, 7, 0.50) 100%);
  opacity: 0;
}
.atm-edge-darken {
  background:
    linear-gradient(90deg, rgba(10,8,7,0.45) 0%, transparent 18%, transparent 82%, rgba(10,8,7,0.45) 100%),
    linear-gradient(180deg, rgba(10,8,7,0.45) 0%, transparent 16%, transparent 70%, rgba(10,8,7,0.55) 100%);
  opacity: 0.55;
}
.atm-grain {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
  background-size: 160px 160px;
  mix-blend-mode: overlay;
  opacity: 0.10;
}

/* Particles canvas */
.layers-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
  z-index: 4;
}

/* Top-left scene header */
.scene-header {
  position: absolute;
  top: clamp(96px, 12vh, 130px);
  left: clamp(24px, 6vw, 96px);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}
.scene-header-divider {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: rgba(250, 246, 239, 0.4);
}
.scene-header-text {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.55);
}

/* Drifting Roman numeral */
.scene-numeral {
  position: absolute;
  top: 22%;
  right: clamp(24px, 6vw, 96px);
  z-index: 5;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
  color: var(--amber-glow);
  opacity: 0.35;
  text-shadow: 0 1px 28px rgba(10, 8, 7, 0.6);
  pointer-events: none;
  will-change: transform, opacity;
}

/* Progress line */
.layers-progress-line {
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(250, 246, 239, 0.08);
  z-index: 5;
  pointer-events: none;
}
.progress-fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  background: linear-gradient(180deg,
    rgba(239, 190, 156, 0.0) 0%,
    rgba(239, 190, 156, 0.75) 50%,
    rgba(239, 190, 156, 0.0) 100%);
}

/* ─── Phase segments — pull UP under the sticky stage ─── */
.layers-segments {
  position: relative;
  margin-top: -100svh;   /* first segment overlaps the sticky stage */
  z-index: 2;
  pointer-events: none;
}

.layers-segment {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 0 clamp(24px, 6vw, 96px);
}

/* Floating editorial text — no dark cards, just text that lives in the scene.
   Strong text-shadow keeps it legible against the room. */
.phase-panel {
  position: relative;
  pointer-events: auto;
  background: transparent;
  color: var(--bone);
  padding: 0;
  width: min(460px, 100%);
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}

/* Very soft local atmospheric darkening — feathered far beyond text bounds */
.phase-panel::before {
  content: '';
  position: absolute;
  inset: -80% -60%;
  background: radial-gradient(ellipse 60% 50% at 50% 55%,
    rgba(8, 5, 3, 0.28) 0%,
    rgba(8, 5, 3, 0.10) 35%,
    transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(8px);
}

/* Desktop side alignment */
.phase-panel--left {
  margin-right: auto;
  text-align: left;
  transform: translateX(-32px);
}
.phase-panel--right {
  margin-left: auto;
  text-align: right;
  transform: translateX(32px);
}
.phase-panel--right::before {
  background: radial-gradient(ellipse 80% 65% at 50% 55%,
    rgba(8, 5, 3, 0.55) 0%,
    rgba(8, 5, 3, 0.18) 50%,
    transparent 80%);
}
.phase-panel--center {
  margin: 0 auto;
  text-align: center;
  transform: translateY(28px);
  width: min(640px, 100%);
}
/* Climax + Final use the same soft radial as the rest — no heavier override */

/* Active state */
.phase-panel.is-active {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Panel content — floating, with text-shadow for legibility */
.phase-panel-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--amber-glow);
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  opacity: 0.9;
  text-shadow: 0 1px 16px rgba(8, 5, 3, 0.7);
}
.phase-panel-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.72);
  margin-bottom: 1.1rem;
  text-shadow: 0 1px 12px rgba(8, 5, 3, 0.7);
}
.phase-panel-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.22;
  color: var(--bone);
  margin: 0 0 1.2rem;
  letter-spacing: 0.005em;
  text-shadow:
    0 1px 3px rgba(8, 5, 3, 0.95),
    0 2px 14px rgba(8, 5, 3, 0.7),
    0 4px 30px rgba(8, 5, 3, 0.5);
}
.phase-panel-title--large {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
}
.phase-panel-title--final {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-bottom: 1.8rem;
}
.phase-panel-body {
  font-family: var(--sans);
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(250, 246, 239, 0.85);
  margin: 0;
  text-shadow: 0 1px 14px rgba(8, 5, 3, 0.75);
}
.phase-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
  border-bottom: 1px solid rgba(250, 246, 239, 0.5);
  padding-bottom: 4px;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.phase-panel-cta:hover { border-color: var(--amber-glow); color: var(--amber-glow); }

/* ─── Mobile adaptations ─── */
@media (max-width: 768px) {
  .layers-segments {
    margin-top: -100svh;
  }
  .layers-segment {
    padding: 0 20px;
  }
  /* All panels become full-width, centered, slide up from bottom */
  .phase-panel,
  .phase-panel--left,
  .phase-panel--right,
  .phase-panel--center {
    margin: 0 auto;
    width: 100%;
    max-width: none;
    text-align: center;
    transform: translateY(36px);
  }
  .phase-panel.is-active {
    transform: translateY(0);
  }
  .phase-panel-title {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }
  .phase-panel-title--large {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }
  .phase-panel-title--final {
    font-size: clamp(1.95rem, 8.5vw, 2.6rem);
  }
  /* Scene header smaller on mobile */
  .scene-header {
    top: clamp(80px, 11vh, 110px);
    left: 20px;
  }
  .scene-header-text {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
  }
  /* Numeral bigger and more visible as phase tracker */
  .scene-numeral {
    top: 14%;
    right: 20px;
    font-size: 3.6rem;
  }
  /* Progress line hidden on mobile (clutter) */
  .layers-progress-line { display: none; }
}

/* Reduced motion — show final state immediately */
@media (prefers-reduced-motion: reduce) {
  .phase-panel {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   SECTION 3 — DIVIDER (giant marquee, Boring style)
============================================================ */
.divider-marquee {
  padding: clamp(60px, 8vw, 120px) 0;
  background: var(--bone);
  overflow: hidden;
  position: relative;
}

.divider-marquee::before,
.divider-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(40px, 8vw, 140px);
  z-index: 2;
  pointer-events: none;
}
.divider-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bone), rgba(250, 246, 239, 0));
}
.divider-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bone), rgba(250, 246, 239, 0));
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeRun 38s linear infinite;
  will-change: transform;
  /* never pause on hover or anything else */
  animation-play-state: running !important;
}

.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: clamp(28px, 4vw, 60px);
}

.marquee-word {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  color: var(--ink-warm);
  letter-spacing: -0.005em;
  white-space: nowrap;
  padding: 0 clamp(14px, 2vw, 28px);
}
.marquee-word--italic {
  font-style: italic;
  color: var(--olive-deep);
}

.marquee-mark {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--amber-muted);
  line-height: 1;
  display: inline-block;
  transform: translateY(-0.05em);
}

@keyframes marqueeRun {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================================================
   SECTION 4 — HOW IT WORKS (3-column editorial)
============================================================ */
.how-v2 {
  padding: var(--section-v) 0;
  background: var(--fragrance);
  position: relative;
}

.how-header {
  max-width: var(--container);
  margin: 0 auto clamp(60px, 8vw, 100px);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
.how-header .section-label { margin-bottom: 0; align-self: end; }
.how-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.22;
  color: var(--ink-warm);
}

.how-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.how-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  align-self: stretch;
}
.how-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.6s var(--ease-out);
}
.how-image.is-revealed img { transform: scale(1); }

.how-image-cap {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.88);
  text-shadow: 0 1px 14px rgba(10, 8, 7, 0.7);
  opacity: 0;
  transition: opacity 1s var(--ease-out) 0.6s;
}
.how-image.is-revealed .how-image-cap { opacity: 1; }

.how-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.how-columns::before,
.how-columns::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(54, 53, 52, 0.15);
}
.how-columns::before { left: calc(100% / 3); }
.how-columns::after  { left: calc(200% / 3); }

.how-col {
  padding: 0 clamp(20px, 2.5vw, 36px);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), background 0.5s ease;
  cursor: default;
  position: relative;
}
.how-col:first-child { padding-left: 0; }
.how-col:last-child  { padding-right: 0; }

.how-col.is-revealed { opacity: 1; transform: translateY(0); }

/* Subtle hover state on desktop */
@media (hover: hover) {
  .how-col {
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), background-color 0.4s ease;
  }
  .how-col:hover {
    background-color: rgba(243, 211, 164, 0.06);
  }
  .how-col:hover .how-col-num {
    color: var(--ink-warm);
  }
  .how-col:hover .how-col-mark {
    color: var(--ink-warm);
  }
}

.how-col-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(54, 53, 52, 0.22);
  transition: border-color 0.4s ease;
}
.how-col:hover .how-col-head { border-bottom-color: rgba(216, 167, 127, 0.6); }

.how-col-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: var(--amber-muted);
  line-height: 1;
  transition: color 0.4s ease;
}

.how-col-mark {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--olive);
  transition: color 0.4s ease;
}

.how-col h3 {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink-warm);
  margin-bottom: 1rem;
}

.how-col p {
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.78;
  color: var(--ink-warm);
  opacity: 0.72;
}

.how-footer {
  max-width: var(--container);
  margin: clamp(50px, 6vw, 80px) auto 0;
  padding: 0 var(--gutter);
}

/* How section reveals base state */
[data-how-reveal],
[data-events-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-how-reveal].is-revealed,
[data-events-reveal].is-revealed { opacity: 1; transform: translateY(0); }

/* ============================================================
   SECTION 5 — STEWARDSHIP (typographic plates)
============================================================ */
.stewardship-v2 {
  padding: var(--section-v) 0;
  background: var(--bone);
}

.stewardship-header {
  max-width: var(--container);
  margin: 0 auto clamp(80px, 10vw, 140px);
  padding: 0 var(--gutter);
  max-width: 920px;
}
.stewardship-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 400;
  line-height: 1.22;
  color: var(--ink-warm);
  margin-bottom: 1.4rem;
}
.stewardship-intro {
  font-family: var(--sans);
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  font-weight: 300;
  line-height: 1.78;
  color: var(--ink-warm);
  opacity: 0.72;
  max-width: 620px;
}

.stewardship-plates {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(54, 53, 52, 0.15);
}

.plate {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 3vw, 40px) clamp(40px, 5vw, 64px);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  border-bottom: 1px solid rgba(54, 53, 52, 0.15);
}
.plate:not(:last-child) {
  border-right: 1px solid rgba(54, 53, 52, 0.15);
}
.plate.is-revealed { opacity: 1; transform: translateY(0); }

/* Refined numeral — editorial accent, not dominating the plate */
.plate-numeral {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  color: var(--ink-warm);
  margin-bottom: 1.2rem;
  letter-spacing: -0.005em;
  opacity: 0.72;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(54, 53, 52, 0.18);
}

.plate--featured .plate-numeral {
  color: var(--amber-muted);
  opacity: 0.95;
  border-bottom-color: rgba(216, 167, 127, 0.4);
}

.plate-body { align-self: start; padding-top: 1.4rem; }

.plate-tier {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.9rem;
}

/* The plan name is now the primary visual weight */
.plate-body h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 400;
  line-height: 1.22;
  color: var(--ink-warm);
  margin-bottom: 1.2rem;
  letter-spacing: 0.005em;
}

.plate-body p {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-warm);
  opacity: 0.72;
  margin-bottom: 1.6rem;
}

.plate-link {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(78, 89, 77, 0.35);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.plate-link:hover {
  color: var(--ink-warm);
  border-color: var(--ink-warm);
}

.stewardship-footer {
  max-width: var(--container);
  margin: clamp(50px, 6vw, 80px) auto 0;
  padding: 0 var(--gutter);
}

[data-stew-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-stew-reveal].is-revealed { opacity: 1; transform: translateY(0); }

/* ============================================================
   SECTION 6 — EVENTS (cinematic full-bleed, inset copy)
============================================================ */
.events-v2 {
  background: var(--brown-deep);
  padding: 0;
  position: relative;
}

.events-stage {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
}

.events-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.events-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.07);
  transition: transform 1.6s var(--ease-out);
}
.events-stage.is-revealed .events-image-wrap img { transform: scale(1); }

.events-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(20, 14, 10, 0.0) 0%,
    rgba(20, 14, 10, 0.15) 35%,
    rgba(20, 14, 10, 0.75) 100%
  );
}
.events-image-grade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 14, 10, 0.30) 0%,
    transparent 35%,
    transparent 65%,
    rgba(20, 14, 10, 0.45) 100%
  );
}

/* Inset block — lower-right inside the image's dark area */
.events-inset {
  position: absolute;
  right: clamp(40px, 6vw, 96px);
  bottom: clamp(130px, 22vh, 220px);
  z-index: 2;
  max-width: 560px;
  color: var(--bone);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease-out) 0.2s, transform 1.1s var(--ease-out) 0.2s;
}
.events-stage.is-revealed .events-inset { opacity: 1; transform: translateY(0); }

.events-mark {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(243, 211, 164, 0.85);
  margin-bottom: 1.4rem;
}

.events-headline {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.22;
  color: var(--bone);
  margin-bottom: 1.6rem;
}
.events-headline-l1 { display: block; }
.events-headline-l2 { display: block; font-style: italic; }

.events-body {
  font-family: var(--sans);
  font-size: clamp(0.84rem, 1vw, 0.92rem);
  font-weight: 300;
  line-height: 1.78;
  color: rgba(250, 246, 239, 0.78);
  margin-bottom: 2rem;
}

/* Wide-spaced micro-label tags at base */
.events-meta {
  position: absolute;
  left: clamp(40px, 6vw, 96px);
  right: clamp(40px, 6vw, 96px);
  bottom: clamp(50px, 7vh, 80px);
  z-index: 2;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  gap: clamp(36px, 6vw, 80px);
  border-top: 1px solid rgba(250, 246, 239, 0.18);
  padding-top: 1.4rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s var(--ease-out) 0.7s, transform 0.9s var(--ease-out) 0.7s;
}
.events-stage.is-revealed .events-meta { opacity: 1; transform: translateY(0); }

.events-meta li {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.55);
}

/* ============================================================
   SECTION 7 — COLLECTION (film-strip carousel)
============================================================ */
.collection-v2 {
  padding: var(--section-v) 0;
  background: var(--bone);
  overflow: hidden;
}

.collection-header {
  max-width: var(--container);
  margin: 0 auto clamp(50px, 6vw, 80px);
  padding: 0 var(--gutter);
}
.collection-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.2rem;
}
.collection-header-text {
  flex: 1;
}
.collection-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 400;
  line-height: 1.22;
  color: var(--ink-warm);
}
.collection-intro {
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1vw, 0.92rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-warm);
  opacity: 0.7;
  max-width: 560px;
}

.filmstrip-wrap {
  position: relative;
}

.filmstrip {
  display: flex;
  gap: clamp(28px, 4vw, 60px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 var(--gutter) 1rem;
  cursor: grab;
}
.filmstrip:active { cursor: grabbing; }
.filmstrip::-webkit-scrollbar { display: none; }

.filmstrip-item {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* Collection frame — no card background, floating editorial */
.collection-frame {
  width: clamp(260px, 26vw, 360px);
  background: transparent;
}

.frame-image {
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 1.4rem;
  background: var(--linen);
}
.frame-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
  will-change: transform;
}
.collection-frame:hover .frame-image img { transform: scale(1.03); }

.frame-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0.35rem 1rem;
  align-items: baseline;
  padding: 0 4px;       /* gentle inset so type doesn't touch the frame edges */
}
.frame-num {
  grid-row: 1 / 3;
  align-self: start;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--amber-muted);
  padding-top: 2px;
}
.frame-title {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink-warm);
  letter-spacing: 0.02em;
}
.frame-type {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
}

.filmstrip-controls {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 2rem var(--gutter) 0;
  justify-content: flex-start;     /* align with section text and CTA */
}

.strip-counter {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--olive);
  min-width: 70px;
  text-align: center;
}

.strip-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(54, 53, 52, 0.22);
  color: var(--ink-warm);
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.strip-btn:hover {
  border-color: var(--ink-warm);
  background: var(--ink-warm);
  color: var(--bone);
}

[data-coll-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-coll-reveal].is-revealed { opacity: 1; transform: translateY(0); }

[data-coll-frame] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.collection-v2.is-revealed [data-coll-frame] { opacity: 1; transform: translateY(0); }
.collection-v2.is-revealed [data-coll-frame]:nth-child(1) { transition-delay: 0.05s; }
.collection-v2.is-revealed [data-coll-frame]:nth-child(2) { transition-delay: 0.15s; }
.collection-v2.is-revealed [data-coll-frame]:nth-child(3) { transition-delay: 0.25s; }
.collection-v2.is-revealed [data-coll-frame]:nth-child(4) { transition-delay: 0.35s; }
.collection-v2.is-revealed [data-coll-frame]:nth-child(5) { transition-delay: 0.45s; }

.collection-mobile-cta { padding: 2rem var(--gutter) 0; }

/* ============================================================
   SECTION 8 — JOURNAL (asymmetric 5-up editorial)
============================================================ */
.journal-v2 {
  padding: var(--section-v) 0;
  background: var(--fragrance);
  overflow: hidden;
}

.journal-header {
  max-width: var(--container);
  margin: 0 auto clamp(50px, 6vw, 80px);
  padding: 0 var(--gutter);
}
.journal-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.journal-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 400;
  line-height: 1.22;
  color: var(--ink-warm);
}

.journal-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* Hero article — first one, double-width feel */
.journal-article--hero {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.journal-v2.is-revealed .journal-article--hero { opacity: 1; transform: translateX(0); }

.journal-hero-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--linen);
}
.journal-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out);
}
.journal-article--hero:hover .journal-hero-image img { transform: scale(1.03); }

.journal-hero-body {
  padding: 0;
}

.journal-cat {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1rem;
}

.journal-article--hero h3 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.85vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.32;
  color: var(--ink-warm);
  margin-bottom: 1rem;
}

.journal-excerpt {
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.78;
  color: var(--ink-warm);
  opacity: 0.7;
  margin-bottom: 1.4rem;
  max-width: 460px;
}

.journal-readlink {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-warm);
  border-bottom: 1px solid rgba(54, 53, 52, 0.3);
  padding-bottom: 2px;
  display: inline-flex;
  gap: 0.4rem;
  transition: border-color 0.3s ease;
}
.journal-readlink:hover { border-color: var(--ink-warm); }

/* Right column: 4 small articles in vertical stack with subtle horiz scroll on overflow */
.journal-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 4vw, 50px);
  align-content: start;
}

.journal-row .journal-article {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out);
}
.journal-v2.is-revealed .journal-row [data-journal-card] { opacity: 1; transform: translateX(0); }
.journal-v2.is-revealed .journal-row [data-journal-card]:nth-child(1) { transition-delay: 0.20s; }
.journal-v2.is-revealed .journal-row [data-journal-card]:nth-child(2) { transition-delay: 0.30s; }
.journal-v2.is-revealed .journal-row [data-journal-card]:nth-child(3) { transition-delay: 0.40s; }
.journal-v2.is-revealed .journal-row [data-journal-card]:nth-child(4) { transition-delay: 0.50s; }

.journal-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--linen);
}
.journal-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.journal-article:hover .journal-card-img img { transform: scale(1.04); }

.journal-row .journal-article h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  font-weight: 400;
  line-height: 1.38;
  color: var(--ink-warm);
}

[data-journal-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-journal-reveal].is-revealed { opacity: 1; transform: translateY(0); }

.journal-mobile-cta { padding: 2rem var(--gutter) 0; }

/* ============================================================
   SECTION 9 — FINAL CTA (full-bleed, underlined-only CTA)
============================================================ */
.final-cta-v2 {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #1a130e;
}

.final-cta-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.final-cta-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.78) saturate(1.05);
  transform: scale(1.05);
  transition: transform 2.2s var(--ease-out), filter 2.2s var(--ease-out);
}
.final-cta-v2.is-revealed .final-cta-image-wrap img {
  transform: scale(1);
  filter: brightness(0.86) saturate(1.1);
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 55%,
    rgba(31, 28, 25, 0.30) 0%,
    rgba(31, 28, 25, 0.55) 65%,
    rgba(15, 10, 8, 0.78) 100%
  );
  z-index: 1;
}

.final-cta-grade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 14, 10, 0.45) 0%,
    transparent 30%,
    transparent 70%,
    rgba(20, 14, 10, 0.55) 100%
  );
  z-index: 1;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: clamp(80px, 12vh, 140px) var(--gutter);
}

.final-cta-mark {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(243, 211, 164, 0.85);
  margin-bottom: 2rem;
}

.final-cta-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--bone);
  margin-bottom: 1.8rem;
}

.final-cta-body {
  font-family: var(--sans);
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(250, 246, 239, 0.78);
  margin: 0 auto 2.8rem;
  max-width: 520px;
}

/* Large underlined-only CTA — no border button */
.final-cta-link {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.85vw, 1.5rem);
  font-weight: 400;
  color: var(--bone);
  cursor: pointer;
}
.final-cta-link-label::after {
  content: ' →';
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
}
.final-cta-link:hover .final-cta-link-label::after { transform: translateX(8px); }
.final-cta-link-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(243, 211, 164, 0.85), rgba(243, 211, 164, 0));
}

.final-cta-faq {
  margin-top: 2rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(250, 246, 239, 0.5);
  letter-spacing: 0.04em;
}
.final-cta-faq a {
  border-bottom: 1px solid rgba(250, 246, 239, 0.3);
  padding-bottom: 1px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.final-cta-faq a:hover {
  color: var(--amber-glow);
  border-color: var(--amber-glow);
}

[data-final-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.final-cta-v2.is-revealed [data-final-reveal] { opacity: 1; transform: translateY(0); }
.final-cta-v2.is-revealed [data-final-reveal]:nth-child(1) { transition-delay: 0.30s; }
.final-cta-v2.is-revealed [data-final-reveal]:nth-child(2) { transition-delay: 0.45s; }
.final-cta-v2.is-revealed [data-final-reveal]:nth-child(3) { transition-delay: 0.60s; }
.final-cta-v2.is-revealed [data-final-reveal]:nth-child(4) { transition-delay: 0.80s; }
.final-cta-v2.is-revealed [data-final-reveal]:nth-child(5) { transition-delay: 0.95s; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--olive-deep);
  color: var(--bone);
  padding: clamp(60px, 8vw, 100px) var(--gutter) clamp(30px, 4vw, 50px);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 100px);
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(250, 246, 239, 0.1);
}

.footer-logo {
  height: 42px;
  width: auto;
  margin-bottom: 1.4rem;
  opacity: 0.95;
}

.footer-tagline {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--olive);
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.4rem;
}

.footer-nav-col a {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(250, 246, 239, 0.65);
  transition: color 0.3s ease;
}
.footer-nav-col a:hover { color: var(--bone); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal,
.footer-privacy {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(250, 246, 239, 0.35);
  letter-spacing: 0.04em;
}

.footer-privacy a { transition: color 0.3s ease; }
.footer-privacy a:hover { color: rgba(250, 246, 239, 0.65); }

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */
@media (max-width: 1024px) {
  .how-header { grid-template-columns: 1fr; gap: 1.2rem; }
  .how-grid { grid-template-columns: 1fr; gap: 3rem; }
  .how-image { aspect-ratio: 4/3; }

  /* Mobile + tablet: vertical stack — each step reveals as user scrolls */
  .how-grid {
    display: block;
  }
  .how-columns {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: clamp(20px, 4vw, 32px);
    padding: 0;
    margin: 0;
    overflow: visible;
  }
  .how-columns::before, .how-columns::after { display: none; }
  .how-col,
  .how-col:first-child,
  .how-col:last-child {
    width: 100%;
    max-width: none;
    /* Reset desktop's :first-child / :last-child padding overrides */
    padding: clamp(28px, 6vw, 40px) clamp(24px, 5vw, 32px);
    border: 1px solid rgba(54, 53, 52, 0.14);
    background: rgba(250, 246, 239, 0.45);
    /* Per-card scroll-reveal */
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  }
  .how-col.is-revealed {
    opacity: 1;
    transform: translateY(0);
  }
  .how-col-head { margin-bottom: 1.3rem; padding-bottom: 0.9rem; }
  .how-col-num { font-size: 2rem; }
  .how-col h3 { font-size: 1.12rem; }
  .how-col p { font-size: 0.9rem; line-height: 1.75; }

  .stewardship-plates { grid-template-columns: 1fr; }
  .plate { border-right: none; }
  .plate-numeral { font-size: clamp(2.4rem, 9vw, 3.4rem); }

  .events-inset {
    right: var(--gutter);
    left: var(--gutter);
    bottom: clamp(140px, 22vh, 180px);
    max-width: none;
  }
  .events-meta { gap: clamp(20px, 4vw, 36px); }

  .journal-grid { grid-template-columns: 1fr; }
  .journal-row { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */
@media (max-width: 768px) {
  :root {
    --gutter: 20px;
    --section-v: 64px;
  }

  .site-header { height: 64px; }

  /* Hero */
  .hero-particle { padding-bottom: 80px; }
  .hero-h1 { font-size: clamp(1.6rem, 7.5vw, 2.4rem); }
  .hero-content { padding: 0 var(--gutter); }

  /* Footer */
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  /* Collection frames smaller */
  .collection-frame { width: 70vw; }

  /* Journal — mobile carousel: hero + row articles all in one horizontal swipe */
  .journal-grid {
    display: flex;
    flex-direction: row;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding: 0 var(--gutter);
    margin: 0 calc(-1 * var(--gutter));
    touch-action: pan-x pan-y;
  }
  .journal-grid::-webkit-scrollbar { display: none; }

  /* All articles become equal-sized magazine cards */
  .journal-article,
  .journal-article--hero {
    flex: 0 0 86%;
    max-width: 380px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* Uniform image */
  .journal-hero-image,
  .journal-card-img {
    aspect-ratio: 4 / 5;
    width: 100%;
    overflow: hidden;
    background: var(--linen);
  }
  .journal-hero-image img,
  .journal-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Add margins to the text below the image so it breathes */
  .journal-hero-body,
  .journal-article {
    padding: 0 4px;
  }
  .journal-article--hero h3 {
    font-size: clamp(1.05rem, 4.5vw, 1.25rem);
    line-height: 1.32;
    padding: 0 4px;
  }

  /* Hide the in-card excerpt + read link on mobile — the section CTA below covers it */
  .journal-excerpt { display: none; }
  .journal-readlink { display: none; }

  .journal-row {
    display: contents;
  }
  .journal-row .journal-article h3 {
    font-size: clamp(1rem, 4.2vw, 1.15rem);
    line-height: 1.32;
    padding: 0 4px;
  }
  .journal-cat {
    font-size: 0.64rem;
    letter-spacing: 0.28em;
    padding: 0 4px;
  }

  /* Events — mobile restructure: image first, editorial card below */
  .events-stage {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .events-image-wrap {
    position: relative;
    height: auto;
    aspect-ratio: 4 / 5;
    width: 100%;
  }
  .events-image-wrap img {
    position: relative;
    inset: auto;
    height: 100%;
    object-position: center 38%;
  }
  .events-image-overlay,
  .events-image-grade {
    background: linear-gradient(180deg,
      rgba(20, 14, 10, 0.0) 0%,
      rgba(20, 14, 10, 0.35) 100%);
  }
  /* Editorial card below the image — soft warm linen palette */
  .events-inset {
    position: relative;
    inset: auto;
    right: auto; left: auto; top: auto; bottom: auto;
    max-width: none;
    background: var(--fragrance);     /* warm soft cream */
    color: var(--ink-warm);
    padding: clamp(28px, 6vw, 40px) 20px clamp(24px, 4vw, 36px);
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  }
  .events-stage.is-revealed .events-inset { opacity: 1; transform: translateY(0); }

  .events-mark {
    margin-bottom: 1rem;
    font-size: 0.66rem;
    color: var(--amber-muted);
  }
  .events-headline {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
    margin-bottom: 1.2rem;
    color: var(--ink-warm);
  }
  .events-body {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    color: var(--ink-warm);
    opacity: 0.78;
  }
  /* Override btn-ghost--light styling so it works on the cream card */
  .events-inset .btn-ghost.btn-ghost--light {
    display: inline-flex;
    margin-top: 0.4rem;
    color: var(--ink-warm);
    border-color: rgba(54, 53, 52, 0.35);
  }
  .events-inset .btn-ghost.btn-ghost--light:hover {
    background: var(--ink-warm);
    color: var(--bone);
    border-color: var(--ink-warm);
  }

  /* Meta tags — same fragrance card, just a quiet hairline list */
  .events-meta {
    position: relative;
    left: auto; right: auto; bottom: auto;
    padding: 0 20px 1.6rem;
    background: var(--fragrance);
    border-top: 1px solid rgba(54, 53, 52, 0.10);
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    list-style: none;
  }
  .events-meta li {
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(54, 53, 52, 0.10);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.34em;
    color: var(--ink-warm);
    opacity: 0.6;
  }
  .events-meta li:last-child { border-bottom: none; }

  /* Final CTA */
  .final-cta-v2 { min-height: 88svh; }
}

/* ============================================================
   REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-hero-reveal],
  [data-how-reveal],
  [data-stew-reveal],
  [data-coll-reveal],
  [data-journal-reveal],
  [data-final-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-canvas { opacity: 0.5; }
}

/* ============================================================
   INTERNAL PAGES — Editorial shell
   Used by about/system/memberships/collection/journal/faq/contact/policies
============================================================ */

.page-shell { background: var(--bone); color: var(--ink-warm); }

/* Cinematic hero — full-bleed image, dark gradient, big white principal logo reads on top */
.page-hero {
  position: relative;
  min-height: 58svh;
  padding: clamp(140px, 18vh, 190px) var(--gutter) clamp(70px, 9vw, 110px);
  background: var(--brown-deep);
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--bone);
}
.page-hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
}
.page-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 8, 6, 0.55);
}
.page-hero.no-image { background: linear-gradient(180deg, var(--brown-deep) 0%, #1c1411 100%); }
.page-hero.no-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(239,190,156,0.10), transparent 55%),
              radial-gradient(circle at 80% 70%, rgba(127,139,121,0.08), transparent 60%);
  z-index: 1;
}
.page-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 3; width: 100%; text-align: center; }
.page-hero-eyebrow {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(0.85rem, 1.05vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: clamp(20px, 3vw, 32px);
  display: inline-block;
}
.page-hero h1 {
  font-family: 'IM Fell French Canon Pro', 'IM Fell French Canon', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin: 0 auto;
  max-width: 20ch;
  text-shadow: 0 2px 18px rgba(0,0,0,0.3);
}
.page-hero-sub {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  color: var(--bone);
  max-width: 56ch;
  opacity: 0.9;
}
.page-hero-sub a { color: var(--amber); border-bottom-color: var(--amber); }

/* Hero scroll-cue */
.page-hero-scroll-cue {
  display: none !important;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.55);
  pointer-events: none;
}
.page-hero-scroll-cue::after {
  content: '';
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, rgba(250,246,239,0.5), rgba(250,246,239,0));
  animation: scrollCue 2.4s ease-in-out infinite;
}
@keyframes scrollCue { 0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 0.4; } 50% { transform: scaleY(0.4); opacity: 0.9; } }
@media (max-width: 640px) { .page-hero-scroll-cue { display: none; } }

/* Editorial section */
.page-section { padding: clamp(64px, 9vw, 130px) var(--gutter); position: relative; }
.page-section-inner { max-width: 1200px; margin: 0 auto; }
.page-section.bg-fragrance { background: var(--fragrance); }
.page-section.bg-linen { background: var(--linen); }
.page-section.bg-bone { background: var(--bone); }
.page-section.bg-dark { background: var(--olive-deep); color: var(--bone); }
.page-section.bg-dark .editorial-h2,
.page-section.bg-dark .editorial-body { color: var(--bone); }
.page-section.bg-dark .editorial-eyebrow { color: var(--amber); }

.editorial-eyebrow {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 22px;
  display: block;
}
.editorial-h2 {
  font-family: 'IM Fell French Canon Pro', 'IM Fell French Canon', serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink-warm);
  margin: 0 0 clamp(22px, 3vw, 38px);
  max-width: 22ch;
}
.editorial-body {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.72;
  color: var(--brown-deep);
  max-width: 66ch;
  margin: 0 0 1.25em;
}

/* Two-column editorial */
.editorial-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.5fr;
  gap: clamp(36px, 5vw, 110px);
  align-items: start;
}
.editorial-split .editorial-h2 { max-width: 15ch; }
@media (max-width: 960px) {
  .editorial-split { grid-template-columns: 1fr; gap: clamp(20px, 4vw, 32px); }
  .editorial-split .editorial-h2 { max-width: 24ch; }
  .editorial-body { max-width: 60ch; }
}

/* Numbered list with editorial steps */
.editorial-steps { display: grid; gap: clamp(28px, 4vw, 56px); margin-top: clamp(28px, 4vw, 56px); }
.editorial-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
  padding-bottom: clamp(28px, 4vw, 48px);
  border-bottom: 1px solid rgba(54, 53, 52, 0.12);
}
.editorial-step:last-child { border-bottom: none; padding-bottom: 0; }
.editorial-step-num {
  font-family: 'IM Fell French Canon Pro', serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  color: var(--olive);
  font-style: italic;
}
.editorial-step h3 {
  font-family: 'IM Fell French Canon Pro', serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin: 0 0 12px;
  color: var(--ink-warm);
}
.editorial-step p {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--brown-deep);
  margin: 0;
  max-width: 60ch;
}
@media (max-width: 640px) {
  .editorial-step { grid-template-columns: 1fr; gap: 8px; }
  .editorial-step-num { font-size: 1.4rem; }
}

/* Principle / tier cards */
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(28px, 4vw, 48px);
}
@media (max-width: 840px) { .principle-grid { grid-template-columns: 1fr; } }
.principle-card {
  padding: clamp(28px, 3vw, 40px);
  background: var(--bone);
  border: 1px solid rgba(54, 53, 52, 0.1);
  border-radius: 2px;
}
.page-section.bg-fragrance .principle-card,
.page-section.bg-linen .principle-card { background: rgba(255,255,255,0.5); }
.principle-card h3 {
  font-family: 'IM Fell French Canon Pro', serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin: 0 0 16px;
  color: var(--ink-warm);
}
.principle-card .principle-tag {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: 14px;
}
.principle-card p {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--brown-deep);
  margin: 0;
}

/* Tier cards (memberships) */
.tier-stack { display: grid; gap: clamp(28px, 3.5vw, 48px); margin-top: clamp(36px, 5vw, 64px); }
.tier-card {
  padding: clamp(36px, 4.5vw, 64px);
  background: var(--bone);
  border: 1px solid rgba(54, 53, 52, 0.12);
  border-radius: 2px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(36px, 4vw, 64px);
}
@media (max-width: 840px) { .tier-card { grid-template-columns: 1fr; gap: 24px; padding: 32px 26px; } }
.tier-card-head .tier-num {
  font-family: 'IM Fell French Canon Pro', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--olive);
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.tier-card-head h3 {
  font-family: 'IM Fell French Canon Pro', serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  color: var(--ink-warm);
  margin: 0 0 18px;
}
.tier-card-head .tier-tagline {
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--brown-deep);
  opacity: 0.85;
  margin: 0;
  font-style: italic;
}
.tier-card-body p {
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--brown-deep);
  margin: 0 0 22px;
}
.tier-includes {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid rgba(54, 53, 52, 0.1);
}
.tier-includes li {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--brown-deep);
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid rgba(54, 53, 52, 0.08);
  position: relative;
}
.tier-includes li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 14px;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--olive);
  letter-spacing: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}
.tier-includes li:hover::before { transform: rotate(45deg) scale(1.15); color: var(--amber); }
.tier-investment {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--ink-warm);
  margin: 0 0 22px;
  padding-top: 6px;
}
.tier-investment strong { font-weight: 600; }
.tier-cta {
  display: inline-block;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-warm);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-warm);
  padding-bottom: 4px;
  transition: color 0.25s, border-color 0.25s;
}
.tier-cta:hover { color: var(--olive); border-color: var(--olive); }

/* Comparison table */
.compare-table-wrap { overflow-x: auto; margin-top: clamp(28px, 4vw, 48px); }
.compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-family: 'Urbanist', sans-serif;
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: left;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(54, 53, 52, 0.1);
  vertical-align: top;
  color: var(--brown-deep);
}
.compare-table thead th {
  font-family: 'IM Fell French Canon Pro', serif;
  font-size: 1.05rem;
  color: var(--ink-warm);
  font-weight: 400;
  background: var(--fragrance);
}
.compare-table tbody th {
  font-weight: 500;
  color: var(--ink-warm);
  background: rgba(242, 234, 226, 0.4);
}

/* FAQ accordion */
.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin: clamp(28px, 4vw, 44px) 0 clamp(36px, 5vw, 60px);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(54, 53, 52, 0.12);
}
.faq-nav a {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.faq-nav a:hover { color: var(--olive); border-color: var(--olive); }
.faq-group { margin-bottom: clamp(48px, 6vw, 80px); }
.faq-group-title {
  font-family: 'IM Fell French Canon Pro', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 0 0 28px;
  color: var(--ink-warm);
}
.faq-item {
  border-top: 1px solid rgba(54, 53, 52, 0.15);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(54, 53, 52, 0.15); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: 'IM Fell French Canon Pro', serif;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-warm);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Urbanist', sans-serif;
  font-size: 1.4rem;
  font-weight: 200;
  color: var(--olive);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item summary:hover { color: var(--olive); }
.faq-body {
  padding: 0 0 28px;
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--brown-deep);
  max-width: 70ch;
}
.faq-body p { margin: 0 0 14px; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body ul { margin: 8px 0 14px; padding: 0 0 0 22px; }
.faq-body ul li { margin-bottom: 6px; }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
@media (max-width: 840px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.contact-info p { font-family: 'Urbanist', sans-serif; font-size: 1rem; line-height: 1.65; color: var(--brown-deep); margin: 0 0 18px; max-width: 44ch; }
.contact-info .contact-meta { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(54,53,52,0.12); }
.contact-info .contact-meta-row { display: block; font-family: 'Urbanist', sans-serif; font-size: 0.84rem; letter-spacing: 0.06em; color: var(--brown-deep); margin-bottom: 10px; }
.contact-info .contact-meta-row strong { display: block; font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--olive); margin-bottom: 4px; font-weight: 500; }
.contact-form { display: grid; gap: 22px; }
.form-row { display: grid; gap: 8px; }
.form-row label {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
}
.form-row input,
.form-row select,
.form-row textarea {
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  color: var(--ink-warm);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(54, 53, 52, 0.35);
  padding: 12px 0;
  outline: none;
  border-radius: 0;
  width: 100%;
  transition: border-color 0.25s;
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-bottom-color: var(--olive); }
.form-row-group { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 560px) { .form-row-group { grid-template-columns: 1fr; } }
.form-submit {
  margin-top: 12px;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--ink-warm);
  color: var(--bone);
  border: none;
  padding: 18px 32px;
  cursor: pointer;
  justify-self: start;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--olive); }

/* Shop / Collection page grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px);
  margin-top: clamp(36px, 5vw, 56px);
}
.shop-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.shop-card-image {
  aspect-ratio: 1 / 1;
  background: var(--fragrance);
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 2px;
  transition: transform 0.5s ease;
}
.shop-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shop-card:hover .shop-card-image { transform: scale(1.02); }
.shop-card-meta { display: flex; flex-direction: column; gap: 4px; }
.shop-card-num { font-family: 'Urbanist', sans-serif; font-size: 0.7rem; letter-spacing: 0.28em; color: var(--olive); text-transform: uppercase; }
.shop-card-title { font-family: 'IM Fell French Canon Pro', serif; font-size: 1.25rem; color: var(--ink-warm); }
.shop-card-type { font-family: 'Urbanist', sans-serif; font-size: 0.88rem; color: var(--brown-deep); opacity: 0.78; }
.shop-card-price { font-family: 'Urbanist', sans-serif; font-size: 0.92rem; color: var(--ink-warm); margin-top: 6px; letter-spacing: 0.04em; }

/* Journal index */
.journal-index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 5vw, 72px) clamp(28px, 3vw, 48px);
  margin-top: clamp(36px, 5vw, 56px);
}
@media (max-width: 720px) { .journal-index { grid-template-columns: 1fr; } }
.journal-index article { display: flex; flex-direction: column; }
.journal-index-image {
  aspect-ratio: 4 / 3;
  background: var(--linen);
  margin-bottom: 22px;
  overflow: hidden;
}
.journal-index-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.journal-index-meta { font-family: 'Urbanist', sans-serif; font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--olive); margin-bottom: 12px; }
.journal-index-title { font-family: 'IM Fell French Canon Pro', serif; font-size: clamp(1.4rem, 2.1vw, 1.8rem); line-height: 1.15; color: var(--ink-warm); margin: 0 0 14px; }
.journal-index-excerpt { font-family: 'Urbanist', sans-serif; font-size: 0.98rem; line-height: 1.6; color: var(--brown-deep); margin: 0 0 16px; max-width: 50ch; }
.journal-index-link { font-family: 'Urbanist', sans-serif; font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-warm); text-decoration: none; border-bottom: 1px solid var(--ink-warm); padding-bottom: 3px; align-self: flex-start; }

/* Generic CTA block */
.page-cta {
  text-align: center;
  padding: clamp(72px, 10vw, 130px) var(--gutter);
  background: var(--fragrance);
  color: var(--ink-warm);
}
.page-cta h2 {
  font-family: 'IM Fell French Canon Pro', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  margin: 0 auto clamp(20px, 2.6vw, 32px);
  max-width: 22ch;
  color: var(--ink-warm);
}
.page-cta p {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 auto clamp(28px, 3.5vw, 40px);
  max-width: 56ch;
  color: var(--brown-deep);
  opacity: 0.9;
}
.page-cta .cta-btn {
  display: inline-block;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  background: var(--olive-deep);
  text-decoration: none;
  padding: 18px 38px;
  border: 1px solid var(--olive-deep);
  transition: background 0.25s, color 0.25s;
}
.page-cta .cta-btn:hover { background: transparent; color: var(--olive-deep); }
.page-cta .cta-secondary {
  display: block;
  margin-top: 28px;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--olive-deep);
  text-decoration: none;
}
.page-cta .cta-secondary:hover { color: var(--ink-warm); }

/* Inline link inside editorial body */
.editorial-body a, .faq-body a { color: var(--olive); text-decoration: none; border-bottom: 1px solid var(--olive); }
.editorial-body a:hover, .faq-body a:hover { color: var(--ink-warm); border-color: var(--ink-warm); }

/* Page-section header inline CTA */
.page-section .inline-cta {
  display: inline-block;
  margin-top: clamp(20px, 2.5vw, 32px);
  font-family: 'Urbanist', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-warm);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-warm);
  padding-bottom: 4px;
}
.page-section .inline-cta:hover { color: var(--olive); border-color: var(--olive); }

/* Active nav link */
.desktop-nav a.active,
.menu-link.active { color: var(--olive); }

/* Hide layers/hero-only canvas on internal pages */
.page-shell ~ * .hero-canvas { display: none; }

/* Page hero icon system — minimal SVG line-art used across internal pages */
.icon-rail {
  display: flex;
  gap: clamp(40px, 6vw, 96px);
  flex-wrap: wrap;
  margin: clamp(36px, 4vw, 56px) 0 clamp(8px, 1vw, 16px);
  padding-bottom: clamp(28px, 3vw, 40px);
  border-bottom: 1px solid rgba(54,53,52,0.12);
}
.icon-rail-item { display: flex; flex-direction: column; gap: 12px; max-width: 220px; }
.icon-rail-svg { width: 44px; height: 44px; stroke: var(--olive); fill: none; stroke-width: 1.1; stroke-linecap: round; stroke-linejoin: round; }
.page-section.bg-dark .icon-rail-svg { stroke: var(--amber); }
.icon-rail-label { font-family: 'Urbanist', sans-serif; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-warm); }
.page-section.bg-dark .icon-rail-label { color: var(--bone); }
.icon-rail-note { font-family: 'Urbanist', sans-serif; font-size: 0.92rem; line-height: 1.5; color: var(--brown-deep); margin: 0; }
.page-section.bg-dark .icon-rail-note { color: rgba(250,246,239,0.78); }

/* Principle card icon variant */
.principle-card .principle-icon { width: 38px; height: 38px; stroke: var(--olive); fill: none; stroke-width: 1.1; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 16px; display: block; }

/* Editorial step inline icon */
.editorial-step-icon { width: 28px; height: 28px; stroke: var(--olive); fill: none; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; vertical-align: middle; margin-right: 10px; }

/* Hero decorative ornament — abstract scent trail */
.hero-ornament {
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: clamp(140px, 18vw, 240px);
  height: clamp(140px, 18vw, 240px);
  opacity: 0.35;
  pointer-events: none;
}
.hero-ornament svg { width: 100%; height: 100%; stroke: var(--amber); fill: none; stroke-width: 0.9; stroke-linecap: round; }
@media (max-width: 720px) { .hero-ornament { display: none; } }

/* Section-divider rule */
.section-rule { width: 60px; height: 1px; background: var(--olive); margin: 0 0 28px; opacity: 0.7; }
.page-section.bg-dark .section-rule { background: var(--amber); }

/* ============================================================
   TIER CARDS — refined w/ highlights + collapsible details
============================================================ */
.tier-card { position: relative; }
.tier-card-featured {
  background: linear-gradient(180deg, var(--bone) 0%, rgba(242,234,226,0.7) 100%);
  border-color: rgba(127,139,121,0.35);
  box-shadow: 0 18px 48px -28px rgba(54,53,52,0.25);
}
.tier-card-premium {
  background: var(--olive-deep);
  color: var(--bone);
  border-color: rgba(239,190,156,0.35);
}
.tier-card-premium .tier-card-head h3,
.tier-card-premium .tier-card-body p { color: var(--bone); }
.tier-card-premium .tier-card-head .tier-num { color: var(--amber); }
.tier-card-premium .tier-card-head .tier-tagline,
.tier-card-premium .tier-card-body p em { color: rgba(250,246,239,0.78); }
.tier-card-premium .tier-highlights li { color: var(--bone); border-color: rgba(239,190,156,0.18); }
.tier-card-premium .tier-highlights svg { stroke: var(--amber); }
.tier-card-premium .tier-investment { border-color: rgba(239,190,156,0.25); }
.tier-card-premium .tier-investment-label { color: var(--amber); }
.tier-card-premium .tier-investment-value { color: var(--bone); }
.tier-card-premium .tier-cta { color: var(--bone); border-color: var(--bone); }
.tier-card-premium .tier-cta:hover { color: var(--amber); border-color: var(--amber); }
.tier-card-premium .tier-details summary { color: var(--bone); border-color: rgba(239,190,156,0.25); }
.tier-card-premium .tier-details summary:hover { color: var(--amber); }
.tier-card-premium .tier-details-cue { color: var(--amber); }
.tier-card-premium .tier-includes li { color: rgba(250,246,239,0.78); border-color: rgba(239,190,156,0.12); }
.tier-card-premium .tier-includes li::before { color: var(--amber); }

.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--olive);
  color: var(--bone);
  font-family: 'Urbanist', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 2px;
  z-index: 2;
}

/* Highlight bullets — icon + short label, the key differentiator */
.tier-highlights {
  list-style: none;
  margin: clamp(22px, 2.4vw, 30px) 0 clamp(20px, 2.4vw, 28px);
  padding: 0;
  display: grid;
  gap: 10px;
}
.tier-highlights li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.95rem;
  color: var(--ink-warm);
  border-bottom: 1px solid rgba(127,139,121,0.18);
}
.tier-highlights li:last-child { border-bottom: none; }
.tier-highlights svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--olive);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Investment row — clean two-line block */
.tier-investment {
  display: block;
  margin: 0 0 22px;
  padding: 18px 0;
  border-top: 1px solid rgba(54,53,52,0.12);
  border-bottom: 1px solid rgba(54,53,52,0.12);
}
.tier-investment-label {
  display: block;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 6px;
}
.tier-investment-value {
  display: block;
  font-family: 'IM Fell French Canon Pro', serif;
  font-size: 1.2rem;
  color: var(--ink-warm);
}

/* Collapsible details — toggle for the full includes list */
.tier-details {
  margin-top: clamp(20px, 2.6vw, 32px);
  border-top: 1px solid rgba(54,53,52,0.12);
}
.tier-details summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-warm);
  transition: color 0.2s;
}
.tier-details summary::-webkit-details-marker { display: none; }
.tier-details summary:hover { color: var(--olive); }
.tier-details-cue {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--olive);
}
.tier-details-cue::after {
  content: '+';
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 300;
  transition: transform 0.3s;
}
.tier-details[open] .tier-details-cue::after { content: '–'; }
.tier-details[open] .tier-details-cue::before { content: 'Hide'; }
.tier-details[open] .tier-details-cue { gap: 8px; }
.tier-details[open] .tier-details-cue span:first-child { display: none; }

.tier-details .tier-includes {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(54,53,52,0.08);
  animation: tierFadeIn 0.4s ease-out;
}
@keyframes tierFadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* Contact form — honeypot + status banner */
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-status {
  margin-bottom: 28px;
  padding: 18px 22px;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  border-left: 2px solid;
  border-radius: 2px;
}
.form-status.success {
  border-color: var(--olive);
  background: rgba(127, 139, 121, 0.08);
  color: var(--ink-warm);
}
.form-status.error {
  border-color: #b8484b;
  background: rgba(184, 72, 75, 0.08);
  color: #6e2426;
}
.form-status a {
  color: inherit;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

/* ============================================================
   HOW IT WORKS v3 — "Numbered Rail"
   Headline + family image on top, steps connected by a
   horizontal progress line with circled roman numerals.
============================================================ */
.how-v3 { background: var(--fragrance); padding: clamp(80px, 10vw, 150px) var(--gutter); }
.how-v3 .how3-inner { max-width: 1280px; margin: 0 auto; }
.how3-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
  margin-bottom: clamp(50px, 6vw, 84px);
}
.how3-top .how3-frame { aspect-ratio: 3 / 2; overflow: hidden; border-radius: 2px; }
.how3-top img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 45%; display: block; }
.how3-rail { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(30px, 4vw, 60px); }
.how3-rail::before {
  content: '';
  position: absolute;
  top: 26px; left: 0; right: 0;
  height: 1px;
  background: rgba(54,53,52,0.18);
}
.how3-step { position: relative; padding-top: 64px; }
.how3-dot {
  position: absolute; top: 0; left: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--olive);
  background: var(--fragrance);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--olive);
  z-index: 1;
  transition: background 0.35s, color 0.35s;
}
.how3-step:hover .how3-dot { background: var(--olive); color: var(--bone); }
.how3-step-label {
  font-family: var(--sans);
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: 12px;
}
.how3-step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.35rem, 1.9vw, 1.7rem);
  line-height: 1.14;
  color: var(--ink-warm);
  margin: 0 0 12px;
}
.how3-step p { font-family: var(--sans); font-size: 0.99rem; line-height: 1.66; color: var(--brown-deep); margin: 0; }
.how3-footer { margin-top: clamp(44px, 5vw, 70px); }
@media (max-width: 860px) {
  .how3-top { grid-template-columns: 1fr; gap: 28px; }
  .how3-rail { grid-template-columns: 1fr; gap: 44px; }
  .how3-rail::before { top: 0; bottom: 0; left: 26px; right: auto; width: 1px; height: auto; }
  .how3-step { padding-top: 0; padding-left: 80px; }
}

/* ============================================================
   EVENTS v3 — "Gallery Mat"
   Headline centered above; photo framed like gallery art;
   meta + CTA on a clean row underneath. No text on image.
============================================================ */
.events-v3 { background: var(--linen); padding: clamp(80px, 10vw, 150px) var(--gutter); }
.events3-head { text-align: center; max-width: 820px; margin: 0 auto clamp(44px, 5vw, 70px); }
.events3-head .section-label { display: inline-block; }
.events3-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.06;
  color: var(--ink-warm);
  margin: 0;
}
.events3-lead {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.7;
  color: var(--brown-deep);
  margin: 20px auto 0;
  max-width: 58ch;
}
.events3-frame { max-width: 1080px; margin: 0 auto; }
.events3-frame .frame {
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 40px 90px -44px rgba(42,33,27,0.5);
}
.events3-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.events3-below {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1080px;
  margin: 34px auto 0;
  flex-wrap: wrap;
}
.events3-meta { list-style: none; display: flex; gap: clamp(20px, 3vw, 44px); margin: 0; padding: 0; }
.events3-meta li {
  font-family: var(--sans);
  font-size: clamp(0.8rem, 0.95vw, 0.88rem);
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--olive);
  position: relative;
}
.events3-meta li:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: calc(-1 * clamp(20px, 3vw, 44px) / 2 - 3px);
  color: var(--amber);
}
.events3-cta {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-warm);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-warm);
  padding-bottom: 5px;
  transition: color 0.25s, border-color 0.25s;
}
.events3-cta:hover { color: var(--olive); border-color: var(--olive); }
@media (max-width: 720px) {
  .events3-frame .frame { aspect-ratio: 4 / 3; }
  .events3-below { flex-direction: column; align-items: flex-start; }
  .events3-meta { flex-direction: column; gap: 12px; }
  .events3-meta li:not(:last-child)::after { display: none; }
}

/* Footer address line */
.footer-address { font-family: var(--sans); font-size: 0.82rem; font-weight: 300; line-height: 1.6; color: rgba(250, 246, 239, 0.65); font-style: normal; }

/* Hidden-webview resilience — when the document is hidden (backgrounded
   tab / embedded preview), CSS transitions freeze at their start value and
   reveal animations never finish. body.force-final snaps them to the end. */
body.force-final [data-hero-reveal],
body.force-final [data-how-reveal],
body.force-final [data-events-reveal],
body.force-final [data-stew-reveal],
body.force-final [data-coll-reveal],
body.force-final [data-journal-reveal],
body.force-final [data-plate],
body.force-final .mask-line-inner {
  transition: none !important;
}

/* How v3 headline — match the mockup's large serif treatment */
.how3-top h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink-warm);
  margin: 0;
}
.how3-top .section-label { margin-bottom: clamp(18px, 2vw, 28px); }

/* ============================================================
   INTERNAL HERO — "Split Banner"
   Text on a fragrance panel left, untouched image right.
   Header on internal pages is solid (scrolled state) from load.
============================================================ */
.page-hero-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 62svh;
  margin-top: 76px; /* solid header height */
}
.page-hero-panel {
  background: var(--fragrance);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 6vw, 90px) clamp(30px, 5vw, 80px);
}
.page-hero-panel .page-hero-eyebrow { color: var(--olive); }
.page-hero-panel h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink-warm);
  margin: 0;
  max-width: 18ch;
}
.page-hero-rule { width: 56px; height: 1px; background: var(--olive); margin-top: clamp(24px, 3vw, 40px); }
.page-hero-media { overflow: hidden; background: var(--linen); }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* No-media variant (e.g. Policies) — panel spans full width */
.page-hero-split.no-media { grid-template-columns: 1fr; min-height: 44svh; }
.page-hero-split.no-media .page-hero-panel { align-items: flex-start; padding-left: var(--gutter); padding-right: var(--gutter); }
.page-hero-split.no-media .page-hero-panel > * { max-width: 1280px; }
@media (max-width: 780px) {
  .page-hero-split { grid-template-columns: 1fr; min-height: 0; }
  .page-hero-media { order: -1; aspect-ratio: 16 / 10; }
  .page-hero-panel { padding: 44px var(--gutter) 52px; }
}

/* ============================================================
   PHOTO BREAK — full-bleed image band between content sections
   Lets long internal pages breathe.
============================================================ */
.photo-break {
  height: clamp(300px, 52vh, 560px);
  overflow: hidden;
  position: relative;
}
.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-break-caption {
  position: absolute;
  bottom: 18px;
  right: var(--gutter);
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.75);
  background: rgba(11, 8, 6, 0.35);
  padding: 8px 14px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 2px;
}
@media (max-width: 640px) { .photo-break { height: 44vw; min-height: 220px; } .photo-break-caption { display: none; } }

/* ============================================================
   READ MORE — preview + expandable body for long editorial copy
============================================================ */
.read-more { margin-top: 4px; }
.read-more summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive-deep);
  padding: 6px 0;
  border-bottom: 1px solid var(--olive-deep);
  transition: color 0.25s, border-color 0.25s;
}
.read-more summary::-webkit-details-marker { display: none; }
.read-more summary::after {
  content: '+';
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
}
.read-more[open] summary::after { content: '–'; }
.read-more[open] summary .rm-label-closed { display: none; }
.read-more summary .rm-label-open { display: none; }
.read-more[open] summary .rm-label-open { display: inline; }
.read-more summary:hover { color: var(--ink-warm); border-color: var(--ink-warm); }
.read-more .rm-body { padding-top: 18px; animation: tierFadeIn 0.4s ease-out; }
.read-more .rm-body .editorial-body:last-child { margin-bottom: 0; }

/* ============================================================
   ABOUT — "Who we are" Strata (the layers of a space)
============================================================ */
.who-strata { background: var(--bone); }
.who-strata .who-strata-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.strata { display: flex; flex-direction: column; border-radius: 2px; overflow: hidden; }
.stratum {
  display: grid; grid-template-columns: 220px 1fr; gap: clamp(20px, 4vw, 60px);
  align-items: center;
  padding: clamp(24px, 3vw, 38px) clamp(24px, 3.5vw, 48px);
  transition: padding 0.4s var(--ease-out);
}
@media (max-width: 700px) { .stratum { grid-template-columns: 1fr; gap: 8px; } }
.stratum-name { font-family: var(--serif); font-size: clamp(1.2rem, 1.8vw, 1.55rem); color: var(--ink-warm); }
.stratum-name small { display: block; font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--olive); margin-bottom: 6px; }
.stratum p { font-family: var(--sans); font-size: 0.95rem; line-height: 1.6; color: var(--brown-deep); margin: 0; max-width: 58ch; }
.stratum-1 { background: var(--bone); border: 1px solid rgba(54,53,52,0.1); border-bottom: none; }
.stratum-2 { background: var(--linen); }
.stratum-3 { background: rgba(127,139,121,0.18); }
.stratum-4 {
  background: linear-gradient(90deg, rgba(239,190,156,0.5), rgba(239,190,156,0.18));
  position: relative; overflow: hidden;
}
.stratum-4::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 50%, rgba(250,246,239,0.5), transparent 40%);
  animation: strataShimmer 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes strataShimmer { 0%,100% { transform: translateX(0);} 50% { transform: translateX(60%);} }
.stratum:hover { padding-top: clamp(34px, 4vw, 48px); padding-bottom: clamp(34px, 4vw, 48px); }

/* ============================================================
   ABOUT — Contexts photo cards
============================================================ */
.ctx-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.6vw, 36px); margin-top: clamp(32px, 4vw, 52px); }
@media (max-width: 760px) { .ctx-grid { grid-template-columns: 1fr; } }
.ctx-card { position: relative; border-radius: 2px; overflow: hidden; aspect-ratio: 16 / 10; display: block; }
.ctx-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease-out); }
.ctx-card:hover img { transform: scale(1.04); }
.ctx-card-plate {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  background: rgba(250,246,239,0.94);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 18px 22px;
  border-radius: 2px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  transition: opacity 0.3s;
}
.ctx-card-plate h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.1rem, 1.6vw, 1.4rem); color: var(--ink-warm); margin: 0; }
.ctx-card-plate span { font-family: var(--sans); font-size: 0.64rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--olive); white-space: nowrap; }
.ctx-card-desc {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  background: rgba(78,89,77,0.96);
  color: var(--bone);
  padding: 20px 22px;
  border-radius: 2px;
  font-family: var(--sans); font-size: 0.9rem; line-height: 1.55;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.ctx-card:hover .ctx-card-desc { opacity: 1; transform: translateY(0); }
.ctx-card:hover .ctx-card-plate { opacity: 0; }
/* Touch devices: no hover — show plate always, tap does nothing destructive */
@media (hover: none) {
  .ctx-card-desc { display: none; }
}

/* ============================================================
   SYSTEM — SCENE 1 · "The Drift" (pinned stencil narrative)
   Threshold stencil evolves: a service passes -> the scent
   dissipates -> Purzee holds the state. Text beside, never over.
============================================================ */
.drift-scene { position: relative; height: 380svh; background: var(--olive-deep); }
.drift-stage {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  padding: 0 var(--gutter);
  gap: clamp(24px, 4vw, 80px);
}
@media (max-width: 820px) {
  .drift-stage { grid-template-columns: 1fr; grid-template-rows: 46svh 1fr; gap: 0; align-items: start; }
}
.drift-art { display: flex; align-items: center; justify-content: center; height: 100%; }
.drift-art svg { width: min(100%, 620px); height: auto; }
.drift-copy-col { position: relative; min-height: 280px; }
.drift-copy {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}
.drift-copy.is-on { opacity: 1; transform: translateY(0); }
.drift-copy .lbl-x {
  font-family: var(--sans); font-size: clamp(0.8rem, 0.95vw, 0.92rem); font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--amber);
  display: block; margin-bottom: 16px;
}
.drift-copy h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.1;
  color: var(--bone); margin: 0 0 14px;
}
.drift-copy p {
  font-family: var(--sans); font-size: clamp(1rem, 1.2vw, 1.1rem); line-height: 1.65;
  color: rgba(250,246,239,0.85); margin: 0; max-width: 46ch;
}
.drift-progress {
  position: absolute; top: 50%; right: clamp(14px, 2vw, 30px); transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 12px;
}
.drift-progress span { width: 5px; height: 5px; border-radius: 50%; background: rgba(250,246,239,0.3); transition: background 0.3s, transform 0.3s; }
.drift-progress span.on { background: var(--amber); transform: scale(1.5); }

/* Stencil stroke language (Threshold style) */
.stencil-art * { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.stencil-art .ln  { stroke: rgba(250,246,239,0.92); stroke-width: 1.3; }
.stencil-art .ln2 { stroke: rgba(250,246,239,0.42); stroke-width: 1; }
.stencil-art .amber  { stroke: var(--amber); stroke-width: 1.5; filter: drop-shadow(0 0 5px rgba(239,190,156,0.5)); }
.stencil-art .amber2 { stroke: rgba(239,190,156,0.55); stroke-width: 1.1; }
.stencil-art .fillglow { fill: url(#driftGlow); stroke: none; }

/* Drift phases inside the SVG */
.drift-art .ph { opacity: 0; transition: opacity 0.9s var(--ease-out); }
.drift-scene[data-phase="0"] .ph0,
.drift-scene[data-phase="1"] .ph1,
.drift-scene[data-phase="2"] .ph2 { opacity: 1; }
.drift-scene[data-phase="2"] .drift-art svg { filter: drop-shadow(0 0 26px rgba(239,190,156,0.18)); }
.drift-art svg { transition: filter 1s; }

/* Gentle float on all scent lines */
.stencil-art .floaty { animation: stencilFloat 8s ease-in-out infinite; }
@keyframes stencilFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ============================================================
   SYSTEM — SCENE 2 · Process (pinned 5-step stencil sequence)
============================================================ */
.proc-scene { position: relative; height: 560svh; background: var(--linen); }
.proc-stage { position: sticky; top: 76px; height: calc(100svh - 76px); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 820px) {
  .proc-stage { grid-template-columns: 1fr; grid-template-rows: 34svh 1fr; }
  .proc-media { order: -1; }
  .proc-panel { padding: 18px var(--gutter) 24px; justify-content: flex-start; overflow: hidden; }
  .proc-panel .editorial-h2 { font-size: clamp(1.25rem, 5vw, 1.6rem); margin-bottom: 12px !important; }
  .proc-head-eyebrow { margin-bottom: 6px; }
  .proc-rail { margin-bottom: 16px; }
  .proc-rail span { width: 30px; height: 30px; font-size: 0.8rem; }
  .proc-step .proc-num { font-size: 2.1rem; margin-bottom: 8px; }
  .proc-step h3 { font-size: 1.3rem; margin-bottom: 8px; }
  .proc-step p { font-size: 0.94rem; line-height: 1.6; }
}
.proc-media { position: relative; overflow: hidden; background: var(--olive-deep); display: flex; align-items: center; justify-content: center; }
.proc-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(24px, 4vw, 70px);
  opacity: 0; transform: scale(1.04);
  transition: opacity 0.7s var(--ease-out), transform 1.1s var(--ease-out);
}
.proc-slide.on { opacity: 1; transform: scale(1); }
.proc-slide svg { width: min(100%, 560px); height: auto; max-height: 82svh; }
.proc-panel {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(30px, 5vw, 90px);
  position: relative;
  background: var(--linen);
}
.proc-head-eyebrow { font-family: var(--sans); font-size: clamp(0.8rem, 0.95vw, 0.92rem); font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--olive); display: block; margin-bottom: 8px; }
.proc-rail { display: flex; gap: 14px; margin-bottom: clamp(24px, 4vh, 44px); }
.proc-rail span {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(127,139,121,0.5);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 0.95rem;
  color: var(--olive);
  transition: background 0.4s, color 0.4s, border-color 0.4s;
}
.proc-rail span.on { background: var(--olive-deep); border-color: var(--olive-deep); color: var(--bone); }
.proc-steps-wrap { position: relative; min-height: clamp(220px, 34vh, 320px); }
.proc-step {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}
.proc-step.on { opacity: 1; transform: translateY(0); }
.proc-step .proc-num {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--olive);
  display: block; margin-bottom: 14px;
}
.proc-step h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 2.6vw, 2.2rem); color: var(--ink-warm); margin: 0 0 12px; }
.proc-step p { font-family: var(--sans); font-size: clamp(0.98rem, 1.15vw, 1.08rem); line-height: 1.68; color: var(--brown-deep); margin: 0; max-width: 48ch; }
.proc-hint {
  position: absolute; bottom: 26px; left: clamp(30px, 5vw, 90px);
  font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--olive); opacity: 0.7;
  display: flex; align-items: center; gap: 10px;
}
.proc-hint::after { content: ''; width: 30px; height: 1px; background: var(--olive); animation: hintPulse 2.4s ease-in-out infinite; }
@keyframes hintPulse { 0%,100% { transform: scaleX(1); opacity: 0.5; } 50% { transform: scaleX(1.6); opacity: 1; } }
@media (max-width: 820px) {
  .proc-steps-wrap { min-height: 0; flex: 1; }
  .proc-hint { display: none; }
}

/* Reduced motion / frozen webview fallback: stack scenes statically */
body.force-final .drift-scene, body.force-final .proc-scene { height: auto; }
body.force-final .drift-stage, body.force-final .proc-stage { position: static; height: auto; }
body.force-final .drift-copy { position: static; opacity: 1; transform: none; margin-bottom: 30px; }
body.force-final .drift-copy-col { padding: 40px 0; }
body.force-final .drift-art .ph { opacity: 1; }
body.force-final .proc-step { position: static; opacity: 1; transform: none; margin-bottom: 40px; }
body.force-final .proc-slide { position: static; opacity: 1; transform: none; display: none; }
body.force-final .proc-slide:first-child { display: flex; }

/* ============================================================
   SYSTEM — "Two systems, one service" explainer
   The service (Purzee) beside the technology (diffusion),
   explained with a labeled stencil in plain language.
============================================================ */
.twosys { background: var(--bone); padding: clamp(80px, 10vw, 140px) var(--gutter); }
.twosys-inner { max-width: 1280px; margin: 0 auto; }
.twosys-head { max-width: 780px; margin-bottom: clamp(36px, 5vw, 60px); }
.twosys-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 64px); align-items: stretch; }
@media (max-width: 900px) { .twosys-grid { grid-template-columns: 1fr; } }

.twosys-service {
  background: var(--fragrance);
  border-radius: 2px;
  padding: clamp(30px, 3.6vw, 52px);
  display: flex; flex-direction: column;
}
.twosys-tag {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--olive-deep);
  display: block; margin-bottom: 16px;
}
.twosys-service h3, .twosys-tech h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.15;
  margin: 0 0 18px;
}
.twosys-service h3 { color: var(--ink-warm); }
.twosys-service ul { list-style: none; margin: 0; padding: 0; }
.twosys-service li {
  position: relative;
  padding: 14px 0 14px 30px;
  font-family: var(--sans); font-size: 1rem; line-height: 1.6;
  color: var(--brown-deep);
  border-bottom: 1px solid rgba(54,53,52,0.1);
}
.twosys-service li:last-child { border-bottom: none; }
.twosys-service li::before { content: '✦'; position: absolute; left: 0; top: 14px; color: var(--olive); }
.twosys-service li strong { color: var(--ink-warm); font-weight: 600; }

.twosys-tech {
  background: var(--olive-deep);
  border-radius: 2px;
  padding: clamp(30px, 3.6vw, 52px);
  display: flex; flex-direction: column;
}
.twosys-tech .twosys-tag { color: var(--amber); }
.twosys-tech h3 { color: var(--bone); }
.twosys-tech-note {
  font-family: var(--sans); font-size: 0.95rem; line-height: 1.6;
  color: rgba(250,246,239,0.8); margin: 0 0 20px; max-width: 52ch;
}
.twosys-tech svg { width: 100%; height: auto; margin-top: auto; }
.twosys-tech .lbl-line { font-family: var(--sans); font-size: 11px; letter-spacing: 0.08em; fill: rgba(250,246,239,0.9); }
.twosys-tech .lbl-line.amberlbl { fill: var(--amber); }

.twosys-foot {
  margin-top: clamp(24px, 3vw, 40px);
  font-family: var(--sans); font-size: 1rem; line-height: 1.65;
  color: var(--brown-deep); max-width: 72ch;
}
.twosys-foot strong { color: var(--ink-warm); }

/* Two-systems technology visual — golden line-art still, breathing glow */
.twosys-tech-visual { position: relative; border-radius: 2px; overflow: hidden; margin-top: auto; }
.twosys-tech-visual img { width: 100%; height: auto; display: block; }
.twosys-tech-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 42% 62%, rgba(239,190,156,0.22), transparent 60%);
  mix-blend-mode: screen;
  animation: techGlow 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes techGlow { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
.twosys-tech-points { list-style: none; margin: 20px 0 0; padding: 0; }
.twosys-tech-points li {
  position: relative;
  padding: 12px 0 12px 28px;
  font-family: var(--sans); font-size: 0.95rem; line-height: 1.55;
  color: rgba(250,246,239,0.88);
  border-bottom: 1px solid rgba(250,246,239,0.14);
}
.twosys-tech-points li:last-child { border-bottom: none; }
.twosys-tech-points li::before { content: '✦'; position: absolute; left: 0; top: 12px; color: var(--amber); }

/* Process slides back to photography — full-bleed ken-burns */
.proc-slide { padding: 0; }
.proc-slide img {
  position: absolute; inset: clamp(18px, 2.4vw, 40px);
  width: calc(100% - 2 * clamp(18px, 2.4vw, 40px));
  height: calc(100% - 2 * clamp(18px, 2.4vw, 40px));
  object-fit: contain; display: block;
  transform: scale(1.015);
  transition: transform 6s var(--ease-out);
}
.proc-slide.on img { transform: scale(1); }
@media (max-width: 820px) {
  /* Mobile strip: 4:3 image nearly matches the row — edge-to-edge cover */
  .proc-slide img { inset: 0; width: 100%; height: 100%; object-fit: cover; }
}

/* ============================================================
   DOLLHOUSE — interactive cutaway of the system
   Clean render underneath; mist render fades in ("the system
   turns on"); pulsing hotspots open Purzee-voice callouts.
============================================================ */
.dollhouse-wrap { max-width: 1080px; margin: clamp(36px, 5vw, 60px) auto 0; }
.dollhouse-stage { perspective: 1200px; }
.dollhouse-stage { position: relative; }
.dh-canvas {
  position: relative;
  aspect-ratio: 4 / 3.18; /* breathing room above the unit and below the base */
  border-radius: 4px;
  overflow: hidden;
  /* exact tone sampled from the render backdrop — the moving layer's
     edges dissolve into this, so only the dollhouse appears to move */
  background: rgb(223, 213, 207);
  background-image: radial-gradient(ellipse at 50% 30%, rgba(232, 224, 218, 0.9), rgba(223, 213, 207, 0) 70%);
}
.dh-object {
  position: absolute; inset: 0;
  will-change: transform;
  transition: transform 0.4s ease-out;
}
.dh-float { position: absolute; inset: 0; animation: dhIdle 9s ease-in-out infinite; }
@keyframes dhIdle { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.dh-float img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; display: block;
}
.dh-mist { opacity: 0; transition: opacity 2.4s var(--ease-out); }
.dollhouse-stage.live .dh-mist { opacity: 1; animation: mistBreathe 9s 2.4s ease-in-out infinite; }
@keyframes mistBreathe { 0%,100% { opacity: 1; } 50% { opacity: 0.82; } }

/* Hotspot dots */
.dh-dot {
  position: absolute;
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  border: none;
  background: rgba(250,246,239,0.92);
  color: var(--olive-deep);
  font-family: var(--serif); font-style: italic; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(42,33,27,0.25);
  opacity: 0; transform: scale(0.4);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), background 0.3s, color 0.3s;
  z-index: 3;
}
.dollhouse-stage.live .dh-dot { opacity: 1; transform: scale(1); }
.dollhouse-stage.live .dh-dot:nth-of-type(1) { transition-delay: 1.0s; }
.dollhouse-stage.live .dh-dot:nth-of-type(2) { transition-delay: 1.2s; }
.dollhouse-stage.live .dh-dot:nth-of-type(3) { transition-delay: 1.4s; }
.dollhouse-stage.live .dh-dot:nth-of-type(4) { transition-delay: 1.6s; }
.dollhouse-stage.live .dh-dot:nth-of-type(5) { transition-delay: 1.8s; }
.dh-dot::after {
  content: '';
  position: absolute; inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(239,190,156,0.9);
  animation: dotPulse 2.6s ease-out infinite;
}
@keyframes dotPulse { 0% { transform: scale(0.7); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }
.dh-dot:hover, .dh-dot.active { background: var(--olive-deep); color: var(--bone); }
.dh-dot.active::after { animation: none; opacity: 0; }

/* Callout cards — sibling layer overlaying the canvas on desktop */
.dh-cards { position: absolute; inset: 0; pointer-events: none; z-index: 5; }
.dh-cards .dh-card { pointer-events: none; }
.dh-cards .dh-card.active { pointer-events: auto; }
.dh-card {
  position: absolute;
  width: min(300px, 44%);
  background: rgba(250,246,239,0.97);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 3px;
  padding: 20px 22px;
  box-shadow: 0 24px 60px -24px rgba(42,33,27,0.45);
  opacity: 0; transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  z-index: 4;
}
.dh-card.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dh-card h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.1rem; color: var(--ink-warm); margin: 0 0 8px;
}
.dh-card p {
  font-family: var(--sans); font-size: 0.88rem; line-height: 1.55;
  color: var(--brown-deep); margin: 0;
}
.dh-card .dh-card-num {
  font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--olive); display: block; margin-bottom: 8px;
}
@media (max-width: 720px) {
  .dh-dot { width: 28px; height: 28px; margin: -14px 0 0 -14px; font-size: 0.78rem; }
  /* Active card renders below the diorama in normal flow — image stays clear */
  .dh-cards { position: static; inset: auto; pointer-events: auto; }
  .dh-card {
    position: static !important;
    display: none;
    width: auto;
    margin-top: 14px;
    opacity: 1; transform: none;
    box-shadow: 0 12px 30px -18px rgba(42,33,27,0.35);
    border: 1px solid rgba(54,53,52,0.1);
  }
  .dh-card.active { display: block; pointer-events: auto; }
}

/* Hint line under the stage */
.dh-hint {
  text-align: center;
  margin-top: 16px;
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--olive);
  opacity: 0.85;
}

/* Service strip under the dollhouse (the Purzee half of the story) */
.twosys-service-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(54,53,52,0.12);
  border: 1px solid rgba(54,53,52,0.12);
  border-radius: 2px; overflow: hidden;
  margin-top: clamp(36px, 5vw, 60px);
}
@media (max-width: 900px) { .twosys-service-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .twosys-service-strip { grid-template-columns: 1fr; } }
.twosys-service-strip > div { background: var(--fragrance); padding: clamp(22px, 2.6vw, 34px); }
.twosys-service-strip h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--ink-warm); margin: 0 0 8px;
}
.twosys-service-strip p { font-family: var(--sans); font-size: 0.9rem; line-height: 1.6; color: var(--brown-deep); margin: 0; }
.twosys-service-strip .strip-num { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--olive); display: block; margin-bottom: 10px; }

/* ============================================================
   PROCESS — desktop "Editorial Spread": big framed 4:3 image
   left (complete, uncropped), editorial column right.
   Pinned crossfade unchanged. Mobile (≤820px) keeps its layout.
============================================================ */
@media (min-width: 821px) {
  .proc-stage {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: clamp(32px, 4.5vw, 80px);
    background: var(--linen);
    padding: clamp(40px, 7vh, 84px) var(--gutter) clamp(32px, 5vh, 64px);
  }
  .proc-media {
    order: -1;
    position: relative;
    justify-self: end;
    width: min(100%, calc(76svh * 4 / 3));
    aspect-ratio: 4 / 3;
    border-radius: 2px;
    overflow: hidden;
    background: var(--olive-deep);
    box-shadow: 0 40px 90px -44px rgba(42, 33, 27, 0.5);
  }
  .proc-media .proc-slide img {
    inset: 0; width: 100%; height: 100%;
    object-fit: cover;
  }
  .proc-panel {
    background: transparent;
    padding: 0;
    justify-content: center;
    max-width: 520px;
  }
  .proc-panel .editorial-h2 {
    font-size: clamp(1.6rem, 2.3vw, 2.2rem);
    max-width: 16ch;
    margin-bottom: clamp(18px, 3vh, 30px) !important;
  }
  .proc-rail { margin-bottom: clamp(24px, 4.5vh, 44px); }
  .proc-steps-wrap { min-height: clamp(180px, 26svh, 260px); }
  .proc-step .proc-num { font-size: clamp(2.4rem, 3.4vw, 3.4rem); margin-bottom: 10px; }
  .proc-step h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
  .proc-step p { max-width: 44ch; }
  .proc-hint { position: static; margin-top: clamp(16px, 3vh, 28px); }
}


/* Shop grid responsive: 3 even -> 2 -> 1 */
@media (max-width: 900px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .shop-grid { grid-template-columns: 1fr; } }

/* Homepage collection: with 3 products, distribute evenly on desktop
   instead of a scrolling strip with leftover space */
@media (min-width: 861px) {
  .collection-v2 .filmstrip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 44px);
    overflow: visible;
    cursor: default;
  }
  .collection-v2 .filmstrip-item { width: auto; min-width: 0; }
  .collection-v2 .filmstrip-controls { display: none; }
}

/* Footer credit */
.footer-credit {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(250, 246, 239, 0.45);
}
.footer-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 246, 239, 0.25);
  transition: color 0.25s, border-color 0.25s;
}
.footer-credit a:hover { color: var(--bone); border-color: var(--bone); }
