/* ==========================================================================
   Land of Adventures - "Explorer's Map" theme
   Palette carried over from the original site (gold, forest, orange, blue,
   cream, brown ink), rebuilt on the modern layout from the /dev/ pass.
   ========================================================================== */

@font-face {
  font-family: Mont;
  src: url("../fonts/Mont-Heavy.otf") format("opentype");
  font-weight: 800;
  font-display: swap;
}

:root {
  /* Brand */
  --gold: #fece14;
  --gold-deep: #e8a90c;
  --gold-soft: #ffe376;
  --forest: #336633;
  --forest-dk: #1f4520;
  --leaf: #5c8a3c;
  --orange: #f03c02;
  --orange-lt: #fd6f41;
  --blue: #517695;
  --blue-dk: #3a5a76;
  --plum: #6b3f8f;
  --teal: #17696f;
  --crimson: #a41f22;

  /* Surfaces */
  --cream: #f6f4e7;
  --paper: #fbf6e4;
  --card: #fffdf6;
  --bark: #4a3527;
  --ink: #2b2320;
  --muted: #65534c;
  --line: rgba(74, 53, 39, 0.16);

  /* Metrics */
  --max: 1600px;
  --measure: 74ch;
  --header-h: 86px;
  --header-h-stuck: 78px;
  --sticky: 60px;
  --sign-drop: 210px;  /* how far the hero signboard hangs past the photo */
  --radius: 18px;
  --shadow-sm: 0 2px 8px rgba(43, 35, 32, 0.10);
  --shadow: 0 10px 28px rgba(43, 35, 32, 0.16);
  --shadow-lg: 0 22px 60px rgba(43, 35, 32, 0.26);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fun: "Lilita One", Mont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper) url("../img/paper.jpg") repeat;
  background-size: 320px 320px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); }
a:hover { color: var(--orange-lt); }

h1, h2, h3, h4 {
  font-family: Mont, Poppins, sans-serif;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.wrap-narrow { width: min(880px, calc(100% - 40px)); margin-inline: auto; }

/* Long-form copy keeps a readable measure even when the container is 1600px. */
.section > .wrap > p,
.section > .wrap > .routes + p,
.section > .wrap > .lede { max-width: var(--measure); }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--gold); color: var(--ink);
  padding: 10px 16px; border-radius: 0 0 10px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.new-tab-mark {
  font-family: Poppins, system-ui, sans-serif;
  font-size: 0.78em;
  font-weight: 700;
  margin-left: 0.18em;
  opacity: 0.85;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--forest-dk);
  --btn-edge: var(--gold-deep);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: Mont, Poppins, sans-serif;
  font-size: 1rem; letter-spacing: 0.01em;
  text-decoration: none; text-align: center;
  padding: 13px 24px; border: 0; border-radius: 999px;
  box-shadow: 0 4px 0 var(--btn-edge), var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.16s var(--ease), box-shadow 0.16s var(--ease), background 0.16s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--btn-edge), var(--shadow); color: var(--btn-fg); }
.btn:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--btn-edge); }
.btn-forest { --btn-bg: var(--forest); --btn-fg: #fff; --btn-edge: var(--forest-dk); }
.btn-orange { --btn-bg: var(--orange); --btn-fg: #fff; --btn-edge: #b52d02; }
.btn-blue   { --btn-bg: var(--blue); --btn-fg: #fff; --btn-edge: var(--blue-dk); }
.btn-cream  { --btn-bg: #fff; --btn-fg: var(--forest-dk); --btn-edge: #d9d2b8; }
.btn-ghost {
  --btn-bg: transparent; --btn-fg: currentColor; --btn-edge: transparent;
  box-shadow: inset 0 0 0 2px currentColor;
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px currentColor, var(--shadow-sm); }
.btn-sm { padding: 9px 16px; font-size: 0.9rem; }

/* --------------------------------------------------------------------------
   Status ribbon
   -------------------------------------------------------------------------- */
.ribbon {
  background: var(--forest-dk);
  color: #fff; font-size: 0.9rem; font-weight: 600;
  position: relative; z-index: 20;
}
.ribbon-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px; padding: 7px 0;
}
.status { grid-column: 2; }
.ribbon-contact { grid-column: 3; justify-self: end; }
.ribbon a { color: #fff; text-decoration: none; }
.ribbon a:hover { color: var(--gold); }
.status { display: flex; align-items: center; gap: 9px; margin: 0; }
.status-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--muted); flex: none; position: relative;
}
.status.is-open .status-dot { background: #55d46a; }
.status.is-open .status-dot::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid #55d46a; animation: pulse 2.2s ease-out infinite;
}
.status.is-closed .status-dot { background: var(--orange-lt); }
.status-text strong { color: var(--gold); }
.ribbon-contact { display: flex; align-items: center; gap: 10px; margin: 0; }
.ribbon-contact .sep { opacity: 0.45; }
.protectEmail { color: inherit; font-weight: 700; text-decoration: none; }

@keyframes pulse {
  0% { transform: scale(0.7); opacity: 0.9; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 44;
  background: var(--paper) url("../img/paper.jpg") repeat;
  background-size: 320px 320px;
  border-bottom: 4px solid var(--gold);
  box-shadow: 0 3px 0 var(--gold-deep);
  transition: box-shadow 0.25s var(--ease);
}
.site-header.is-stuck {
  box-shadow: 0 3px 0 var(--gold-deep), 0 10px 24px rgba(43, 35, 32, 0.22);
}
.header-inner {
  display: flex; align-items: stretch; justify-content: space-between;
  gap: 18px; padding: 0;
  min-height: var(--header-h);
  transition: min-height 0.25s var(--ease);
}
.site-header.is-stuck .header-inner { min-height: var(--header-h-stuck); }

/* The mark hangs over the ribbon above and the hero below, as it does on the live site. */
.logo {
  display: flex; align-items: center; flex: none;
  position: relative; z-index: 6;
}
.logo img {
  width: 320px;
  margin: -42px 0 -58px;
  transition: width 0.25s var(--ease), margin 0.25s var(--ease);
  filter: drop-shadow(0 6px 10px rgba(43, 35, 32, 0.34));
}
.site-header.is-stuck .logo img {
  width: 152px;
  margin: 0 0 -6px;
}

/* One slanted bar: bevel and drop shadow live on the UL only.
   Forest tabs stay transparent so they share that fill with no gap. */
.site-nav { display: flex; align-items: stretch; align-self: stretch; margin-right: 12px; }
.site-nav ul {
  position: relative;
  display: flex; align-items: stretch; gap: 0;
  list-style: none; margin: 0; padding: 0;
  height: 100%;
  transform: skewX(-13deg) translateZ(0);
  isolation: isolate;
  background-color: var(--forest);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 55%, rgba(0, 0, 0, 0.07) 100%);
  box-shadow: none;
}
.site-nav ul::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 2; pointer-events: none;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.18),
    inset 3px 0 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    inset -2px 0 0 rgba(0, 0, 0, 0.1);
}
.site-nav li { display: flex; }
.site-nav a {
  --tab-bg: var(--forest);
  --tab-edge: #1a3c1b;
  --tab-top: rgba(255, 255, 255, 0.18);
  display: flex; align-items: center;
  padding: 0 26px;
  text-decoration: none; white-space: nowrap;
  font-family: Mont, Poppins, sans-serif;
  font-size: 1.08rem; font-weight: 800;
  color: #fdfad1;
  background: transparent;
  box-shadow: none;
  transition: background-color 0.18s, color 0.18s;
}
.site-nav a > span { display: inline-block; transform: skewX(13deg); }
.site-nav a::after { content: none; }

