:root {
  --background: #090611;
  --foreground: #f7f2ff;
  --card: #151024;
  --card-foreground: #f7f2ff;
  --popover: #151024;
  --popover-foreground: #f7f2ff;
  --primary: #ffe66d;
  --primary-foreground: #140b20;
  --secondary: #241831;
  --secondary-foreground: #f7f2ff;
  --muted-foreground: #c5b8d5;
  --accent: #ff3cac;
  --accent-foreground: #090611;
  --destructive: #ff6b82;
  --border: #ffffff33;
  --input: #ffffff3d;
  --ring: #34e8ff;
  --radius: .4rem;
  --ink: #f7f2ff;
  --muted: #c5b8d5;
  --night: #090611;
  --panel: #151024;
  --magenta: #ff3cac;
  --cyan: #34e8ff;
  --yellow: #ffe66d;
  --line: #ffffff22;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, #922f8c44 0 18rem, transparent 34rem),
    linear-gradient(180deg, #090611 0%, #10091f 70%, #05030a 100%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(#34e8ff18 1px, transparent 1px),
    linear-gradient(90deg, #34e8ff18 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

main { position: relative; overflow: hidden; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem max(20px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid var(--line);
  background: #090611e8;
  backdrop-filter: blur(16px);
}
.brand-lockup,
.nav-action {
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.brand-lockup { display: inline-flex; align-items: center; gap: .7rem; }
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--cyan);
  color: var(--magenta);
  box-shadow: 3px 3px 0 var(--magenta);
  font-size: .72rem;
}
.nav-action { border-bottom: 2px solid var(--yellow); font-size: .86rem; }
.hero-shell,
.choice-section,
.cost-section,
.story-section,
.form-section {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.hero-shell {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: 56px 0 72px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--cyan);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; text-wrap: balance; }
h1 {
  margin-bottom: 1.25rem;
  max-width: 9ch;
  font-size: clamp(3.4rem, 9vw, 7.6rem);
  line-height: .84;
  letter-spacing: -.065em;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 #53125c, 6px 6px 0 #113c57;
}
h2 { font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1; }
h3 { margin-bottom: .75rem; font-size: 1.65rem; }
.hero-lede {
  max-width: 620px;
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}
.primary-action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.25rem;
  border: 2px solid var(--yellow);
  border-radius: 4px;
  color: #140b20;
  background: var(--yellow);
  box-shadow: 7px 7px 0 var(--magenta);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}
.primary-action:focus-visible { outline: 3px solid var(--cyan); outline-offset: 5px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; }
.text-action,
.card-link {
  color: var(--cyan);
  font-weight: 800;
  text-underline-offset: 5px;
}
.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 3rem 0 0;
  padding: 1px;
  list-style: none;
  background: var(--line);
}
.quick-facts li {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  background: #100a1d;
}
.quick-facts strong { color: white; font-size: 1.2rem; }
.quick-facts span { margin-top: .3rem; color: var(--muted); font-size: .82rem; line-height: 1.3; }

.poster-frame {
  position: relative;
  margin: 0;
  transform: rotate(2deg);
}
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 18px -14px -14px 18px;
  z-index: -1;
  border: 3px solid var(--cyan);
}
.poster-frame img {
  display: block;
  width: 100%;
  max-height: 670px;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 30px 80px #000a;
}

.choice-section { padding: 96px 0 78px; }
.section-heading { max-width: 780px; margin-bottom: 2rem; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; line-height: 1.65; }
.lodging-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.lodging-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 4vw, 2.25rem);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #221733eb, #0d0a17f2);
  box-shadow: 0 18px 50px #0006;
}
.speakeasy-card { border-top: 5px solid var(--magenta); }
.waterfall-card { border-top: 5px solid var(--cyan); }
.card-kicker { color: var(--yellow); font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.lodging-card p { color: var(--muted); line-height: 1.6; }
.feature-list { margin: .35rem 0 1rem; padding-left: 1.2rem; color: #e9def4; line-height: 1.7; }
.feature-list li::marker { color: var(--yellow); }
.price-row { margin-top: auto; padding-top: 1.5rem; display: flex; flex-direction: column; gap: .25rem; }
.price-row strong { color: white; font-size: 2rem; }
.price-row span { color: var(--muted); }
.card-link { margin-top: 1.4rem; }

.cost-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 7vw, 6rem);
  padding: 86px 0;
  border-block: 1px solid var(--line);
}
.cost-grid { display: grid; gap: 1rem; }
.cost-grid article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: #ffffff08;
}
.cost-grid h3 { margin-bottom: .35rem; }
.cost-grid p { grid-column: 2; margin: 0; color: var(--muted); line-height: 1.55; }
.cost-icon {
  display: grid;
  width: 46px;
  height: 46px;
  grid-row: 1 / span 2;
  place-items: center;
  border: 2px solid var(--magenta);
  color: var(--yellow);
  font-size: 1.35rem;
  font-weight: 900;
}

