:root {
  --ink: #07192b;
  --navy: #06182a;
  --navy-2: #0c2742;
  --cream: #f8f2e7;
  --paper: #fffdf8;
  --red: #ae201b;
  --red-dark: #7e1414;
  --gold: #f0be4c;
  --gold-pale: #f9df9b;
  --green: #24744a;
  --blue: #3f77ca;
  --muted: #5d6a76;
  --line: #dfd5c5;
  --primary: #ae201b;
  --primary-foreground: #ffffff;
  --secondary: #f8f2e7;
  --secondary-foreground: #07192b;
  --background: #f8f2e7;
  --foreground: #07192b;
  --card: #fffdf8;
  --card-foreground: #07192b;
  --popover: #fffdf8;
  --popover-foreground: #07192b;
  --muted-foreground: #5d6a76;
  --accent: #f5e7ce;
  --accent-foreground: #07192b;
  --border: #dfd5c5;
  --input: #d9cfbf;
  --ring: #ae201b;
  --radius: 0.85rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  color: white;
  background: var(--red);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.page-shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 92px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 max(32px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(3, 15, 27, 0.72), rgba(3, 15, 27, 0.08));
}

.brand-link {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-link img {
  width: 218px;
  height: auto;
  display: block;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: white;
}

.mobile-nav {
  display: none;
  position: relative;
  margin-left: auto;
  color: white;
}

.mobile-nav summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(8, 26, 44, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(270px, calc(100vw - 28px));
  display: grid;
  padding: 10px;
  border: 1px solid rgba(240, 190, 76, 0.42);
  border-radius: 14px;
  background: rgba(3, 16, 29, 0.98);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

.mobile-nav nav a {
  padding: 12px 13px;
  color: white;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}

.mobile-nav nav a:hover,
.mobile-nav nav a:focus-visible {
  background: rgba(240, 190, 76, 0.14);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  color: white;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(8, 26, 44, 0.6);
  backdrop-filter: blur(8px);
}

.hero {
  position: relative;
  min-height: 810px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: white;
  background: var(--navy);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 15, 29, 0.94) 0%, rgba(3, 15, 29, 0.82) 37%, rgba(3, 15, 29, 0.18) 72%, rgba(3, 15, 29, 0.27) 100%),
    linear-gradient(0deg, rgba(3, 15, 29, 0.88) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
}

.kicker {
  margin: 0 0 17px;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-pale);
}

.hero h1,
.section-heading h2,
.directions-copy h2,
.gift-copy h2,
.alert-intro h2,
.faq-intro h2,
.share-inner h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.25rem, 6.2vw, 6.25rem);
  line-height: 0.94;
  text-wrap: balance;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.42);
}

.hero-copy {
  max-width: 660px;
  margin: 25px 0 28px;
  font-size: 1.13rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.82);
}

.status-panel {
  width: min(620px, 100%);
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(5, 23, 40, 0.76);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.status-panel p,
.status-panel strong,
.status-panel span {
  display: block;
}

.status-panel p {
  margin: 0 0 4px;
  color: var(--gold-pale);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-panel strong {
  margin-bottom: 5px;
  font-size: 1.28rem;
  line-height: 1.25;
}

.status-panel span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.status-pulse {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(240, 190, 76, 0.14), 0 0 20px rgba(240, 190, 76, 0.7);
}

.status-open .status-pulse {
  background: #54d78b;
  box-shadow: 0 0 0 6px rgba(84, 215, 139, 0.14), 0 0 20px rgba(84, 215, 139, 0.7);
}

.status-closed .status-pulse {
  background: #aab2ba;
  box-shadow: 0 0 0 6px rgba(170, 178, 186, 0.12);
}

.hero-actions,
.direction-actions,
.share-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 22px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--red);
  box-shadow: 0 10px 30px rgba(174, 32, 27, 0.3);
}

.button-primary:hover {
  background: #c32922;
}

