:root {
  --ink: #070b2a;
  --ink-soft: #111742;
  --paper: #f7f5ee;
  --white: #ffffff;
  --lime: #c7ff2f;
  --cyan: #24d8ff;
  --coral: #ff5a62;
  --violet: #7d5cff;
  --muted: #64677f;
  --line: rgba(7, 11, 42, 0.14);
  --radius: 26px;
  --shadow: 0 28px 70px rgba(7, 11, 42, 0.16);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Arial", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 200; background: var(--lime); padding: 10px 16px; transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: clamp(76px, 10vw, 150px) 0; position: relative; }
.section-tight { padding: clamp(48px, 7vw, 88px) 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 6vw, 82px); align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; font-weight: 900; font-size: .79rem; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 4px; background: currentColor; border-radius: 10px; }
.kicker { font-size: clamp(1.08rem, 1.6vw, 1.3rem); line-height: 1.55; max-width: 700px; color: var(--muted); }
.display, h1, h2, h3 { margin: 0; line-height: .94; letter-spacing: -.045em; font-weight: 950; text-wrap: balance; }
h1 { font-size: clamp(3.4rem, 9vw, 8.8rem); }
h2 { font-size: clamp(2.65rem, 6vw, 5.9rem); }
h3 { font-size: clamp(1.55rem, 3vw, 2.5rem); }
p { margin: 0 0 1.15em; }
.lede { font-size: clamp(1.12rem, 1.7vw, 1.38rem); max-width: 720px; }
.tag { display: inline-flex; align-items: center; padding: 7px 12px; border: 1px solid currentColor; border-radius: 999px; font-weight: 850; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 54px; padding: 0 23px; border: 2px solid var(--ink); border-radius: 999px; background: var(--lime); color: var(--ink); font-weight: 900; text-decoration: none; box-shadow: 5px 5px 0 var(--ink); transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.btn-dark { background: var(--ink); color: var(--white); box-shadow: 5px 5px 0 var(--cyan); }
.btn-ghost { background: transparent; color: inherit; box-shadow: none; }
.btn-ghost:hover { background: rgba(255,255,255,.1); box-shadow: none; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; padding: 14px 0; transition: background .3s, padding .3s, box-shadow .3s; }
.site-header.scrolled { background: rgba(247,245,238,.92); backdrop-filter: blur(16px); box-shadow: 0 8px 40px rgba(7,11,42,.08); padding: 9px 0; }
.nav-shell { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; width: min(calc(100% - 26px), 1380px); margin: auto; border: 2px solid var(--ink); border-radius: 999px; padding: 8px 9px 8px 17px; background: rgba(255,255,255,.92); box-shadow: 7px 7px 0 var(--ink); }
.brand img { width: clamp(164px, 15vw, 225px); height: auto; }
.nav-links { display: flex; justify-content: center; align-items: center; gap: clamp(15px, 2vw, 32px); }
.nav-links a { text-decoration: none; font-weight: 900; font-size: .86rem; text-transform: uppercase; letter-spacing: .04em; position: relative; }
.nav-links a::after { content: ""; position: absolute; height: 4px; inset: auto 50% -8px; background: var(--coral); border-radius: 4px; transition: inset .25s; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { inset-inline: 0; }
.nav-book { min-height: 46px; padding-inline: 19px; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; background: var(--ink); color: white; border-radius: 50%; font-size: 1.4rem; }

.hero { min-height: 100svh; position: relative; background: var(--ink); color: white; display: grid; align-items: end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,11,42,.94) 0%, rgba(7,11,42,.64) 45%, rgba(7,11,42,.08) 100%), linear-gradient(0deg, rgba(7,11,42,.78), transparent 45%); }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 2; padding: clamp(180px, 24vh, 260px) 0 88px; }
.hero h1 { max-width: 980px; text-transform: uppercase; }
.hero h1 .outline { color: transparent; -webkit-text-stroke: 2px var(--lime); }
.hero .lede { color: rgba(255,255,255,.84); margin-top: 24px; }
.hero-stamp { position: absolute; z-index: 3; right: 5vw; bottom: 64px; width: clamp(132px, 15vw, 210px); aspect-ratio: 1; border-radius: 50%; background: var(--lime); color: var(--ink); display: grid; place-items: center; text-align: center; font-weight: 950; font-size: clamp(.85rem, 1.2vw, 1.05rem); line-height: 1.1; text-transform: uppercase; transform: rotate(7deg); border: 3px solid var(--ink); box-shadow: 9px 9px 0 var(--coral); text-decoration: none; }
.quick-strip { position: relative; z-index: 4; background: var(--lime); border-block: 3px solid var(--ink); overflow: hidden; }
.ticker { display: flex; width: max-content; animation: ticker 28s linear infinite; }
.ticker span { padding: 13px 22px; font-weight: 950; text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }
.ticker span::after { content: "✦"; margin-left: 42px; color: var(--coral); }
@keyframes ticker { to { transform: translateX(-50%); } }