.story-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.25rem;
  padding: 92px 0;
}
.story-card,
.schedule-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #1e122b, #0c0914);
}
.story-card { border-left: 5px solid var(--magenta); }
.schedule-card { border-left: 5px solid var(--cyan); }
.story-card > p:not(.eyebrow) { color: var(--muted); font-size: 1.07rem; line-height: 1.68; }
.timeline { margin: 0; padding: 0; list-style: none; }
.timeline li { position: relative; padding: 0 0 1.45rem 1.8rem; border-left: 1px solid #34e8ff66; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ""; position: absolute; left: -6px; top: .25rem; width: 11px; height: 11px; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 0 4px #151024; }
.timeline span { color: var(--yellow); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.timeline p { margin: .35rem 0 0; color: var(--muted); line-height: 1.55; }

.form-section { padding: 24px 0 96px; }
.interest-form,
.success-card {
  padding: clamp(1.4rem, 5vw, 3.2rem);
  border: 2px solid var(--cyan);
  background: linear-gradient(150deg, #181025fa, #0c0815fa);
  box-shadow: 12px 12px 0 #ff3cac55;
}
.form-intro { max-width: 760px; margin-bottom: 2.2rem; }
.form-intro > p:last-child { color: var(--muted); line-height: 1.6; }
.form-grid { display: grid; gap: 1.25rem; margin-bottom: 1.5rem; }
.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field-stack { display: flex; min-width: 0; flex-direction: column; gap: .55rem; }
.field-stack > label,
.form-block > legend { color: white; font-size: 1rem; font-weight: 800; }
.field-stack [data-slot="native-select-wrapper"] { width: 100%; }
.field-stack input,
.field-stack textarea,
.field-stack select {
  min-height: 46px;
  width: 100%;
  padding: .7rem .8rem;
  border: 1px solid #ffffff45;
  border-radius: 4px;
  background: #ffffff09;
  color: var(--ink);
  font-size: 1rem;
}
.field-stack select option { color: #140b20; background: white; }
.field-stack input:focus-visible,
.field-stack textarea:focus-visible,
.field-stack select:focus-visible,
.choice-label input:focus-visible,
.consent-row input:focus-visible,
button:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.field-stack textarea { min-height: 118px; }
.field-stack input::placeholder,
.field-stack textarea::placeholder { color: #b9aac6; opacity: 1; }
.form-block { margin: 0 0 1.6rem; padding: 0; border: 0; }
.form-block > legend { margin-bottom: .7rem; }
.field-note { margin: -.15rem 0 1rem; color: var(--muted); line-height: 1.5; }
.choice-label {
  display: flex;
  width: min(100%, 760px);
  align-items: flex-start;
  gap: .75rem;
  padding: .78rem 1rem;
  border: 1px solid #ffffff2f;
  background: #ffffff05;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.4;
  cursor: pointer;
}
.choice-label:has(input:checked) { border-color: var(--magenta); background: #ff3cac12; }
.choice-label input { width: 19px; height: 19px; flex: 0 0 auto; margin: .1rem 0 0; accent-color: var(--magenta); }
.consent-row {
  display: flex;
  max-width: 850px;
  align-items: flex-start;
  gap: .8rem;
  margin: 1.6rem 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
}
.consent-row input { width: 20px; height: 20px; flex: 0 0 auto; margin-top: .1rem; accent-color: var(--magenta); }
.submit-button {
  min-height: 50px;
  padding-inline: 1.3rem;
  border-radius: 3px;
  background: var(--yellow);
  color: #140b20;
  box-shadow: 6px 6px 0 var(--magenta);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.submit-button:disabled { opacity: .65; cursor: wait; }
.outline-button {
  min-height: 46px;
  padding: .7rem 1rem;
  border: 1px solid var(--cyan);
  border-radius: 4px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
[hidden] { display: none !important; }
.privacy-note { color: var(--muted); font-size: .9rem; line-height: 1.5; }
.form-error { color: #ff9daf; font-weight: 800; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.success-card { max-width: 820px; margin-inline: auto; text-align: center; }
.success-mark { display: grid; width: 70px; height: 70px; margin: 0 auto 1.3rem; place-items: center; border-radius: 50%; background: var(--cyan); color: #090611; font-size: 2rem; font-weight: 900; }
.success-card p { color: var(--muted); font-size: 1.06rem; line-height: 1.65; }

footer {
  width: min(1120px, calc(100% - 40px));
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-inline: auto;
  padding: 30px 0 50px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

@media (max-width: 780px) {
  .topbar { min-height: 58px; }
  .brand-lockup > span:last-child { display: none; }
  .hero-shell { min-height: auto; grid-template-columns: 1fr; padding-top: 40px; }
  .hero-copy { order: 1; }
  .poster-frame { order: 2; transform: none; }
  .lodging-grid { grid-template-columns: 1fr; }
  .lodging-card { min-height: 300px; }
  .quick-facts { grid-template-columns: 1fr; }
  .quick-facts li { min-height: 72px; }
  .cost-section,
  .story-section,
  .two-columns { grid-template-columns: 1fr; }
  .cost-section { gap: 1.5rem; }
  .cost-grid article { grid-template-columns: 44px 1fr; padding: 1rem; }
  .cost-icon { width: 40px; height: 40px; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
