/* ================================================================
   OBEDIO - styles.css
   Shared design system for all pages
   ================================================================ */

    /* ================================================================
       OBEDIO  -  Silent Luxury
       Rolex meets Apple meets Bang & Olufsen
       ================================================================ */

    :root {
      /* ── Rolls-Royce restraint palette ──
         Gold is a RARE accent: at most one gold moment per viewport.
         Most "warm" touches use soft champagne; structure uses cream + cool grey + hairlines. */
      --gold: #C9A962;          /* rare accent only */
      --gold-dim: #c9a96222;
      --gold-glow: #c9a96212;
      --gold-bright: #d4b76e;
      --champagne: #D8C9A8;     /* soft warm - replaces most former gold touches */
      --champagne-dim: #d8c9a833;
      --amber: #B8893E;         /* muted amber - the restrained "urgent" tone (no alarm-red) */

      --black: #0B0B0C;         /* dominant near-black ground (RR) */
      --charcoal: #121214;      /* slight tonal section variation */
      --dark: #0e0e10;
      --surface: #161618;
      --surface-light: #1c1c1f;

      --cream: #FFFAEC;         /* primary light text (champagne-cream, not pure white) */
      --cream-dim: #fffaecd9;
      --silver: #8A8A8E;        /* secondary text / hairlines (cool silver-grey) */
      --muted: #6c6c70;
      --muted-light: #8A8A8E;   /* alias kept for legacy selectors -> cool silver */

      /* Hairline tokens (cool, not gold) */
      --hairline: rgba(255, 250, 236, 0.10);
      --hairline-strong: rgba(255, 250, 236, 0.18);

      /* ── One modular type scale, ratio ~1.25 ── */
      --fs-display: clamp(46px, 6vw, 76px);   /* hero / chapter titles */
      --fs-h1: clamp(40px, 5vw, 61px);
      --fs-h2: clamp(31px, 4vw, 39px);
      --fs-h3: clamp(24px, 2.6vw, 25px);
      --fs-lead: clamp(18px, 1.6vw, 20px);    /* sub / lead body */
      --fs-body: clamp(16px, 1.2vw, 18px);    /* body copy */
      --fs-eyebrow: 12px;                      /* tracked label */
      --measure: 62ch;                         /* max body measure */

      /* ── 8px spacing scale ── */
      --s-1: 8px;
      --s-2: 16px;
      --s-3: 24px;
      --s-4: 40px;
      --s-5: 64px;
      --s-6: 96px;
      --s-7: 160px;
    }

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

    html {
      scroll-behavior: smooth;
      scrollbar-width: thin;
      scrollbar-color: var(--silver) var(--black);
    }

    body {
      background: var(--black);
      color: var(--cream);
      font-family: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
      font-size: var(--fs-body);
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      line-height: 1.6;
    }

    html {
      background: var(--black);
    }

    ::selection {
      background: var(--champagne);
      color: var(--black);
    }

    /* ================================================================
       LINKS  -  3 defined types. NEVER a raw browser-blue link.
       Base: every anchor inherits text color (kills #0000EE everywhere).
       ================================================================ */
    a {
      color: inherit;
      text-decoration: none;
    }

    /* Text-link: cream, champagne underline-on-hover (for prose/body links) */
    .body-text a,
    .section-subline a,
    p a:not([class]) {
      color: var(--cream);
      text-decoration: none;
      border-bottom: 1px solid var(--champagne-dim);
      padding-bottom: 1px;
      transition: color 0.35s ease, border-color 0.35s ease;
    }
    .body-text a:hover,
    .section-subline a:hover,
    p a:not([class]):hover {
      color: var(--champagne);
      border-color: var(--champagne);
    }

    /* ── Typography ──
       Headlines: Cormorant Garamond, LIGHT (300, display drops to 200),
       wide tracking, often uppercase/small-caps, large scale. No bold.
       Eyebrow labels: Cinzel, tracked, small. Body: Hanken Grotesk. */

    h1, h2, h3, h4 {
      font-family: 'Cormorant Garamond', 'Georgia', serif;
      font-weight: 300;
    }

    .nav-logo, .section-label {
      font-family: 'Cinzel', 'Georgia', serif;
    }

    .section-label {
      font-size: var(--fs-eyebrow);
      font-weight: 500;
      letter-spacing: 5px;
      color: var(--silver);
      text-transform: uppercase;
      margin-bottom: var(--s-4);
      opacity: 0.9;
    }

    .section-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: var(--fs-h1);
      font-weight: 300;
      line-height: 1.08;
      color: var(--cream);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: var(--s-3);
    }

    /* The one gold moment in a headline: the italic accent word. */
    .section-headline em {
      font-style: italic;
      font-weight: 300;
      text-transform: none;
      letter-spacing: 0.01em;
      color: var(--gold);
    }

    .section-subline {
      font-family: 'Hanken Grotesk', system-ui, sans-serif;
      font-size: var(--fs-lead);
      font-weight: 400;
      color: var(--silver);
      line-height: 1.6;
      max-width: var(--measure);
    }

    .body-text {
      font-family: 'Hanken Grotesk', system-ui, sans-serif;
      font-size: var(--fs-body);
      font-weight: 400;
      color: var(--cream-dim);
      line-height: 1.6;
      max-width: var(--measure);
    }

    .gold-text { color: var(--gold); }

    /* ── Layout ── */

    .section {
      position: relative;
      z-index: 1;
      padding: var(--s-7) 48px;   /* 160 desktop */
      overflow: hidden;
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .section-dark { background: rgba(11, 11, 12, 0.94); }
    .section-charcoal { background: rgba(18, 18, 20, 0.94); }
    .section-surface { background: rgba(22, 22, 24, 0.94); }

    @media (max-width: 768px) {
      .section-dark { background: rgba(20, 20, 22, 0.90); }
      .section-charcoal { background: rgba(26, 26, 29, 0.90); }
      .section-surface { background: rgba(30, 30, 33, 0.90); }
    }

    /* Subtle cool hairline separator between sections (no gold) */
    .section + .section::before {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: var(--hairline-strong);
      opacity: 1;
      margin: 0 auto 0;
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
    }

    /* ── Reveal animation ── */

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
                  transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.15s; }
    .reveal-delay-2 { transition-delay: 0.3s; }
    .reveal-delay-3 { transition-delay: 0.45s; }
    .reveal-delay-4 { transition-delay: 0.6s; }
    .reveal-delay-5 { transition-delay: 0.75s; }

    /* ================================================================
       CREDIBILITY LAYER  -  RR restraint
       Hairline-framed credential badges + a quiet mono partners rail.
       Gold stays rare: badges read in cream/silver, never gold fills.
       ================================================================ */

    /* Credential badge row (certifications / partner status) */
    .cred-row {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
    }

    .cred-badge {
      font-family: 'Cinzel', 'Georgia', serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cream-dim);
      padding: 11px 22px;
      border: 1px solid var(--hairline-strong);
      border-radius: 1px;
      white-space: nowrap;
      transition: color 0.4s ease, border-color 0.4s ease;
    }
    .cred-badge:hover {
      color: var(--cream);
      border-color: var(--champagne-dim);
    }

    /* Thin separating dot between badges when laid out inline */
    .cred-sep {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--silver);
      opacity: 0.5;
      flex: 0 0 auto;
    }

    @media (max-width: 560px) {
      .cred-sep { display: none; }
      .cred-badge { font-size: 10px; letter-spacing: 2.5px; padding: 10px 18px; }
    }

    /* ── Trusted-by partners rail ──
       One optical height, desaturated to mono cream/silver, lifts on hover. */
    .partners-rail {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 72px;
      margin-top: var(--s-4);
    }

    .partner-mark {
      display: inline-flex;
      align-items: center;
      opacity: 0.55;
      transition: opacity 0.45s ease, filter 0.45s ease;
    }
    .partner-mark img {
      height: 34px;            /* single optical height for all logos */
      width: auto;
      display: block;
      /* mono cream/silver: strip colour, lift toward cream */
      filter: grayscale(1) brightness(1.7) contrast(0.85);
    }
    .partner-mark:hover {
      opacity: 0.95;
      filter: brightness(1.08);
    }

    /* Wordmark-only partner (no logo asset): same rhythm as image marks */
    .partner-wordmark {
      font-family: 'Cinzel', serif;
      font-size: 16px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--cream-dim);
      opacity: 0.6;
      transition: opacity 0.45s ease, color 0.45s ease;
    }
    .partner-wordmark:hover {
      opacity: 1;
      color: var(--cream);
    }

    /* "As featured in" press line */
    .featured-line {
      margin-top: var(--s-4);
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--silver);
      line-height: 1.9;
    }
    .featured-line .featured-label { opacity: 0.7; }
    .featured-line a {
      color: var(--cream-dim);
      border-bottom: 1px solid transparent;
      padding-bottom: 1px;
      transition: color 0.4s ease, border-color 0.4s ease;
    }
    .featured-line a:hover {
      color: var(--champagne);
      border-color: var(--champagne-dim);
    }
    .featured-line .featured-dot {
      color: var(--silver);
      opacity: 0.45;
      margin: 0 10px;
    }

    @media (max-width: 560px) {
      .partners-rail { gap: 48px; }
      .partner-mark img { height: 28px; }
      .partner-wordmark { font-size: 14px; letter-spacing: 3px; }
    }

    /* ── Images ── */

    .img-full {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 2px;
    }

    .img-cover {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ── Gold divider ── */

    /* Dividers are cool hairlines now (gold reserved for the single accent). */
    .gold-divider {
      width: 60px;
      height: 1px;
      background: var(--hairline-strong);
      opacity: 1;
      margin: var(--s-4) 0;
    }

    .gold-divider-center {
      width: 60px;
      height: 1px;
      background: var(--hairline-strong);
      opacity: 1;
      margin: var(--s-4) auto;
    }

    /* ================================================================
       NAVIGATION
       ================================================================ */

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0 48px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
    }

    .nav.scrolled {
      background: rgba(11, 11, 12, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 var(--hairline);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      transition: opacity 0.3s ease;
      flex-shrink: 0;
      margin-right: 40px;   /* breathing room so wordmark never touches "Product" */
    }

    .nav-logo img {
      height: 22px;
      width: auto;
    }

    .nav-logo:hover { opacity: 0.7; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;            /* tightened from 40px so the row fits at 1440 and below */
      list-style: none;
    }

    .nav-links a {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 1.5px;
      color: var(--silver);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.3s ease;
      position: relative;
      white-space: nowrap;
    }

    /* Underline cue is a cool hairline, not gold */
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--cream);
      transition: width 0.3s ease;
    }

    .nav-links a:hover { color: var(--cream); }
    .nav-links a:hover::after { width: 100%; }

    /* Secondary button: hairline outline, fills (cream) on hover */
    .nav-links a.highlight {
      color: var(--cream);
      border: 1px solid var(--hairline-strong);
      padding: 8px 16px;
      transition: all 0.3s ease;
    }

    .nav-links a.highlight::after { display: none; }
    .nav-links a.highlight:hover {
      background: var(--cream);
      color: var(--black);
      border-color: var(--cream);
    }

    /* Primary button: the single allowed gold moment in the nav viewport */
    .nav-links a.highlight-solid {
      color: var(--black);
      background: var(--gold);
      padding: 8px 18px;
      letter-spacing: 2px;
      transition: all 0.3s ease;
    }
    .nav-links a.highlight-solid::after { display: none; }
    .nav-links a.highlight-solid:hover { background: var(--gold-bright); }

    /* Brochures dropdown */
    .nav-links .dropdown { position: relative; }
    .nav-links .dropdown-trigger {
      display: flex;
      align-items: center;
      gap: 5px;
      font-family: 'Cinzel', serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 1.5px;
      color: var(--silver);
      text-decoration: none;
      text-transform: uppercase;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
      position: relative;
    }
    .nav-links .dropdown-trigger::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--cream);
      transition: width 0.3s ease;
    }
    .nav-links .dropdown-trigger:hover { color: var(--cream); }
    .nav-links .dropdown-trigger:hover::after { width: 100%; }
    .nav-links .chevron { font-size: 8px; transition: transform 0.3s; }
    .nav-links .dropdown:hover .chevron { transform: rotate(180deg); }
    .nav-links .dropdown-menu {
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%);
      background: rgba(11,11,12,0.98);
      border: 1px solid var(--hairline);
      min-width: 180px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s, visibility 0.2s;
      padding: 8px 0;
      list-style: none;
    }
    .nav-links .dropdown:hover .dropdown-menu,
    .nav-links .dropdown-menu:hover { opacity: 1; visibility: visible; }
    .nav-links .dropdown-menu li a {
      display: block;
      padding: 10px 20px;
      font-size: 10px;
      color: var(--silver);
      white-space: nowrap;
    }
    .nav-links .dropdown-menu li a::after { display: none; }
    .nav-links .dropdown-menu li a:hover { color: var(--cream); background: rgba(255,250,236,0.05); }

    /* Language switcher */
    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: 16px;
    }

    .lang-link {
      font-family: 'Cinzel', serif !important;
      font-size: 10px !important;
      font-weight: 500 !important;
      letter-spacing: 2px !important;
      color: var(--silver) !important;
      text-decoration: none !important;
      text-transform: uppercase !important;
      transition: color 0.3s ease !important;
      border: none !important;
      padding: 0 !important;
    }

    .lang-link:hover,
    .lang-link.active {
      color: var(--cream) !important;
    }

    .lang-link::after {
      display: none !important;
    }

    .lang-separator {
      color: var(--muted);
      font-size: 10px;
      opacity: 0.5;
    }

    /* Hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      z-index: 1001;
    }

    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 1px;
      background: var(--cream);
      transition: all 0.3s ease;
    }

    .nav-hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translate(4px, 4px);
    }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(4px, -4px);
    }

    /* Mobile menu */
    .nav-mobile {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(8, 7, 5, 0.97);
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 30px;
      padding: 96px 24px 48px;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .nav-mobile.open { display: flex; }

    .nav-mobile a {
      font-family: 'Cinzel', serif;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 5px;
      color: var(--cream);
      text-decoration: none;
      text-transform: uppercase;
      opacity: 0.7;
      transition: opacity 0.3s ease, color 0.3s ease;
    }

    .nav-mobile a:hover { opacity: 1; color: var(--champagne); }

    /* Mobile grouped sections mirror the desktop dropdowns */
    .mobile-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      width: 100%;
    }

    .mobile-group-label {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted-light);
      opacity: 0.7;
      padding-bottom: 4px;
      border-bottom: 1px solid var(--hairline);
    }

    .mobile-group a {
      font-size: 12px;
      letter-spacing: 4px;
    }

    .mobile-actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      width: 100%;
    }

    .mobile-lang-switcher {
      margin-top: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .mobile-lang-switcher a {
      font-size: 11px !important;
      letter-spacing: 3px !important;
      color: var(--muted-light) !important;
      opacity: 0.8 !important;
    }

    .mobile-lang-switcher a:hover {
      color: var(--champagne) !important;
      opacity: 1 !important;
    }

    .mobile-lang-switcher span {
      color: var(--muted);
      opacity: 0.5;
    }

    /* Tighten the full nav between 900 and 1440 so the row never clips/overlaps */
    @media (max-width: 1440px) and (min-width: 901px) {
      .nav { padding: 0 32px; }
      .nav-logo { margin-right: 28px; }
      .nav-links { gap: 20px; }
      .nav-links a { letter-spacing: 1px; }
      .nav-links a.highlight { padding: 8px 13px; }
      .nav-links a.highlight-solid { padding: 8px 14px; letter-spacing: 1.5px; }
      .lang-switcher { margin-left: 10px; gap: 6px; }
    }

    @media (max-width: 1100px) and (min-width: 901px) {
      .nav-links { gap: 15px; }
    }

    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav { padding: 0 24px; }
      .nav-logo { margin-right: 0; }
      .lang-switcher { display: none; }
    }

    /* ================================================================
       3D BACKGROUND  -  Rotating SmartButton (after hero)
       ================================================================ */

    #bg3d-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
      opacity: 0;
      transition: opacity 1.5s ease;
    }

    #bg3d-canvas.visible {
      opacity: 0.65;
      filter: blur(3px);
    }

    /* ================================================================
       SECTION 1: HERO  -  "Understood." Animation
       ================================================================ */

    #hero {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
      padding: 0;
      background: var(--black);
    }

    /* Hero background slideshow */
    .hero-slideshow {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: url('images/lifestyle-dining-table.webp') center/cover no-repeat;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 2s ease;
      background-size: cover;
      background-position: center;
    }

    .hero-slide.active {
      opacity: 1;
    }

    .hero-slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(8, 7, 5, 0.65) 0%,
        rgba(8, 7, 5, 0.55) 40%,
        rgba(8, 7, 5, 0.35) 75%,
        rgba(8, 7, 5, 0.25) 100%
      );
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-slideshow::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(8, 7, 5, 0.65) 0%,
        rgba(8, 7, 5, 0.55) 40%,
        rgba(8, 7, 5, 0.35) 75%,
        rgba(8, 7, 5, 0.25) 100%
      );
    }

    #hero-animation {
      position: absolute;
      inset: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
    }

    /* Iframe for the hero animation */
    #hero-animation iframe {
      width: 100%;
      height: 100%;
      min-height: 100svh;
      border: none;
      background: transparent;
      display: block;
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      opacity: 0;
      transition: opacity 1.5s ease;
      cursor: pointer;
    }

    .scroll-indicator.visible { opacity: 1; }

    .scroll-indicator-text {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 4px;
      color: var(--muted);
      text-transform: uppercase;
    }

    .scroll-indicator-line {
      width: 1px;
      height: 32px;
      background: linear-gradient(to bottom, var(--cream), transparent);
      opacity: 0.4;
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.2; transform: scaleY(0.7); }
      50%      { opacity: 0.5; transform: scaleY(1); }
    }


    /* ================================================================
       SECTION 2: THE PRODUCT
       ================================================================ */

    .product-hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-bottom: 120px;
    }

    .product-hero-image {
      position: relative;
    }

    .product-hero-image img {
      width: 100%;
      max-width: 520px;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    /* Subtle glow around product image */
    .product-hero-image::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60%;
      height: 60%;
      background: radial-gradient(ellipse, rgba(255, 250, 236, 0.04) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    .product-hero-image .img-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80%;
      height: 80%;
      background: radial-gradient(ellipse, rgba(255, 250, 236, 0.06) 0%, transparent 70%);
      pointer-events: none;
      z-index: -1;
    }

    .product-scale-ref {
      font-family: 'Cinzel', serif;
      font-size: 12px;
      letter-spacing: 3px;
      color: var(--muted-light);
      text-transform: uppercase;
      text-align: center;
      margin-top: 20px;
    }

    /* Three pillars - big numbers */
    .pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin: 120px 0;
      text-align: center;
    }

    .pillar-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(56px, 7vw, 96px);
      font-weight: 300;
      color: var(--cream);
      line-height: 1;
      margin-bottom: 8px;
      letter-spacing: 0.01em;
      opacity: 0.95;
    }

    .pillar-label {
      font-family: 'Cinzel', serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 5px;
      color: var(--silver);
      text-transform: uppercase;
      margin-bottom: 24px;
      opacity: 0.85;
    }

    .pillar-divider {
      width: 40px;
      height: 1px;
      background: var(--hairline-strong);
      margin: 0 auto 24px;
      opacity: 1;
    }

    .pillar h3 {
      display: none;
    }

    .pillar p {
      font-size: 16px;
      font-weight: 300;
      color: var(--muted-light);
      line-height: 1.7;
      max-width: 260px;
      margin: 0 auto;
    }

    /* Ecosystem section */
    .ecosystem-block {
      position: relative;
      margin-top: 120px;
      text-align: center;
    }

    .ecosystem-block img {
      max-width: 800px;
      width: 100%;
      margin: 48px auto 0;
      display: block;
    }

    /* ================================================================
       SECTION 3: FOR OWNERS & GUESTS
       ================================================================ */

    .owners-hero-img {
      width: 100%;
      height: 60vh;
      min-height: 400px;
      object-fit: cover;
      border-radius: 2px;
      margin: 80px 0 0;
    }

    .owners-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 120px;
    }

    .owners-grid-reverse {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 120px;
    }

    .owners-img-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 2px;
    }

    .owners-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 8s ease;
    }

    .owners-img-wrap:hover img {
      transform: scale(1.03);
    }

    /* ================================================================
       SECTION 4: FOR CREW
       ================================================================ */

    .crew-hero-banner {
      width: 100%;
      height: 50vh;
      min-height: 350px;
      object-fit: cover;
      border-radius: 2px;
      margin-bottom: 100px;
    }

    .crew-features {
      display: flex;
      flex-direction: column;
      gap: 80px;
      margin-top: 80px;
    }

    .crew-feature {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .crew-feature-reverse {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .crew-feature-reverse .crew-feature-img { order: 2; }
    .crew-feature-reverse .crew-feature-text { order: 1; }

    .crew-feature-img {
      overflow: hidden;
      border-radius: 2px;
    }

    .crew-feature-img img {
      width: 100%;
      height: auto;
      display: block;
    }

    .crew-feature-text h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(24px, 3vw, 32px);
      font-weight: 300;
      color: var(--cream);
      margin-bottom: 16px;
    }

    .crew-feature-text p {
      font-size: 17px;
      font-weight: 300;
      color: var(--muted-light);
      line-height: 1.7;
    }

    .crew-pain-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-top: 80px;
    }

    .crew-pain-card {
      padding: 44px 36px;
      border: 1px solid rgba(255, 250, 236, 0.06);
      border-radius: 2px;
      background: rgba(255, 250, 236, 0.02);
      transition: border-color 0.5s ease, background 0.5s ease, transform 0.5s ease;
    }

    .crew-pain-card:hover {
      border-color: rgba(255, 250, 236, 0.15);
      background: rgba(255, 250, 236, 0.04);
      transform: translateY(-3px);
    }

    .crew-pain-icon {
      width: 48px;
      height: 48px;
      margin-bottom: 24px;
      display: block;
    }

    .crew-pain-icon svg {
      width: 100%;
      height: 100%;
      stroke: var(--silver);
      stroke-width: 1.2;
      fill: none;
      opacity: 0.8;
    }

    .crew-pain-card:hover .crew-pain-icon svg {
      opacity: 1;
    }

    .crew-pain-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 300;
      color: var(--cream);
      margin-bottom: 12px;
    }

    .crew-pain-card p {
      font-size: 16px;
      font-weight: 300;
      color: var(--cream-dim);
      line-height: 1.6;
    }

    /* ================================================================
       SECTION 5: FOR INTEGRATORS
       ================================================================ */

    .integrator-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      margin: 80px 0;
      text-align: center;
    }

    .integrator-stat {
      padding: 40px 20px;
      border: 1px solid rgba(255, 250, 236, 0.06);
      border-radius: 2px;
      background: rgba(255, 250, 236, 0.015);
      transition: border-color 0.5s ease, transform 0.5s ease;
    }

    .integrator-stat:hover {
      border-color: rgba(255, 250, 236, 0.15);
      transform: translateY(-3px);
    }

    .integrator-stat-icon {
      width: 44px;
      height: 44px;
      margin: 0 auto 20px;
      display: block;
    }

    .integrator-stat-icon svg {
      width: 100%;
      height: 100%;
      stroke: var(--silver);
      stroke-width: 1.2;
      fill: none;
      opacity: 0.7;
    }

    .integrator-stat:hover .integrator-stat-icon svg {
      opacity: 1;
    }

    .integrator-stat h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 4.5vw, 56px);
      font-weight: 300;
      color: var(--cream);
      margin-bottom: 8px;
      line-height: 1;
    }

    .integrator-stat p {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 3px;
      color: var(--cream-dim);
      text-transform: uppercase;
    }

    .compat-grid {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      margin: 60px 0;
      flex-wrap: wrap;
    }

    .compat-item {
      text-align: center;
    }

    .compat-item .compat-name {
      font-family: 'Cinzel', serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 3px;
      color: var(--cream);
      margin-bottom: 6px;
    }

    .compat-item .compat-status {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .compat-status.ready { color: var(--champagne); }
    .compat-status.soon { color: var(--muted); }

    .tech-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 48px;
      margin-top: 80px;
    }

    .tech-card {
      padding: 44px 36px;
      border: 1px solid rgba(255, 250, 236, 0.06);
      border-radius: 2px;
      background: rgba(255, 250, 236, 0.015);
      text-align: center;
      transition: border-color 0.5s ease, background 0.5s ease, transform 0.5s ease;
    }

    .tech-card:hover {
      border-color: rgba(255, 250, 236, 0.15);
      background: rgba(255, 250, 236, 0.04);
      transform: translateY(-3px);
    }

    .tech-icon {
      width: 52px;
      height: 52px;
      margin: 0 auto 24px;
      display: block;
    }

    .tech-icon svg {
      width: 100%;
      height: 100%;
      stroke: var(--silver);
      stroke-width: 1.2;
      fill: none;
      opacity: 0.8;
    }

    .tech-card:hover .tech-icon svg {
      opacity: 1;
    }

    .tech-card h4 {
      font-family: 'Cinzel', serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 4px;
      color: var(--silver);
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .tech-card p {
      font-size: 16px;
      font-weight: 300;
      color: var(--cream-dim);
      line-height: 1.7;
      text-align: left;
    }

    /* ================================================================
       SECTION 6: CRAFTSMANSHIP
       ================================================================ */

    .materials-showcase {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin: 80px 0;
    }

    .material-card {
      position: relative;
      overflow: hidden;
      border-radius: 2px;
      aspect-ratio: 4/3;
    }

    .material-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 6s ease;
    }

    .material-card:hover img {
      transform: scale(1.05);
    }

    .material-card-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 40px;
      background: linear-gradient(to top, rgba(8, 7, 5, 0.8), transparent);
    }

    .material-card-overlay h4 {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 4px;
      color: var(--cream);
      text-transform: uppercase;
    }

    .material-card-overlay p {
      font-size: 15px;
      font-weight: 300;
      color: var(--muted-light);
      margin-top: 4px;
    }

    /* ================================================================
       BESPOKE JOURNEY  -  large vertical scroll-told sequence
       Six generous beats. Each: oversized numeral + title + one line,
       paired with a large image. Alternating sides for editorial rhythm.
       A faint vertical spine ties the sequence together. (RR restraint:
       no gold, cool hairlines, lots of air.)
       ================================================================ */
    .bespoke-journey {
      position: relative;
      margin: clamp(64px, 9vw, 120px) auto 0;
      max-width: 1100px;
    }

    /* The spine: a single hairline running down the centre of the column. */
    .bespoke-journey::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 1px;
      background: linear-gradient(
        180deg,
        transparent 0%,
        var(--hairline) 8%,
        var(--hairline) 92%,
        transparent 100%
      );
      transform: translateX(-50%);
    }

    .bespoke-beat {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      column-gap: clamp(40px, 6vw, 96px);
      row-gap: 0;
      margin-bottom: clamp(80px, 11vw, 150px);
      position: relative;
    }

    .bespoke-beat:last-child { margin-bottom: 0; }

    /* A small node on the spine, aligned to each beat. */
    .bespoke-beat::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      background: var(--champagne);
      opacity: 0.55;
      box-shadow: 0 0 0 5px var(--black);
    }

    /* Default: image on the left, text on the right. */
    .bespoke-beat-media { grid-column: 1; }
    .bespoke-beat-text  { grid-column: 2; }

    /* Alternate every other beat: image right, text left. */
    .bespoke-beat:nth-child(even) .bespoke-beat-media { grid-column: 2; }
    .bespoke-beat:nth-child(even) .bespoke-beat-text  {
      grid-column: 1;
      grid-row: 1;
      text-align: right;
    }

    .bespoke-beat-media {
      position: relative;
      overflow: hidden;
      border-radius: 3px;
      border: 1px solid var(--hairline);
      background: var(--charcoal);
      aspect-ratio: 4 / 3;
    }

    .bespoke-beat-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }

    .bespoke-beat:hover .bespoke-beat-media img { transform: scale(1.04); }

    /* Soft inner vignette so the cool ground reads through the frame edge. */
    .bespoke-beat-media::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      box-shadow: inset 0 0 60px rgba(11, 11, 12, 0.5);
    }

    .bespoke-beat-num {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(56px, 8vw, 104px);
      line-height: 0.9;
      letter-spacing: 0.02em;
      color: transparent;
      -webkit-text-stroke: 1px var(--silver);
      opacity: 0.55;
      margin-bottom: 18px;
    }

    .bespoke-beat-eyebrow {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--champagne);
      opacity: 0.85;
      display: block;
      margin-bottom: 14px;
    }

    .bespoke-beat-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(30px, 4.2vw, 46px);
      line-height: 1.08;
      letter-spacing: 0.01em;
      color: var(--cream);
      margin-bottom: 16px;
    }

    .bespoke-beat-desc {
      font-family: 'Hanken Grotesk', sans-serif;
      font-weight: 300;
      font-size: var(--fs-lead);
      line-height: 1.6;
      color: var(--silver);
      max-width: 40ch;
    }

    .bespoke-beat:nth-child(even) .bespoke-beat-desc { margin-left: auto; }

    @media (max-width: 820px) {
      .bespoke-journey { max-width: 520px; }
      .bespoke-journey::before { left: 0; }
      .bespoke-beat {
        grid-template-columns: 1fr;
        row-gap: 28px;
        margin-bottom: clamp(56px, 14vw, 88px);
        padding-left: 0;
      }
      /* Single column: image first, then text, every beat. Spine off-centre. */
      .bespoke-beat::before { left: 0; }
      .bespoke-beat-media,
      .bespoke-beat:nth-child(even) .bespoke-beat-media { grid-column: 1; grid-row: 1; }
      .bespoke-beat-text,
      .bespoke-beat:nth-child(even) .bespoke-beat-text {
        grid-column: 1;
        grid-row: 2;
        text-align: left;
        padding-left: 26px;
      }
      .bespoke-beat:nth-child(even) .bespoke-beat-desc { margin-left: 0; }
      .bespoke-beat-num { margin-bottom: 12px; }
    }

    /* ================================================================
       MATERIAL SWATCHES  -  the ten finishes, shown not listed.
       Each swatch is a CSS-rendered metal sample (layered gradients to
       approximate polished sheen vs brushed direction), hairline-framed.
       Name in Cinzel beneath: always visible on touch, refined on hover.
       ================================================================ */
    .finishes-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: clamp(20px, 2.4vw, 36px);
      margin-top: clamp(48px, 6vw, 72px);
    }

    .finish-swatch {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .finish-chip {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 3px;
      border: 1px solid var(--hairline);
      overflow: hidden;
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                  border-color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* A faint top-left to bottom-right specular sweep over every chip,
       so the samples read as lit metal rather than flat colour fills. */
    .finish-chip::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.22) 0%,
        rgba(255, 255, 255, 0.04) 30%,
        rgba(0, 0, 0, 0.12) 62%,
        rgba(0, 0, 0, 0.30) 100%
      );
      pointer-events: none;
      transition: opacity 0.6s ease;
    }

    .finish-swatch:hover .finish-chip {
      transform: translateY(-4px);
      border-color: var(--hairline-strong);
    }

    .finish-name {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 2.5px;
      line-height: 1.5;
      text-transform: uppercase;
      color: var(--silver);
      margin-top: 16px;
      transition: color 0.5s ease, opacity 0.5s ease;
    }

    /* Desktop pointers: name settles to silver, lifts to cream on hover.
       Touch / no-hover devices keep it fully legible at all times. */
    @media (hover: hover) and (pointer: fine) {
      .finish-name { opacity: 0.75; }
      .finish-swatch:hover .finish-name { color: var(--cream); opacity: 1; }
    }

    /* ── Polished metals: tight specular band, brighter sheen ──
       ── Brushed metals: directional repeating-gradient grain ── */

    /* Brass (warm gold) */
    .finish--brass-polished {
      background:
        linear-gradient(135deg, #f3e0b0 0%, #cda85f 28%, #8a6c2f 70%, #c8a45c 100%);
    }
    .finish--brass-brushed {
      background:
        repeating-linear-gradient(115deg,
          rgba(255,255,255,0.10) 0px, rgba(0,0,0,0.10) 1px, rgba(255,255,255,0.05) 2px, transparent 3px),
        linear-gradient(135deg, #d8bd80 0%, #b1904f 50%, #8c6d34 100%);
    }

    /* 316L Stainless (cool silver) */
    .finish--steel-polished {
      background:
        linear-gradient(135deg, #eef1f4 0%, #aab1b8 32%, #6e767e 72%, #b3bac1 100%);
    }
    .finish--steel-brushed {
      background:
        repeating-linear-gradient(110deg,
          rgba(255,255,255,0.12) 0px, rgba(0,0,0,0.09) 1px, rgba(255,255,255,0.04) 2px, transparent 3px),
        linear-gradient(135deg, #c7ccd1 0%, #9aa1a8 52%, #717880 100%);
    }

    /* Aluminium (light, cool grey) */
    .finish--alu-polished {
      background:
        linear-gradient(135deg, #f4f6f7 0%, #c2c8cc 34%, #8e949a 74%, #c9cfd3 100%);
    }
    .finish--alu-brushed {
      background:
        repeating-linear-gradient(105deg,
          rgba(255,255,255,0.10) 0px, rgba(0,0,0,0.07) 1px, rgba(255,255,255,0.04) 2px, transparent 3px),
        linear-gradient(135deg, #dadee1 0%, #b3b9bd 52%, #91979c 100%);
    }

    /* Copper (rose / copper) */
    .finish--copper {
      background:
        linear-gradient(135deg, #f0c3a1 0%, #c87f54 32%, #8f4d31 72%, #c98259 100%);
    }

    /* Phosphor Bronze (muted bronze) */
    .finish--bronze {
      background:
        linear-gradient(135deg, #cdb487 0%, #9a7c4d 36%, #6a5230 76%, #93764a 100%);
    }

    /* Gold-Plated Brass (the one rich-gold accent of this grid) */
    .finish--gold {
      background:
        linear-gradient(135deg, #f6e3a6 0%, #d8b25b 26%, #a9802f 66%, #e8c873 100%);
    }
    .finish-chip.finish--gold { border-color: var(--gold-dim); }
    .finish-swatch:hover .finish-chip.finish--gold { border-color: var(--gold); }

    /* Black PVD Stainless (near-black with a low sheen) */
    .finish--pvd {
      background:
        linear-gradient(135deg, #3a3a3d 0%, #1b1b1d 40%, #0d0d0f 78%, #242427 100%);
    }
    .finish--pvd.finish-chip::after {
      background: linear-gradient(
        135deg,
        rgba(255,255,255,0.14) 0%,
        rgba(255,255,255,0.02) 26%,
        rgba(0,0,0,0.25) 70%,
        rgba(0,0,0,0.45) 100%
      );
    }

    @media (max-width: 900px) {
      .finishes-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
    }
    @media (max-width: 540px) {
      .finishes-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
      .finish-name { font-size: 9px; letter-spacing: 2px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .bespoke-beat-media img,
      .bespoke-beat:hover .bespoke-beat-media img,
      .finish-chip,
      .finish-swatch:hover .finish-chip { transition: none; transform: none; }
    }

    /* ================================================================
       BUTTONS  -  exactly 3 types
       (1) .cta-button (secondary): hairline outline, fills cream on hover
       (2) .cta-button.cta-primary: gold or cream fill, dark text, tracked caps
       (3) .cta-link (text-link): cream, champagne underline-on-hover
       ================================================================ */
    .cta-button {
      display: inline-block;
      font-family: 'Cinzel', serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--cream);
      background: transparent;
      border: 1px solid var(--hairline-strong);
      padding: 16px 44px;
      text-decoration: none;
      margin-top: var(--s-4);
      transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                  color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                  border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                  letter-spacing 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .cta-button:hover {
      background: var(--cream);
      color: var(--black);
      border-color: var(--cream);
      letter-spacing: 5px;
    }

    /* Primary: the single gold moment. Use sparingly (one per viewport). */
    .cta-button.cta-primary {
      color: var(--black);
      background: var(--gold);
      border-color: var(--gold);
    }
    .cta-button.cta-primary:hover {
      background: var(--gold-bright);
      color: var(--black);
      border-color: var(--gold-bright);
    }

    /* Text-link */
    .cta-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Cinzel', serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cream);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      padding-bottom: 3px;
      transition: color 0.35s ease, border-color 0.35s ease;
    }
    .cta-link:hover {
      color: var(--champagne);
      border-color: var(--champagne);
    }

    /* ================================================================
       SECTION 8: THE STORY
       ================================================================ */

    .story-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 300;
      font-style: italic;
      color: var(--cream);
      line-height: 1.3;
      max-width: 800px;
    }

    .story-attribution {
      margin-top: 48px;
    }

    .story-attribution .name {
      font-family: 'Cinzel', serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 4px;
      color: var(--silver);
      text-transform: uppercase;
    }

    .story-attribution .title {
      font-size: 15px;
      font-weight: 300;
      color: var(--muted-light);
      margin-top: 6px;
    }

    /* ================================================================
       SECTION 9: CONTACT
       ================================================================ */

    .contact-section {
      text-align: center;
      padding: 160px 48px;
    }

    .contact-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      margin-top: 48px;
    }

    .contact-links a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 300;
      color: var(--cream-dim);
      text-decoration: none;
      letter-spacing: 1px;
      transition: color 0.3s ease;
    }

    .contact-links a:hover { color: var(--champagne); }

    .contact-phones {
      display: flex;
      gap: 40px;
      margin-top: 8px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .contact-phones a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      font-weight: 300;
      color: var(--muted-light);
      text-decoration: none;
      letter-spacing: 1px;
      transition: color 0.3s ease;
    }

    .contact-phones a:hover { color: var(--champagne); }

    /* ================================================================
       FOOTER
       ================================================================ */

    .footer {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 48px;
      border-top: 1px solid rgba(255, 250, 236, 0.06);
      background: rgba(8, 7, 5, 0.95);
    }

    .footer-logo {
      display: flex;
      justify-content: center;
      opacity: 0.4;
    }

    .footer-logo img {
      height: 18px;
      width: auto;
    }

    .footer-copy {
      font-size: 13px;
      color: var(--muted-light);
      margin-top: 12px;
      letter-spacing: 1px;
    }

    /* ================================================================
       RESPONSIVE
       ================================================================ */

    @media (max-width: 900px) {
      .section { padding: 100px 24px; }

      .product-hero-grid,
      .owners-grid,
      .owners-grid-reverse,
      .crew-feature,
      .crew-feature-reverse {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .crew-feature-reverse .crew-feature-img { order: 0; }
      .crew-feature-reverse .crew-feature-text { order: 0; }

      .pillars {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .integrator-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
      }

      .materials-showcase {
        grid-template-columns: 1fr;
      }

      .tech-grid {
        grid-template-columns: 1fr;
      }

      .contact-section { padding: 100px 24px; }
    }

    @media (max-width: 600px) {
      .section { padding: 80px 20px; }

      .integrator-stats {
        grid-template-columns: 1fr 1fr;
      }

      .compat-grid { gap: 32px; }

      .owners-hero-img {
        height: 40vh;
        min-height: 280px;
      }

      .crew-hero-banner {
        height: 35vh;
        min-height: 250px;
      }
    }

    /* ── Parallax for large screens ── */
    @media (min-width: 901px) {
      .parallax-img {
        transition: transform 0.1s linear;
      }
    }

    /* ════════════════════════════════════════
       PARALLAX BREAK SECTIONS
       ════════════════════════════════════════ */
    .parallax-break {
      height: 50vh;
      min-height: 350px;
      position: relative;
      overflow: hidden;
    }
    .parallax-break-img {
      position: absolute;
      width: 100%;
      height: 140%;
      object-fit: cover;
      top: -20%;
      filter: brightness(0.45) contrast(1.1);
      transition: transform 0.1s linear;
    }
    .parallax-break-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 2;
      text-align: center;
      padding: 0 40px;
    }
    .parallax-break-overlay h2 {
      font-family: 'Cinzel', serif;
      font-size: clamp(28px, 4.5vw, 48px);
      font-weight: 400;
      color: var(--cream);
      letter-spacing: 6px;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }
    .parallax-break-overlay h2.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .parallax-break-overlay p {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(15px, 2vw, 18px);
      color: var(--champagne);
      font-style: italic;
      font-weight: 300;
      margin-top: 12px;
      letter-spacing: 1px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.9s ease 0.15s, transform 0.9s ease 0.15s;
    }
    .parallax-break-overlay p.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* (reserved) */
    @media (max-width: 900px) {
      .parallax-break { height: 40vh; min-height: 250px; }
    }

    /* ════════════════════════════════════════
       ECOSYSTEM VISUAL GRID
       ════════════════════════════════════════ */

    .eco-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 24px;
      margin: 80px 0 0;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .eco-item {
      text-align: center;
      padding: 32px 16px;
      border: 1px solid rgba(255, 250, 236, 0.06);
      border-radius: 2px;
      background: rgba(255, 250, 236, 0.02);
      transition: border-color 0.5s ease, background 0.5s ease;
    }

    .eco-item:hover {
      border-color: rgba(255, 250, 236, 0.15);
      background: rgba(255, 250, 236, 0.04);
    }

    .eco-icon {
      font-size: 28px;
      margin-bottom: 12px;
      display: block;
    }

    .eco-item h4 {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 3px;
      color: var(--cream);
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .eco-item p {
      font-size: 14px;
      font-weight: 300;
      color: var(--muted-light);
      line-height: 1.5;
    }

    /* ════════════════════════════════════════
       EMERGENCY BLOCK
       ════════════════════════════════════════ */

    .emergency-block {
      margin-top: 120px;
      padding: 60px;
      border: 1px solid rgba(184, 137, 62, 0.18);
      border-radius: 2px;
      background: rgba(184, 137, 62, 0.03);
      position: relative;
      overflow: hidden;
    }

    .emergency-block::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 2px;
      height: 100%;
      background: linear-gradient(to bottom, var(--amber), transparent);
      opacity: 0.55;
    }

    .emergency-block h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 300;
      color: var(--cream);
      margin-bottom: 16px;
    }

    .emergency-block h3 em {
      color: var(--amber);
      font-style: italic;
    }

    .emergency-block p {
      font-size: clamp(17px, 1.8vw, 20px);
      font-weight: 300;
      color: var(--cream-dim);
      line-height: 1.8;
      max-width: 600px;
    }

    /* ════════════════════════════════════════
       PRIVACY FORTRESS
       ════════════════════════════════════════ */

    .privacy-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-top: 80px;
    }

    .privacy-card {
      padding: 48px 36px;
      border: 1px solid rgba(255, 250, 236, 0.08);
      border-radius: 2px;
      background: rgba(255, 250, 236, 0.015);
      text-align: center;
      transition: border-color 0.6s ease, background 0.6s ease, transform 0.6s ease;
    }

    .privacy-card:hover {
      border-color: rgba(255, 250, 236, 0.2);
      background: rgba(255, 250, 236, 0.04);
      transform: translateY(-4px);
    }

    .privacy-card .priv-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 28px;
      display: block;
    }

    .privacy-card .priv-icon svg {
      width: 100%;
      height: 100%;
      stroke: var(--silver);
      stroke-width: 1.2;
      fill: none;
      opacity: 0.85;
      transition: opacity 0.4s ease;
    }

    .privacy-card:hover .priv-icon svg {
      opacity: 1;
    }

    .privacy-card h4 {
      font-family: 'Cinzel', serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 4px;
      color: var(--silver);
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .privacy-card p {
      font-size: 16px;
      font-weight: 300;
      color: var(--muted-light);
      line-height: 1.7;
    }

    /* ════════════════════════════════════════
       MANAGEMENT / DASHBOARD
       ════════════════════════════════════════ */

    .mgmt-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 40px;
      margin-top: 80px;
    }

    .mgmt-card {
      padding: 40px;
      border: 1px solid rgba(255, 250, 236, 0.06);
      border-radius: 2px;
      background: rgba(255, 250, 236, 0.02);
      transition: border-color 0.5s ease;
    }

    .mgmt-card:hover {
      border-color: rgba(255, 250, 236, 0.12);
    }

    .mgmt-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 300;
      color: var(--cream);
      margin-bottom: 12px;
    }

    .mgmt-card p {
      font-size: 16px;
      font-weight: 300;
      color: var(--muted-light);
      line-height: 1.6;
    }

    /* ════════════════════════════════════════
       HANDS-FREE HERO
       ════════════════════════════════════════ */

    .handsfree-hero {
      margin-top: 120px;
      padding: 80px 60px;
      background: rgba(255, 250, 236, 0.03);
      border: 1px solid rgba(255, 250, 236, 0.08);
      border-radius: 2px;
      text-align: center;
    }

    .handsfree-hero h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 300;
      color: var(--cream);
      margin-bottom: 24px;
    }

    .handsfree-hero h3 em {
      color: var(--gold);
      font-style: italic;
    }

    .handsfree-hero p {
      font-size: clamp(17px, 1.8vw, 20px);
      font-weight: 300;
      color: var(--cream-dim);
      line-height: 1.8;
      max-width: 640px;
      margin: 0 auto;
    }

    .handsfree-steps {
      display: flex;
      justify-content: center;
      gap: 48px;
      margin-top: 60px;
      flex-wrap: wrap;
    }

    .handsfree-step {
      text-align: center;
      max-width: 180px;
    }

    .handsfree-step-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 300;
      color: var(--cream);
      margin-bottom: 8px;
    }

    .handsfree-step p {
      font-size: 16px;
      font-weight: 400;
      color: var(--cream-dim);
      line-height: 1.5;
      max-width: none;
    }

    @media (max-width: 600px) {
      .eco-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .eco-item { padding: 20px 12px; }
      .emergency-block { padding: 40px 24px; }
      .handsfree-hero { padding: 60px 24px; }
      .handsfree-steps { gap: 32px; }
      .privacy-grid { grid-template-columns: 1fr; gap: 24px; }
      .privacy-card { padding: 32px 24px; }
    }

    /* ── Film grain overlay (site-wide) ── */
    .site-grain {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.018;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 128px 128px;
    }

    /* Beyond Yachts - Responsive Grid */
    @media (max-width: 900px) {
      #beyond .section-inner > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
      }
      #beyond .section-inner > div[style*="grid-template-columns"] > div {
        order: unset !important;
      }
    }

