:root {
    --cream: #f5efe1;
    --cream-2: #efe7d4;
    --paper: #fffdf7;
    --ink: #0e0e0c;
    --ink-2: #57534a;
    --teal: #03846e;
    --teal-deep: #046a59;
    --line: rgba(14,14,12,0.12);
    --bg: var(--cream);
    --surface: var(--paper);
    --text: var(--ink);
    --muted: var(--ink-2);
    --accent: var(--teal);
    --hairline: var(--line);
    --scrim: linear-gradient(180deg, rgba(8,12,11,0.5) 0%, rgba(8,12,11,0.12) 15%, rgba(8,12,11,0.3) 48%, rgba(8,12,11,0.84) 100%);
    --shadow: 0 24px 60px -28px rgba(12,20,18,0.28);
  }
  [data-theme="dark"] {
    --bg: #0b100f;
    --surface: #121917;
    --text: #f1ecde;
    --muted: #98a39e;
    --accent: #1fac8c;
    --teal: #1fac8c;
    --teal-deep: #36c2a3;
    --hairline: rgba(241,236,222,0.14);
    --scrim: linear-gradient(180deg, rgba(4,7,6,0.55) 0%, rgba(4,7,6,0.18) 15%, rgba(4,7,6,0.45) 48%, rgba(4,7,6,0.92) 100%);
    --shadow: 0 24px 60px -28px rgba(0,0,0,0.6);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    transition: background .5s ease, color .5s ease;
    overflow-x: hidden;
  }
  .wrap { width: min(1240px, 92vw); margin: 0 auto; }
  .serif { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
  .eyebrow {
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--accent); display: inline-flex; align-items: center; gap: 0.7rem;
  }
  .eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px clamp(20px, 4vw, 48px);
    transition: background .35s ease, border-color .35s ease, padding .35s ease;
    border-bottom: 1px solid transparent;
  }
  nav.scrolled {
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: blur(14px) saturate(1.2);
    border-bottom: 1px solid var(--hairline);
    padding-top: 12px; padding-bottom: 12px;
  }
  .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
  .brand .mark {
    display: inline-block; width: 99px; height: 99px; border-radius: 9px; padding: 9px;
    background-image: url(/assets/images/logo-mark.svg);
    background-repeat: no-repeat; background-position: center; background-size: contain;
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  }
  [data-theme="dark"] .brand .mark { background-image: url(/assets/images/logo-mark-dark.svg); }

  /* ICONS — single-colour SVGs masked so they inherit currentColor/theme */
  .icon {
    display: inline-block; background-color: currentColor;
    -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
    -webkit-mask-position: center; mask-position: center;
    -webkit-mask-size: contain; mask-size: contain;
  }
  .icon-check { -webkit-mask-image: url(/assets/icons/check.svg); mask-image: url(/assets/icons/check.svg); }
  .icon-play { -webkit-mask-image: url(/assets/icons/play.svg); mask-image: url(/assets/icons/play.svg); }
  .icon-pin { -webkit-mask-image: url(/assets/icons/pin.svg); mask-image: url(/assets/icons/pin.svg); }
  .icon-mail { -webkit-mask-image: url(/assets/icons/mail.svg); mask-image: url(/assets/icons/mail.svg); }
  .icon-clock { -webkit-mask-image: url(/assets/icons/clock.svg); mask-image: url(/assets/icons/clock.svg); }
  .brand .name { font-weight: 800; letter-spacing: -0.01em; font-size: 0.98rem; line-height: 1; }
  .brand .name span { display: block; font-weight: 500; font-size: 0.66rem; letter-spacing: 0.16em; color: var(--muted); margin-top: 3px; text-transform: uppercase; white-space: nowrap; }
  .nav-links { display: flex; align-items: center; gap: 28px; }
  .nav-links a { color: var(--text); text-decoration: none; font-size: 0.9rem; font-weight: 500; opacity: .8; transition: opacity .2s; }
  .nav-links a:hover { opacity: 1; }
  nav:not(.scrolled) .brand, nav:not(.scrolled) .nav-links a, nav:not(.scrolled) .toggle { color: #fff; }
  nav:not(.scrolled) .brand .name span { color: rgba(255,255,255,0.72); }
  nav:not(.scrolled) .toggle { border-color: rgba(255,255,255,0.4); }
  .nav-actions { display: flex; align-items: center; gap: 14px; }
  .toggle {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--hairline);
    background: transparent; color: var(--text); cursor: pointer; display: grid; place-items: center;
    transition: background .2s, transform .2s; flex: none;
  }
  .toggle:hover { background: color-mix(in srgb, var(--text) 8%, transparent); }
  .toggle svg { width: 18px; height: 18px; }
  .btn {
    display: inline-flex; align-items: center; gap: 9px; padding: 13px 22px; border-radius: 100px;
    background: var(--accent); color: #fff; text-decoration: none; font-weight: 700; font-size: 0.92rem;
    border: none; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; white-space: nowrap;
  }
  .btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px color-mix(in srgb, var(--accent) 60%, transparent); }
  .btn.ghost { background: transparent; color: var(--text); border: 1px solid var(--hairline); }
  .btn.ghost:hover { background: color-mix(in srgb, var(--text) 7%, transparent); box-shadow: none; }
  [data-theme="dark"] .btn { color: #06120f; }

  /* HERO */
  .hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
  .hero-media { position: absolute; inset: 0; }
  .hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; }
  .hero-media::after { content: ""; position: absolute; inset: 0; background: var(--scrim); }
  .hero-inner { position: relative; z-index: 2; width: min(1240px, 92vw); margin: 0 auto; padding: 0 0 clamp(48px, 8vh, 96px); color: #fff; }
  .hero-eyebrow { color: #fff; opacity: .92; }
  .hero h1 {
    font-size: clamp(2.9rem, 6.6vw, 6.2rem); line-height: 1.05; letter-spacing: -0.02em;
    margin: 20px 0 0; padding-bottom: 0.08em; max-width: 16ch; text-wrap: pretty;
  }
  .hero h1 em { font-style: normal; color: #fff; }
  .hero .accent-word { color: #6ee7c8; font-style: normal; }
  .hero-sub { margin-top: 22px; max-width: 46ch; font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: rgba(255,255,255,0.85); }
  .hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
  .play {
    display: inline-flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; font-weight: 600; font-size: 0.95rem;
  }
  .play .disc { width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.55); display: grid; place-items: center; transition: background .25s, transform .25s; }
  .play:hover .disc { background: rgba(255,255,255,0.16); transform: scale(1.06); }
  .play .disc .icon { width: 16px; height: 16px; margin-left: 3px; }
  .film-tag {
    position: absolute; top: clamp(96px, 14vh, 140px); right: clamp(20px, 4vw, 48px); z-index: 2;
    display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px; border-radius: 100px;
    background: rgba(8,12,11,0.42); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.22);
    color: #fff; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  }
  .film-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: #6ee7c8; box-shadow: 0 0 0 0 rgba(110,231,200,0.7); animation: pulse 2.4s infinite; }
  @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(110,231,200,0.6);} 70% { box-shadow: 0 0 0 9px rgba(110,231,200,0);} 100% { box-shadow: 0 0 0 0 rgba(110,231,200,0);} }

  /* SECTIONS */
  section { padding: clamp(72px, 11vh, 140px) 0; }
  .section-head { display: flex; flex-direction: column; gap: 18px; max-width: 60ch; }
  .section-head h2 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); line-height: 1.0; letter-spacing: -0.015em; }
  .lead { color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.28rem); max-width: 52ch; }

  .band { background: var(--surface); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
  .ask { text-align: center; }
  .ask .eyebrow { justify-content: center; }
  .ask .q { font-size: clamp(2.6rem, 7vw, 6rem); line-height: 0.98; letter-spacing: -0.02em; max-width: 18ch; margin: 14px auto 0; text-wrap: balance; }
  .ask .q em { color: var(--accent); font-style: italic; }

  /* OFFER GRID */
  .offers { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 54px; }
  .offer {
    position: relative; background: var(--surface); border: 1px solid var(--hairline); border-radius: 22px;
    padding: clamp(28px, 3.4vw, 44px); display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s;
    overflow: hidden;
  }
  .offer:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
  .offer .kicker { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
  .offer .price { display: flex; align-items: baseline; gap: 10px; margin: 18px 0 4px; }
  .offer .price .amt { font-family: "Instrument Serif", serif; font-size: clamp(3.4rem, 6vw, 5rem); line-height: 0.9; letter-spacing: -0.02em; }
  .offer .price .per { color: var(--muted); font-weight: 600; font-size: 0.95rem; }
  .offer h3 { font-size: 1.45rem; letter-spacing: -0.01em; margin-bottom: 16px; }
  .offer ul { list-style: none; display: flex; flex-direction: column; gap: 13px; margin: 6px 0 26px; }
  .offer li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: var(--text); }
  .offer li .icon { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 2px; }
  .offer .foot { margin-top: auto; }
  .offer.featured { background: var(--accent); color: #fff; border-color: transparent; }
  .offer.featured .kicker, .offer.featured .price .per, .offer.featured li { color: rgba(255,255,255,0.92); }
  .offer.featured li .icon { color: #bff3e4; }
  .offer.featured .btn { background: #fff; color: var(--teal-deep); }
  [data-theme="dark"] .offer.featured { color: #06120f; }
  [data-theme="dark"] .offer.featured .kicker, [data-theme="dark"] .offer.featured .price .per, [data-theme="dark"] .offer.featured li { color: rgba(6,18,15,0.82); }
  [data-theme="dark"] .offer.featured li .icon { color: #06120f; }
  [data-theme="dark"] .offer.featured .btn { background: #06120f; color: #fff; }
  .note { font-size: 0.92rem; color: var(--muted); margin-top: 14px; }
  .offer.featured .note { color: rgba(255,255,255,0.8); }
  [data-theme="dark"] .offer.featured .note { color: rgba(6,18,15,0.7); }

  /* scarcity strip */
  .scarcity { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-top: 30px;
    padding: 22px 28px; border: 1px dashed var(--hairline); border-radius: 16px; }
  .scarcity .left { display: flex; align-items: center; gap: 16px; }
  .spots { font-family: "Instrument Serif", serif; font-size: 2.6rem; line-height: 1; color: var(--accent); }
  .scarcity p { color: var(--muted); }
  .scarcity strong { color: var(--text); font-weight: 700; }

  /* VALUE */
  .value-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
  .value-figure { position: relative; }
  .value-figure .big { font-family: "Instrument Serif", serif; font-size: clamp(6rem, 16vw, 12rem); line-height: 0.82; letter-spacing: -0.03em; }
  .value-figure .strike { color: var(--muted); }
  .value-figure .then { display: flex; align-items: baseline; gap: 14px; margin-top: 30px; }
  .value-figure .then .arrow { color: var(--accent); font-size: clamp(3rem, 7vw, 5.2rem); }
  .value-head { margin-bottom: 28px; }
  .value-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
  .value-figure .then .amt { font-family: "Instrument Serif", serif; font-size: clamp(3rem, 7vw, 5.2rem); color: var(--accent); line-height: 0.9; }
  .value-figure .then .lbl { color: var(--muted); max-width: 18ch; }
  .ledger { display: flex; flex-direction: column; }
  .ledger .row { display: flex; align-items: baseline; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--hairline); }
  .ledger .row:first-child { border-top: 1px solid var(--hairline); }
  .ledger .qty { font-family: "Instrument Serif", serif; font-size: 2.6rem; line-height: 1; color: var(--accent); min-width: 72px; }
  .ledger .desc { font-size: 1.08rem; }
  .ledger .desc small { display: block; color: var(--muted); font-size: 0.86rem; margin-top: 2px; }

  /* ABOUT */
  .about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
  .about-figure { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); }
  .about-figure img { width: 100%; height: 100%; object-fit: cover; }
  .about-figure .badge {
    position: absolute; left: 20px; bottom: 20px; display: flex; align-items: center; gap: 12px;
    background: color-mix(in srgb, var(--bg) 82%, transparent); backdrop-filter: blur(10px); border: 1px solid var(--hairline);
    padding: 12px 18px; border-radius: 100px; font-weight: 700; letter-spacing: -0.01em;
  }
  .about-figure .badge .num { font-family: "Instrument Serif", serif; font-size: 1.8rem; color: var(--accent); line-height: 1; }
  .about-title { font-size: clamp(2.2rem, 4.4vw, 3.6rem); margin-top: 14px; line-height: 1; }
  .about p { color: var(--muted); font-size: 1.1rem; margin-top: 18px; max-width: 50ch; }
  .stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 32px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: 16px; overflow: hidden; }
  .stat { background: var(--bg); padding: 22px; }
  .stat .n { font-family: "Instrument Serif", serif; font-size: clamp(2.2rem, 4vw, 3rem); line-height: 0.9; letter-spacing: -0.02em; }
  .stat .l { color: var(--muted); font-size: 0.86rem; margin-top: 8px; letter-spacing: 0.02em; }

  /* CONTACT */
  .contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
  form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .field { display: flex; flex-direction: column; gap: 8px; }
  .field.full { grid-column: 1 / -1; }
  label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--muted); }
  input, select, textarea {
    font-family: inherit; font-size: 1rem; color: var(--text); background: var(--surface);
    border: 1px solid var(--hairline); border-radius: 12px; padding: 14px 16px; transition: border-color .2s, box-shadow .2s;
  }
  input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent); }
  textarea { resize: vertical; min-height: 110px; }
  form .btn { grid-column: 1 / -1; justify-content: center; padding: 16px; font-size: 1rem; }
  .form-success { grid-column: 1/-1; display: none; flex-direction: column; gap: 8px; padding: 40px; text-align: center; border: 1px solid var(--hairline); border-radius: 16px; background: var(--surface); }
  .form-success.show { display: flex; }
  .form-success .check { width: 54px; height: 54px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; margin: 0 auto 6px; }
  .form-success .check .icon { width: 24px; height: 24px; }
  .form-success strong { font-size: 1.2rem; }
  .form-success .msg { color: var(--muted); }
  .contact-aside .serif { font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.1; margin-top: 14px; }
  .contact-aside .meta { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
  .contact-aside .meta-row { display: flex; gap: 14px; align-items: flex-start; }
  .contact-aside .meta-row .icon { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 3px; }
  .contact-aside .meta-row b { display: block; font-weight: 700; }
  .contact-aside .meta-row span { color: var(--muted); font-size: 0.95rem; }

  /* FOOTER */
  footer { border-top: 1px solid var(--hairline); padding: 56px 0 40px; }
  .foot-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
  .foot-brand { display: flex; align-items: center; gap: 16px; }
  .foot-brand img { width: 64px; height: 64px; border-radius: 14px; }
  .foot-brand .t { font-family: "Instrument Serif", serif; font-size: 1.5rem; }
  .foot-brand .s { color: var(--muted); font-size: 0.88rem; }
  .foot-note { color: var(--muted); font-size: 0.84rem; text-align: right; }

  @media (max-width: 920px) {
    .nav-links { display: none; }
    .offers, .value-wrap, .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .value-figure { order: 2; }
    form { grid-template-columns: 1fr; }
    .about-figure { aspect-ratio: 16/10; }
  }
  @media (max-width: 540px) {
    body { font-size: 16px; }
    .stats { grid-template-columns: 1fr 1fr; }
    .film-tag { display: none; }
  }