.site-nav a:hover,
.site-nav li:hover > a,
.site-nav a.active,
.site-nav a.btn-tickets {
  background-color: var(--tab-bg);
  background-image: none;
  box-shadow: none;
  filter: none;
}
.site-nav a:hover,
.site-nav li:hover > a {
  --tab-bg: var(--gold);
  --tab-edge: #b98a06;
  --tab-top: rgba(255, 255, 255, 0.55);
  color: var(--forest-dk);
}
.site-nav a.active {
  --tab-bg: var(--gold);
  --tab-edge: #b98a06;
  --tab-top: rgba(255, 255, 255, 0.5);
  color: var(--forest-dk);
}
.site-nav a.btn-tickets {
  --tab-bg: var(--orange);
  --tab-edge: #a02602;
  --tab-top: rgba(255, 255, 255, 0.42);
  border-radius: 0;
  padding: 0 32px;
  color: #fff;
}
.site-nav a.btn-tickets:hover {
  --tab-bg: var(--gold);
  --tab-edge: #b98a06;
  color: var(--forest-dk);
}
.site-nav a.btn-tickets.active { color: #fff; }

.nav-toggle {
  display: none; align-items: center; gap: 8px;
  min-height: 44px; padding: 0 14px; border: 0; cursor: pointer;
  align-self: center;
  background: linear-gradient(180deg, #ffe06a 0%, var(--gold) 48%, var(--gold-deep) 100%);
  color: var(--forest-dk);
  border-radius: 10px; font-family: Mont, sans-serif; font-size: 0.95rem;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.6), 0 4px 0 #b98a06, 0 6px 12px rgba(43, 35, 32, 0.2);
}
.nav-toggle:active { transform: translateY(2px); box-shadow: inset 0 2px 4px rgba(43, 35, 32, 0.3), 0 1px 0 #b98a06; }
.nav-toggle .bars { display: block; width: 20px; height: 2px; background: currentColor; position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor;
  transition: transform 0.22s var(--ease), opacity 0.15s;
}
.nav-toggle .bars::before { top: -6px; }
.nav-toggle .bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(82vh, 720px);
  padding-top: 20vh;              /* photo the signboard can never cover */
  display: flex; align-items: flex-end;
  background: linear-gradient(#8ec7e8 0%, #bfe0ee 55%, #dbeccd 100%);
  color: #fff;
}
.hero-slides { overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background: center 22% / cover no-repeat; /* keep faces above the overlapping card */
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.5s ease, transform 9s linear;
}
.hero-slide.is-on { opacity: 1; transform: scale(1); }
.hero-sun {
  position: absolute; top: 8%; right: 9%; width: 110px; z-index: 1;
  opacity: 0.9; animation: bob 9s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(254, 206, 20, 0.6));
}
.hero-copy {
  position: relative; z-index: 3;
  display: flex; justify-content: center;
  padding: 0; width: min(var(--max), calc(100% - 40px));
}

/* Paper signboard with a climbing rope that follows the rounded edge. */
.hero-card {
  --rope-thick: 22px;
  position: relative;
  width: min(1060px, 100%);
  margin-bottom: calc(var(--sign-drop) * -1);
  text-align: center;
  padding: 52px 56px 56px;
  background: var(--paper) url("../img/paper.jpg") repeat;
  background-size: 320px 320px;
  border: 0;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  overflow: visible;
}
.hero-card > *:not(.hero-rope):not(.hero-rope-src) { position: relative; z-index: 2; }
.hero-rope {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.hero-rope-src { display: none; }
.hero .eyebrow {
  font-family: var(--fun);
  font-size: clamp(1.55rem, 3.4vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--orange); margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  margin-bottom: 14px;
  color: var(--forest);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 55%, rgba(0, 0, 0, 0.07) 100%),
    linear-gradient(180deg, var(--forest), var(--forest));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-card > p:not(.eyebrow) {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--muted); margin: 0 auto 22px;
  max-width: 78ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hero-dots {
  position: absolute; z-index: 4; top: 18px; right: 18px;
  display: flex; gap: 10px;
  padding: 9px 13px; border-radius: 999px;
  background: rgba(43, 35, 32, 0.42);
  backdrop-filter: blur(6px);
}
.hero-dots button {
  width: 11px; height: 11px; padding: 0; border: 2px solid #fff; cursor: pointer;
  background: transparent; border-radius: 50%; transition: background 0.2s, transform 0.2s;
}
.hero-dots button[aria-current="true"] { background: var(--gold); border-color: var(--gold); transform: scale(1.25); }

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(8deg); }
}

/* --------------------------------------------------------------------------
   Home page gradient band (home only)
   Same fuchsia-to-gold as the live 676px hero. Gold is reached by ~40%
   (about the hero height) so yellow starts higher; the rest of the band stays gold.
   -------------------------------------------------------------------------- */
