
  :root {
    --bg:#0a0a0a;
    --surface:#141414;
    --line:#2a2a2a;
    --line-strong:#4a4a4a;
    --red:#e11021;
    --red-hover:#ff2634;
    --text:#f5f2ef;
    --muted:#a8a29e;
    --dim:#6f6a66;
    --error:#ff6b74;
  }

  * { box-sizing:border-box; }
  html { background:var(--bg); }
  body { margin:0; overflow-x:hidden; background:var(--bg); color:var(--text); font-family:'Archivo',system-ui,sans-serif; font-size:16px; line-height:1.5; -webkit-font-smoothing:antialiased; }
  button,input,select { font:inherit; color:inherit; }
  a { color:inherit; }
  ::selection { background:var(--red); color:#fff; }
  .hidden { display:none !important; }

  .page { display:grid; }

  /* Hero */
  .hero { position:relative; height:clamp(440px,62svh,640px); overflow:hidden; background:#000; }
  .hero__image { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:50% 12%; }
  .hero__shade { position:absolute; inset:0; background:linear-gradient(to top,var(--bg) 0%,rgba(10,10,10,.85) 16%,rgba(10,10,10,0) 55%); }
  .hero__title { position:absolute; left:0; right:0; bottom:0; padding:0 20px 22px; display:flex; flex-direction:column; gap:2px; }
  .hero__name { margin:0 0 0 -.09em; font-size:clamp(88px,24vw,150px); line-height:.82; font-weight:900; font-stretch:125%; letter-spacing:-.03em; color:var(--red); }
  .hero__tour { margin:0; font-size:clamp(18px,4.6vw,26px); font-weight:800; font-stretch:112%; letter-spacing:.08em; text-transform:uppercase; }

  /* Form panel */
  .panel { padding:28px 20px 40px; scroll-margin-top:12px; }
  .panel__inner { max-width:460px; margin:0 auto; display:flex; flex-direction:column; gap:22px; }
  .panel__title { margin:0; font-size:clamp(26px,6.4vw,32px); line-height:1.05; font-weight:900; font-stretch:112%; letter-spacing:-.02em; }
  .panel__lead { margin:0; color:var(--muted); font-size:15px; }

  .form { display:flex; flex-direction:column; gap:18px; }
  .field { display:flex; flex-direction:column; gap:7px; }
  .field__label { font-size:12px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); }
  .field__label b { color:var(--red); font-weight:700; }
  .control { width:100%; height:56px; padding:0 16px; background:var(--surface); border:1px solid var(--line); border-radius:6px; font-size:17px; color:var(--text); outline:none; transition:border-color 120ms ease,box-shadow 120ms ease; }
  .control::placeholder { color:var(--dim); opacity:1; }
  .control:focus { border-color:var(--red); box-shadow:0 0 0 3px rgba(225,16,33,.22); }
  .control:-webkit-autofill { -webkit-box-shadow:0 0 0 1000px var(--surface) inset; -webkit-text-fill-color:var(--text); caret-color:var(--text); }
  select.control { appearance:none; -webkit-appearance:none; padding-right:44px; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M3 6l5 5 5-5' fill='none' stroke='%23a8a29e' stroke-width='2'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; cursor:pointer; }
  select.control.is-empty { color:var(--dim); }
  .field__help { font-size:13px; color:var(--dim); line-height:1.45; }

  .consent { display:grid; grid-template-columns:20px 1fr; gap:12px; align-items:start; font-size:12px; line-height:1.5; color:var(--dim); cursor:pointer; }
  .consent__title { display:block; margin-bottom:2px; font-size:15px; font-weight:700; color:var(--text); }
  .form__note { margin:-6px 0 0; font-size:12.5px; line-height:1.5; color:var(--dim); text-align:center; }
  .consent input { width:20px; height:20px; margin:2px 0 0; accent-color:var(--red); cursor:pointer; }
  .consent a { color:var(--text); text-decoration:underline; text-underline-offset:2px; }

  .error { margin:0; padding:12px 14px; border:1px solid rgba(255,107,116,.4); border-radius:6px; background:rgba(225,16,33,.08); color:var(--error); font-size:14px; }

  .submit { height:58px; width:100%; border:0; border-radius:6px; background:var(--red); color:#fff; font-size:16px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; cursor:pointer; transition:background 120ms ease,transform 80ms ease; }
  .submit:hover { background:var(--red-hover); }
  .submit:active { transform:translateY(1px); }
  .submit:focus-visible { outline:2px solid #fff; outline-offset:3px; }
  .submit:disabled { opacity:.6; cursor:wait; }

  .sent { display:flex; flex-direction:column; gap:12px; padding:24px; border:1px solid var(--line); border-radius:8px; background:var(--surface); }
  .sent__title { margin:0; font-size:26px; line-height:1.1; font-weight:900; font-stretch:112%; }
  .sent__copy { margin:0; color:var(--muted); font-size:15px; }

  /* Tickets — one per city */
  .ticket-wrap { padding:8px 20px 48px; scroll-margin-top:12px; }
  .tickets { display:grid; gap:12px; max-width:460px; margin:0 auto; padding:0; list-style:none; }
  .tk { display:grid; grid-template-columns:minmax(0,1fr) 2px 104px; background:#f5f2ef; color:#0a0a0a; border-radius:10px; overflow:hidden; box-shadow:0 14px 40px rgba(0,0,0,.4); cursor:pointer; transition:transform 120ms ease,box-shadow 120ms ease; }
  .tk:hover { transform:translateY(-1px); }
  .tk.is-selected { box-shadow:0 0 0 3px var(--red),0 14px 40px rgba(0,0,0,.4); }
  .tk__body { display:flex; flex-direction:column; gap:3px; min-width:0; padding:12px 16px 14px; }
  .tk__top { display:flex; align-items:center; justify-content:space-between; gap:8px; margin-bottom:8px; font-size:10px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; color:#6f6a66; }
  .tk__mine { color:var(--red); }
  .tk__city { font-size:clamp(22px,6vw,28px); line-height:1; font-weight:900; font-stretch:125%; letter-spacing:-.01em; text-transform:uppercase; }
  .tk__state { font-size:12px; color:#6f6a66; }
  .tk__perf { position:relative; border-left:2px dashed #b8b2ae; }
  .tk__perf::before,.tk__perf::after { content:''; position:absolute; left:-12px; width:22px; height:22px; border-radius:50%; background:var(--bg); }
  .tk__perf::before { top:-11px; } .tk__perf::after { bottom:-11px; }
  .tk__go { display:flex; align-items:center; justify-content:center; padding:0 8px; border:0; background:#f5f2ef; color:#0a0a0a; font-size:12px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; text-align:center; cursor:pointer; transition:background 120ms ease,color 120ms ease; }
  .tk__go:hover { background:#e9e3de; }
  .tk__go:focus-visible { outline:2px solid var(--red); outline-offset:-4px; }
  .tk.is-selected .tk__go { background:var(--red); color:#fff; }
  .tk.is-selected .tk__go:hover { background:var(--red-hover); }
  .tk__go:disabled { cursor:default; }

  /* Sticky CTA (appears once you scroll past the form) */
  .sticky-cta { position:fixed; z-index:50; left:16px; right:16px; bottom:calc(12px + env(safe-area-inset-bottom)); height:56px; border:0; border-radius:6px; background:var(--red); color:#fff; font-size:15px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; cursor:pointer; box-shadow:0 14px 40px rgba(0,0,0,.6); opacity:0; visibility:hidden; transform:translateY(130%); transition:opacity 180ms ease,transform 260ms cubic-bezier(.2,.7,.2,1),visibility 0s linear 260ms; }
  .sticky-cta.is-visible { opacity:1; visibility:visible; transform:none; transition-delay:0s; }
  .sticky-cta:hover { background:var(--red-hover); }
  .sticky-cta:focus-visible { outline:2px solid #fff; outline-offset:3px; }
  body.has-sticky .foot { padding-bottom:112px; }

  /* Footer */
  .foot { display:flex; flex-direction:column; align-items:center; gap:14px; padding:32px 20px 36px; border-top:1px solid var(--line); text-align:center; font-size:13px; color:var(--dim); }
  .foot__logo { height:26px; width:auto; }
  .foot__links { display:flex; flex-wrap:wrap; justify-content:center; gap:6px 20px; margin:0; padding:0; list-style:none; }
  .foot__links a { color:var(--muted); text-decoration:none; }
  .foot__links a:hover { color:var(--text); }
  .foot__copy { font-size:12px; }

  /* Desktop: photo left (sticky), content right */
  @media (min-width:900px) {
    .page { grid-template-columns:minmax(0,1.1fr) minmax(460px,1fr); grid-template-rows:auto auto 1fr; }
    .hero { grid-column:1; grid-row:1 / span 3; position:sticky; top:0; height:100svh; }
    .hero__image { object-position:50% 20%; }
    .hero__shade { background:linear-gradient(to top,var(--bg) 0%,rgba(10,10,10,.7) 18%,rgba(10,10,10,0) 50%),linear-gradient(to left,var(--bg) 0%,rgba(10,10,10,0) 18%); }
    .hero__title { padding:0 48px 48px; }
    .hero__name { font-size:clamp(150px,15vw,220px); }
    .hero__tour { font-size:28px; }
    .panel { grid-column:2; grid-row:1; padding:64px 48px 40px; }
    .panel__inner { max-width:none; }
    .ticket-wrap { grid-column:2; grid-row:2; padding:0 48px 56px; }
    .tickets { gap:14px; max-width:none; }
    .tk { grid-template-columns:minmax(0,1fr) 2px 120px; }
    .tk__body { padding:14px 20px 16px; }
    .tk__city { font-size:30px; }
    .foot { grid-column:2; grid-row:3; align-self:end; padding:36px 48px 40px; }
  }

  @media (prefers-reduced-motion:reduce) {
    *,*::before,*::after { transition-duration:.01ms !important; }
  }

/* Single-show adaptation of ROA signup commit 545c33a. */
.hero__name { font-size:clamp(54px,18.5vw,132px); font-stretch:80%; letter-spacing:-.025em; margin-left:-.03em; white-space:nowrap; }
.hero__image { object-position:50% 20%; }
.hero__tour { font-size:18px; }
.hero__guest { display:flex; align-items:center; gap:16px; margin-top:14px; }
.hero__guest-label { color:var(--muted); font-size:9px; font-weight:700; letter-spacing:.16em; line-height:1.5; text-transform:uppercase; }
.hero__guest-logo { display:block; width:136px; height:auto; filter:brightness(0) invert(1); }
@media(max-width:360px) { .hero__tour { font-size:15px; } }
.panel__inner { gap:24px; }
.form__note, .consent { color:#aaa5a1; }
.eyebrow { color:var(--red); margin:0 0 10px; font-size:12px; font-weight:800; letter-spacing:.16em; text-transform:uppercase; }
.panel__lead { margin-top:10px; }
.hero__title { animation:arrive 500ms ease-out both; }
.panel { animation:arrive 650ms ease-out both; }
@keyframes arrive { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }
.trap { position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }
.legal { max-width:760px; margin:auto; padding:50px 24px; }
.legal h1 { font-size:36px; line-height:1.12; }
.legal h2 { margin-top:32px; font-size:22px; }
.legal p, .legal li { color:#c4bfbb; }
@media(min-width:900px) {
 .page { grid-template-rows:1fr auto; }
 .hero { grid-row:1 / span 2; }
 .hero__name { font-size:clamp(78px,10.4vw,170px); }
 .hero__image { object-position:52% 20%; }
 .hero__title { padding:0 36px 44px; }
 .hero__guest { gap:20px; margin-top:20px; }
 .hero__guest-label { font-size:10px; }
 .hero__guest-logo { width:180px; }
 .panel { padding:48px 44px 36px; }
 .panel__inner { max-width:480px; }
 .foot { grid-row:2; }
}
@media(prefers-reduced-motion:reduce) { *, *::before,*::after { animation:none!important; scroll-behavior:auto!important; } }