/* ── ECG Animation (extracted from inline <style> at index.html line 2351) ── */
          /* ECG Lifeline */
          .ecg-container {
            margin-top: 56px;
            position: relative;
            width: 100%;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
          }
          .ecg-svg {
            width: 100%;
            height: auto;
            display: block;
            overflow: visible;
          }
          .ecg-path {
            fill: none;
            stroke: var(--amber);
            stroke-width: 1.6;
            stroke-linecap: round;
            stroke-linejoin: round;
          }
          .ecg-glow {
            fill: none;
            stroke: var(--amber);
            stroke-width: 6;
            stroke-linecap: round;
            stroke-linejoin: round;
            opacity: 0;
            filter: url(#ecgBlur);
          }
          .ecg-container.animated .ecg-glow {
            opacity: 0.18;
          }
          /* Labels ABOVE the ECG line */
          .ecg-labels-top {
            position: relative;
            height: 80px;
            margin-bottom: 4px;
          }
          .ecg-label-top {
            position: absolute;
            transform: translateX(-50%);
            text-align: center;
            bottom: 0;
            opacity: 0;
            transition: opacity 0.6s ease, transform 0.6s ease;
            transform: translateX(-50%) translateY(-8px);
          }
          .ecg-container.animated .ecg-label-top {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
          }
          .ecg-container.animated .ecg-label-top:nth-child(1) { transition-delay: 0.8s; }
          .ecg-container.animated .ecg-label-top:nth-child(2) { transition-delay: 2.0s; }
          .ecg-container.animated .ecg-label-top:nth-child(3) { transition-delay: 3.0s; }
          .ecg-label-top .ecg-time {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(28px, 3.5vw, 42px);
            color: var(--cream);
            font-weight: 300;
            line-height: 1;
          }
          .ecg-label-top .ecg-label {
            font-family: 'Cinzel', serif;
            font-size: 11px;
            letter-spacing: 3px;
            color: var(--silver);
            text-transform: uppercase;
            margin-top: 6px;
          }
          /* Descriptions BELOW the ECG line */
          .ecg-labels-bottom {
            display: flex;
            justify-content: center;
            gap: clamp(24px, 5vw, 80px);
            margin-top: 16px;
          }
          .ecg-label-bottom {
            text-align: center;
            opacity: 0;
            transition: opacity 0.6s ease;
          }
          .ecg-container.animated .ecg-label-bottom {
            opacity: 1;
          }
          .ecg-container.animated .ecg-label-bottom:nth-child(1) { transition-delay: 1.0s; }
          .ecg-container.animated .ecg-label-bottom:nth-child(2) { transition-delay: 2.2s; }
          .ecg-container.animated .ecg-label-bottom:nth-child(3) { transition-delay: 3.2s; }
          .ecg-label-bottom .ecg-desc {
            font-family: 'Hanken Grotesk', system-ui, sans-serif;
            font-size: clamp(14px, 1.5vw, 16px);
            color: var(--silver);
            font-weight: 400;
            line-height: 1.5;
          }
          /* Mobile */
          @media (max-width: 600px) {
            .ecg-labels-top {
              position: static;
              height: auto;
              display: flex;
              flex-direction: row;
              justify-content: space-around;
              margin: 24px 0 0;
            }
            .ecg-label-top {
              position: static !important;
              transform: none !important;
            }
            .ecg-container.animated .ecg-label-top {
              transform: none !important;
            }
            .ecg-labels-bottom {
              flex-direction: column;
              align-items: center;
              gap: 8px;
              margin-top: 16px;
            }
            .ecg-label-bottom .ecg-desc { font-size: 13px; }
          }
          /* Tagline */
          .ecg-tagline {
            margin-top: 64px;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(24px, 3vw, 36px);
            font-style: italic;
            color: var(--champagne);
            text-align: center;
            letter-spacing: 0.5px;
            font-weight: 300;
            opacity: 0;
            transform: translateY(16px) scale(0.95);
            transition: opacity 1s ease 5.8s, transform 1s ease 5.8s;
          }
          .ecg-container.animated .ecg-tagline {
            opacity: 1;
            transform: translateY(0) scale(1);
          }

/* -- Homepage Narrative Chapters (full-bleed cinematic, new in refactor) -- */
/* ── 30. Chapters ── */
.chapters {
  position: relative;
  z-index: 2;
  counter-reset: chapter;
}

.chapter {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  overflow: hidden;
  background: var(--black);
  counter-increment: chapter;
}

/* Full-bleed background image */
.chapter__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
  transform: scale(1.001); /* paint hint; hover lifts to 1.03 */
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
              filter 700ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

/* When the JS motion engine is active it writes a transform every frame,
   so a CSS transition on `transform` would lag/fight each write. Drop it
   (keep the `filter` transition for the smooth hover brightness change)
   and promote the layer. JS becomes the single source of truth for the
   background transform. */
.js-chapter-motion .chapter__bg {
  transition: filter 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
}

/* Dark scrim for text legibility - direction set per anchor modifier */
.chapter__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(8, 7, 5, 0.85) 0%,
    rgba(8, 7, 5, 0.45) 45%,
    rgba(8, 7, 5, 0.25) 75%,
    rgba(8, 7, 5, 0.45) 100%
  );
}