.gradient-band {
  background: linear-gradient(to bottom, #e14fad 0%, #fece14 40%, #fece14 100%);
  padding-top: 16px;
}
.gradient-band .hero {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(43, 35, 32, 0.28);
}
.gradient-band .hero-slides { border-radius: inherit; }

.gradient-band .section .kicker {
  color: var(--blue);
  font-style: italic;
}
.gradient-band .section h2 { color: var(--forest); }
.gradient-band .section .lede { color: var(--forest-dk); }

/* Torn paper edge between sections */
.edge { display: block; width: 100%; height: 42px; margin-bottom: -1px; }
.edge-flip { transform: scaleY(-1); }

.cta-row { margin-top: 28px; }
.cta-row.center { text-align: center; }
.copy-follow { margin-top: 28px; }
.copy-follow-lg { margin-top: 34px; }
.mb-0 { margin-bottom: 0; }
.wrap-narrow.center { text-align: center; }
.wrap-narrow.center .lede { margin-inline: auto; }
.thanks-mark { margin: 0 auto 20px; }
.guest-hint { font-size: 0.88rem; color: var(--muted); margin: 6px 0 0; }

/* --------------------------------------------------------------------------
   Quick bar (hours + tickets) that overlaps the hero
   -------------------------------------------------------------------------- */
.quickbar { position: relative; z-index: 5; margin-top: calc(var(--sign-drop) + 48px); }
.quickbar-inner {
  display: grid; grid-template-columns: 1.5fr auto auto; gap: 16px; align-items: center;
  background: var(--forest);
  border: 3px solid var(--forest-dk);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
}
.quickbar p { margin: 0; color: #fff; font-weight: 600; }
.quickbar .quick-title {
  display: block; font-family: Mont, sans-serif; font-size: 1.2rem; line-height: 1.2;
}
.quickbar .quick-sub { font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: 68px 0; position: relative; }
.section-tight { padding: 44px 0; }
.section-forest { background: var(--forest); color: #fff; }
.section.section-forest h2, .section.section-forest h3 { color: #fff; }
.section-gold { background: var(--gold); color: var(--forest-dk); }
.section-gold h2 { color: var(--forest); }
.section-cream { background: rgba(255, 253, 246, 0.75); }

.kicker {
  display: block;
  font-family: var(--fun);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  line-height: 1.15; letter-spacing: 0.02em;
  color: var(--orange); margin: 0 0 14px;
}
.section-forest .kicker { color: var(--gold); }
.section-gold .kicker { color: var(--crimson); }

.section h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); color: var(--forest); }
.lede { font-size: 1.12rem; max-width: 48rem; }
.section-head { margin-bottom: 34px; }
.section-head.center { text-align: center; }
.section-head.center .kicker { text-align: center; }
.section-head.center .lede { margin-inline: auto; }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card-grid.activities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.card-grid.activities > .card {
  flex: 0 0 calc((100% - 60px) / 4);
  width: calc((100% - 60px) / 4);
}
.party-invite {
  margin-top: 52px;
  padding-top: 44px;
  border-top: 2px solid var(--line);
}
.party-invite .section-head { margin-bottom: 0; }
.party-invite .lede { margin-inline: auto; }

.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); color: inherit; text-decoration: none;
  border: 2px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s;
}
a.card:hover, .card.is-hover {
  transform: translateY(-6px) rotate(-0.5deg);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.card-media { position: relative; overflow: hidden; background: #e6ecdd; }
.card-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.6s var(--ease); }
.card-media img.pos-top { object-position: center 22%; }
.card-media img.icon-art {
  object-fit: contain;
  background: #fff;
  padding: 22px;
}
.activities .card-media:has(.icon-art) {
  background: #eef5e4;
}
.activities .card-media img.icon-art {
  background: transparent;
  padding: 14%;
}
a.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 16px 18px 20px; }
.card h3 { color: var(--blue); font-size: 1.22rem; margin-bottom: 6px; }
.card p { margin: 0; color: var(--muted); }
.section-forest .card p { color: var(--muted); }
.card .tagline {
  display: inline-block; margin-top: 12px;
  font-weight: 700; font-size: 0.9rem; color: var(--orange);
}
.card .tagline::after { content: " \2192"; transition: margin 0.2s; }
a.card:hover .tagline::after { margin-left: 5px; }

/* Badge sitting on a card corner */
.card-media img.card-badge,
.card-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 56px; height: 56px; aspect-ratio: 1 / 1; object-fit: contain;
  border-radius: 50%;
  background: #fff; padding: 4px;
  box-shadow: 0 3px 10px rgba(43, 35, 32, 0.3);
  transition: transform 0.3s var(--ease);
}
a.card:hover .card-badge { transform: rotate(-12deg) scale(1.08); }

/* Season tag */
.chip-season {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--orange); color: #fff;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* --------------------------------------------------------------------------
   Attraction explorer (filters + expanding cards)
   -------------------------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.filter-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 999px; cursor: pointer;
  border: 2px solid var(--line); background: var(--card); color: var(--ink);
  font-weight: 700; font-size: 0.92rem; font-family: inherit;
  transition: all 0.18s var(--ease);
}
.filter-chip:hover { border-color: var(--gold); transform: translateY(-2px); }
.filter-chip[aria-pressed="true"] {
  background: var(--forest); border-color: var(--forest-dk); color: #fff;
  box-shadow: 0 3px 0 var(--forest-dk);
}
.filter-count { font-size: 0.8rem; opacity: 0.7; }

.attraction[hidden] { display: none; }
.attraction { animation: panel-in 0.35s var(--ease); scroll-margin-top: 1rem; }
.attraction-toggle {
  display: block; width: 100%; text-align: left;
  background: none; border: 0; padding: 0; margin: 0;
  font: inherit; color: inherit; cursor: pointer;
}
.attraction-toggle h3 { color: var(--blue); font-size: 1.22rem; margin-bottom: 6px; transition: color 0.18s; }
.attraction-toggle p { margin: 0; color: var(--muted); }
.attraction-toggle:hover h3 { color: var(--orange); }
.attraction:has(.attraction-toggle:hover) {
  transform: translateY(-6px) rotate(-0.5deg);
  border-color: var(--gold); box-shadow: var(--shadow);
}
.attraction-detail {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.36s var(--ease);
}
.attraction.is-open .attraction-detail { grid-template-rows: 1fr; }
.attraction-detail > div { overflow: hidden; }
.attraction-detail ul {
  margin: 12px 0 0; padding: 0 0 0 4px; list-style: none;
  border-top: 2px dashed var(--line); padding-top: 12px;
}
.attraction-detail li {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 0.94rem; color: var(--muted); margin-bottom: 6px;
}
.attraction-detail li::before { content: "\2726"; color: var(--gold-deep); flex: none; }
.attraction .more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-weight: 800; font-size: 0.88rem; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.attraction .more .caret { transition: transform 0.3s var(--ease); }
.attraction.is-open .more .caret { transform: rotate(180deg); }

/* --------------------------------------------------------------------------
   Illustrated park map
   -------------------------------------------------------------------------- */
