/* ══════════════════════════════════════════
   DESIGN SYSTEM — Stone Whisper Design Bible
   ══════════════════════════════════════════ */
  :root {
    --color-base: #0C0A09;
    --color-surface: #1A1714;
    --color-surface-elevated: #252019;
    --color-border: rgba(61,53,41,0.4);
    --color-border-hover: rgba(61,53,41,0.7);

    --color-text-primary: #F5F0E8;
    --color-text-body: #D4CCBC;
    --color-text-muted: #9C9484;
    --color-text-disabled: #6B6358;

    --color-gold: #C9A96E;
    --color-gold-hover: #D4B97E;
    --color-gold-muted: #8B7748;
    --color-gold-glow: rgba(201,169,110,0.15);

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Crimson Pro', Georgia, serif;
    --font-ui: 'DM Sans', 'Helvetica Neue', sans-serif;

    --space-2: 0.5rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-24: 6rem;
    --space-32: 8rem;
    --space-48: 12rem;

    --content-width: 1200px;
    --content-narrow: 720px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text-body);
    background: var(--color-base);
    overflow-x: hidden;
    letter-spacing: 0.01em;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { text-decoration: none; color: inherit; }
  h1,h2,h3,h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.15; letter-spacing: -0.02em; }
  .wrap { max-width: var(--content-width); margin: 0 auto; padding: 0 clamp(20px,4vw,48px); }

  /* Reveal animation */
  .rv { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
  .rv.vis { opacity: 1; transform: translateY(0); }
  .rv-d1 { transition-delay: .12s; }
  .rv-d2 { transition-delay: .24s; }
  .rv-d3 { transition-delay: .36s; }
  .rv-d4 { transition-delay: .48s; }
  .rv-d5 { transition-delay: .6s; }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-ui);
    font-size: 0.875rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    border: none; border-radius: 2px;
    cursor: pointer; transition: all .3s ease;
  }
  .btn--gold {
    background: var(--color-gold); color: var(--color-base);
  }
  .btn--gold:hover {
    background: var(--color-gold-hover);
    box-shadow: 0 0 30px var(--color-gold-glow), 0 0 60px rgba(201,169,110,0.08);
  }
  .btn--outline {
    background: transparent; color: var(--color-gold);
    border: 1px solid rgba(201,169,110,0.35);
  }
  .btn--outline:hover {
    border-color: var(--color-gold);
    background: rgba(201,169,110,0.08);
  }
  .btn--dark {
    background: var(--color-surface); color: var(--color-text-primary);
    border: 1px solid var(--color-border);
  }
  .btn--dark:hover { background: var(--color-surface-elevated); border-color: var(--color-border-hover); }

  /* Divider */
  .divider {
    width: 120px; height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold-muted), transparent);
    margin: var(--space-16) auto;
  }

  /* Gold text — max 1 per section */
  .gold-text {
    color: var(--color-gold);
    text-shadow: 0 0 20px rgba(201,169,110,0.15), 0 0 40px rgba(201,169,110,0.05);
  }

  /* Section label */
  .section-label {
    font-family: var(--font-ui);
    font-size: 0.75rem; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--color-text-muted); opacity: 0.6;
    text-align: center;
    margin-bottom: var(--space-12);
  }


  /* ═══════════════════════════════════
     1. NAV
     ═══════════════════════════════════ */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 22px 0; transition: all .4s;
  }
  .nav.scrolled {
    background: rgba(12,10,9,0.92);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(201,169,110,0.07);
  }
  .nav__in { display: flex; align-items: center; justify-content: space-between; }
  .nav__brand {
    font-family: var(--font-heading); font-size: 1.05rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--color-gold);
  }
  .nav__links { display: flex; align-items: center; gap: 32px; }
  .nav__link {
    font-family: var(--font-ui);
    font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--color-gold); opacity: 0.7; transition: opacity .3s;
    text-decoration: none;
  }
  .nav__link:hover { opacity: 1; }
  .nav__cta {
    font-family: var(--font-ui);
    font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--color-gold); opacity: 0.9; transition: opacity .3s;
    text-decoration: none; border: 1px solid rgba(201,169,110,0.4);
    padding: 7px 16px; border-radius: 2px;
  }
  .nav__cta:hover { opacity: 1; border-color: var(--color-gold); }

  /* Hamburger button */
  .nav__burger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px;
  }
  .nav__burger span { display: block; width: 22px; height: 1px; background: var(--color-gold); transition: all .3s; }
  .nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* Mobile full-screen menu */
  .nav__mobile {
    display: none; position: fixed; inset: 0;
    background: rgba(12,10,9,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    z-index: 200; flex-direction: column; align-items: center; justify-content: center; gap: 0;
  }
  .nav__mobile.open { display: flex; }
  .nav__mobile-close {
    position: absolute; top: 20px; right: 20px;
    background: none; border: none; color: var(--color-gold); font-size: 1.3rem;
    cursor: pointer; opacity: 0.6; padding: 8px; line-height: 1;
  }
  .nav__mobile-close:hover { opacity: 1; }
  .nav__mobile-link {
    font-family: var(--font-ui); font-size: 0.85rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--color-gold); opacity: 0.7; text-decoration: none;
    padding: 20px 40px; width: 100%; text-align: center;
    border-bottom: 1px solid rgba(201,169,110,0.08); transition: opacity .2s;
  }
  .nav__mobile-link:hover { opacity: 1; }
  .nav__mobile-cta {
    display: inline-block; margin-top: 28px; padding: 14px 40px;
    font-family: var(--font-ui); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--color-gold); text-decoration: none; opacity: 0.9;
    border: 1px solid rgba(201,169,110,0.4); border-radius: 2px; transition: opacity .2s, border-color .2s;
  }
  .nav__mobile-cta:hover { opacity: 1; border-color: var(--color-gold); }


  /* ═══════════════════════════════════
     2. HERO
     ═══════════════════════════════════ */
  .hero {
    position: relative; min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: flex-end;
    overflow: hidden;
  }
  .hero__img { position: absolute; inset: 0; z-index: 0; }
  .hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 30%; }
  .hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
      linear-gradient(to right, rgba(12,10,9,0.92) 0%, rgba(12,10,9,0.7) 28%, rgba(12,10,9,0.2) 48%, transparent 65%),
      linear-gradient(to top, rgba(12,10,9,0.6) 0%, transparent 30%),
      linear-gradient(to bottom, rgba(12,10,9,0.4) 0%, transparent 12%);
  }
  .hero::after {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: radial-gradient(ellipse at 50% 40%, rgba(201,169,110,0.04) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero__content {
    position: relative; z-index: 2;
    width: 100%; max-width: none;
    padding: clamp(160px,20vw,220px) 0 clamp(100px,15vw,180px) clamp(80px,10vw,140px);
  }
  .hero__content > * { max-width: 560px; }
  .hero__tag {
    font-family: var(--font-ui);
    font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--color-gold); opacity: 0.6; margin-bottom: 28px;
  }
  .hero__h1 {
    font-size: clamp(2.6rem,5vw,4rem); font-weight: 300;
    color: var(--color-text-primary); margin-bottom: 24px; line-height: 1.1;
  }
  .hero__sub {
    font-family: var(--font-body);
    font-size: clamp(1.05rem,1.8vw,1.25rem);
    color: var(--color-text-muted);
    margin-bottom: 44px; line-height: 1.7;
  }
  .hero__badge {
    font-family: var(--font-ui);
    font-size: 0.68rem; letter-spacing: 0.08em;
    color: var(--color-text-disabled);
    margin-top: 20px;
  }
  .hero__scroll {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
  }
  .hero__scroll span {
    display: block; width: 1px; height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.4));
    animation: pulse 2.5s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100%{opacity:.2} 50%{opacity:1} }
  @media (max-width:749px) {
    /* Nav: show burger, hide desktop links/cta */
    .nav__links { display: none; }
    .nav__cta { display: none; }
    .nav__burger { display: flex; }
    /* Hero: darken overlay so text always readable, adjust image position */
    .hero__img img { object-position: 75% 25%; }
    .hero__overlay { background: rgba(12,10,9,0.68); }
    .hero__content { padding: 100px 24px 80px 24px; }
    .hero__content > * { max-width: 340px; }
  }
  /* Medium desktop: prevent text overlapping bottle */
  @media (min-width:750px) and (max-width:1200px) {
    .hero__content > * { max-width: 440px; }
    .hero__overlay {
      background:
        linear-gradient(to right, rgba(12,10,9,0.95) 0%, rgba(12,10,9,0.78) 35%, rgba(12,10,9,0.3) 55%, transparent 70%),
        linear-gradient(to top, rgba(12,10,9,0.6) 0%, transparent 30%),
        linear-gradient(to bottom, rgba(12,10,9,0.4) 0%, transparent 12%);
    }
  }


  /* ═══════════════════════════════════
     3. PAIN POINTS
     ═══════════════════════════════════ */
  .pain {
    position: relative;
    background: var(--color-surface);
    padding: clamp(100px,14vw,180px) 0;
  }
  .pain__inner { max-width: 640px; margin: 0 auto; text-align: center; }
  .pain__line {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem,2.4vw,1.6rem);
    font-weight: 300; font-style: italic;
    color: var(--color-text-primary); line-height: 1.6;
    margin-bottom: clamp(32px,4vw,48px);
    padding-bottom: clamp(32px,4vw,48px);
    border-bottom: 1px solid var(--color-border);
  }
  .pain__line:last-of-type { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
  .pain__line--short {
    font-size: clamp(1.4rem,2.8vw,1.9rem);
  }
  .pain__coda {
    font-family: var(--font-body);
    font-size: 1rem; color: var(--color-text-muted);
    margin-top: clamp(48px,6vw,72px);
  }


  /* Temple transition */
  .blueprint__bg {
    position: absolute; inset: 0; z-index: 0;
    overflow: hidden;
  }
  .blueprint__bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 40%;
    opacity: 0.35;
  }
  .blueprint__bg::after {
    content: ''; position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, var(--color-base) 0%, transparent 15%),
      linear-gradient(to top, var(--color-base) 0%, transparent 15%);
  }
  .blueprint > .wrap { position: relative; z-index: 1; }

  /* ═══════════════════════════════════
     4. FIVE ELEMENTS — THE BLUEPRINT
     ═══════════════════════════════════ */
  .blueprint {
    position: relative;
    background: var(--color-base);
    padding: clamp(100px,14vw,180px) 0;
  }
  .blueprint__intro { text-align: center; margin-bottom: clamp(80px,10vw,120px); }
  .blueprint__h {
    font-size: clamp(2rem,4vw,3rem); font-weight: 300;
    color: var(--color-text-primary); margin-bottom: 20px;
  }
  .blueprint__sub {
    font-family: var(--font-body);
    font-size: clamp(1rem,1.3vw,1.15rem);
    color: var(--color-text-muted); line-height: 1.8;
    max-width: 620px; margin: 0 auto;
  }

  /* Element cards */
  .el-cards {
    display: grid; grid-template-columns: repeat(5,1fr);
    gap: clamp(12px,2vw,20px);
    max-width: 1000px; margin: 0 auto clamp(64px,8vw,100px);
  }
  .el-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    padding: clamp(24px,3vw,36px) clamp(16px,2vw,20px);
    text-align: center;
    transition: all .4s ease;
  }
  .el-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  }
  .el-card__char {
    font-size: clamp(1.8rem,3vw,2.4rem);
    color: var(--color-text-primary);
    margin-bottom: 8px; line-height: 1;
  }
  .el-card__name {
    font-family: var(--font-heading);
    font-size: 1.1rem; color: var(--color-text-primary);
    margin-bottom: 4px;
  }
  .el-card__role {
    font-family: var(--font-ui);
    font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--color-gold); opacity: 0.7;
    margin-bottom: 14px;
  }
  .el-card__desc {
    font-family: var(--font-body);
    font-size: 0.9rem; color: var(--color-text-muted);
    line-height: 1.65; font-style: italic;
  }

  /* Comparison table */
  .compare {
    max-width: 800px; margin: 0 auto clamp(48px,6vw,72px);
    border: 1px solid var(--color-border);
    border-radius: 2px; overflow: hidden;
  }
  .compare table {
    width: 100%; border-collapse: collapse;
  }
  .compare th, .compare td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.88rem;
  }
  .compare th {
    font-family: var(--font-ui);
    font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--color-text-muted);
    background: var(--color-surface);
  }
  .compare th:last-child { color: var(--color-gold); }
  .compare td {
    color: var(--color-text-muted);
    background: var(--color-surface-elevated);
  }
  .compare td:first-child {
    font-family: var(--font-ui);
    font-size: 0.75rem; color: var(--color-text-disabled);
    letter-spacing: 0.05em;
  }
  .compare td:last-child { color: var(--color-text-body); }
  .compare tr:last-child td { border-bottom: none; }

  .blueprint__close {
    text-align: center; max-width: 560px; margin: 0 auto;
  }
  .blueprint__close p {
    font-family: var(--font-body);
    font-size: clamp(1.05rem,1.5vw,1.2rem);
    color: var(--color-text-body);
    line-height: 1.8;
    margin-bottom: 12px;
  }
  .blueprint__close p:last-child {
    font-style: italic;
    margin-bottom: 0;
  }

  @media (max-width:749px) {
    .el-cards { grid-template-columns: repeat(2,1fr); }
    .el-cards .el-card:last-child { grid-column: span 2; max-width: 280px; margin: 0 auto; }
    .compare { overflow-x: auto; }
    .compare table { min-width: 520px; }
  }


  /* ═══════════════════════════════════
     5. READING EXCERPTS
     ═══════════════════════════════════ */
  .excerpts {
    position: relative;
    background: var(--color-surface);
    padding: clamp(100px,14vw,180px) 0;
    overflow: hidden;
  }
  .excerpts__bg {
    position: absolute; inset: 0; z-index: 0;
    opacity: 0.06;
  }
  .excerpts__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .excerpts > .wrap { position: relative; z-index: 1; }
  .excerpts__header {
    text-align: center; margin-bottom: clamp(80px,10vw,120px);
  }
  .excerpts__h {
    font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 300;
    color: var(--color-text-primary); margin-bottom: 8px;
  }
  .excerpts__sub {
    font-family: var(--font-heading);
    font-size: clamp(1rem,1.5vw,1.2rem);
    font-style: italic;
    color: var(--color-text-muted);
  }
  .excerpts__perm {
    font-family: var(--font-ui);
    font-size: 0.72rem; color: var(--color-text-disabled);
    letter-spacing: 0.05em; margin-top: 12px;
  }

  .excerpt {
    max-width: 720px; margin: 0 auto clamp(64px,8vw,100px);
    position: relative;
  }
  .excerpt:last-of-type { margin-bottom: 0; }
  .excerpt__tag {
    font-family: var(--font-ui);
    font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--color-gold); opacity: 0.6;
    margin-bottom: 20px;
  }
  .excerpt__label {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem,2vw,1.6rem); font-weight: 300;
    color: var(--color-text-primary);
    margin-bottom: 20px;
  }
  .excerpt__text {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem,1.8vw,1.35rem);
    font-weight: 300; font-style: italic;
    color: var(--color-text-primary); line-height: 1.8;
    padding: clamp(24px,4vw,40px);
    background: var(--color-surface-elevated);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    margin-bottom: 16px;
  }
  .excerpt__meta {
    font-family: var(--font-ui);
    font-size: 0.72rem; color: var(--color-text-disabled);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
  }
  .excerpt__note {
    font-family: var(--font-body);
    font-size: 0.95rem; color: var(--color-text-muted);
    font-style: italic;
  }

  .excerpts__close {
    text-align: center; margin-top: clamp(64px,8vw,100px);
  }
  .excerpts__close p {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem,2.5vw,1.8rem);
    font-weight: 300; font-style: italic;
    color: var(--color-text-primary);
    line-height: 1.5;
  }


  /* ═══════════════════════════════════
     6. PROCESS
     ═══════════════════════════════════ */
  .process {
    position: relative;
    background: var(--color-base);
    padding: clamp(100px,14vw,180px) 0;
  }
  .process__bridge {
    font-family: var(--font-body);
    font-size: clamp(1rem,1.3vw,1.15rem);
    font-style: italic;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 480px; margin: 0 auto clamp(48px,6vw,72px);
  }
  .process__header {
    text-align: center; margin-bottom: clamp(80px,10vw,120px);
  }
  .process__h {
    font-size: clamp(2rem,4vw,3rem); font-weight: 300;
    color: var(--color-text-primary); margin-bottom: 16px;
  }

  .steps {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 0; max-width: 960px; margin: 0 auto;
    position: relative;
  }
  .steps::before {
    content: '';
    position: absolute; top: 28px; left: 12.5%; right: 12.5%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold-muted), var(--color-gold-muted), transparent);
  }
  .step {
    text-align: center;
    padding: 0 clamp(12px,2vw,24px);
    position: relative;
  }
  .step__num {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1px solid var(--color-gold-muted);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-heading);
    font-size: 1.2rem; color: var(--color-gold); opacity: 0.6;
    background: var(--color-base);
    position: relative; z-index: 1;
  }
  .step__title {
    font-family: var(--font-heading);
    font-size: 1.05rem; color: var(--color-text-primary); margin-bottom: 10px;
  }
  .step__desc {
    font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.65;
  }

  .process__img {
    max-width: 960px; margin: clamp(64px,8vw,100px) auto 0;
    overflow: hidden; border-radius: 2px;
    max-height: 400px;
  }
  .process__img img {
    width: 100%; height: 100%;
    object-fit: cover;
  }

  @media (max-width:749px) {
    .steps { grid-template-columns: repeat(2,1fr); gap: 40px 0; }
    .steps::before { display: none; }
  }


  /* ═══════════════════════════════════
     7. CRAFTSMAN VOICE — THE READER
     ═══════════════════════════════════ */
  .craftsman {
    background: var(--color-surface);
    padding: clamp(100px,14vw,180px) 0;
    border-top: 1px solid var(--color-border);
  }
  .craftsman__hero {
    width: 100%; max-height: 480px;
    overflow: hidden;
    margin-bottom: clamp(64px,8vw,100px);
  }
  .craftsman__hero img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 30%;
    border-radius: 2px;
  }
  .craftsman__inner {
    max-width: 660px; margin: 0 auto;
  }
  .craftsman__identity {
    font-family: var(--font-ui);
    font-size: 0.72rem; letter-spacing: 0.15em;
    color: var(--color-text-disabled);
    text-align: center;
    margin-bottom: clamp(24px,3vw,36px);
  }
  .craftsman__headline {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 300;
    color: var(--color-text-primary);
    text-align: center; line-height: 1.3;
    margin-bottom: clamp(48px,6vw,72px);
  }
  .craftsman__intro {
    font-family: var(--font-body);
    font-size: clamp(1rem,1.3vw,1.15rem);
    color: var(--color-text-muted);
    line-height: 1.85;
    margin-bottom: clamp(48px,6vw,64px);
    text-align: center;
  }
  .craftsman__story {
    margin-bottom: clamp(48px,6vw,64px);
  }
  .craftsman__story p {
    font-family: var(--font-body);
    font-size: clamp(1rem,1.3vw,1.1rem);
    color: var(--color-text-body);
    line-height: 1.85;
    margin-bottom: 20px;
  }
  .craftsman__story p:last-child { margin-bottom: 0; }
  .craftsman__story em {
    font-style: normal; color: var(--color-gold);
  }
  .craftsman__close {
    font-family: var(--font-body);
    font-size: clamp(1rem,1.3vw,1.15rem);
    color: var(--color-text-body);
    line-height: 1.85;
    text-align: center;
  }
  .craftsman__close p { margin-bottom: 20px; }
  .craftsman__close p:last-child { margin-bottom: 0; }
  .craftsman__close em {
    font-style: normal; color: var(--color-gold);
  }


  /* ═══════════════════════════════════
     8. WHAT ARRIVES — DELIVERABLES
     ═══════════════════════════════════ */
  .arrives {
    background: var(--color-base);
    padding: clamp(100px,14vw,180px) 0;
  }
  .arrives__header {
    text-align: center; margin-bottom: clamp(80px,10vw,120px);
  }
  .arrives__h {
    font-size: clamp(2rem,4vw,3rem); font-weight: 300;
    color: var(--color-text-primary);
  }

  .deliverable {
    max-width: 720px; margin: 0 auto clamp(48px,6vw,72px);
    padding-bottom: clamp(48px,6vw,72px);
    border-bottom: 1px solid var(--color-border);
  }
  .deliverable:last-of-type { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
  .deliverable__title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem,2.5vw,1.8rem); font-weight: 300;
    color: var(--color-text-primary);
    margin-bottom: 14px;
  }
  .deliverable__desc {
    font-size: clamp(1rem,1.2vw,1.1rem);
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
  }
  .deliverable__whisper {
    font-family: var(--font-heading);
    font-size: clamp(1rem,1.3vw,1.1rem);
    font-style: italic;
    color: var(--color-text-body);
  }
  .deliverable__img {
    width: 100%; max-height: 420px;
    overflow: hidden;
    margin-bottom: 24px;
    border-radius: 2px;
  }
  .deliverable__img img {
    width: 100%; height: 100%;
    object-fit: cover;
  }


  /* ═══════════════════════════════════
     9. REVIEWS — Horizontal Carousel
     ═══════════════════════════════════ */
  .reviews {
    background: var(--color-surface);
    padding: clamp(100px,14vw,180px) 0;
    overflow: hidden;
  }
  .reviews__h {
    font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 300;
    color: var(--color-text-primary); text-align: center;
    margin-bottom: clamp(48px,6vw,72px);
  }
  .reviews__track-wrap {
    position: relative;
    margin: 0 -20px;
  }
  .reviews__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 clamp(20px,4vw,48px) 20px;
    scrollbar-width: none;
    cursor: grab;
  }
  .reviews__track:active { cursor: grabbing; }
  .reviews__track::-webkit-scrollbar { display: none; }
  .review {
    flex: 0 0 clamp(300px,30vw,380px);
    scroll-snap-align: start;
    background: var(--color-surface-elevated);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    padding: 28px 24px;
    text-align: left;
    transition: border-color .3s;
  }
  .review:hover { border-color: var(--color-border-hover); }
  .review__stars { color: var(--color-gold); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 14px; }
  .review__text {
    font-size: 0.95rem; color: var(--color-text-muted);
    line-height: 1.75; font-style: italic; margin-bottom: 16px;
  }
  .review__name {
    font-family: var(--font-ui);
    font-size: 0.7rem; color: var(--color-text-disabled);
    letter-spacing: 0.1em; text-transform: uppercase;
  }
  .review__detail {
    font-size: 0.78rem; color: var(--color-text-disabled);
    margin-top: 4px;
  }
  .reviews__nav {
    display: flex; justify-content: center; align-items: center;
    gap: 16px;
    margin-top: clamp(28px,4vw,40px);
  }
  .reviews__arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-gold);
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all .3s;
  }
  .reviews__arrow:hover {
    border-color: var(--color-gold);
    background: rgba(201,169,110,0.08);
  }
  .reviews__dots {
    display: flex; gap: 8px;
  }
  .reviews__dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--color-text-disabled);
    opacity: 0.3;
    transition: all .3s;
  }
  .reviews__dot.active {
    opacity: 1;
    background: var(--color-gold);
    width: 20px;
    border-radius: 3px;
  }
  .reviews__belong {
    text-align: center;
    margin-top: clamp(48px,6vw,72px);
    font-family: var(--font-body);
    font-size: clamp(1rem,1.3vw,1.15rem);
    color: var(--color-text-muted);
  }
  .reviews__hint {
    text-align: center;
    margin-top: 8px;
    font-family: var(--font-ui);
    font-size: 0.68rem;
    color: var(--color-text-disabled);
    letter-spacing: 0.05em;
  }


  /* ═══════════════════════════════════
     10. PRODUCT CARDS
     ═══════════════════════════════════ */
  .products {
    background: var(--color-base);
    padding: clamp(100px,14vw,180px) 0;
  }
  .products__h {
    font-size: clamp(2rem,4vw,3rem); font-weight: 300;
    color: var(--color-text-primary); text-align: center; margin-bottom: 12px;
  }
  .products__sub {
    font-family: var(--font-body);
    font-size: clamp(1rem,1.3vw,1.15rem);
    color: var(--color-text-muted);
    text-align: center; margin-bottom: clamp(48px,6vw,72px);
    max-width: 520px; margin-left: auto; margin-right: auto;
  }
  .cards {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 16px; max-width: 1080px; margin: 0 auto;
  }
  .card {
    position: relative;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    padding: clamp(28px,3vw,40px) clamp(16px,2vw,24px) clamp(28px,3vw,36px);
    text-align: center; transition: all .4s;
    display: flex; flex-direction: column;
  }
  .card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
    transform: translateY(-3px);
    border-color: var(--color-border-hover);
  }
  .card--feat { border-color: rgba(201,169,110,0.3); }
  .card--feat::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  }
  .card__badge {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--color-base); background: var(--color-gold);
    padding: 4px 14px; margin-bottom: 16px;
    border-radius: 1px;
  }
  .card__label {
    font-family: var(--font-ui);
    font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--color-text-muted); opacity: 0.6;
    margin-bottom: 8px;
  }
  .card__title { font-size: 1.15rem; color: var(--color-text-primary); margin-bottom: 6px; }
  .card__price {
    font-family: var(--font-heading);
    font-size: 2rem; font-weight: 300;
    color: var(--color-gold); margin-bottom: 16px;
  }
  .card__desc {
    font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.7;
    margin-bottom: 20px; flex-grow: 1;
  }
  .card__includes {
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.85rem; color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
  }
  .card__includes li {
    list-style: none;
    padding-left: 16px;
    position: relative;
  }
  .card__includes li::before {
    content: '\2013';
    position: absolute; left: 0;
    color: var(--color-gold-muted);
  }
  .card .btn { width: 100%; }

  .products__trust {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 8px 28px; margin-top: clamp(28px,4vw,40px);
    font-family: var(--font-ui);
    font-size: 0.75rem; color: var(--color-text-muted);
  }
  @media (max-width:999px) {
    .cards { grid-template-columns: repeat(2,1fr); max-width: 600px; }
  }
  @media (max-width:599px) {
    .cards { grid-template-columns: 1fr; max-width: 380px; }
  }


  /* ═══════════════════════════════════
     11. FAQ
     ═══════════════════════════════════ */
  .faq {
    background: var(--color-surface);
    padding: clamp(100px,14vw,160px) 0;
  }
  .faq__header { text-align: center; margin-bottom: clamp(48px,6vw,72px); }
  .faq__h {
    font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 300;
    color: var(--color-text-primary); margin-bottom: 8px;
  }
  .faq__sub {
    font-family: var(--font-ui);
    font-size: 0.82rem; color: var(--color-text-muted);
  }
  .faq__list {
    max-width: 680px; margin: 0 auto;
  }
  .faq__item {
    border-bottom: 1px solid var(--color-border);
  }
  .faq__q {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0; cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem; color: var(--color-text-primary);
    background: none; border: none; width: 100%; text-align: left;
    transition: color .3s;
  }
  .faq__q:hover { color: var(--color-gold); }
  .faq__q::after {
    content: '+';
    font-family: var(--font-ui);
    font-size: 1.2rem; color: var(--color-text-muted);
    transition: transform .3s;
    flex-shrink: 0; margin-left: 16px;
  }
  .faq__item.open .faq__q::after { content: '\2212'; }
  .faq__a {
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
  }
  .faq__item.open .faq__a { max-height: 300px; }
  .faq__a-inner {
    padding: 0 0 24px;
    font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.75;
  }


  /* ═══════════════════════════════════
     12. FINAL CTA
     ═══════════════════════════════════ */
  .final-cta {
    position: relative; min-height: clamp(450px,55vw,650px);
    display: flex; align-items: center; overflow: hidden;
  }
  .final-cta__img { position: absolute; inset: 0; }
  .final-cta__img img { width: 100%; height: 100%; object-fit: cover; }
  .final-cta__overlay {
    position: absolute; inset: 0;
    background: rgba(12,10,9,0.84);
  }
  .final-cta__content {
    position: relative; z-index: 2; text-align: center;
    max-width: var(--content-narrow); margin: 0 auto;
  }
  .cta__h {
    font-size: clamp(2.2rem,4.5vw,3.4rem); font-weight: 300;
    color: var(--color-text-primary); margin-bottom: 20px; line-height: 1.12;
  }
  .cta__body {
    font-size: clamp(1rem,1.2vw,1.1rem);
    color: var(--color-text-muted); line-height: 1.7; margin-bottom: 40px;
  }
  .cta__note {
    font-family: var(--font-ui);
    font-size: 0.78rem; color: var(--color-text-muted); opacity: 0.5; margin-top: 16px;
  }

  /* Footer */
  .footer {
    text-align: center; padding: 40px 24px;
    background: var(--color-base);
    border-top: 1px solid rgba(201,169,110,0.06);
    font-family: var(--font-ui);
    font-size: 0.7rem; color: var(--color-text-muted);
    letter-spacing: 0.1em; opacity: 0.5;
  }

/* Hide Shopline default header on SW homepage (theme layout) */
#shopline-section-sections--header-group__header,
#shopline-section-sections--header-group__announcement-bar,
[id*="header-group"] {
  display: none !important;
}

/* ═══ SW NAV visibility fix ═══ */
.nav__link {
  opacity: 1 !important;
  font-size: 0.82rem !important;
  color: #C9A96E !important;
}
.nav__brand {
  opacity: 1 !important;
  font-size: 1.2rem !important;
  color: #C9A96E !important;
}
.nav__cta {
  opacity: 1 !important;
  font-size: 0.82rem !important;
  padding: 10px 22px !important;
}

/* ═══ HIDE native footer-group on SW pages ═══ */
[id*="footer-group"] {
  display: none !important;
}
