:root {
  --ink: #060004;
  --paper: #ffffff;
  --gray: #646464;
  --green: #008042;
  --sport-green: #009836;
  --lime: #c2d500;
  --yellow: #ffe500;
  --orange: #e83a1e;
  --red: #e60004;
  --blue: #0b4287;
  --purple: #521985;
  --background: var(--paper);
  --foreground: var(--ink);
  --card: var(--paper);
  --card-foreground: var(--ink);
  --popover: var(--paper);
  --popover-foreground: var(--ink);
  --primary: var(--green);
  --primary-foreground: var(--paper);
  --secondary: #f3f3f3;
  --secondary-foreground: var(--ink);
  --muted: #ededed;
  --muted-foreground: var(--gray);
  --accent: var(--lime);
  --accent-foreground: var(--ink);
  --destructive: var(--red);
  --border: #d9d9d9;
  --input: #d9d9d9;
  --ring: var(--green);
  --radius: 0;
}

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

body,
h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  scrollbar-width: thin;
  scrollbar-gutter: stable;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "InterVariable", "Inter", "Arial Greek", Arial, sans-serif;
  font-feature-settings: "liga" 1, "calt" 1;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.admin-bar .site-header {
  top: 50px;
}

body.admin-bar .site-header.is-scrolled {
  top: 40px;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 100000;
  padding: 0.8rem 1rem;
  transform: translateY(-130%);
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

.park-live-board {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  height: 38px;
  padding: 0 clamp(1rem, 3vw, 3.5rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 2rem);
  overflow: hidden;
  background: #0d0d0d;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 26px rgba(6, 0, 4, 0.25);
}

.live-board-label,
.live-board-count {
  position: relative;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.live-board-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--lime);
}

.live-board-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(230, 0, 4, 0.14);
  animation: live-board-pulse 1.8s ease-in-out infinite;
}

.live-board-window {
  position: relative;
  min-width: 0;
  height: 30px;
  overflow: hidden;
  perspective: 700px;
  background: repeating-linear-gradient(90deg, transparent 0 13px, rgba(255, 255, 255, 0.025) 13px 14px);
}