.button-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(6, 24, 42, 0.45);
}

.button-gold {
  color: var(--navy);
  background: var(--gold);
}

.button-outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.36);
  background: transparent;
}

.bulb-line {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  width: min(1080px, 78vw);
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}

.bulb-line::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(253, 234, 178, 0.55);
}

.bulb {
  position: relative;
  width: 13px;
  height: 18px;
  border-radius: 50% 50% 45% 45%;
  transform: translateY(-3px);
  box-shadow: 0 0 18px currentColor;
}

.bulb-red { color: #ff4e45; background: #ff4e45; }
.bulb-gold { color: #ffc14e; background: #ffc14e; }
.bulb-green { color: #5bd477; background: #5bd477; }
.bulb-blue { color: #6ca9ff; background: #6ca9ff; }

.essentials {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: -52px;
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 22px 70px rgba(7, 25, 43, 0.14);
  overflow: hidden;
}

.essential-card {
  min-width: 0;
  min-height: 145px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}

.essential-card:last-child { border-right: 0; }

.essential-card > svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--red);
}

.static-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.essential-card > .static-icon { width: 28px; height: 28px; color: var(--red); font-size: 23px; }
.price-icon .static-icon, .amenity-icon .static-icon { font-size: 22px; }
.payment-title > .static-icon { color: var(--red); font-size: 24px; }
.address-card > .static-icon { color: var(--gold); font-size: 25px; }
.rule-card > .static-icon { width: 27px; height: 27px; color: var(--gold); font-size: 20px; }
.step-card > .static-icon { width: 34px; height: 34px; margin: 18px 0 25px; color: var(--red); font-size: 27px; }

.essential-card p,
.essential-card strong,
.essential-card span { display: block; }
.essential-card p { margin: 0 0 6px; color: var(--muted); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.essential-card strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.08rem; line-height: 1.22; }
.essential-card span { margin-top: 4px; color: var(--muted); font-size: 0.78rem; line-height: 1.35; }

.section {
  padding-block: 112px;
}

.section-heading {
  margin-bottom: 42px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.directions-copy h2,
.gift-copy h2,
.alert-intro h2,
.faq-intro h2,
.share-inner h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.2vw, 4.5rem);
  line-height: 1.01;
}

.section-heading > p,
.split-heading > p,
.centered-heading > p,
.directions-copy .lead,
.gift-copy > p,
.alert-intro > p,
.faq-intro > p,
.share-inner > div > p:last-child {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.split-heading > p { margin: 0; }
.red-kicker { color: var(--red); }
.gold-kicker { color: var(--gold); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.price-card {
  position: relative;
  min-height: 355px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 10px 32px rgba(7, 25, 43, 0.04);
}

.featured-price {
  border: 2px solid var(--red);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(174, 32, 27, 0.09);
}

.price-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 16px;
  color: var(--red);
  background: #f7e7df;
}

.price-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 13px 0 17px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.6rem;
  line-height: 1;
  color: var(--ink);
}

.price-card h3 span { font-size: 1.8rem; vertical-align: top; position: relative; top: 9px; }
.price-card > strong,
.price-card > span { display: block; }
.price-card > strong { font-size: 1rem; }
.price-card > span { margin-top: 8px; color: var(--muted); font-size: 0.9rem; }

.popular-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 11px;
  border-radius: 999px;
  color: white;
  background: var(--red);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 20px;
  padding: 23px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.payment-title { display: flex; align-items: center; gap: 13px; }
.payment-title > svg { color: var(--red); }
.payment-title strong,
.payment-title span { display: block; }
.payment-title span { margin-top: 3px; color: var(--muted); font-size: 0.78rem; }
.payment-strip > p { margin: 0; text-align: center; color: var(--muted); font-size: 0.86rem; }
.receipt-note { display: inline-flex; align-items: center; gap: 7px; font-size: 0.8rem; font-weight: 800; color: var(--green); text-decoration: none; }

.directions-section {
  padding-block: 112px;
  color: white;
  background:
    radial-gradient(circle at 20% 0%, rgba(51, 105, 148, 0.24), transparent 38%),
    linear-gradient(135deg, #06182a, #0a223b 68%, #06182a);
}

.directions-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 86px;
  align-items: center;
}

.directions-copy .lead { max-width: 610px; color: rgba(255, 255, 255, 0.7); }
.address-card { display: flex; align-items: flex-start; gap: 15px; max-width: 590px; margin: 30px 0; padding: 22px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(255,255,255,.06); }
.address-card > svg { flex: 0 0 auto; color: var(--gold); }
.address-card span,
.address-card strong,
.address-card small { display: block; }
.address-card span { margin-bottom: 5px; color: var(--gold-pale); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.address-card strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.22rem; }
.address-card small { margin-top: 5px; color: rgba(255,255,255,.58); }
.text-link { display: inline-flex; align-items: center; gap: 3px; color: var(--gold-pale); font-size: .85rem; font-weight: 800; text-decoration: none; }

.route-card {
  padding: 35px;
  border: 1px solid rgba(240, 190, 76, 0.36);
  border-radius: 28px;
  background: rgba(3, 14, 25, 0.7);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.route-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 27px; padding-bottom: 19px; border-bottom: 1px solid rgba(255,255,255,.12); }
.route-card-top span { color: var(--gold-pale); font-size: .69rem; font-weight: 900; letter-spacing: .16em; }
.route-card-top strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.route-stop { display: flex; align-items: center; gap: 18px; }
.route-number { flex: 0 0 46px; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--navy); background: var(--gold); font-family: Georgia, serif; font-size: 1.25rem; font-weight: 700; }
.route-number-glow { box-shadow: 0 0 0 8px rgba(240,190,76,.08), 0 0 30px rgba(240,190,76,.34); }
.route-stop p { margin: 0 0 2px; color: var(--gold-pale); font-size: .64rem; font-weight: 900; letter-spacing: .15em; }
.route-stop strong,
.route-stop span { display: block; }
.route-stop strong { font-size: 1.06rem; }
.route-stop span { margin-top: 3px; color: rgba(255,255,255,.55); font-size: .82rem; }
.route-line { width: 46px; height: 42px; display: grid; place-items: center; }
.route-line span { width: 2px; height: 100%; background: linear-gradient(var(--gold), rgba(240,190,76,.16)); }
.route-warning { display: flex; gap: 12px; margin-top: 28px; padding: 17px; border-radius: 15px; color: #ffd6d2; background: rgba(174,32,27,.16); }
.route-warning svg { flex: 0 0 auto; width: 21px; }
.route-warning p { margin: 0; font-size: .82rem; line-height: 1.5; }

.centered-heading { max-width: 720px; margin-inline: auto; text-align: center; }
.centered-heading > p { margin: 15px auto 0; }
.steps-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; }
.step-card { position: relative; min-height: 270px; padding: 28px 22px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); }
.step-card::after { content: ""; position: absolute; top: 52px; right: -16px; width: 16px; height: 2px; background: var(--gold); }
.step-card:last-child::after { display: none; }
.step-number { position: absolute; top: 18px; right: 18px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--red); font-size: .74rem; font-weight: 900; }
.step-card > svg { width: 34px; height: 34px; margin: 18px 0 25px; color: var(--red); }
.step-card h3 { margin: 0 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: 1.18rem; line-height: 1.2; }
.step-card p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.6; }

