 :root{
    --ink:#12172A;
    --ink-soft:#232B45;
    --parchment:#FAF6EC;
    --paper:#FFFDF8;
    --brass:#C6963C;
    --brass-deep:#9C7328;
    --wine:#7A2E2E;
    --text:#211C16;
    --text-muted:#4D4639;
    --line:#E6DDC7;
    --on-dark:#F3EFE4;
    --on-dark-muted:#C8CDD8;
    --radius:16px;
    --maxw:1120px;
  }
  *{box-sizing:border-box;}
  /* ---------- skip link ---------- */
  .skip-link{
    position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
    background:var(--brass); color:var(--ink); font-weight:700; font-size:14px;
    padding:12px 20px; border-radius:0 0 8px 0; z-index:100; text-decoration:none;
  }
  .skip-link:focus{
    position:fixed; left:0; top:0; width:auto; height:auto; overflow:visible;
  }
  /* ---------- focus visible ---------- */
  :focus-visible{
    outline:3px solid var(--brass);
    outline-offset:3px;
    border-radius:4px;
  }
  a:focus:not(:focus-visible){ outline:none; }
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--parchment);
    color:var(--text);
    font-family:'Inter', system-ui, -apple-system, sans-serif;
    font-size:16px;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,.display{
    font-family:'Fraunces', serif;
    font-weight:600;
    letter-spacing:-0.01em;
    margin:0;
  }
  .mono{ font-family:'Space Mono', monospace; }
  a{ color:inherit; }
  img,svg{ display:block; max-width:100%; }
  .wrap{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }
  section{ padding:96px 0; }
  @media (max-width:720px){ section{ padding:64px 0; } }

  /* ---------- reveal on scroll ---------- */
  .reveal{ opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
  .reveal.in{ opacity:1; transform:translateY(0); }
  @media (prefers-reduced-motion: reduce){
    .reveal{ opacity:1; transform:none; transition:none; }
    html{ scroll-behavior:auto; }
  }

  /* ---------- nav ---------- */
  header.nav{
    position:sticky; top:0; z-index:40;
    background:rgba(18,23,42,0.92);
    backdrop-filter:blur(6px);
    border-bottom:1px solid rgba(198,150,60,0.25);
  }
  .nav-inner{ display:flex; align-items:center; justify-content:space-between; padding:16px 28px; max-width:var(--maxw); margin:0 auto; }
  .brand{ display:flex; align-items:baseline; gap:8px; color:var(--on-dark); text-decoration:none; }
  .brand strong{ font-family:'Fraunces', serif; font-size:22px; font-weight:600; }
  .brand span{ font-size:11px; color:var(--brass); letter-spacing:.14em; text-transform:uppercase; }
  .nav-cta{
    display:inline-flex; align-items:center; gap:8px;
    background:var(--brass); color:var(--ink); text-decoration:none;
    font-weight:700; font-size:14px; padding:10px 18px; border-radius:999px;
    transition:transform .2s ease, background .2s ease;
  }
  .nav-cta:hover{ background:#D6A651; transform:translateY(-1px); }

  /* ---------- hero ---------- */
  .hero{
    background:
      radial-gradient(1100px 520px at 82% -10%, rgba(198,150,60,0.18), transparent 60%),
      linear-gradient(180deg, var(--ink) 0%, #171D34 100%);
    color:var(--on-dark);
    padding:88px 0 110px;
    position:relative;
    overflow:hidden;
  }
  .hero-grid{
    display:grid; grid-template-columns:1.15fr .85fr; gap:56px; align-items:center;
  }
  @media (max-width:900px){ .hero-grid{ grid-template-columns:1fr; } }
  .eyebrow{
    display:inline-flex; align-items:center; gap:10px;
    font-family:'Space Mono', monospace; font-size:12px; letter-spacing:.12em;
    color:var(--brass); text-transform:uppercase; margin-bottom:22px;
  }
  .eyebrow::before{ content:''; width:26px; height:1px; background:var(--brass); display:inline-block; }
  .hero h1{
    font-size:clamp(34px, 5vw, 56px);
    line-height:1.08;
    color:#FBF8F0;
  }
  .hero h1 em{ color:var(--brass); font-style:italic; }
  .hero p.lede{
    margin-top:22px; font-size:18px; line-height:1.65; color:var(--on-dark-muted); max-width:46ch;
  }
  .hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
  .btn-primary{
    background:var(--brass); color:var(--ink); text-decoration:none;
    font-weight:700; font-size:15px; padding:15px 26px; border-radius:999px;
    display:inline-flex; align-items:center; gap:10px;
    box-shadow:0 14px 30px -12px rgba(198,150,60,0.55);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .btn-primary:hover{ transform:translateY(-2px); box-shadow:0 18px 34px -10px rgba(198,150,60,0.7); }
  .btn-ghost{
    color:var(--on-dark); text-decoration:none; border:1px solid rgba(243,239,228,0.28);
    font-weight:600; font-size:15px; padding:14px 24px; border-radius:999px;
    transition:border-color .2s ease, background .2s ease;
  }
  .btn-ghost:hover{ border-color:var(--brass); background:rgba(198,150,60,0.08); }
  .trust-row{ display:flex; gap:26px; margin-top:40px; flex-wrap:wrap; }
  .trust-row div{ font-size:13px; color:var(--on-dark-muted); display:flex; align-items:center; gap:8px; }
  .trust-row strong{ color:var(--on-dark); font-family:'Space Mono',monospace; font-size:13px; }

  /* invite card in hero */
  .invite{
    background:var(--paper); color:var(--text); border-radius:18px;
    padding:30px 28px 26px; position:relative;
    box-shadow:0 40px 80px -30px rgba(0,0,0,0.55);
    transform:rotate(2.5deg);
  }
  .invite::after{
    content:''; position:absolute; inset:10px; border:1px solid var(--line); border-radius:11px; pointer-events:none;
  }
  .invite-eyebrow{ font-family:'Space Mono',monospace; font-size:11px; letter-spacing:.14em; color:var(--brass-deep); text-transform:uppercase; }
  .invite h3{ font-size:26px; margin-top:10px; line-height:1.2; }
  .invite p{ font-size:14px; color:var(--text-muted); margin-top:10px; line-height:1.55; }
  .invite-foot{
    margin-top:22px; padding-top:16px; border-top:1px dashed var(--line);
    display:flex; justify-content:space-between; align-items:center;
    font-family:'Space Mono',monospace; font-size:11.5px; color:var(--text-muted);
  }
  .invite-foot strong{ color:var(--wine); }

  /* ---------- why ---------- */
  .why-head{ max-width:640px; }
  .why-head .kicker{ font-family:'Space Mono',monospace; font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:var(--brass-deep); }
  .why-head h2{ font-size:clamp(28px,3.4vw,38px); margin-top:14px; line-height:1.18; }
  .why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:52px; }
  @media (max-width:860px){ .why-grid{ grid-template-columns:1fr; } }
  .why-card{
    background:var(--paper); border:1px solid var(--line); border-radius:var(--radius);
    padding:30px 26px; transition:transform .25s ease, box-shadow .25s ease;
  }
  .why-card:hover{ transform:translateY(-4px); box-shadow:0 20px 40px -24px rgba(18,23,42,0.35); }
  .why-num{ font-family:'Space Mono',monospace; font-size:12px; color:var(--brass-deep); }
  .why-card h3{ font-size:20px; margin-top:14px; }
  .why-card p{ font-size:14.5px; color:var(--text-muted); line-height:1.6; margin-top:10px; }

  /* ---------- plans / tickets ---------- */
  .plans-head{ text-align:center; max-width:600px; margin:0 auto; }
  .plans-head .kicker{ font-family:'Space Mono',monospace; font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:var(--brass-deep); }
  .plans-head h2{ font-size:clamp(28px,3.6vw,40px); margin-top:14px; }
  .plans-head p{ margin-top:14px; color:var(--text-muted); font-size:16px; line-height:1.6; }

  .tickets{ margin-top:56px; display:flex; flex-direction:column; gap:26px; }

  .ticket{
    position:relative;
    display:grid; grid-template-columns:1fr 240px;
    background:var(--paper); border:1px solid var(--line); border-radius:20px;
    overflow:visible;
    box-shadow:0 18px 40px -30px rgba(18,23,42,0.35);
  }
  @media (max-width:720px){ .ticket{ grid-template-columns:1fr; } }

  .ticket-main{ padding:34px 34px 30px; }
  .ticket-eyebrow{ font-family:'Space Mono',monospace; font-size:11px; letter-spacing:.12em; color:var(--brass-deep); text-transform:uppercase; }
  .ticket-main h3{ font-size:25px; margin-top:8px; }
  .ticket-sub{ font-size:14px; color:var(--text-muted); margin-top:6px; max-width:42ch; line-height:1.5; }
  .ticket-features{ list-style:none; margin:22px 0 0; padding:0; display:grid; grid-template-columns:1fr 1fr; gap:9px 18px; }
  @media (max-width:520px){ .ticket-features{ grid-template-columns:1fr; } }
  .ticket-features li{ font-size:13.5px; color:var(--text); display:flex; gap:8px; align-items:flex-start; line-height:1.4; }
  .ticket-features li::before{ content:'✦'; color:var(--brass-deep); font-size:11px; margin-top:2px; }

  .ticket-stub{
    position:relative;
    background:linear-gradient(160deg, #17203B, var(--ink));
    color:var(--on-dark);
    padding:30px 24px;
    display:flex; flex-direction:column; justify-content:center; gap:6px;
    border-left:1px dashed rgba(250,246,236,0.28);
  }
  @media (max-width:720px){ .ticket-stub{ border-left:none; border-top:1px dashed var(--line); } }
  /* punch holes */
  .ticket-stub::before,.ticket-stub::after{
    content:''; position:absolute; width:20px; height:20px; background:var(--parchment);
    border-radius:50%; left:-10px;
  }
  .ticket-stub::before{ top:-10px; }
  .ticket-stub::after{ bottom:-10px; }
  @media (max-width:720px){
    .ticket-stub::before,.ticket-stub::after{ top:-10px; left:auto; }
    .ticket-stub::before{ left:20%; }
    .ticket-stub::after{ left:70%; }
  }
  .stub-label{ font-family:'Space Mono',monospace; font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--on-dark-muted); }
  .stub-price{ font-family:'Fraunces',serif; font-size:32px; font-weight:600; color:#FBF8F0; }
  .stub-terms{ font-size:12px; color:var(--on-dark-muted); }
  .stub-delivery{ margin-top:10px; font-size:12px; color:var(--brass); font-weight:700; line-height:1.4; }

  .btn-stub{
    display:inline-flex; align-items:center; justify-content:center;
    margin-top:14px; padding:11px 20px; border-radius:999px;
    background:var(--brass); color:var(--ink); text-decoration:none;
    font-weight:700; font-size:13px; letter-spacing:.02em;
    transition:transform .2s ease, background .2s ease;
  }
  .btn-stub:hover{ background:#D6A651; transform:translateY(-1px); }

  .ticket.featured{ border-color:var(--brass); box-shadow:0 26px 55px -28px rgba(198,150,60,0.55); }
  .stamp{
    position:absolute; top:22px; right:26px; z-index:2;
    border:1.5px solid var(--wine); color:var(--wine);
    font-family:'Space Mono',monospace; font-size:10.5px; letter-spacing:.08em; text-transform:uppercase;
    padding:5px 10px; border-radius:6px; transform:rotate(-6deg);
    background:rgba(122,46,46,0.05);
  }
  @media (max-width:720px){
    .stamp{ position:relative; top:auto; right:auto; transform:rotate(-2deg); margin:16px 34px 0; display:inline-block; }
    .ticket.featured .ticket-main{ padding-top:12px; }
  }

  .plans-note{ margin-top:26px; font-size:12.5px; color:var(--text-muted); text-align:center; }

  /* ---------- how it works ---------- */
  .how-inner{ display:grid; grid-template-columns:.8fr 1.2fr; gap:60px; }
  @media (max-width:860px){ .how-inner{ grid-template-columns:1fr; gap:36px; } }
  .how-inner h2{ font-size:clamp(26px,3.2vw,34px); line-height:1.2; }
  .how-inner .kicker{ font-family:'Space Mono',monospace; font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:var(--brass-deep); }
  .steps{ list-style:none; margin:0; padding:0; counter-reset:step; }
  .steps li{
    counter-increment:step; position:relative; padding:0 0 30px 52px; border-left:1px solid var(--line); margin-left:16px;
  }
  .steps li:last-child{ border-color:transparent; padding-bottom:0; }
  .steps li::before{
    content:counter(step);
    position:absolute; left:-16px; top:-2px; width:32px; height:32px; border-radius:50%;
    background:var(--ink); color:var(--brass); font-family:'Space Mono',monospace; font-size:13px; font-weight:700;
    display:flex; align-items:center; justify-content:center;
  }
  .steps h4{ font-family:'Fraunces',serif; font-size:18px; font-weight:600; margin:0; }
  .steps p{ font-size:14px; color:var(--text-muted); margin:6px 0 0; line-height:1.55; max-width:48ch; }

  /* ---------- ownership ---------- */
  .own{ background:var(--ink); color:var(--on-dark); }
  .own-inner{ display:grid; grid-template-columns:1fr 1fr; gap:50px; }
  @media (max-width:860px){ .own-inner{ grid-template-columns:1fr; } }
  .own h2{ font-size:clamp(26px,3.2vw,34px); color:#FBF8F0; }
  .own .kicker{ font-family:'Space Mono',monospace; font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:var(--brass); }
  .own p.intro{ color:var(--on-dark-muted); margin-top:16px; font-size:15px; line-height:1.6; max-width:44ch; }
  .own-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:20px; }
  .own-list li{ padding:20px 22px; border:1px solid rgba(243,239,228,0.16); border-radius:14px; background:rgba(255,255,255,0.03); }
  .own-list h4{ font-family:'Fraunces',serif; font-weight:600; font-size:16px; margin:0 0 6px; color:#FBF8F0; }
  .own-list p{ font-size:13.5px; color:var(--on-dark-muted); margin:0; line-height:1.55; }

  /* ---------- final cta ---------- */
  .final{
    background:linear-gradient(135deg, var(--brass) 0%, var(--brass-deep) 100%);
    color:var(--ink); text-align:center;
  }
  .final h2{ font-size:clamp(28px,4vw,44px); max-width:16ch; margin:0 auto; }
  .final p{ margin-top:16px; font-size:16px; color:#3A2B0F; max-width:48ch; margin-left:auto; margin-right:auto; }
  .final .btn-primary{ background:var(--ink); color:#FBF8F0; box-shadow:0 14px 30px -12px rgba(18,23,42,0.5); margin-top:30px; }
  .final .btn-primary:hover{ background:#1C2340; }

  footer{ background:var(--ink); color:var(--on-dark-muted); padding:40px 0; font-size:13px; }
  .footer-inner{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; }
  .footer-inner strong{ color:var(--on-dark); font-family:'Fraunces',serif; }

  /* mobile sticky cta */
  .mobile-cta{
    position:fixed; left:16px; right:16px; bottom:16px; z-index:50;
    display:none; align-items:center; justify-content:center;
    background:var(--brass); color:var(--ink); text-decoration:none;
    font-weight:700; font-size:15px; padding:15px; border-radius:999px;
    box-shadow:0 16px 30px -10px rgba(0,0,0,0.4);
  }
  @media (max-width:640px){ .mobile-cta{ display:flex; } body{ padding-bottom:82px; } }