.map-layout { display: grid; grid-template-columns: 1.45fr 0.55fr; gap: 24px; align-items: start; }
.map-frame {
  position: relative;
  border: 4px solid var(--bark); border-radius: var(--radius);
  background: #eaf3d8; overflow: hidden;
  box-shadow: var(--shadow);
}
.park-map { display: block; width: 100%; height: auto; touch-action: manipulation; }
.park-map .pin { cursor: pointer; transform-box: fill-box; transform-origin: center bottom; }
.park-map .pin-head {
  transition: transform 0.25s var(--ease), filter 0.25s;
  transform-box: fill-box; transform-origin: center bottom;
}
.park-map .pin:hover .pin-head,
.park-map .pin:focus-visible .pin-head { transform: translateY(-6px) scale(1.12); }
.park-map .pin.is-on .pin-head { animation: pin-pop 0.55s var(--ease); }
.park-map .pin.is-on .pin-ring { opacity: 1; }
.park-map .pin-ring {
  opacity: 0; fill: none; stroke: var(--orange); stroke-width: 3;
  transition: opacity 0.2s;
}
.park-map .pin-label {
  font-family: Poppins, sans-serif; font-size: 15px; font-weight: 700;
  fill: var(--bark); pointer-events: none; paint-order: stroke;
  stroke: #ffffff; stroke-width: 4.5px; stroke-linejoin: round;
}
.park-map .pin.is-on .pin-label { fill: var(--orange); }
.park-map .map-title {
  font-family: var(--fun); font-size: 34px; fill: var(--bark); opacity: 0.75;
}
/* Quiet labels for buildings that are scenery rather than pins. */
.park-map .map-note {
  font-family: Poppins, sans-serif; font-size: 12px; font-weight: 600;
  fill: var(--bark); opacity: 0.72; pointer-events: none;
  paint-order: stroke; stroke: #ffffff; stroke-width: 3.5px; stroke-linejoin: round;
}
.park-map .map-entrance {
  font-family: Poppins, sans-serif; font-size: 15px; font-weight: 800;
  letter-spacing: 0.08em; fill: var(--forest); pointer-events: none;
  paint-order: stroke; stroke: #ffffff; stroke-width: 4px; stroke-linejoin: round;
}
.park-map .tractor { transform-box: fill-box; transform-origin: center; }
.map-visited { fill: var(--forest); }

@keyframes pin-pop {
  0% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-14px) scale(1.2); }
  100% { transform: translateY(-6px) scale(1.12); }
}

.map-tools {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  padding: 12px 16px; background: var(--bark);
}
.map-hint { margin: 0; font-size: 0.86rem; color: rgba(255, 253, 246, 0.82); }

.map-panel {
  background: var(--card); color: var(--ink);
  border: 2px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  position: sticky; top: 130px;
}
.map-panel-media { position: relative; }
.map-panel-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.map-panel-media .badge {
  position: absolute; bottom: -22px; left: 16px;
  width: 60px; height: 60px; border-radius: 50%; background: #fff; padding: 4px;
  box-shadow: var(--shadow-sm);
}
.map-panel .card-body { padding: 32px 18px 20px; }
.map-panel h3 { color: var(--blue); margin-bottom: 8px; }
.map-panel p { color: var(--muted); margin: 0 0 14px; }
.map-panel .meta {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px;
}
.meta-tag {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--gold-soft); color: var(--forest-dk);
  padding: 4px 10px; border-radius: 999px;
}
.map-panel .btn { width: 100%; }
.panel-swap { animation: panel-in 0.35s var(--ease); }
@keyframes panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Treasure Hunt (badge collector)
   -------------------------------------------------------------------------- */
.pass-fab {
  position: fixed; left: 18px; bottom: calc(var(--sticky) + 18px); z-index: 70;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 12px; border: 0; cursor: pointer;
  background: var(--forest); color: #fff;
  border-radius: 999px; font-family: Mont, sans-serif; font-size: 0.92rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s var(--ease), background 0.2s;
}
.pass-fab:hover { transform: translateY(-3px) scale(1.03); background: var(--forest-dk); }
.pass-fab.is-bump { animation: bump 0.6s var(--ease); }
.pass-fab .ring {
  width: 34px; height: 34px; flex: none; display: grid; place-items: center;
  border-radius: 50%; background: conic-gradient(var(--gold) var(--pct, 0%), rgba(255,255,255,0.22) 0);
  font-size: 0.72rem; font-weight: 800;
}
.pass-fab .ring span {
  width: 26px; height: 26px; border-radius: 50%; background: var(--forest);
  display: grid; place-items: center;
}
@keyframes bump {
  0%, 100% { transform: none; }
  25% { transform: translateY(-10px) scale(1.1) rotate(-4deg); }
  60% { transform: translateY(0) scale(1.04) rotate(3deg); }
}

.pass-panel {
  position: fixed; left: 18px; bottom: calc(var(--sticky) + 74px); z-index: 71;
  width: min(420px, calc(100vw - 36px));
  background: var(--card); border: 3px solid var(--bark);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform-origin: bottom left;
  animation: pass-in 0.3s var(--ease);
}
.pass-panel[hidden] { display: none; }
@keyframes pass-in {
  from { opacity: 0; transform: scale(0.9) translateY(14px); }
  to { opacity: 1; transform: none; }
}
.pass-head {
  background: var(--forest); color: #fff; padding: 14px 16px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 10px;
}
.pass-head h2 { margin: 0; font-size: 1.1rem; color: #fff; }
.pass-head p { margin: 2px 0 0; font-size: 0.82rem; opacity: 0.85; }
.pass-close {
  background: transparent; border: 0; color: #fff; cursor: pointer;
  font-size: 1.5rem; line-height: 1; padding: 0 2px;
}
.pass-bar { height: 8px; background: rgba(74, 53, 39, 0.12); }
.pass-bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--orange)); transition: width 0.5s var(--ease); }
.pass-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
  padding: 16px; max-height: 46vh; overflow-y: auto; overflow-x: hidden;
}
/* Every stamp collected: the whole sheet gets a slow gold shimmer. */
.pass-grid.is-bonus .stamp.is-earned img {
  box-shadow: 0 0 0 3px var(--gold), 0 0 14px rgba(254, 206, 20, 0.75);
}
.stamp { text-align: center; min-width: 0; }
.stamp img {
  width: 100%; border-radius: 50%;
  filter: grayscale(1) opacity(0.28);
  transition: filter 0.4s var(--ease), transform 0.4s var(--ease);
}
.stamp.is-earned img { filter: none; transform: rotate(-6deg); }
.stamp.is-new img { animation: stamp-in 0.7s var(--ease); }
.stamp small {
  display: block; font-size: 0.56rem; line-height: 1.2; margin-top: 4px;
  letter-spacing: -0.01em; color: var(--muted); overflow-wrap: break-word;
}
.stamp.is-earned small { color: var(--forest); font-weight: 700; }
.toast.is-big { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(254, 206, 20, 0.4), var(--shadow); }