.live-board-window::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.live-board-item {
  height: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  transform-origin: center;
  animation: live-board-flip 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.live-board-item strong {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-board-item:hover strong,
.live-board-item:focus-visible strong {
  color: var(--lime);
}

.live-board-count {
  color: rgba(255, 255, 255, 0.38);
  font-variant-numeric: tabular-nums;
}

@keyframes live-board-flip {
  0% { opacity: 0; transform: rotateX(-72deg) translateY(10px); filter: blur(5px); }
  58% { opacity: 1; transform: rotateX(8deg) translateY(0); filter: blur(0); }
  100% { opacity: 1; transform: rotateX(0); }
}

@keyframes live-board-pulse {
  50% { opacity: 0.45; box-shadow: 0 0 0 2px rgba(230, 0, 4, 0.08); }
}

.park-live-board + .site-header {
  top: 52px;
}

.park-live-board + .site-header.is-scrolled {
  top: 45px;
}

.park-live-board ~ main .hero {
  padding-top: 182px;
}

body.admin-bar .park-live-board {
  top: 32px;
}

body.admin-bar .park-live-board + .site-header {
  top: 84px;
}

body.admin-bar .park-live-board + .site-header.is-scrolled {
  top: 77px;
}

.site-header {
  position: fixed;
  top: 18px;
  right: 18px;
  left: 18px;
  z-index: 50;
  height: 76px;
  padding: 0 clamp(1rem, 2.4vw, 2.2rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  background: rgba(6, 0, 4, 0.74);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(6, 0, 4, 0.2);
  backdrop-filter: blur(22px) saturate(135%);
  transition:
    top 300ms cubic-bezier(0.2, 0.8, 0.2, 1),
    height 300ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.site-header.is-scrolled {
  top: 9px;
  height: 68px;
  background: rgba(6, 0, 4, 0.94);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 60px rgba(6, 0, 4, 0.36);
}

.header-spectrum {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  pointer-events: none;
}

.header-spectrum i:nth-child(1) { background: var(--purple); }
.header-spectrum i:nth-child(2) { background: var(--blue); }
.header-spectrum i:nth-child(3) { background: var(--sport-green); }
.header-spectrum i:nth-child(4) { background: var(--lime); }
.header-spectrum i:nth-child(5) { background: var(--yellow); }
.header-spectrum i:nth-child(6) { background: var(--red); }

.header-spectrum i {
  transform-origin: left;
  animation: spectrum-in 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.header-spectrum i:nth-child(2) { animation-delay: 70ms; }
.header-spectrum i:nth-child(3) { animation-delay: 140ms; }
.header-spectrum i:nth-child(4) { animation-delay: 210ms; }
.header-spectrum i:nth-child(5) { animation-delay: 280ms; }
.header-spectrum i:nth-child(6) { animation-delay: 350ms; }

@keyframes spectrum-in {
  from { scale: 0 1; }
}

.brand {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  width: max-content;
  min-width: 0;
  padding: 9px 0 10px;
}

.brand img {
  display: block;
  width: auto;
  height: 46px;
  max-width: min(210px, 28vw);
  object-fit: contain;
  transition: height 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.site-header.is-scrolled .brand img {
  height: 40px;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-switch {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 0.71rem;
  font-weight: 800;
}

.language-switch span.active {
  color: var(--paper);
}

.language-switch i {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.28);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(1.15rem, 2.2vw, 2.5rem);
  padding: 0.72rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.site-header nav a {
  position: relative;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 2px;
  background: var(--lime);
  transition: right 180ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.78rem 1rem;
  border: 1px solid var(--lime);
  border-radius: 10px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--paper);
  border-color: var(--paper);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  padding: 148px clamp(1.25rem, 6vw, 7rem) 76px;
  display: flex;
  align-items: center;
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: translate3d(0, var(--hero-shift, 0), 0);
  scale: 1.12;
  will-change: transform, scale;
  animation: hero-breathe 16s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 0, 4, 0.88) 0%, rgba(6, 0, 4, 0.56) 47%, rgba(6, 0, 4, 0.14) 78%),
    linear-gradient(0deg, rgba(6, 0, 4, 0.78) 0%, transparent 52%);
}

@keyframes hero-breathe {
  to { scale: 1.16; }
}

.hero-track {
  position: absolute;
  top: 0;
  right: 5.5%;
  height: 76%;
  width: 22%;
  opacity: 0.35;
  transform: skewX(-12deg);
  pointer-events: none;
}

.hero-track span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.92), transparent);
}

.hero-track span:nth-child(1) { left: 0; }
.hero-track span:nth-child(2) { left: 50%; }
.hero-track span:nth-child(3) { right: 0; }

.hero-content {
  width: min(900px, 78vw);
  padding-top: 2rem;
}

.eyebrow {
  margin: 0 0 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow.dark {
  color: var(--green);
}

.hero h1 {
  margin: 0;
  max-width: 1000px;
  font-size: clamp(4.2rem, 10.5vw, 10.4rem);
  line-height: 0.79;
  letter-spacing: -0.075em;
  font-weight: 800;
}

.hero h1 span {
  color: var(--lime);
}

.hero-copy {
  max-width: 690px;
  margin: 2.2rem 0 0;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.85rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

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

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--lime);
}

.text-link,
.story-copy a,
.weather-plan > a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.hero-live {
  position: absolute;
  right: clamp(1.25rem, 4vw, 5rem);
  bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.2rem;
  background: rgba(6, 0, 4, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
}

.live-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(194, 213, 0, 0.18);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 12px rgba(194, 213, 0, 0); }
}

.hero-live div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-live small,
.weather-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  font-weight: 800;
}

.hero-live strong {
  font-size: 0.88rem;
}