.choice-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; margin-top: 50px; }
.choice-card { position: relative; min-height: 430px; border-radius: var(--radius); overflow: hidden; color: white; text-decoration: none; box-shadow: var(--shadow); border: 2px solid var(--ink); isolation: isolate; }
.choice-card:nth-child(1), .choice-card:nth-child(4) { grid-column: span 7; }
.choice-card:nth-child(2), .choice-card:nth-child(3) { grid-column: span 5; }
.choice-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); z-index: -2; }
.choice-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,11,42,.94), rgba(7,11,42,.05) 70%); z-index: -1; }
.choice-card:hover img { transform: scale(1.07); }
.choice-copy { position: absolute; inset: auto 28px 25px; }
.choice-copy p { margin: 10px 0 0; max-width: 540px; color: rgba(255,255,255,.8); }
.choice-arrow { position: absolute; top: 22px; right: 22px; width: 55px; height: 55px; border-radius: 50%; background: var(--lime); color: var(--ink); display: grid; place-items: center; font-size: 1.45rem; border: 2px solid var(--ink); }

.sensory-feature { background: var(--ink); color: white; overflow: hidden; }
.orb { position: absolute; width: 500px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 35% 32%, white 0 3%, var(--cyan) 4% 17%, var(--violet) 47%, transparent 70%); filter: blur(2px); opacity: .5; right: -190px; top: -160px; }
.photo-frame { position: relative; }
.photo-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 46% 46% 22px 22px; border: 3px solid var(--cyan); }
.photo-note { position: absolute; bottom: -25px; left: -30px; background: var(--lime); color: var(--ink); padding: 19px 24px; border: 2px solid var(--ink); transform: rotate(-4deg); font-weight: 950; box-shadow: 7px 7px 0 var(--coral); }
.benefit-list { display: grid; gap: 0; margin: 35px 0; }
.benefit { display: grid; grid-template-columns: 40px 1fr; gap: 15px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.18); }
.benefit:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.benefit strong { font-size: 1.05rem; }

.info-band { background: var(--cyan); border-block: 3px solid var(--ink); }
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.info-item { padding: 31px 24px; border-right: 2px solid var(--ink); }
.info-item:last-child { border-right: 0; }
.info-item span { display: block; font-weight: 900; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.info-item strong { font-size: clamp(1.15rem, 2vw, 1.65rem); line-height: 1.1; }

.party-section { background: var(--coral); border-bottom: 3px solid var(--ink); }
.party-cards { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; margin-top: 45px; }
.price-card, .group-card { border: 3px solid var(--ink); border-radius: var(--radius); padding: clamp(28px, 4vw, 50px); background: var(--paper); box-shadow: 9px 9px 0 var(--ink); }
.price-line { display: flex; justify-content: space-between; gap: 25px; padding: 18px 0; border-top: 2px solid var(--ink); font-weight: 850; }
.price-line:last-of-type { border-bottom: 2px solid var(--ink); }
.price-line strong { font-size: 1.35rem; }
.group-card { background: var(--lime); display: flex; flex-direction: column; justify-content: space-between; }
.list-clean { padding: 0; margin: 24px 0; list-style: none; }
.list-clean li { padding: 10px 0 10px 30px; position: relative; border-bottom: 1px solid rgba(7,11,42,.15); }
.list-clean li::before { content: "✓"; position: absolute; left: 0; font-weight: 950; }

.location { background: var(--paper); }
.map-card { position: relative; border: 3px solid var(--ink); border-radius: var(--radius); overflow: hidden; min-height: 540px; box-shadow: 10px 10px 0 var(--cyan); }
.map-card iframe { width: 100%; height: 100%; position: absolute; inset: 0; border: 0; filter: saturate(.7) contrast(1.08); }
.travel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 30px; }
.travel-card { border: 2px solid var(--ink); border-radius: 18px; padding: 20px; background: white; }
.travel-card strong { display: block; font-size: 1.15rem; margin-bottom: 4px; }

.social-section { background: var(--ink); color: white; }
.social-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(30px, 6vw, 80px); align-items: start; }
.facebook-shell { background: white; min-height: 620px; border-radius: var(--radius); border: 3px solid var(--cyan); overflow: hidden; box-shadow: 10px 10px 0 var(--violet); display: grid; place-items: center; }
.facebook-shell iframe { width: 100%; min-height: 620px; border: 0; }
.social-label { color: var(--cyan); }

