:root {
  --ink: #0a1627;
  --navy: #07111f;
  --navy-soft: #12253a;
  --sand: #f3efe7;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: #d8d5ce;
  --muted: #59636f;
  --amber: #f7b84b;
  --amber-hover: #ffd27d;
  --mint: #9ceacb;
  --danger: #9b321f;
  --shadow: 0 20px 55px rgba(10, 22, 39, 0.12);
  --radius: 7px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid #2a74ff; outline-offset: 3px; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: 12px;
  padding: 12px 16px;
  background: white;
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: relative;
  z-index: 30;
  color: white;
  background: var(--navy);
}
.hero .site-header { background: transparent; }
.header-row {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.wordmark { display: flex; align-items: center; gap: 12px; font-weight: 730; letter-spacing: -.02em; }
.wordmark small {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.62);
  font-size: 9px;
  font-weight: 550;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.wordmark-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
  color: var(--amber);
  font-size: 12px;
  letter-spacing: .07em;
}
.desktop-nav { display: flex; align-items: center; gap: 29px; margin-left: auto; }
.desktop-nav a { padding: 12px 0; color: rgba(255,255,255,.74); font-size: 13px; font-weight: 590; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: white; }
.header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 720;
}
.header-cta:hover { background: white; color: var(--ink); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  background: transparent;
  color: white;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}
.mobile-nav {
  display: none;
  position: fixed;
  z-index: 25;
  inset: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 112px 24px 32px;
  background: rgba(5,12,22,.98);
  color: white;
}
.mobile-nav.is-open { display: flex; flex-direction: column; }
.mobile-nav a { padding: 18px 4px; border-bottom: 1px solid rgba(255,255,255,.15); font-size: 22px; font-weight: 650; }
.mobile-nav .mobile-nav-cta { margin-top: 24px; border: 0; background: var(--amber); color: var(--ink); text-align: center; }

/* Hero */
.hero {
  min-height: 790px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background: var(--navy) url("../images/high-roller-night.webp") 50% 44% / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,12,24,.97) 0%, rgba(3,12,24,.77) 48%, rgba(3,12,24,.22) 82%),
    linear-gradient(0deg, rgba(3,12,24,.75), transparent 48%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .14;
  background-image: radial-gradient(rgba(255,255,255,.7) .7px, transparent .7px);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
}
.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 304px;
  gap: 76px;
  align-items: end;
  padding-top: 80px;
}
.hero-copy { max-width: 760px; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(7,17,31,.62);
  color: rgba(255,255,255,.84);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.status-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }
.hero h1 {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 780;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-display {
  margin: 0;
  max-width: 760px;
  font-size: clamp(68px, 8vw, 116px);
  line-height: .86;
  font-weight: 710;
  letter-spacing: -.075em;
}
.hero-lede { max-width: 610px; margin: 27px 0 0; color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.58; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 31px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 22px;
  border: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 760;
}
.button-primary { background: var(--amber); color: var(--ink); }
.button-primary:hover { background: var(--amber-hover); }
.button-secondary { border: 1px solid var(--ink); background: transparent; color: var(--ink); }
.button-secondary:hover { background: var(--ink); color: white; }
.button-light { border: 1px solid rgba(255,255,255,.5); color: white; }
.button-light:hover { background: white; color: var(--ink); }
.text-link { display: inline-flex; gap: 9px; align-items: center; color: rgba(255,255,255,.82); font-size: 14px; font-weight: 660; }
.quick-facts {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(7,17,31,.75);
  backdrop-filter: blur(12px);
}
.quick-title { margin: 0 0 13px; color: var(--amber); font-size: 10px; font-weight: 760; letter-spacing: .14em; text-transform: uppercase; }
.quick-facts dl { margin: 0; }
.quick-facts dl div { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.14); }
.quick-facts dt { color: rgba(255,255,255,.62); font-size: 12px; }
.quick-facts dd { margin: 0; font-size: 12px; font-weight: 700; text-align: right; }
.checked { margin: 14px 0 0; color: rgba(255,255,255,.46); font-size: 9px; line-height: 1.5; }
.hero-shortcuts { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.hero-shortcuts a { padding: 9px 12px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; color: rgba(255,255,255,.8); font-size: 11px; }
.hero-shortcuts a:hover { border-color: var(--amber); color: white; }
.hero-caption { display: flex; align-items: center; gap: 13px; margin-top: 66px; padding-bottom: 28px; color: rgba(255,255,255,.48); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.caption-line { width: 38px; height: 1px; background: rgba(255,255,255,.3); }

/* Trust and disclosure */
.trust-strip { background: white; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 68px; display: flex; align-items: center; gap: 11px; padding: 14px 18px; color: var(--muted); font-size: 11px; line-height: 1.4; }
.trust-item:first-child { padding-left: 0; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item strong { color: var(--ink); font-weight: 730; }
.trust-icon { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; color: #8a620c; font-size: 11px; font-weight: 800; }
.disclosure { background: var(--sand); border-bottom: 1px solid var(--line); }
.disclosure-inner { display: grid; grid-template-columns: 150px 1fr; gap: 30px; align-items: center; padding-block: 18px; }
.disclosure strong { font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }
.disclosure p { margin: 0; color: #5d625f; font-size: 12px; line-height: 1.6; }

/* Shared sections */
.section { padding-block: 96px; }
.section-sand { background: var(--sand); }
.section-navy { background: var(--navy); color: white; }
.section-heading { display: grid; grid-template-columns: 1fr 420px; gap: 70px; align-items: end; margin-bottom: 40px; }
.kicker { margin: 0 0 10px; color: #835c08; font-size: 10px; font-weight: 780; letter-spacing: .15em; text-transform: uppercase; }
.kicker-light { color: var(--amber); }
h2 { margin: 0; font-size: clamp(38px, 5vw, 58px); line-height: 1.02; letter-spacing: -.052em; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.section-navy .section-heading > p { color: rgba(255,255,255,.65); }
.fine-print { margin: 17px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.policy-note {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 24px;
  border: 1px solid var(--line);
  background: var(--line);
}
.policy-note > div { padding: 18px; background: #f8f5ef; }
.policy-note strong { display: block; margin-bottom: 5px; color: var(--ink); font-size: 12px; }
.policy-note span { color: var(--muted); font-size: 11px; line-height: 1.55; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.guide-card { min-height: 250px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); background: white; }
.guide-card h3 { margin: 7px 0 12px; font-size: 25px; letter-spacing: -.035em; }
.guide-card p { margin: 0 0 22px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.guide-card a { margin-top: auto; color: #684700; font-size: 13px; font-weight: 760; text-decoration: underline; text-underline-offset: 3px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 9px 20px; margin: 21px 0 0; color: rgba(255,255,255,.58); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.article-lede { margin: 23px 0 32px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.source-list { margin: 24px 0 0; padding: 20px; border: 1px solid var(--line); background: #f8f5ef; }
.source-list strong { display: block; margin-bottom: 7px; font-size: 12px; }
.source-list p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.source-list a { color: #684700; text-decoration: underline; text-underline-offset: 3px; }
.decision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.decision-card { padding: 28px; border: 1px solid var(--line); background: white; }
.decision-card h3 { margin: 0 0 16px; font-size: 24px; }
.decision-card ul { margin: 0; padding-left: 20px; }
.decision-card li { margin: 9px 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.price-checked { margin-top: 17px; color: #835c08; font-size: 11px; font-weight: 800; line-height: 1.55; }

/* Ticket cards */
.ticket-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ticket-card { position: relative; overflow: hidden; border: 1px solid var(--line); background: white; transition: transform .2s ease, box-shadow .2s ease; }
.ticket-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ticket-card.featured { border-color: #aa7b23; box-shadow: 0 10px 34px rgba(10,22,39,.08); }
.ticket-photo { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #d8d8d8; }
.ticket-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.ticket-card:hover .ticket-photo img { transform: scale(1.035); }
.best-fit { position: absolute; top: 14px; left: 14px; padding: 8px 10px; border-radius: 3px; background: var(--amber); color: var(--ink); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.ticket-body { padding: 23px; }
.ticket-eyebrow { margin: 0 0 8px; color: #835c08; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.ticket-title-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.ticket-title-row h3 { margin: 0; font-size: 24px; letter-spacing: -.035em; }
.ticket-title-row span { white-space: nowrap; font-size: 12px; font-weight: 760; }
.ticket-copy { min-height: 65px; margin: 13px 0 18px; color: var(--muted); font-size: 13px; line-height: 1.64; }
.card-cta {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
}
.card-cta:hover { background: var(--ink); color: white; }
.featured .card-cta { border-color: var(--amber); background: var(--amber); }
.featured .card-cta:hover { background: var(--amber-hover); color: var(--ink); }

/* Comparison */
.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); background: white; }
.comparison-table { width: 100%; min-width: 760px; border-collapse: collapse; text-align: left; }
.comparison-table th, .comparison-table td { padding: 19px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.comparison-table th { background: #f7f4ee; font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
.comparison-table td { color: var(--muted); font-size: 13px; line-height: 1.55; }
.comparison-table td:first-child { color: var(--ink); font-weight: 730; }
.comparison-table tr:last-child td { border-bottom: 0; }
.inline-cta { color: #684700; font-weight: 760; text-decoration: underline; text-underline-offset: 3px; }

/* Planning / photos */
.plan-grid { display: grid; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); gap: 82px; align-items: center; }
.plan-photo { position: relative; min-height: 560px; overflow: hidden; }
.plan-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,13,25,.66), transparent 45%); }
.plan-photo img { width: 100%; height: 560px; object-fit: cover; }
.photo-credit { position: absolute; z-index: 1; left: 26px; right: 26px; bottom: 23px; display: flex; justify-content: space-between; gap: 18px; color: rgba(255,255,255,.74); font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.photo-credit strong { color: white; }
.plan-copy h2 { color: white; }
.plan-intro { margin: 23px 0 32px; color: rgba(255,255,255,.66); font-size: 15px; line-height: 1.75; }
.plan-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.plan-steps li { display: grid; grid-template-columns: 48px 1fr; gap: 14px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.plan-steps li > span { color: var(--amber); font-size: 10px; font-weight: 760; letter-spacing: .11em; }
.plan-steps h3 { margin: 0 0 6px; font-size: 17px; letter-spacing: -.02em; }
.plan-steps p { margin: 0; color: rgba(255,255,255,.6); font-size: 12px; line-height: 1.6; }
.essentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.essential { min-height: 275px; padding: 25px 26px 31px 0; }
.essential + .essential { padding-left: 26px; border-left: 1px solid var(--line); }
.essential-number { color: #835c08; font-size: 9px; font-weight: 780; letter-spacing: .13em; }
.essential-label { margin: 44px 0 8px; color: var(--muted); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.essential h3 { margin: 0 0 13px; font-size: 24px; letter-spacing: -.034em; }
.essential p:last-child { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.gallery-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: 240px 240px; gap: 12px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; background: #d9d9d9; }
.gallery-grid figure:first-child { grid-row: 1 / span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid figcaption { position: absolute; left: 12px; bottom: 12px; padding: 6px 8px; background: rgba(7,17,31,.78); color: white; font-size: 9px; letter-spacing: .05em; }

/* FAQ and author */
.faq-layout { display: grid; grid-template-columns: 350px 1fr; gap: 76px; align-items: start; }
.faq-intro { position: sticky; top: 28px; }
.faq-intro p:last-child { color: var(--muted); font-size: 14px; line-height: 1.7; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 4px; cursor: pointer; font-size: 17px; font-weight: 690; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: #835c08; font-size: 22px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -3px 44px 22px 4px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.author-card { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 50px; background: var(--navy-soft); color: white; }
.author-card > * { min-width: 0; }
.author-card h2 { color: white; }
.author-card p { color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.75; }
.author-meta { border-top: 1px solid rgba(255,255,255,.2); }
.author-meta p { display: flex; justify-content: space-between; gap: 18px; margin: 0; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.author-meta strong { color: white; }
.author-meta strong { max-width: 66%; overflow-wrap: anywhere; text-align: right; }

/* Inner pages */
.page-hero { padding: 72px 0 76px; background: var(--navy); color: white; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; color: rgba(255,255,255,.52); font-size: 11px; }
.breadcrumbs a:hover { color: white; }
.page-hero h1 { max-width: 850px; margin: 0; font-size: clamp(48px, 7vw, 78px); line-height: .98; letter-spacing: -.06em; }
.page-hero > .shell > p:last-child { max-width: 690px; margin: 22px 0 0; color: rgba(255,255,255,.68); font-size: 17px; line-height: 1.65; }
.content-grid { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 78px; align-items: start; }
.prose { max-width: 760px; }
.prose h2 { margin: 52px 0 17px; font-size: 34px; letter-spacing: -.04em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 29px 0 9px; font-size: 20px; }
.prose p, .prose li { color: var(--muted); font-size: 14px; line-height: 1.78; }
.prose ul, .prose ol { padding-left: 22px; }
.prose a { color: #684700; text-decoration: underline; text-underline-offset: 3px; }
.prose .lead { color: var(--ink); font-size: 18px; line-height: 1.65; }
.prose .notice { padding: 20px; border-left: 4px solid var(--amber); background: var(--sand); color: var(--ink); }
.side-card { position: sticky; top: 24px; padding: 24px; border: 1px solid var(--line); background: white; }
.side-card h2 { margin: 0 0 10px; font-size: 22px; }
.side-card p { margin: 0 0 18px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.side-card .button { width: 100%; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-card { min-height: 270px; padding: 32px; border: 1px solid var(--line); background: white; }
.contact-card .kicker { margin-bottom: 28px; }
.contact-card h2 { margin-bottom: 16px; font-size: 32px; }
.contact-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.contact-card a:not(.button) { color: #684700; font-weight: 730; text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.error-wrap { min-height: 70vh; display: grid; place-items: center; padding: 70px 24px; background: var(--navy); color: white; text-align: center; }
.error-code { margin: 0; color: var(--amber); font-size: 14px; font-weight: 800; letter-spacing: .18em; }
.error-wrap h1 { margin: 16px 0; font-size: clamp(48px, 8vw, 86px); letter-spacing: -.06em; }
.error-wrap p { max-width: 560px; margin: 0 auto 28px; color: rgba(255,255,255,.65); line-height: 1.7; }

/* Footer */
.site-footer { padding: 82px 0 26px; background: #050c16; color: white; }
.footer-top { display: grid; grid-template-columns: 1fr 330px; gap: 70px; align-items: end; padding-bottom: 66px; }
.footer-mark { width: 46px; height: 46px; display: grid; place-items: center; margin: 0 0 22px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: var(--amber); font-size: 12px; }
.footer-top h2 { color: white; font-size: clamp(45px, 6vw, 74px); }
.footer-action p { margin: 0 0 17px; color: rgba(255,255,255,.58); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 25px; padding: 23px 0; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.footer-links a, .privacy-choices { color: rgba(255,255,255,.72); font-size: 11px; }
.footer-links a:hover, .privacy-choices:hover { color: white; }
.privacy-choices { padding: 0; border: 0; background: transparent; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 26px; align-items: center; padding-top: 22px; color: rgba(255,255,255,.5); font-size: 9px; }
.footer-bottom p { margin: 0; }
.footer-bottom p:last-child { text-align: right; }
.footer-bottom a { color: rgba(255,255,255,.78); }
.mobile-sticky { display: none; }
.menu-open .mobile-sticky { display: none; }

/* Consent */
.consent-banner {
  display: none;
  position: fixed;
  z-index: 80;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 740px;
  margin: auto;
  padding: 19px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 7px;
  background: #0e2035;
  color: white;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.consent-banner.is-visible { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; }
.consent-banner p { margin: 0; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.55; }
.consent-banner a { text-decoration: underline; }
.consent-actions { display: flex; gap: 8px; }
.consent-actions button { min-height: 44px; padding: 0 13px; border: 1px solid rgba(255,255,255,.45); border-radius: 4px; background: transparent; color: white; font-size: 11px; font-weight: 700; }
.consent-actions .accept { border-color: var(--amber); background: var(--amber); color: var(--ink); }

@media (max-width: 900px) {
  .shell { width: min(100% - 32px, 720px); }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .header-row { min-height: 78px; }
  .hero { min-height: auto; background-position: 58% center; }
  .hero-content { grid-template-columns: 1fr; gap: 32px; padding-top: 65px; }
  .quick-facts { max-width: 410px; }
  .hero-caption { margin-top: 48px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .ticket-grid { grid-template-columns: 1fr; max-width: 600px; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card { min-height: 0; }
  .policy-note { grid-template-columns: 1fr; }
  .decision-grid { grid-template-columns: 1fr; }
  .ticket-copy { min-height: 0; }
  .plan-grid { grid-template-columns: 1fr; gap: 50px; }
  .plan-photo, .plan-photo img { min-height: 470px; height: 470px; }
  .essentials-grid { grid-template-columns: 1fr; }
  .essential { min-height: auto; padding: 25px 0 28px; }
  .essential + .essential { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .essential-label { margin-top: 30px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 340px 220px 220px; }
  .gallery-grid figure:first-child { grid-column: 1 / span 2; grid-row: auto; }
  .faq-layout { grid-template-columns: 1fr; gap: 35px; }
  .faq-intro { position: static; }
  .author-card { grid-template-columns: 1fr; gap: 28px; padding: 38px; }
  .content-grid { grid-template-columns: 1fr; gap: 45px; }
  .side-card { position: static; max-width: 520px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { grid-template-columns: 1fr; gap: 11px; }
  .footer-bottom p:last-child { text-align: left; }
}

@media (max-width: 580px) {
  .shell { width: calc(100% - 28px); }
  .wordmark { font-size: 14px; }
  .wordmark-mark { width: 36px; height: 36px; }
  .hero { background-position: 61% center; }
  .hero::before { background: linear-gradient(90deg, rgba(3,12,24,.97), rgba(3,12,24,.7)), linear-gradient(0deg, rgba(3,12,24,.84), transparent 50%); }
  .hero-content { padding-top: 50px; }
  .status-pill { margin-bottom: 16px; font-size: 8px; }
  .hero h1 { font-size: 13px; }
  .hero-display { font-size: clamp(58px, 19vw, 76px); }
  .hero-lede { margin-top: 22px; font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .button { width: 100%; }
  .quick-facts { padding: 19px; }
  .hero-caption { margin-top: 39px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 58px; padding-left: 0; border-left: 0 !important; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: 0; }
  .disclosure-inner { grid-template-columns: 1fr; gap: 6px; padding-block: 16px; }
  .section { padding-block: 68px; }
  .section-heading { margin-bottom: 29px; }
  h2 { font-size: clamp(36px, 12vw, 48px); }
  .ticket-photo { aspect-ratio: 16 / 9; }
  .ticket-title-row h3 { font-size: 22px; }
  .card-cta { min-height: 52px; }
  .plan-photo, .plan-photo img { min-height: 390px; height: 390px; }
  .plan-steps li { grid-template-columns: 36px 1fr; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 250px); }
  .gallery-grid figure:first-child { grid-column: auto; }
  .faq-list summary { min-height: 68px; font-size: 15px; }
  .faq-list details p { margin-right: 4px; }
  .author-card { padding: 27px 22px; }
  .author-meta p { align-items: flex-start; flex-direction: column; gap: 5px; }
  .author-meta strong { max-width: 100%; text-align: left; }
  .page-hero { padding-block: 54px 58px; }
  .page-hero h1 { font-size: clamp(44px, 14vw, 61px); }
  .page-hero > .shell > p:last-child { font-size: 15px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: auto; padding: 25px; }
  .site-footer { padding-top: 61px; padding-bottom: 90px; }
  .footer-top { padding-bottom: 45px; }
  .mobile-sticky {
    min-height: 54px;
    display: flex;
    position: fixed;
    z-index: 45;
    left: 12px;
    right: 12px;
    bottom: 12px;
    align-items: center;
    justify-content: space-between;
    padding: 0 19px;
    border-radius: 6px;
    background: var(--amber);
    color: var(--ink);
    box-shadow: 0 12px 34px rgba(4,11,21,.32);
    font-size: 14px;
    font-weight: 800;
  }
  .consent-banner { left: 10px; right: 10px; bottom: 78px; }
  .consent-banner.is-visible { grid-template-columns: 1fr; }
  .consent-actions button { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