.right-now {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.right-now-title {
  padding: clamp(2rem, 4vw, 4rem);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.right-now-title > span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.right-now-title h2 {
  max-width: 520px;
  margin: 1rem 0 0;
  font-size: clamp(2rem, 3.7vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.right-now-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.right-now-items a {
  min-height: 210px;
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 220ms ease, color 220ms ease;
}

.right-now-items a:last-child {
  border-right: 0;
}

.right-now-items a > svg {
  color: var(--lime);
}

.right-now-items a span {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.right-now-items strong {
  font-size: 1rem;
}

.right-now-items small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  line-height: 1.45;
}

.right-now-items a:hover,
.right-now-items a:focus-visible {
  background: var(--lime);
  color: var(--ink);
}

.right-now-items a:hover > svg,
.right-now-items a:focus-visible > svg,
.right-now-items a:hover small,
.right-now-items a:focus-visible small {
  color: var(--ink);
}

.weather {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  color: var(--ink);
}

.weather-now,
.weather-plan {
  min-height: 410px;
  padding: clamp(2rem, 4vw, 4.8rem);
}

.weather-now {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--yellow);
}

.weather-reading {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.weather-reading strong {
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.76;
  letter-spacing: -0.08em;
}

.weather-reading.small {
  font-size: 1.3rem;
  font-weight: 800;
}

.weather-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.4rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.weather-loading {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin: auto 0;
  font-weight: 800;
}

.spin {
  animation: spin 0.9s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.weather-plan {
  position: relative;
  overflow: hidden;
  background: var(--lime);
}

.weather-plan::after {
  content: "";
  position: absolute;
  width: min(38vw, 510px);
  aspect-ratio: 1;
  right: -13%;
  bottom: -70%;
  border: clamp(28px, 5vw, 72px) solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  pointer-events: none;
}

.weather-plan h2 {
  position: relative;
  z-index: 1;
  max-width: 790px;
  margin: 1.1rem 0 0.65rem;
  font-size: clamp(2.4rem, 5vw, 5.3rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.weather-plan p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.weather-picks {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.55rem 0;
}

.weather-picks span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 700;
}

.weather-plan > a {
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
}

.section {
  padding: clamp(5rem, 9vw, 10rem) clamp(1.25rem, 5vw, 6rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.7fr);
  gap: 5rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.section-heading.compact {
  margin-bottom: 3.5rem;
}

.section-heading h2,
.planner-intro h2,
.visit-intro h2 {
  margin: 0;
  font-size: clamp(3rem, 7.2vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.section-heading > p {
  margin: 0;
  max-width: 470px;
  color: #4f4f4f;
  font-size: 1.05rem;
  line-height: 1.7;
}

.zone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.zone-card {
  position: relative;
  min-height: 310px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  overflow: hidden;
  transition: color 180ms ease;
}

.zone-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: var(--zone);
  transition: height 230ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.zone-card:hover::before {
  height: 100%;
}

.zone-card:hover {
  color: var(--ink);
}

.zone-top,
.zone-card > div,
.zone-arrow {
  position: relative;
  z-index: 1;
}

.zone-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 800;
}

.zone-card h3 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.zone-card p {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  font-weight: 700;
}

.zone-arrow {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
}

.planner {
  padding: clamp(5rem, 8vw, 9rem) clamp(1.25rem, 5vw, 6rem);
  background: var(--ink);
  color: var(--paper);
}

.planner-intro {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.planner-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1rem;
  color: var(--lime);
}

.planner-intro h2 {
  max-width: 990px;
}

.planner-intro > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.7;
}

.planner-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.planner-controls {
  padding: clamp(1.5rem, 4vw, 4rem);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.planner-controls fieldset {
  margin: 0 0 2.5rem;
  padding: 0;
  border: 0;
}

.planner-controls fieldset:last-child {
  margin-bottom: 0;
}

.planner-controls legend {
  margin-bottom: 1rem;
  font-size: 0.77rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 800;
}

.availability-note {
  margin: 2rem 0 0;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  line-height: 1.5;
}

.availability-note span {
  width: 8px;
  height: 8px;
  margin-top: 0.28rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(194, 213, 0, 0.12);
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.choice-row button {
  min-height: 48px;
  padding: 0.75rem 1rem;
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.audience-row button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.choice-row button:hover,
.choice-row button:focus-visible,
.choice-row button.active {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.plan-result {
  padding: clamp(1.5rem, 4vw, 4rem);
  background: #111;
}

.plan-result-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.plan-result-head strong {
  color: var(--lime);
}

.timeline {
  display: flex;
  flex-direction: column;
}

.timeline article {
  display: grid;
  grid-template-columns: 64px 48px 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 108px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.timeline time {
  font-size: 0.76rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.58);
}

.timeline-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--item);
  color: var(--ink);
}

.timeline-item.zone-cinema .timeline-icon { background: var(--purple); }
.timeline-item.zone-play .timeline-icon { background: var(--yellow); }
.timeline-item.zone-sport .timeline-icon,
.timeline-item.zone-sports .timeline-icon { background: var(--sport-green); }
.timeline-item.zone-food .timeline-icon { background: var(--orange); }
.timeline-item.zone-style .timeline-icon { background: var(--blue); }
.timeline-item.zone-services .timeline-icon { background: var(--lime); }

.plan-empty {
  margin: 2rem 0;
  color: rgba(255, 255, 255, 0.62);
}

.timeline h3 {
  margin: 0;
  font-size: 1.08rem;
}

.timeline p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
}

.plan-action {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.plan-action:hover,
.plan-action:focus-visible {
  background: var(--lime);
}

.plan-action.is-saved {
  background: var(--lime);
}

.feature-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
}

.story-card {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.5rem, 4vw, 4.5rem);
  overflow: hidden;
  color: var(--paper);
}

.story-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: scale 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.story-card:hover > img {
  scale: 1.045;
}

.story-event > img {
  object-position: center;
}

.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 0, 4, 0.94), rgba(6, 0, 4, 0.05) 70%);
}

.story-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.story-tag {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.65rem;
  margin-bottom: 1rem;
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.story-tag.purple { background: var(--purple); }
.story-tag.red { background: var(--red); }

.story-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  line-height: 0.91;
  letter-spacing: -0.065em;
}

.story-copy p {
  max-width: 520px;
  margin: 1.1rem 0 1.3rem;
  color: rgba(255, 255, 255, 0.74);
}

.event-stage {
  padding: clamp(5rem, 8vw, 9rem) 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.event-stage-head {
  padding: 0 clamp(1.25rem, 5vw, 6rem);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(290px, 0.7fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
}

.event-stage-head h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.event-stage-controls > p {
  max-width: 460px;
  margin: 0 0 1.6rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

.event-stage-controls > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.event-stage-controls button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.event-stage-controls button:hover,
.event-stage-controls button:focus-visible {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.event-stage-controls span {
  min-width: 76px;
  text-align: center;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.event-stage-controls strong {
  color: var(--paper);
  font-size: 1rem;
}

.event-track {
  margin-top: clamp(3rem, 6vw, 6rem);
  padding: 0 clamp(1.25rem, 5vw, 6rem);
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: clamp(1.25rem, 5vw, 6rem);
}

.event-card {
  position: relative;
  flex: 0 0 min(1180px, 76vw);
  min-height: 680px;
  padding: clamp(2rem, 5vw, 5rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  scroll-snap-align: start;
  isolation: isolate;
}

.event-track.single-event .event-card {
  flex-basis: calc(100vw - clamp(2.5rem, 10vw, 12rem));
}

.event-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  object-fit: cover;
  transition: scale 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.event-card:hover > img {
  scale: 1.035;
}

.event-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 9px;
  z-index: 2;
  background: var(--event-accent);
}

.event-card-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 0, 4, 0.9), rgba(6, 0, 4, 0.3) 70%),
    linear-gradient(0deg, rgba(6, 0, 4, 0.9), transparent 68%);
}

.event-card-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.event-card-copy {
  max-width: 820px;
}

.event-card-copy > span {
  width: max-content;
  padding: 0.55rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--event-accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.event-card-copy h3 {
  margin: 1.3rem 0 0;
  font-size: clamp(3rem, 6.5vw, 7.2rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.event-card-copy p {
  max-width: 620px;
  margin: 1.3rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.event-card-copy a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid var(--paper);
  font-weight: 800;
}

.event-progress {
  height: 2px;
  margin: 2rem clamp(1.25rem, 5vw, 6rem) 0;
  background: rgba(255, 255, 255, 0.16);
}

.event-progress span {
  display: block;
  height: 100%;
  background: var(--lime);
  transition: width 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.events-strip {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 110px;
  align-items: stretch;
  min-height: 250px;
  background: var(--red);
  color: var(--paper);
}

.events-label {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.event-line {
  padding: clamp(2rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 260px;
  align-items: center;
  gap: 2rem;
}

.event-line > span {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.event-line h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.event-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.round-link {
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 150ms ease, color 150ms ease;
}

.round-link:hover,
.round-link:focus-visible {
  background: var(--paper);
  color: var(--red);
}

.directory {
  background: #f0f0f0;
}

.directory-filters {
  margin: -2rem 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.directory-filters button {
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
}

.directory-filters button:hover,
.directory-filters button:focus-visible,
.directory-filters button.active {
  background: var(--ink);
  color: var(--paper);
}

.venue-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.venue {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 58px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-size: clamp(0.85rem, 1.4vw, 1.2rem);
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.venue:hover {
  transform: translateY(-4px);
}

.venue-1:hover { background: var(--purple); color: var(--paper); }
.venue-2:hover { background: var(--yellow); }
.venue-3:hover { background: var(--blue); color: var(--paper); }
.venue-4:hover { background: var(--lime); }
.venue-5:hover { background: var(--sport-green); color: var(--paper); }
.venue-6:hover { background: var(--orange); color: var(--paper); }

.venue-coming-soon {
  background: var(--ink);
  color: var(--paper);
}

.venue-coming-soon small {
  padding: 0.35rem 0.48rem;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.58rem;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.venue-coming-soon:hover {
  background: var(--ink);
  color: var(--paper);
}

.venue[hidden] {
  display: none;
}

.venue.status-coming_soon,
.venue.status-seasonal_pause,
.venue.status-temporarily_unavailable {
  background: var(--ink);
  color: var(--paper);
}

.venue small {
  padding: 0.35rem 0.48rem;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.58rem;
  line-height: 1;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.park-map {
  margin-top: clamp(4rem, 8vw, 8rem);
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  background: var(--paper);
  border: 1px solid var(--ink);
}

.park-map-heading {
  padding: clamp(2rem, 4vw, 4rem);
  border-right: 1px solid var(--ink);
}

.park-map-heading h3 {
  margin: 0;
  font-size: clamp(2.3rem, 4.8vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.park-map-canvas {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #e5e5e5;
}

.park-map-canvas > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: contain;
}

.park-map-pin {
  position: absolute;
  width: 22px;
  height: 22px;
  padding: 0;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  cursor: pointer;
  box-shadow: 0 0 0 7px rgba(230, 0, 4, 0.2);
}

.park-map-pin span {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--paper);
}

.park-map-pin em {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  width: max-content;
  max-width: 180px;
  padding: 0.45rem 0.6rem;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease;
}

.park-map-pin:hover em,
.park-map-pin:focus-visible em {
  opacity: 1;
}

.park-map-detail {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(360px, calc(100% - 2rem));
  padding: 1.2rem;
  background: rgba(6, 0, 4, 0.92);
  color: var(--paper);
  backdrop-filter: blur(14px);
}

.park-map-detail p {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

.visit {
  background: var(--green);
  color: var(--paper);
}

.visit-intro {
  padding: clamp(3.5rem, 6vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  grid-template-rows: auto auto auto auto;
  column-gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.visit-intro > .eyebrow {
  grid-column: 1 / -1;
}

.visit-intro h2 {
  grid-column: 1;
  max-width: 720px;
}

.visit-intro > p:not(.eyebrow) {
  grid-column: 1;
  max-width: 610px;
  margin: 1.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.7;
}

.visit-intro > .button {
  grid-column: 1;
  width: max-content;
}

.inclusive-card {
  grid-column: 2;
  grid-row: 2 / 5;
  width: 100%;
  max-width: none;
  min-height: 100%;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(6, 0, 4, 0.1);
}

.inclusive-card > div {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
  color: var(--lime);
}

.inclusive-card h3 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.035em;
}

.inclusive-card p {
  margin: 0.55rem 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.inclusive-card small {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.69rem;
  line-height: 1.45;
}

.visit-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.visit-options article {
  position: relative;
  min-height: 390px;
  padding: clamp(1.5rem, 2.6vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 0;
}

.visit-options article:last-child {
  border-right: 0;
}

.visit-options article > svg {
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.visit-options article > span {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.visit-options h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.visit-options p {
  margin: 0.8rem 0 0;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.visit-options article > a {
  width: max-content;
  margin-top: 1.15rem;
  padding-bottom: 0.22rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 800;
}

.site-footer {
  padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 5vw, 6rem) 1.5rem;
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr 0.8fr 0.7fr 1.65fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}

.footer-brand img {
  width: min(180px, 100%);
  max-height: 150px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  margin: 1.8rem 0 0;
  color: var(--lime);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.footer-column h2,
.spotify-card h2 {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column > a,
.social-links a {
  width: max-content;
  max-width: 100%;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 650;
  transition: color 150ms ease;
}

.footer-column > a:hover,
.footer-column > a:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
  color: var(--lime);
}

.spotify-card {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #111;
}

.spotify-card > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.spotify-card > div > svg {
  color: var(--lime);
}

.spotify-card h2 {
  margin-bottom: 0.45rem;
  color: var(--paper);
}

.spotify-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
  line-height: 1.5;
}

.spotify-card iframe {
  display: block;
  border: 0;
  border-radius: 12px;
}

.footer-bottom {
  margin-top: 5rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
}

.studio-credit {
  text-align: center;
}

.studio-credit a {
  color: var(--paper);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-underline-offset: 4px;
  transition: color 150ms ease;
}

.studio-credit a:hover,
.studio-credit a:focus-visible {
  color: var(--lime);
}

.footer-bottom button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-weight: 800;
}

.footer-bottom > a {
  color: var(--paper);
  font-weight: 800;
}

.weather-loader {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(6, 0, 4, 0.2);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.park-standard-page {
  min-height: 70vh;
  padding: 160px clamp(1.25rem, 5vw, 6rem) 8rem;
}

.park-standard-inner {
  width: min(1050px, 100%);
  margin: 0 auto;
}

.park-entry {
  padding: 3rem 0;
  border-bottom: 1px solid var(--ink);
}

.park-entry h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.park-entry-image {
  margin: 3rem 0;
}

.park-entry-content {
  max-width: 760px;
  margin-top: 2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

/* The page reveals itself as a sequence of scenes once JavaScript is ready. */
.cinematic-ready [data-reveal] {
  opacity: 0;
  transition:
    opacity 780ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 920ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 1100ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}

.cinematic-ready [data-reveal="up"] {
  transform: translate3d(0, 56px, 0);
}

.cinematic-ready [data-reveal="hero"] {
  transform: translate3d(0, 34px, 0) scale(0.985);
}

.cinematic-ready [data-reveal="split"] {
  transform: translate3d(0, 42px, 0) scale(0.985);
  clip-path: inset(0 50% 0 50%);
}

.cinematic-ready [data-reveal="clip-left"] {
  transform: translate3d(-34px, 0, 0) scale(1.025);
  clip-path: inset(0 100% 0 0);
}

.cinematic-ready [data-reveal="clip-right"] {
  transform: translate3d(34px, 0, 0) scale(1.025);
  clip-path: inset(0 0 0 100%);
}

.cinematic-ready [data-reveal="event"] {
  transform: scale(0.975);
  clip-path: inset(7% 0 7% 0);
}

.cinematic-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0);
}

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

  .cinematic-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero-content {
    width: 90vw;
  }

  .right-now {
    grid-template-columns: 1fr;
  }

  .right-now-title {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .zone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .planner-intro,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .planner-panel {
    grid-template-columns: 1fr;
  }

  .planner-controls {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .event-line {
    grid-template-columns: 100px 1fr;
  }

  .event-line p {
    grid-column: 2;
  }

  .event-stage-head {
    grid-template-columns: 1fr;
  }

  .park-map {
    grid-template-columns: 1fr;
  }

  .park-map-heading {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .visit-intro {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .visit-intro > .eyebrow,
  .visit-intro h2,
  .visit-intro > p:not(.eyebrow),
  .visit-intro > .button,
  .inclusive-card {
    grid-column: 1;
    grid-row: auto;
  }

  .inclusive-card {
    min-height: 0;
    margin-top: 3rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spotify-card {
    grid-column: 1 / -1;
  }
}

@media (min-width: 761px) and (max-width: 782px) {
  body.admin-bar .park-live-board {
    top: 46px;
  }

  body.admin-bar .park-live-board + .site-header {
    top: 98px;
  }

  body.admin-bar .park-live-board + .site-header.is-scrolled {
    top: 91px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 108px;
  }

  .park-live-board {
    height: 34px;
    padding-inline: 0.75rem;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.65rem;
  }

  .live-board-label {
    font-size: 0.58rem;
  }

  .live-board-label i {
    width: 6px;
    height: 6px;
  }

  .live-board-window {
    height: 27px;
  }

  .live-board-item {
    justify-content: flex-start;
    gap: 0.45rem;
  }

  .live-board-item strong {
    font-size: 0.69rem;
  }

  .live-board-count {
    display: none;
  }

  .site-header {
    top: 8px;
    right: 8px;
    left: 8px;
    height: 64px;
    padding-inline: 0.8rem;
    gap: 0.75rem;
    border-radius: 14px;
  }

  .site-header.is-scrolled {
    top: 6px;
    height: 60px;
  }

  .park-live-board + .site-header {
    top: 42px;
  }

  .park-live-board + .site-header.is-scrolled {
    top: 39px;
  }

  body.admin-bar .site-header,
  body.admin-bar .site-header.is-scrolled {
    top: 54px;
  }

  body.admin-bar .park-live-board {
    top: 46px;
  }

  body.admin-bar .park-live-board + .site-header,
  body.admin-bar .park-live-board + .site-header.is-scrolled {
    top: 88px;
  }

  .brand img {
    width: auto;
    height: 36px;
    max-width: 132px;
  }

  .site-header.is-scrolled .brand img {
    height: 33px;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .language-switch {
    min-height: 38px;
    padding-inline: 0.5rem;
  }

  .header-cta {
    width: 40px;
    min-height: 40px;
    padding: 0;
    gap: 0;
    font-size: 0;
  }

  .hero {
    min-height: 760px;
    padding: 125px 1.25rem 105px;
    align-items: flex-start;
  }

  .park-live-board ~ main .hero {
    padding-top: 155px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 0, 4, 0.82), rgba(6, 0, 4, 0.28)),
      linear-gradient(0deg, rgba(6, 0, 4, 0.9), transparent 62%);
  }

  .hero h1 {
    font-size: clamp(3.8rem, 20vw, 6rem);
    line-height: 0.82;
  }

  html[lang="en"] .hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-content {
    width: 100%;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.1rem;
  }

  .hero-live {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
  }

  .right-now-title {
    padding: 2rem 1.25rem;
  }

  .right-now-items {
    grid-template-columns: 1fr;
  }

  .right-now-items a {
    min-height: 145px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .right-now-items a:last-child {
    border-bottom: 0;
  }

  .weather {
    grid-template-columns: 1fr;
  }

  .weather-now,
  .weather-plan {
    min-height: 300px;
    padding: 2rem 1.25rem;
  }

  .weather-reading strong {
    font-size: 6rem;
  }

  .section {
    padding: 5rem 1.25rem;
  }

  .section-heading h2,
  .planner-intro h2,
  .visit-intro h2 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .zone-grid {
    grid-template-columns: 1fr;
  }

  .zone-card {
    min-height: 240px;
  }

  .planner {
    padding: 5rem 1.25rem;
  }

  .audience-row button {
    flex: 1 1 calc(50% - 0.5rem);
    justify-content: center;
  }

  .timeline article {
    grid-template-columns: 50px 42px 1fr;
    gap: 0.7rem;
  }

  .feature-story {
    grid-template-columns: 1fr;
  }

  .event-stage-head {
    padding-inline: 1.25rem;
  }

  .event-stage-head h2 {
    font-size: clamp(3.2rem, 14vw, 5.2rem);
  }

  .event-track {
    padding-inline: 1.25rem;
    scroll-padding-inline: 1.25rem;
  }

  .event-card {
    flex-basis: 88vw;
    min-height: 570px;
    padding: 2rem 1.5rem;
  }

  .event-card-copy h3 {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  .event-card-copy p {
    font-size: 0.9rem;
  }

  .event-progress {
    margin-inline: 1.25rem;
  }

  .park-map-canvas {
    min-height: 390px;
  }

  .story-card {
    min-height: 560px;
    padding: 2rem 1.25rem;
  }

  .events-strip {
    grid-template-columns: 1fr 76px;
  }

  .events-label {
    grid-column: 1 / -1;
    min-height: 80px;
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .event-line {
    padding: 2rem 1.25rem;
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .event-line p {
    grid-column: 1;
  }

  .visit-intro {
    padding: 5rem 1.25rem;
  }

  .visit-options {
    grid-template-columns: 1fr;
  }

  .visit-options article,
  .visit-options article:last-child {
    grid-column: 1;
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .visit-options article:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .spotify-card {
    grid-column: 1;
  }

  .footer-bottom {
    margin-top: 3.5rem;
    flex-direction: column;
  }
}

/* 1.2: functional destinations and accessible news rotation. */
.the-park-theme [hidden] { display: none !important; }
a.zone-card { color: var(--ink); text-decoration: none; }
a.zone-card:focus-visible { outline: 3px solid var(--ink); outline-offset: -5px; }
a.zone-card:focus-visible::before { height: 100%; }
.live-board-controls { display: flex; align-items: center; gap: .5rem; }
.live-board-controls button { width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #555; padding: 0; background: #171717; color: #fff; cursor: pointer; font-size: 14px; }
.live-board-controls button svg { width: 17px; height: 17px; }
.live-board-controls button:hover, .live-board-controls button:focus-visible { border-color: var(--lime); outline: 2px solid var(--lime); outline-offset: 1px; }
.live-board-label { text-decoration: none; font-size: 12px; }
.live-board-item strong { font-size: 14px; }
.timeline-item h3 a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.timeline-item h3 a:hover, .timeline-item h3 a:focus-visible { color: var(--lime); }
.plan-action:disabled { opacity: .6; cursor: default; }
.park-hub { min-height: 75vh; padding: 155px clamp(1.25rem,5vw,6rem) 6rem; background: var(--paper); color: var(--ink); }
.park-live-board ~ .park-hub, .park-live-board ~ .park-standard-page { padding-top: 185px; }
.park-hub-inner { max-width: 1360px; margin-inline: auto; }
.park-back { display: inline-flex; align-items: center; gap: .65rem; margin-bottom: 2.8rem; font-size: 1rem; font-weight: 700; text-decoration: none; }
.park-back:hover { text-decoration: underline; text-underline-offset: 5px; }
.park-hub-heading { max-width: 1050px; margin-bottom: 2.4rem; }
.park-hub-heading h1 { font-size: clamp(2.6rem,7.5vw,6rem); line-height: 1.05; letter-spacing: -.045em; margin: 0 0 1.4rem; overflow-wrap: anywhere; }
.park-hub-heading h1 > span { color: var(--hub-accent, var(--green)); }
.park-hub-heading > p:not(.eyebrow) { font-size: clamp(1rem,1.5vw,1.25rem); line-height: 1.7; max-width: 780px; color: #444; }
.park-zone-nav { display: flex; flex-wrap: wrap; gap: .65rem; padding: 0 0 2rem; margin-bottom: 1.25rem; border-bottom: 1px solid #ddd; }
.park-zone-nav a { display: inline-flex; min-height: 44px; padding: .65rem 1.05rem; align-items: center; border: 1px solid #c8c8c8; font-size: 1rem; font-weight: 650; text-decoration: none; }
.park-zone-nav a[aria-current], .park-zone-nav a:hover { color: #fff; background: var(--ink); border-color: var(--ink); }
.park-list-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.25rem; }
.park-list-card { display: flex; flex-direction: column; padding: 1.6rem; min-height: 285px; border: 1px solid #d6d6d6; border-top: 6px solid var(--entry-accent,var(--green)); background: #fff; color: var(--ink); text-decoration: none; transition: border-color .15s, transform .15s; }
.park-list-card:hover { border-color: var(--entry-accent,var(--green)); transform: translateY(-3px); }
.park-list-card img { width: 100%; height: 180px; object-fit: cover; margin-bottom: 1.3rem; }
.park-list-card-top, .park-list-card-end { display: flex; justify-content: space-between; align-items: center; gap: .7rem; font-size: .875rem; font-weight: 700; }
.park-list-card-top { margin-bottom: 2rem; }
.park-list-card h2 { font-size: clamp(1.45rem,2.2vw,2rem); line-height: 1.2; letter-spacing: -.03em; margin: 0 0 .85rem; }
.park-list-card p { font-size: 1rem; line-height: 1.65; color: #4a4a4a; margin: 0 0 1.5rem; }
.park-list-card-end { margin-top: auto; padding-top: 1rem; border-top: 1px solid #e5e5e5; }
.park-button { background: var(--ink); color: #fff; font-size: 1rem; min-height: 48px; padding: 1rem 1.3rem; display: inline-flex; gap: 1rem; align-items: center; justify-content: center; border: 1px solid var(--ink); text-decoration: none; }
.park-button:hover { background: #292329; color: #fff; }
.park-button-outline { background: transparent; color: var(--ink); }
.park-empty { padding: clamp(1.5rem,4vw,4rem); background: #f5f5f5; }
.park-empty h2, .park-hub-visit h2, .park-related > h2 { font-size: clamp(1.65rem,3vw,2.8rem); line-height: 1.2; letter-spacing: -.035em; margin: 0 0 1rem; }
.park-empty p { max-width: 700px; font-size: 1.1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.park-hub-visit { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid #ccc; }
.park-hub-visit p { margin: 0; font-size: 1rem; max-width: 700px; }
.park-hub-visit > a { flex-shrink: 0; }
.park-status { display: inline-block; padding: .5rem .8rem; border: 1px solid #bbb; font-size: .875rem; font-weight: 700; margin-bottom: 1rem; }
.park-detail-image { max-width: 1000px; margin: 2rem 0; }
.park-detail-image img { max-height: 560px; width: 100%; object-fit: cover; }
.park-detail .park-entry-content { max-width: 900px; font-size: 1.125rem; line-height: 1.8; }
.park-entry-content a { text-decoration: underline; text-underline-offset: 4px; }
.park-detail-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0; }
.park-detail-location { padding: 1.5rem; border-left: 5px solid var(--hub-accent,var(--green)); background: #f5f5f5; max-width: 900px; font-size: 1rem; line-height: 1.6; }
.park-detail-location p { margin: .6rem 0 0; }
.park-related { margin-top: 4rem; }
.park-hub a:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
.park-map-detail a { display: inline-flex; margin-top: .6rem; text-decoration: underline; font-weight: 700; }
@media (max-width:1000px) { .park-list-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width:700px) {
  .park-list-grid { grid-template-columns: 1fr; }
  .park-hub { padding-top: 130px; padding-bottom: 3.5rem; }
  .park-live-board ~ .park-hub, .park-live-board ~ .park-standard-page { padding-top: 155px; }
  .park-back { margin-bottom: 2rem; }
  .park-hub-visit { flex-direction: column; align-items: flex-start; }
  .park-hub-heading h1 { font-size: clamp(2.5rem,11vw,4rem); }
  .live-board-controls { gap: .25rem; }
  .live-board-controls .live-board-count { display: none; }
  .park-live-board { gap: .5rem; padding-inline: .65rem; }
  .live-board-label { font-size: 11px; gap: .4rem; letter-spacing: .02em; }
  .live-board-item { justify-content: flex-start; }
  .live-board-item strong { font-size: 13px; }
}
@media (prefers-reduced-motion:reduce) { .park-list-card:hover { transform: none; } }
/* Keep the two controls inside the ticker on small screens as well. */
.the-park-theme .park-live-board { grid-template-columns: auto minmax(0,1fr) auto; }
@media (max-width:760px) { .live-board-item strong { font-size: 14px; } }