/* ---- Master Explorer finale (all stamps) ---- */
.finale {
  position: fixed; inset: 0; z-index: 120; display: grid; place-items: center;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(43, 35, 32, 0.74), rgba(43, 35, 32, 0.42));
  animation: finale-in 0.45s var(--ease) both;
}
.finale.is-out { animation: finale-out 0.9s var(--ease) both; }
.finale-burst { position: absolute; width: 10px; height: 10px; }
.finale-ray {
  position: absolute; left: 50%; top: 50%; width: 6px; height: 46vmin;
  margin-left: -3px; transform-origin: 50% 0;
  background: linear-gradient(to bottom, rgba(254, 206, 20, 0.95), rgba(254, 206, 20, 0));
  animation: finale-rays 3.4s linear both;
}
.finale-medal {
  position: relative; display: grid; justify-items: center; gap: 6px;
  animation: finale-medal 0.9s var(--ease) both;
}
.finale-medal svg { width: min(38vmin, 220px); height: auto; filter: drop-shadow(0 8px 18px rgba(43, 35, 32, 0.45)); }
.finale-medal strong {
  font-family: var(--fun); font-size: clamp(1.6rem, 5vw, 2.6rem); color: #fffdf6;
  text-shadow: 0 3px 0 var(--bark), 0 0 18px rgba(74, 53, 39, 0.8);
}
.finale-medal span {
  font-weight: 700; letter-spacing: 0.02em; color: var(--gold);
  text-shadow: 0 2px 4px #2b2320, 0 0 12px rgba(43, 35, 32, 0.95);
}

@keyframes finale-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes finale-out { to { opacity: 0; } }
@keyframes finale-rays {
  0% { opacity: 0; transform: rotate(var(--a, 0deg)) scaleY(0.2); }
  18% { opacity: 0.9; }
  100% { opacity: 0; transform: rotate(var(--a, 0deg)) scaleY(1.25); }
}
@keyframes finale-medal {
  0% { transform: scale(2.6) rotate(16deg); opacity: 0; }
  55% { transform: scale(0.9) rotate(-7deg); opacity: 1; }
  100% { transform: scale(1) rotate(-4deg); }
}
@media (prefers-reduced-motion: reduce) {
  .finale, .finale-medal, .finale-ray { animation: none; }
}

@keyframes stamp-in {
  0% { transform: scale(2.4) rotate(20deg); opacity: 0; }
  55% { transform: scale(0.88) rotate(-10deg); opacity: 1; }
  100% { transform: scale(1) rotate(-6deg); }
}
.pass-foot {
  padding: 0 16px 16px; display: flex; align-items: flex-start; justify-content: space-between; gap: 10px;
}
.pass-foot p { margin: 0; font-size: 0.82rem; color: var(--muted); flex: 1; }
.pass-foot p.is-won { color: var(--forest); font-weight: 600; }
.pass-reset {
  background: none; border: 0; cursor: pointer; padding: 4px;
  font: inherit; font-size: 0.8rem; color: var(--muted); text-decoration: underline;
}

.toast {
  position: fixed; left: 50%; bottom: calc(var(--sticky) + 24px); z-index: 90;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 12px;
  background: var(--bark); color: #fff;
  padding: 12px 20px 12px 12px; border-radius: 999px;
  box-shadow: var(--shadow-lg);
  animation: toast-in 0.4s var(--ease);
  max-width: calc(100vw - 32px);
}
.toast[hidden] { display: none; }
.toast img { width: 42px; height: 42px; border-radius: 50%; flex: none; }
.toast strong { display: block; font-family: Mont, sans-serif; font-size: 0.95rem; }
.toast small { opacity: 0.8; font-size: 0.78rem; }
@keyframes toast-in {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%); }
}

.confetti {
  position: fixed; inset: 0; z-index: 95; pointer-events: none;
}
.confetti i {
  position: absolute; width: 10px; height: 16px; border-radius: 2px;
  animation: fall linear forwards;
}
@keyframes fall {
  from { transform: translateY(-10vh) rotate(0deg); opacity: 1; }
  to { transform: translateY(110vh) rotate(720deg); opacity: 0.1; }
}

/* --------------------------------------------------------------------------
   Day planner
   -------------------------------------------------------------------------- */
.planner { display: grid; grid-template-columns: 1fr 0.75fr; gap: 26px; align-items: start; }

.planner-controls { display: flex; flex-wrap: wrap; gap: 18px; margin: 0 0 16px; }
.planner-controls p { margin: 0; display: flex; align-items: center; gap: 9px; font-weight: 600; }
.planner-controls select {
  font: inherit; font-weight: 700;
  padding: 9px 13px; border-radius: 10px;
  border: 2px solid var(--line); background: var(--card); color: var(--ink);
  cursor: pointer;
}
.planner-controls select:hover { border-color: var(--gold); }

/* How much of the open day is already spoken for. */
.budget { margin-bottom: 18px; }
.budget-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; margin-bottom: 7px;
}
.budget-head strong { font-family: Mont, sans-serif; font-size: 1.05rem; color: var(--forest); }
.budget-head span { font-size: 0.86rem; color: var(--muted); font-weight: 600; }
.budget-bar {
  height: 10px; border-radius: 999px; overflow: hidden;
  background: rgba(74, 53, 39, 0.14);
  box-shadow: inset 0 1px 2px rgba(43, 35, 32, 0.18);
}
.budget-bar i {
  display: block; height: 100%; width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--leaf), var(--forest));
  transition: width 0.35s var(--ease), background 0.35s;
}
.budget-bar i.is-tight { background: linear-gradient(90deg, var(--gold-deep), var(--orange)); }

.planner-picks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pick {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  padding: 10px; border-radius: 14px;
  border: 2px solid var(--line); background: var(--card); color: var(--ink);
  font: inherit; font-size: 0.9rem; font-weight: 600; text-align: left;
  transition: all 0.18s var(--ease);
}
.pick img { width: 38px; height: 38px; flex: none; filter: grayscale(0.7) opacity(0.55); transition: filter 0.2s; }
.pick:hover { transform: translateY(-2px); border-color: var(--gold); }
.pick[aria-pressed="true"] {
  border-color: var(--forest); background: #f0f6e9;
  box-shadow: inset 0 0 0 1px var(--forest);
}
.pick[aria-pressed="true"] img { filter: none; }
.pick .mins { display: block; font-size: 0.74rem; font-weight: 500; color: var(--muted); }
.pick.is-full {
  opacity: 0.44; cursor: not-allowed;
  border-style: dashed; transform: none;
}
.pick.is-full:hover { transform: none; border-color: var(--line); }
.pick.is-full .mins {
  color: var(--orange); font-weight: 800;
  font-family: var(--fun); font-size: 1rem;
}