/* Overlay text block */
.chapter__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.chapter__content > * {
  max-width: 620px;
}

/* Numbered label: "01 - PRODUCT" (cool silver, not gold) */
.chapter__label {
  font-family: 'Cinzel', 'Georgia', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  color: var(--silver);
  text-transform: uppercase;
  opacity: 0.95;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.chapter__label::before {
  content: counter(chapter, decimal-leading-zero) " -";
  color: var(--silver);
  letter-spacing: 3px;
  opacity: 0.85;
}

/* Crawlable headline - RR light + tracked + uppercase, large scale */
.chapter__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-display);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 24px;
}

/* The single gold moment per chapter: the italic accent word. */
.chapter__title em {
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--gold);
}

/* Stretched link - whole section clickable */
.chapter__link {
  color: inherit;
  text-decoration: none;
  outline: none;
}

.chapter__link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.chapter__teaser {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: var(--fs-lead);
  font-weight: 400;
  color: var(--cream-dim);
  line-height: 1.6;
  margin: 0 0 36px;
}

/* Decorative "Explore X ->" cue (cream -> champagne on hover) */
.chapter__cue {
  font-family: 'Cinzel', 'Georgia', serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0.85;
  transition: opacity 500ms ease, letter-spacing 500ms ease, color 500ms ease;
}