.page-hero { padding: 190px 0 90px; min-height: 620px; display: grid; align-items: end; background: var(--ink); color: white; position: relative; overflow: hidden; }
.page-hero .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .46; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink), rgba(7,11,42,.35)), linear-gradient(0deg, var(--ink), transparent 60%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 1100px; }
.page-hero p { max-width: 740px; font-size: 1.25rem; color: rgba(255,255,255,.8); margin-top: 22px; }
.detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 42px; }
.detail-card { background: white; border: 2px solid var(--ink); border-radius: 22px; padding: 28px; box-shadow: 5px 5px 0 var(--ink); }
.detail-card h3 { font-size: 1.55rem; line-height: 1.02; margin-bottom: 12px; }
.detail-card .big { font-size: 2.7rem; font-weight: 950; line-height: 1; margin-bottom: 12px; color: var(--violet); }
.split-image { min-height: 520px; border-radius: var(--radius); overflow: hidden; border: 3px solid var(--ink); box-shadow: 10px 10px 0 var(--lime); }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.quote-panel { padding: clamp(32px, 6vw, 70px); background: var(--lime); border: 3px solid var(--ink); border-radius: var(--radius); box-shadow: 10px 10px 0 var(--ink); }
.quote-panel p { font-size: clamp(1.4rem, 2.8vw, 2.6rem); font-weight: 900; line-height: 1.15; }
.faq { max-width: 930px; margin: 50px auto 0; }
.faq details { border-top: 2px solid var(--ink); }
.faq details:last-child { border-bottom: 2px solid var(--ink); }
.faq summary { cursor: pointer; list-style: none; padding: 24px 54px 24px 0; font-size: 1.17rem; font-weight: 900; position: relative; }
.faq summary::after { content: "+"; position: absolute; right: 10px; top: 15px; font-size: 2rem; }
.faq details[open] summary::after { content: "−"; }
.faq details div { padding: 0 50px 22px 0; color: var(--muted); }
.rules-list { counter-reset: rules; display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 0; list-style: none; }
.rules-list li { counter-increment: rules; background: white; border: 2px solid var(--ink); border-radius: 18px; padding: 22px 22px 22px 72px; position: relative; }
.rules-list li::before { content: counter(rules, decimal-leading-zero); position: absolute; left: 19px; top: 17px; font-weight: 950; color: var(--coral); font-size: 1.35rem; }
.hours { display: grid; gap: 0; }
.hours div { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); padding: 11px 0; }
.notice { border: 2px solid var(--ink); border-left: 12px solid var(--coral); background: white; padding: 20px 24px; border-radius: 12px; }

.cta-panel { margin: 0 auto clamp(70px, 9vw, 120px); width: min(calc(100% - 40px), var(--max)); border: 3px solid var(--ink); border-radius: var(--radius); padding: clamp(38px, 7vw, 82px); background: var(--violet); color: white; box-shadow: 12px 12px 0 var(--lime); display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.cta-panel h2 { font-size: clamp(2.5rem, 5vw, 5rem); }
.site-footer { background: var(--ink); color: white; padding: 70px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr; gap: 50px; }
.footer-logo { width: 240px; background: white; border-radius: 999px; padding: 10px 18px; margin-bottom: 24px; }
.footer-links { list-style: none; padding: 0; margin: 18px 0 0; }
.footer-links li { margin: 9px 0; }
.footer-links a { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-links a:hover { color: var(--lime); }
.copyright { border-top: 1px solid rgba(255,255,255,.16); padding-top: 20px; margin-top: 55px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.55); font-size: .82rem; }

@media (max-width: 980px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .nav-links { position: fixed; inset: 0; background: var(--ink); color: white; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 11vw; gap: 20px; transform: translateY(-105%); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
  .nav-links a { font-size: clamp(1.8rem, 6vw, 3.6rem); line-height: 1; }
  .menu-open .nav-links { transform: translateY(0); }
  .nav-book { display: none; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .brand { position: relative; z-index: 3; }
  .grid-2, .social-layout { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .info-item:nth-child(2) { border-right: 0; }
  .info-item:nth-child(-n+2) { border-bottom: 2px solid var(--ink); }
  .party-cards { grid-template-columns: 1fr; }
  .choice-card:nth-child(n) { grid-column: span 6; min-height: 390px; }
  .detail-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1/-1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 26px), var(--max)); }
  .nav-shell { width: calc(100% - 18px); box-shadow: 4px 4px 0 var(--ink); }
  .hero-content { padding-bottom: 58px; }
  .hero-stamp { display: none; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-card:nth-child(n) { grid-column: auto; min-height: 360px; }
  .choice-copy { inset: auto 20px 20px; }
  .info-grid, .travel-grid, .detail-grid, .rules-list { grid-template-columns: 1fr; }
  .info-item { border-right: 0; border-bottom: 2px solid var(--ink); }
  .info-item:last-child { border-bottom: 0; }
  .page-hero { min-height: 560px; }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .copyright { flex-direction: column; }
  .map-card { min-height: 430px; }
}

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