.itinerary {
  background: var(--card); color: var(--ink);
  border: 3px solid var(--bark); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  position: sticky; top: 130px;
}
.itinerary-head {
  background: var(--gold); color: var(--forest-dk); padding: 14px 18px;
  border-bottom: 3px solid var(--bark);
}
.itinerary-head h3 { margin: 0; font-size: 1.15rem; }
.itinerary-head p { margin: 2px 0 0; font-size: 0.85rem; font-weight: 600; }
.itinerary-list { list-style: none; margin: 0; padding: 14px 18px; }
.itinerary-list li {
  display: grid; grid-template-columns: 62px 1fr; gap: 10px;
  padding: 9px 0; border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
  animation: panel-in 0.3s var(--ease);
}
.itinerary-list li:last-child { border-bottom: 0; }
.itinerary-list .time { font-family: Mont, sans-serif; color: var(--orange); font-size: 0.9rem; }
.itinerary-list em { font-style: normal; color: var(--muted); }
.itinerary-end {
  margin: 0; font-size: 0.86rem; color: var(--muted); text-align: center;
}
.itinerary-end[hidden] { display: none; }
.itinerary-end.is-warn { color: var(--orange); font-weight: 700; }
.itinerary-empty { padding: 22px 18px; color: var(--muted); font-size: 0.92rem; margin: 0; }
.itinerary-foot { padding: 0 18px 18px; display: grid; gap: 10px; }
.itinerary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: Mont, sans-serif; font-size: 1.05rem; color: var(--forest);
  border-top: 3px solid var(--gold); padding-top: 12px;
}

/* --------------------------------------------------------------------------
   Story / list burst
   -------------------------------------------------------------------------- */
.story { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 34px; align-items: center; }
.story p { font-size: 1.05rem; }
.checklist { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.checklist li {
  display: flex; align-items: flex-start; gap: 11px;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--gold);
  padding: 11px 15px; border-radius: 0 12px 12px 0;
  transition: transform 0.2s var(--ease), background 0.2s;
}
.checklist li:hover { transform: translateX(6px); background: rgba(255, 255, 255, 0.18); }
.checklist .tick { color: var(--gold); font-weight: 800; flex: none; }

/* --------------------------------------------------------------------------
   Page hero (interior pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--gold);
  padding: 46px 0 40px; text-align: center;
  border-bottom: 4px solid var(--forest-dk);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 30%, rgba(255,255,255,0.5) 0 12px, transparent 13px),
    radial-gradient(circle at 88% 70%, rgba(255,255,255,0.4) 0 18px, transparent 19px),
    radial-gradient(circle at 62% 18%, rgba(255,255,255,0.35) 0 9px, transparent 10px);
  opacity: 0.7;
}
.page-hero .wrap { position: relative; }
.page-hero h1 { color: var(--forest-dk); font-size: clamp(1.9rem, 5vw, 3rem); margin-bottom: 8px; }
.page-hero p {
  margin: 0 auto;
  color: var(--forest-dk); font-weight: 500;
}
.page-hero .cta-row { margin-top: 16px; }

/* --------------------------------------------------------------------------
   Stepper (birthday)
   -------------------------------------------------------------------------- */
.stepper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative; background: var(--card); color: var(--ink);
  border: 2px solid var(--line); border-radius: var(--radius);
  padding: 30px 20px 22px; box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -20px; left: 20px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); color: var(--forest-dk);
  font-family: Mont, sans-serif; font-size: 1.15rem;
  display: grid; place-items: center;
  border: 3px solid var(--card);
  box-shadow: 0 3px 0 var(--gold-deep);
}
.step h3 { color: var(--blue); margin-bottom: 8px; }
.step p { color: var(--muted); }

/* Party calculator */
.calc {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 26px; align-items: start;
  background: var(--card); color: var(--ink);
  border: 3px solid var(--bark); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.calc fieldset { border: 0; margin: 0 0 22px; padding: 0; }
.calc legend {
  font-family: Mont, sans-serif; font-size: 1.02rem; color: var(--forest);
  padding: 0; margin-bottom: 10px;
}
.opt-row { display: grid; gap: 10px; }
.opt {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  border: 2px solid var(--line); border-radius: 14px; padding: 12px 14px;
  transition: all 0.18s var(--ease);
}
.opt:hover { border-color: var(--gold); }
.opt input { accent-color: var(--forest); width: 18px; height: 18px; flex: none; }
.opt:has(input:checked) { border-color: var(--forest); background: #f0f6e9; }
.opt .opt-text { flex: 1; }
.opt .opt-text b { display: block; font-family: Mont, sans-serif; font-weight: 800; }
.opt .opt-text small { color: var(--muted); }
.opt .opt-price { font-family: Mont, sans-serif; color: var(--orange); }
.calc input[type="range"] { width: 100%; accent-color: var(--forest); }
.guest-readout { font-family: Mont, sans-serif; font-size: 1.4rem; color: var(--forest); }

.quote {
  background: var(--forest); color: #fff;
  border-radius: 14px; padding: 22px;
  position: sticky; top: 130px;
}
.quote h3 { color: var(--gold); margin-bottom: 12px; }
.quote-lines { list-style: none; margin: 0 0 14px; padding: 0; }
.quote-lines li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 8px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
  font-size: 0.94rem;
}
.quote-total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: Mont, sans-serif; font-size: 1.5rem; color: var(--gold);
  margin-bottom: 8px;
}
.quote small { display: block; opacity: 0.78; font-size: 0.8rem; margin-bottom: 14px; }
.quote .btn { width: 100%; margin-bottom: 8px; }