.chapter__cue-arrow {
  display: inline-block;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Alternating text anchors ── */
.chapter--left .chapter__content {
  align-items: flex-start;
  text-align: left;
}
.chapter--left .chapter__scrim {
  background: linear-gradient(
    105deg,
    rgba(8, 7, 5, 0.88) 0%,
    rgba(8, 7, 5, 0.55) 45%,
    rgba(8, 7, 5, 0.15) 75%,
    rgba(8, 7, 5, 0.05) 100%
  );
}

.chapter--center .chapter__content {
  align-items: center;
  text-align: center;
  justify-content: center;
}
.chapter--center .chapter__content > * {
  max-width: 760px;
}
.chapter--center .chapter__label {
  justify-content: center;
}
.chapter--center .chapter__scrim {
  background: radial-gradient(
    ellipse 90% 80% at 50% 50%,
    rgba(8, 7, 5, 0.78) 0%,
    rgba(8, 7, 5, 0.55) 55%,
    rgba(8, 7, 5, 0.4) 100%
  );
}

.chapter--right .chapter__content {
  align-items: flex-end;
  text-align: right;
}
.chapter--right .chapter__label {
  flex-direction: row-reverse;
}
.chapter--right .chapter__scrim {
  background: linear-gradient(
    255deg,
    rgba(8, 7, 5, 0.88) 0%,
    rgba(8, 7, 5, 0.55) 45%,
    rgba(8, 7, 5, 0.15) 75%,
    rgba(8, 7, 5, 0.05) 100%
  );
}

/* ── Editorial split: image-left / text-right (the one departure) ── */
.chapter--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.chapter--split .chapter__media {
  position: relative;
  overflow: hidden;
}
.chapter--split .chapter__bg {
  filter: brightness(0.82);
}
.chapter--split .chapter__content {
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 120px clamp(48px, 6vw, 96px);
  background: var(--charcoal);
}
.chapter--split .chapter__scrim--split {
  display: none; /* solid text column instead of scrim */
}

/* ── Hover (desktop, pointer devices) ── */
@media (hover: hover) and (pointer: fine) {
  .chapter:hover .chapter__bg {
    transform: scale(1.03);
    filter: brightness(0.8);
  }
  .chapter--split:hover .chapter__bg {
    filter: brightness(0.92);
  }
  .chapter:hover .chapter__cue {
    opacity: 1;
    letter-spacing: 5px;
    color: var(--champagne);
  }
  .chapter:hover .chapter__cue-arrow {
    transform: translateX(8px);
  }
}

/* ── Keyboard focus: gold outline on the whole section ── */
.chapter:has(.chapter__link:focus-visible) {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
/* Fallback for browsers without :has() - outline the anchor box */
.chapter__link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}

/* Suppress the inter-section gold divider line over full-bleed chapters */
.chapter::before,
.chapter + .chapter::before {
  content: none !important;
}

/* ── Discoverability link line (Integrators / Story) ── */
.chapter-more {
  padding-top: 90px;
  padding-bottom: 90px;
}
.chapter-more__links {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: var(--fs-lead);
  font-weight: 400;
  color: var(--silver);
  line-height: 1.8;
  margin: 0;
}
.chapter-more__links a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--champagne-dim);
  padding-bottom: 2px;
  transition: border-color 0.4s ease, color 0.4s ease;
}
.chapter-more__links a:hover {
  color: var(--champagne);
  border-color: var(--champagne);
}
.chapter-more__sep {
  margin: 0 16px;
  color: var(--muted);
  opacity: 0.6;
}