.rules-section {
  padding-block: 112px;
  color: white;
  background:
    radial-gradient(circle at 85% 12%, rgba(174, 32, 27, 0.18), transparent 30%),
    var(--navy);
}
.light-heading > p { color: rgba(255,255,255,.64); }
.rules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rule-card { display: flex; gap: 17px; min-height: 158px; padding: 25px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.045); }
.rule-card > svg { flex: 0 0 auto; width: 27px; height: 27px; color: var(--gold); }
.rule-card h3 { margin: 1px 0 9px; font-family: Georgia, serif; font-size: 1.08rem; }
.rule-card p { margin: 0; color: rgba(255,255,255,.62); font-size: .84rem; line-height: 1.57; }
.sensory-notice { display: flex; gap: 14px; align-items: flex-start; margin-top: 18px; padding: 20px 23px; border: 1px solid rgba(240,190,76,.3); border-radius: 16px; color: #f9e9bd; background: rgba(240,190,76,.08); }
.sensory-notice svg { flex: 0 0 auto; width: 22px; color: var(--gold); }
.sensory-notice p { margin: 0; font-size: .86rem; line-height: 1.6; }

.amenities-section { padding-bottom: 124px; }
.amenity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.amenity-card { position: relative; min-height: 300px; padding: 29px; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); }
.amenity-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 35px; border-radius: 15px; color: var(--red); background: #f8e9e2; }
.amenity-card h3 { margin: 0 0 12px; font-family: Georgia, serif; font-size: 1.28rem; }
.amenity-card p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.65; }
.coming-badge { position: absolute; top: 29px; right: 25px; padding: 7px 10px; border-radius: 999px; color: var(--red); background: #f8e9e2; font-size: .62rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }

.gift-section { padding-block: 105px; color: white; background: linear-gradient(120deg, #7c1516, #a8201c 52%, #791414); overflow: hidden; }
.gift-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.gift-art { position: relative; min-height: 340px; }
.gift-preview { position: absolute; display: block; height: auto; border-radius: 18px; box-shadow: 0 25px 55px rgba(0,0,0,.34); }
.gift-preview--envelope { width: min(88%, 490px); top: 0; left: 0; transform: rotate(-3deg); }
.gift-preview--ticket { width: min(64%, 340px); right: 0; bottom: 0; transform: rotate(5deg); border: 1px solid rgba(240,190,76,.72); }
.gift-copy > p { max-width: 650px; color: rgba(255,255,255,.74); }
.gift-copy .button { margin-top: 12px; }

.alert-section { padding-block: 120px; }
.alert-panel { display: grid; grid-template-columns: .82fr 1.18fr; gap: 74px; padding: 58px; border: 1px solid var(--line); border-radius: 30px; background: var(--paper); box-shadow: 0 24px 70px rgba(7,25,43,.08); }
.alert-icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 32px; border-radius: 20px; color: white; background: var(--red); box-shadow: 0 12px 28px rgba(174,32,27,.2); }
.alert-icon .static-icon { font-size: 26px; }
.alert-intro h2 { font-size: clamp(2.5rem, 4vw, 4.1rem); }
.setup-note { display: inline-flex; margin-top: 15px; padding: 8px 12px; border-radius: 999px; color: var(--red); background: #f7e7df; font-size: .7rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.alert-form fieldset { padding: 0; border: 0; }
.alert-form legend { margin-bottom: 14px; font-size: .82rem; font-weight: 900; }
.alert-options { display: grid; gap: 9px; }
.alert-option { display: flex; align-items: flex-start; gap: 12px; padding: 16px; border: 1px solid var(--line); border-radius: 15px; cursor: pointer; background: #fffdfa; }
.alert-option:has([data-state="checked"]) { border-color: var(--red); background: #fff8f4; }
.alert-option > button { margin-top: 2px; }
.alert-option strong,
.alert-option small { display: block; }
.alert-option strong { font-size: .86rem; }
.alert-option small { margin-top: 4px; color: var(--muted); font-size: .75rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.contact-grid label > span { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; font-size: .76rem; font-weight: 900; }
.contact-grid input { height: 48px; background: white; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; margin: 16px 0; color: var(--muted); font-size: .7rem; line-height: 1.45; cursor: pointer; }
.consent-row button { margin-top: 2px; }
.alert-button { min-height: 47px; padding-inline: 20px; border-radius: 999px; background: var(--red); font-weight: 900; }
.preview-message { display: flex; align-items: flex-start; gap: 8px; margin: 14px 0 0; color: var(--green); font-size: .76rem; line-height: 1.5; }
.preview-message svg { flex: 0 0 auto; }
.alert-preview-help { margin: 16px 0; color: var(--muted); font-size: .8rem; line-height: 1.55; }

.faq-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; padding-top: 75px; }
.faq-intro { position: sticky; top: 35px; }
.faq-intro h2 { font-size: clamp(2.5rem, 4vw, 4rem); }
.faq-help { display: flex; gap: 11px; align-items: flex-start; margin-top: 27px; padding: 17px; border: 1px solid var(--line); border-radius: 14px; color: var(--muted); background: rgba(255,255,255,.55); font-size: .76rem; line-height: 1.5; }
.faq-help svg { flex: 0 0 auto; color: var(--green); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 21px 42px 21px 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.07rem; text-align: left; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 17px; right: 4px; color: var(--red); font-family: Arial, sans-serif; font-size: 1.5rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 42px 22px 0; color: var(--muted); font-size: .9rem; line-height: 1.72; }

.alert-option input[type="radio"] { flex: 0 0 auto; width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--red); }
.alert-option:has(input:checked) { border-color: var(--red); background: #fff8f4; }
.contact-grid input { width: 100%; padding: 0 13px; border: 1px solid var(--input); border-radius: 10px; color: var(--ink); font: inherit; }
.consent-row input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 1px; accent-color: var(--red); }
.alert-button { color: white; border: 0; }
.status-open .status-pulse { animation: statusGlow 1.8s ease-in-out infinite; }

@keyframes statusGlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.share-section { padding-block: 78px; color: white; background: var(--navy-2); }
.share-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.share-inner h2 { max-width: 740px; font-size: clamp(2.1rem, 3.4vw, 3.6rem); }
.share-inner > div > p:last-child { margin-bottom: 0; color: rgba(255,255,255,.62); }

.site-footer { padding-block: 35px; color: rgba(255,255,255,.62); background: #03101d; }
.footer-inner { display: flex; align-items: center; gap: 30px; }
.footer-inner img { width: 180px; height: auto; }
.footer-inner p { margin: 0; font-size: .77rem; }
.footer-inner > div { margin-left: auto; display: flex; gap: 20px; }
.footer-inner a { color: rgba(255,255,255,.72); font-size: .78rem; font-weight: 700; text-decoration: none; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .nav-cta { margin-left: 0; }
  .essentials { grid-template-columns: repeat(3, 1fr); }
  .essential-card:nth-child(3) { border-right: 0; }
  .essential-card:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .essentials .essential-card:nth-child(4), .essentials .essential-card:nth-child(5) { grid-column: span 1; }
  .directions-grid { gap: 45px; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .step-card::after { display: none; }
  .rules-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .gift-grid { grid-template-columns: .8fr 1.2fr; gap: 45px; }
  .alert-panel { gap: 42px; padding: 42px; }
}

@media (max-width: 820px) {
  .page-shell { width: min(100% - 32px, 680px); }
  .site-header { height: 78px; padding-inline: 17px; }
  .brand-link img { width: 180px; }
  .nav-cta { min-height: 40px; padding-inline: 13px; font-size: .74rem; }
  .hero { min-height: 790px; align-items: flex-end; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(3,15,29,.98) 0%, rgba(3,15,29,.86) 58%, rgba(3,15,29,.42) 100%); }
  .hero-content { padding: 125px 0 88px; }
  .hero h1 { font-size: clamp(3rem, 13vw, 5rem); }
  .hero-copy { font-size: 1rem; }
  .bulb-line { width: 88vw; bottom: 20px; }
  .essentials { grid-template-columns: repeat(2, 1fr); margin-top: -28px; }
  .essential-card { min-height: 122px; border-bottom: 1px solid var(--line); }
  .essential-card:nth-child(odd) { border-right: 1px solid var(--line); }
  .essential-card:nth-child(even) { border-right: 0; }
  .essential-card:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .section, .directions-section, .rules-section { padding-block: 85px; }
  .split-heading, .directions-grid, .gift-grid, .alert-panel, .faq-section { grid-template-columns: 1fr; gap: 38px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 300px; }
  .payment-strip { grid-template-columns: 1fr; gap: 15px; }
  .payment-strip > p { text-align: left; }
  .directions-copy h2 { font-size: clamp(2.8rem, 11vw, 4.3rem); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .gift-section { padding-block: 82px; }
  .gift-art { min-height: 330px; }
  .alert-panel { padding: 30px; }
  .faq-intro { position: static; }
  .share-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .page-shell { width: calc(100% - 24px); }
  .site-header { height: 70px; }
  .brand-link img { width: 150px; }
  .nav-cta { width: 41px; padding: 0; justify-content: center; font-size: 0; }
  .nav-cta span { font-size: 1rem; }
  .hero { min-height: 830px; }
  .hero-content { padding-bottom: 80px; }
  .hero h1 { font-size: clamp(2.85rem, 16vw, 4.3rem); }
  .status-panel { align-items: flex-start; padding: 18px; }
  .status-panel strong { font-size: 1.05rem; }
  .hero-actions .button { flex: 1 1 100%; }
  .essentials { grid-template-columns: 1fr; }
  .essential-card, .essential-card:nth-child(odd), .essential-card:nth-child(even) { min-height: 104px; border-right: 0; border-bottom: 1px solid var(--line); }
  .essential-card:last-child { grid-column: auto; }
  .section { padding-block: 72px; }
  .section-heading h2,
  .gift-copy h2,
  .alert-intro h2,
  .faq-intro h2 { font-size: 2.55rem; }
  .price-card { padding: 26px; }
  .popular-badge { top: 18px; right: 18px; }
  .directions-section, .rules-section { padding-block: 76px; }
  .route-card { padding: 24px 20px; }
  .direction-actions .button, .direction-actions .text-link { width: 100%; justify-content: center; }
  .steps-grid, .rules-grid, .amenity-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 220px; }
  .rule-card { min-height: auto; }
  .amenity-card { min-height: 250px; }
  .gift-art { min-height: 250px; }
  .alert-panel { padding: 24px 18px; border-radius: 22px; }
  .contact-grid { grid-template-columns: 1fr; }
  .alert-button { width: 100%; }
  .share-actions { width: 100%; }
  .share-actions .button { width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-inner > div { margin-left: 0; }
}

@media print {
  .skip-link,
  .site-header,
  .hero-image,
  .hero-shade,
  .hero-actions,
  .bulb-line,
  .gift-art,
  .alert-section,
  .share-section,
  .site-footer,
  .direction-actions { display: none !important; }
  body { background: white; color: black; }
  .hero { min-height: auto; color: black; background: white; }
  .hero-content { padding: 25px 0; }
  .hero h1 { max-width: none; font-size: 36pt; text-shadow: none; }
  .hero-copy { color: #333; }
  .status-panel { color: black; background: white; border-color: #999; box-shadow: none; }
  .essentials { margin-top: 0; box-shadow: none; border: 1px solid #aaa; }
  .section, .directions-section, .rules-section, .gift-section { padding-block: 28px; break-inside: avoid; }
  .directions-section, .rules-section, .gift-section { color: black; background: white; }
  .directions-copy .lead, .light-heading > p, .rule-card p, .gift-copy > p { color: #333; }
  .route-card, .rule-card { color: black; background: white; border-color: #aaa; box-shadow: none; }
  .pricing-grid, .rules-grid, .amenity-grid { gap: 8px; }
  .price-card, .amenity-card, .step-card { box-shadow: none; }
  .faq-section { display: block; }
  .faq-list details { break-inside: avoid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