.spaces { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.space-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.space-card .card-body > p:last-child { margin-top: 22px; }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mosaic a {
  position: relative; display: block; overflow: hidden;
  border-radius: 14px; border: 3px solid var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}
.mosaic a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mosaic a:nth-child(6) { grid-column: span 2; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform 0.6s var(--ease); }
.mosaic a:nth-child(1) img { aspect-ratio: 1 / 1; }
.mosaic a:hover { transform: translateY(-5px) rotate(-0.7deg); box-shadow: var(--shadow); }
.mosaic a:hover img { transform: scale(1.07); }
.mosaic figcaption, .mosaic .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 14px 12px; color: #fff; font-weight: 600; font-size: 0.88rem;
  background: linear-gradient(transparent, rgba(43, 35, 32, 0.85));
  transform: translateY(6px); opacity: 0; transition: all 0.24s var(--ease);
}
.mosaic a:hover .cap { transform: none; opacity: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(24, 20, 16, 0.95);
  display: grid; grid-template-rows: 1fr auto; place-items: center;
  padding: 60px 20px 24px;
  animation: fade 0.24s ease;
}
.lightbox[hidden] { display: none; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-height: calc(100vh - 150px); max-width: min(100%, 1200px);
  border-radius: 10px; box-shadow: var(--shadow-lg);
}
.lightbox-cap { color: #fff; text-align: center; margin: 14px 0 0; font-weight: 600; }
.lightbox-count { color: rgba(255, 255, 255, 0.55); font-size: 0.85rem; }
.lb-btn {
  position: absolute; background: var(--gold); color: var(--forest-dk);
  border: 0; cursor: pointer; border-radius: 50%;
  width: 48px; height: 48px; display: grid; place-items: center;
  font-size: 1.4rem; box-shadow: var(--shadow);
  transition: transform 0.18s var(--ease), background 0.18s;
}
.lb-btn:hover { transform: scale(1.1); background: var(--orange); color: #fff; }
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 16px; top: 50%; margin-top: -24px; }
.lb-next { right: 16px; top: 50%; margin-top: -24px; }

/* --------------------------------------------------------------------------
   Directions
   -------------------------------------------------------------------------- */
.embed-map { position: relative; margin-top: 28px; padding-bottom: 52%; height: 0; border-radius: var(--radius); overflow: hidden; border: 3px solid var(--bark); }
.embed-cal {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  border: 3px solid var(--bark);
}
.embed-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.routes { display: grid; gap: 14px; margin-top: 28px; }
.route {
  background: rgba(255, 255, 255, 0.09);
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px; overflow: hidden;
}
.route summary {
  cursor: pointer; list-style: none;
  padding: 15px 18px; font-family: Mont, sans-serif; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.route summary::-webkit-details-marker { display: none; }
.route summary::after { content: "+"; font-size: 1.5rem; color: var(--gold); transition: transform 0.25s var(--ease); }
.route[open] summary::after { transform: rotate(45deg); }
.route summary:hover { background: rgba(255, 255, 255, 0.06); }
.route .route-body { padding: 0 18px 18px; }
.route p { margin: 0; }
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 30px; }
.info-cards.follow { margin-top: 34px; }
.info-card {
  background: rgba(255, 255, 255, 0.1); border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px; padding: 18px;
}
.info-card h3 { color: var(--gold); font-size: 1.05rem; margin-bottom: 6px; }
.info-card p { margin: 0; font-size: 0.95rem; }
.section:not(.section-forest) .info-card {
  background: var(--card);
  border-color: var(--line);
  color: var(--ink);
}
.section:not(.section-forest) .info-card h3 { color: var(--blue); }
.section:not(.section-forest) .info-card p { color: var(--muted); }

/* Forms / mailer */
.mailer-wrap {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius); padding: 22px; overflow-x: auto;
}
.mailer-wrap a { color: var(--gold); }
.mailer-wrap input, .mailer-wrap select, .mailer-wrap textarea {
  font-family: inherit; font-size: 1rem;
  padding: 10px 12px; border: 2px solid var(--line); border-radius: 10px;
  background: #fff; color: var(--ink);
}

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--card); border: 2px solid var(--line);
  border-radius: 14px; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 16px 18px;
  font-family: Mont, sans-serif; font-size: 1.02rem; color: var(--blue);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--orange); font-size: 1.5rem; transition: transform 0.25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 18px 18px; color: var(--muted); }