/* ============================================================
   SCROLL MOTION  (cross-browser, JS-driven - see scripts/chapter-motion.js)
   ------------------------------------------------------------
   The continuous background motion (vertical parallax + slow Ken-Burns
   scale) is owned ENTIRELY by JavaScript so Safari & Firefox get it too,
   not just `animation-timeline` browsers. JS is therefore the single
   source of truth for `.chapter__bg` transforms - there is intentionally
   NO CSS scroll-driven transform here, to prevent the two fighting.

   This block handles only the STAGGERED TEXT ENTRANCE, triggered by the
   `.in-view` class that the JS IntersectionObserver adds when a chapter
   scrolls in. CSS owns the stagger via transition-delay; JS owns the trigger.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  /* Children start hidden + lifted, then fade + rise in sequence.
     Scoped to .js-chapter-motion so text is never stuck hidden if JS
     fails to run (the JS adds that class on the <html> element). */
  .js-chapter-motion .chapter__label,
  .js-chapter-motion .chapter__title,
  .js-chapter-motion .chapter__teaser,
  .js-chapter-motion .chapter__cue {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Refined stagger: label -> headline -> teaser -> cue (~100ms apart). */
  .js-chapter-motion .chapter.in-view .chapter__label  { transition-delay: 60ms; }
  .js-chapter-motion .chapter.in-view .chapter__title  { transition-delay: 160ms; }
  .js-chapter-motion .chapter.in-view .chapter__teaser { transition-delay: 280ms; }
  .js-chapter-motion .chapter.in-view .chapter__cue    { transition-delay: 400ms; }

  .js-chapter-motion .chapter.in-view .chapter__label,
  .js-chapter-motion .chapter.in-view .chapter__title,
  .js-chapter-motion .chapter.in-view .chapter__teaser,
  .js-chapter-motion .chapter.in-view .chapter__cue {
    opacity: 1;
    transform: translateY(0);
  }

  /* The cue keeps its baseline 0.85 opacity (hover/touch lift it to 1). */
  .js-chapter-motion .chapter.in-view .chapter__cue { opacity: 0.85; }

  /* The numbered label draws a short cool rule in beside the number. */
  .js-chapter-motion .chapter__label::after {
    content: '';
    width: 0;
    height: 1px;
    margin-left: 2px;
    background: var(--silver);
    opacity: 0.6;
    transition: width 760ms cubic-bezier(0.22, 1, 0.36, 1) 480ms;
  }
  .js-chapter-motion .chapter.in-view .chapter__label::after { width: 34px; }
  /* Right-anchored chapter reverses the label row, so flip the rule too. */
  .js-chapter-motion .chapter--right .chapter__label { flex-direction: row-reverse; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .chapter__content {
    padding: 120px 32px;
  }
  /* Stack the editorial split: image on top, text below */
  .chapter--split {
    grid-template-columns: 1fr;
    grid-template-rows: 45svh auto;
  }
  .chapter--split .chapter__content {
    padding: 64px 32px 80px;
  }
}

@media (max-width: 600px) {
  /* Touch: re-anchor all text to the bottom with a full-width bottom scrim */
  .chapter__content,
  .chapter--center .chapter__content,
  .chapter--right .chapter__content {
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding: 90px 24px 64px;
  }
  .chapter--right .chapter__label,
  .chapter--center .chapter__label {
    flex-direction: row;
    justify-content: flex-start;
  }
  .chapter__scrim,
  .chapter--left .chapter__scrim,
  .chapter--center .chapter__scrim,
  .chapter--right .chapter__scrim {
    background: linear-gradient(
      to top,
      rgba(8, 7, 5, 0.92) 0%,
      rgba(8, 7, 5, 0.6) 38%,
      rgba(8, 7, 5, 0.3) 70%,
      rgba(8, 7, 5, 0.4) 100%
    );
  }
  /* "Explore ->" cue always visible on touch (no hover needed) */
  .chapter__cue {
    opacity: 1;
  }
}

/* ── Reduced motion: disable ALL chapter motion ──
   The JS engine already bails out of parallax/scale under reduced-motion
   (it writes no inline transform). These rules are the CSS guarantee:
   no transitions/animations, no transforms, and the chapter text is shown
   instantly (no staggered entrance) - only a plain, static layout. */
@media (prefers-reduced-motion: reduce) {
  .chapter__bg,
  .chapter__cue,
  .chapter__cue-arrow {
    transition: none;
    animation: none;
  }
  .chapter:hover .chapter__bg {
    transform: none;
  }
  /* Force the background flat even if an inline transform lingers. */
  .js-chapter-motion .chapter__bg {
    transform: none !important;
    will-change: auto;
  }
  /* Chapter text: instant, fully visible, no rise, no stagger. */
  .js-chapter-motion .chapter__label,
  .js-chapter-motion .chapter__title,
  .js-chapter-motion .chapter__teaser,
  .js-chapter-motion .chapter__cue {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .js-chapter-motion .chapter__cue { opacity: 0.85; }
  .js-chapter-motion .chapter__label::after { display: none; }
}
