@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@500;600;700&family=Jost:wght@400;500;600&display=swap");
:root {
  --night: #0e1412;
  --ink: #161110;
  --cream: #f3e8d4;
  --ivory: #faf4ea;
  --gold: #c4a35a;
  --gold-bright: #d4b76a;
  --muted: #cbbba0;
  --line: rgba(196, 163, 90, 0.28);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--night); color: var(--cream); font-family: Jost, sans-serif; }
a, button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
.font-display { font-family: "Bodoni Moda", Georgia, serif; }
.wrap { width: min(1180px, calc(100% - 1.5rem)); margin: 0 auto; }
.gold-btn, .ghost-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3.1rem; padding: 0.85rem 1.4rem; border-radius: 999px;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; font-size: 0.78rem; font-weight: 600;
}
.gold-btn { background: linear-gradient(180deg, #e0c57a, var(--gold)); color: var(--ink); border: 0; box-shadow: 0 10px 30px rgba(196,163,90,.28); }
.ghost-btn { border: 1px solid var(--line); color: var(--ivory); background: rgba(250,244,234,.04); }
.frost-card { background: linear-gradient(180deg, rgba(250,244,234,.05), rgba(14,20,18,.55)); border: 1px solid var(--line); border-radius: 1.4rem; }
.field { width: 100%; min-height: 3rem; border-radius: .9rem; border: 1px solid var(--line); background: rgba(10,12,11,.55); color: var(--ivory); padding: .75rem .95rem; font: inherit; }
.site-header { position: fixed; inset: 0 0 auto; z-index: 40; }
.site-header-inner { margin: .75rem auto; width: min(1180px, calc(100% - 1.25rem)); display: flex; justify-content: space-between; align-items: center; gap: 1rem; border: 1px solid var(--line); background: rgba(14,20,18,.72); backdrop-filter: blur(16px); border-radius: 999px; padding: .4rem .5rem .4rem .7rem; }
.brand { display: flex; align-items: center; gap: .7rem; color: var(--ivory); text-decoration: none; }
.brand img { width: 40px; height: 40px; border-radius: 999px; }
.nav { display: none; gap: 1.4rem; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
.nav a { color: var(--muted); text-decoration: none; }
@media (min-width: 960px) { .nav { display: flex; } }
.hero { position: relative; min-height: 100svh; overflow: hidden; display: flex; align-items: flex-end; }
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,20,18,.28), rgba(14,20,18,.88)); }
.hero-copy { position: relative; z-index: 3; padding: 8rem 0 6rem; }
.snow-layer {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}
.snowflake {
  position: absolute;
  top: -12px;
  border-radius: 999px;
  background: rgba(250, 244, 234, 0.92);
  box-shadow: 0 0 8px rgba(250, 244, 234, 0.45);
  -webkit-animation-name: drift;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-name: drift;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}
@-webkit-keyframes drift {
  from { -webkit-transform: translate3d(0, -4vh, 0); transform: translate3d(0, -4vh, 0); }
  to { -webkit-transform: translate3d(28px, 110vh, 0); transform: translate3d(28px, 110vh, 0); }
}
@keyframes drift {
  from { transform: translate3d(0, -4vh, 0); }
  to { transform: translate3d(28px, 110vh, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .snow-layer { display: none; }
}
.eyebrow { color: var(--gold-bright); letter-spacing: .28em; text-transform: uppercase; font-size: .72rem; }
h1, h2, h3 { font-family: "Bodoni Moda", Georgia, serif; color: var(--ivory); font-weight: 600; }
.hero h1 { font-size: clamp(3rem, 8vw, 7rem); line-height: .92; margin: .4rem 0; }
.muted { color: var(--muted); }
.grid-3 { display: grid; gap: 1rem; margin: 3rem auto; }
.grid-2 { display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .grid-3 { grid-template-columns: repeat(3,1fr); } .grid-2 { grid-template-columns: 1.1fr .9fr; } }
.price-card, .activity, .faq, .admin-card { padding: 1.4rem; }
.activity img { width: 100%; height: 220px; object-fit: cover; border-radius: 1.1rem 1.1rem 0 0; }
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.sticky-cta { position: fixed; left: .75rem; right: .75rem; bottom: .75rem; z-index: 30; }
@media (min-width: 800px) { .sticky-cta { display: none; } }
@media (max-width: 799px) {
  body.has-sticky { padding-bottom: 5.5rem; }
}
.page-book, .page-ticket, .page-lookup, .page-admin, .page-contact { padding-bottom: 2rem; }
.wizard-actions { display: flex; justify-content: space-between; gap: .75rem; margin-top: 1rem; }
.wizard-choice { width: 100%; margin-top: .6rem; justify-content: flex-start; }
.wizard-choice.is-on { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.footer { border-top: 1px solid var(--line); padding: 3rem 0 5rem; }
.ticket { border: 1px solid var(--gold); border-radius: 1.6rem; padding: 1.4rem; display: grid; gap: 1rem; }
@media (min-width: 700px) { .ticket { grid-template-columns: 1fr auto; } }
.admin-nav a { color: var(--muted); text-decoration: none; display: block; padding: .45rem 0; }
.admin-nav a.active { color: var(--ivory); }
.table { width: 100%; border-collapse: collapse; }
.table th { text-align: left; color: var(--gold); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.table td, .table th { padding: .7rem; border-bottom: 1px solid var(--line); }
.err { color: #f3c1c1; }
.ok { color: var(--gold-bright); }