.faq .faq-body p { margin: 0; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--forest);
  color: #fff;
  padding-top: 36px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.15fr 0.95fr;
  gap: 36px 36px;
  align-items: start;
  padding-bottom: 42px;
}
.footer-logo { display: inline-block; }
.footer-logo img {
  width: 240px;
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
}
.footer-social { margin-top: 18px; }
.footer-social svg { color: #1877F2; }
.site-footer .kicker {
  color: var(--gold);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  margin-bottom: 12px;
}
.footer-col p { margin: 0 0 14px; }
.footer-hours { margin: 0 0 18px; font-size: 0.95rem; line-height: 1.55; }
.footer-hours strong { display: block; margin-bottom: 4px; }
.site-footer a:not(.btn) {
  color: var(--gold-soft);
  font-weight: 600;
  text-decoration: none;
}
.site-footer a:not(.btn):hover { color: #fff; text-decoration: underline; }
.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-bottom { background: var(--forest-dk); color: #fff; }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px 24px; padding: 16px 0; flex-wrap: wrap; font-size: 0.88rem;
}
.footer-bottom-inner p {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 6px 18px; margin: 0;
}
.footer-bottom a { color: var(--gold-soft); font-weight: 600; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom img { width: 190px; opacity: 0.9; }

/* --------------------------------------------------------------------------
   Sticky mobile bar
   -------------------------------------------------------------------------- */
.sticky-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 68;
  background: var(--forest-dk); padding: 8px; gap: 8px;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.25);
}
.sticky-bar a {
  flex: 1; display: grid; place-items: center; gap: 2px;
  text-decoration: none; color: #fff; font-weight: 700; font-size: 0.78rem;
  padding: 7px 4px; border-radius: 10px;
}
.sticky-bar a svg { width: 18px; height: 18px; }
.sticky-bar .new-tab-mark { display: none; }

/* --------------------------------------------------------------------------
   Ambience: falling leaves (maple, oak, beech)
   Transform-only animation on two nested elements: the wrapper falls, the leaf
   inside swings. Both stay on the compositor.
   -------------------------------------------------------------------------- */
.leaves { position: fixed; inset: 0; pointer-events: none; z-index: 3; overflow: hidden; }
.leaf {
  position: absolute; top: -14vh;
  animation: leaf-fall var(--dur, 18s) linear infinite;
  animation-delay: var(--delay, 0s);
}
.leaf svg {
  display: block; width: var(--size, 30px); height: auto;
  opacity: 0.72;
  transform-origin: 50% 38%;
  animation: leaf-sway var(--spin, 5s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes leaf-fall {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(var(--drift, 40px), 126vh, 0); }
}
@keyframes leaf-sway {
  0%   { transform: rotate(-26deg) translateX(-22px); }
  50%  { transform: rotate(30deg) translateX(22px); }
  100% { transform: rotate(-26deg) translateX(-22px); }
}

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(22px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal-stagger.is-in > * { opacity: 1; transform: none; }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0.00s; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 0.06s; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 0.12s; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 0.18s; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 0.24s; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 0.30s; }
.reveal-stagger.is-in > *:nth-child(7) { transition-delay: 0.36s; }
.reveal-stagger.is-in > *:nth-child(8) { transition-delay: 0.42s; }
.reveal-stagger.is-in > *:nth-child(9) { transition-delay: 0.48s; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (min-width: 1400px) {
  .card-grid--wide { grid-template-columns: repeat(4, 1fr); }
  .mosaic { grid-template-columns: repeat(5, 1fr); }
  .site-nav a { padding: 0 30px; font-size: 1.14rem; }
  .site-nav a.btn-tickets { padding: 0 36px; }
}
@media (min-width: 1600px) {
  .site-nav a { padding: 0 34px; font-size: 1.18rem; }
  .site-nav a.btn-tickets { padding: 0 40px; }
}

@media (max-width: 1080px) {
  .planner, .calc { grid-template-columns: 1fr; }
  .itinerary, .quote, .map-panel { position: static; }
}

@media (max-width: 1240px) {
  .site-nav a { padding: 0 15px; font-size: 0.94rem; }
  .logo img { width: 250px; margin: -26px 0 -42px; }
}

/* Just above the hamburger breakpoint the seven tabs plus the logo get tight,
   so step both down before they overflow the container. */
@media (max-width: 1100px) {
  .site-nav a { padding: 0 11px; font-size: 0.88rem; }
  .site-nav a.btn-tickets { padding: 0 14px; }
  .logo img { width: 210px; margin: -18px 0 -34px; }
}

@media (max-width: 991px) {
  :root { --header-h: 78px; --header-h-stuck: 68px; }
  .ribbon-inner { display: flex; justify-content: space-between; flex-wrap: wrap; }
  .logo img { width: 176px; margin: -12px 0 -22px; }
  .site-header.is-stuck .logo img { width: 138px; margin: -4px 0 -10px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: block; margin-right: 0;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fffdf8; border-bottom: 4px solid var(--gold);
    box-shadow: var(--shadow);
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }
  .site-nav.open { max-height: 70vh; overflow-y: auto; }
  .site-nav ul {
    flex-direction: column; align-items: stretch;
    padding: 12px 18px 18px; gap: 6px;
    transform: none; margin: 0;
    background: transparent; box-shadow: none;
  }
  .site-nav ul::before { content: none; }
  .site-nav li { display: block; }
  .site-nav li + li { margin-left: 0; }
  .site-nav a,
  .site-nav a:hover,
  .site-nav li:hover > a,
  .site-nav a:active,
  .site-nav a.btn-tickets {
    transform: none; filter: none;
    font-size: 1.05rem; padding: 14px 16px;
    border-radius: 10px; margin: 0;
    background-color: var(--tab-bg);
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 46%, rgba(0, 0, 0, 0.18) 100%);
    box-shadow:
      inset 0 2px 0 var(--tab-top),
      inset 0 -4px 0 var(--tab-edge);
  }
  .site-nav a > span { transform: none; }
  .site-nav a.btn-tickets { padding: 14px 16px; border-radius: 10px; }
  .card-grid, .grid-4, .planner-picks { grid-template-columns: repeat(2, 1fr); }
  .card-grid.activities > .card {
    flex-basis: calc((100% - 20px) / 2);
    width: calc((100% - 20px) / 2);
  }
  .story, .map-layout, .quickbar-inner, .spaces, .stepper, .info-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .mosaic a:nth-child(1), .mosaic a:nth-child(6) { grid-column: span 1; grid-row: auto; }
  :root { --sign-drop: 150px; }
  .hero { padding-top: 26vh; min-height: min(74vh, 600px); }
  .hero-card { width: min(720px, 100%); padding: 40px 42px 42px; }
}

@media (max-width: 767px) {
  :root { --sticky: 62px; }
  .gradient-band { padding-top: 10px; }
  .gradient-band .hero { width: calc(100% - 28px); border-radius: 16px; }
  body { padding-bottom: var(--sticky); }
  .sticky-bar { display: flex; }
  .ribbon-contact { display: none; }
  .ribbon { font-size: 0.8rem; }
  :root { --sign-drop: 160px; }
  .hide-sm { display: none; }
  .hero { min-height: 0; padding-top: calc(30vh + 64px); }
  .hero-card { padding: 32px 28px 34px; --rope-thick: 18px; border-radius: 22px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; }
  .hero h1 { font-size: 1.62rem; }
  .hero .eyebrow { font-size: 1.5rem; margin-bottom: 16px; }
  .hero-card > p { font-size: 0.95rem; line-height: 1.5; margin-bottom: 16px; }
  .hero-actions .btn { padding: 12px 18px; }
  .hero-dots { top: 12px; right: 12px; padding: 7px 10px; }
  .hero-sun { width: 70px; top: 6%; }
  .card-grid, .grid-4, .planner-picks { grid-template-columns: 1fr; }
  .card-grid.activities > .card {
    flex-basis: 100%;
    width: 100%;
  }
  .section { padding: 48px 0; }
  .pass-fab { left: 12px; bottom: calc(var(--sticky) + 12px); padding: 8px 14px 8px 10px; }
  .pass-panel { right: 12px; left: 12px; width: auto; bottom: calc(var(--sticky) + 66px); }
  .pass-grid { grid-template-columns: repeat(4, 1fr); }
  .calc { padding: 18px; }
  .lightbox { padding: 60px 12px 20px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
  .leaves { display: none; }
}

@media print {
  .ribbon, .site-header, .sticky-bar, .pass-fab, .pass-panel, .leaves, .hero-slides, .footer-social { display: none !important; }
  body { background: #fff; padding: 0; }
  .section-forest, .section-gold, .site-footer, .footer-bottom { background: #fff !important; color: #000 !important; }
}

/* Party calculator helper copy */
.calc-note {
  margin: 12px 0 0; padding: 11px 14px;
  background: #f0f6e9; border-left: 4px solid var(--forest);
  border-radius: 0 10px 10px 0; font-size: 0.9rem; color: var(--muted);
}
.calc-warn {
  background: rgba(240, 60, 2, 0.9); color: #fff;
  padding: 10px 14px; border-radius: 10px;
  font-size: 0.88rem; font-weight: 600; margin: 0 0 12px;
}
.calc-warn[hidden] { display: none; }
.quote-lines li span:last-child { font-weight: 700; white-space: nowrap; }
