/* =============================================================
   STRICKER'S GROVE — vintage Americana event landing
   ============================================================= */

@font-face {
  font-family: "DancingScript";
  src: url("assets/DancingScript.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Heritage palette */
  --navy: #1a2a48;
  --navy-deep: #122039;
  --navy-soft: #2b3d62;
  --cream: #f4ebd9;
  --cream-warm: #faf3e3;
  --cream-deep: #ebdfc4;
  --paper: #f9f1de;
  --red: #b73e2f;
  --red-deep: #962f23;
  --gold: #c89b4a;
  --gold-soft: #d9b876;
  --ink: #2a2419;
  --sepia: #6b5a3e;
  --sepia-soft: #8a7656;

  --shadow-soft: 0 10px 30px -12px rgba(26, 42, 72, 0.18);
  --shadow-card: 0 20px 50px -20px rgba(26, 42, 72, 0.35);
  --shadow-deep: 0 30px 70px -25px rgba(26, 42, 72, 0.45);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  --font-display: "Playfair Display", "Libre Caslon Text", Georgia, serif;
  --font-body: "DM Sans", "Helvetica Neue", Helvetica, system-ui, sans-serif;
  --font-mono: "DM Mono", ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream-warm);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

img { max-width: 100%; display: block; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 56px;
  transition: background 320ms ease, box-shadow 320ms ease, padding 320ms ease, color 320ms ease;
  /* Soft cream wash that fades to transparent below the nav — keeps the brand
     and links legible over the painted sky without imposing a hard bar. */
  background: linear-gradient(180deg, rgba(244, 235, 217, 0.95) 0%, rgba(244, 235, 217, 0.78) 60%, rgba(244, 235, 217, 0) 100%);
  color: var(--navy);
  backdrop-filter: blur(4px);
}
.nav.scrolled {
  background: rgba(244, 235, 217, 0.96);
  color: var(--navy);
  padding: 12px 56px;
  box-shadow: 0 1px 0 rgba(26, 42, 72, 0.08), 0 8px 30px -16px rgba(26, 42, 72, 0.18);
  backdrop-filter: blur(8px);
}
.nav-brand {
  display: flex; flex-direction: row; align-items: center; gap: 14px;
  line-height: 1;
}
.nav-brand-text {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
}
.nav-brand .wordmark {
  font-family: "DancingScript", "Brush Script MT", cursive;
  font-weight: 700;
  font-size: 76px;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--red);
  transition: color 320ms ease, font-size 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.scrolled .nav-brand .wordmark {
  font-size: 42px;
}
@media (max-width: 900px) {
  .nav-brand .wordmark               { font-size: 52px; }
  .nav.scrolled .nav-brand .wordmark { font-size: 34px; }
}
.nav.scrolled .nav-brand .wordmark { color: var(--red); }
.nav-brand .sub {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.75;
  font-weight: 600;
  margin-top: 6px;
  transition: font-size 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms ease;
  color: inherit;
}
.nav.scrolled .nav-brand .sub { font-size: 11px; margin-top: 4px; }
@media (max-width: 900px) {
  .nav-brand .sub               { font-size: 11px; letter-spacing: 0.22em; }
  .nav.scrolled .nav-brand .sub { font-size: 9px;  letter-spacing: 0.22em; }
}

.nav-links { display: flex; gap: 36px; font-size: 14px; font-weight: 600; letter-spacing: 0.04em; }
.nav-links a {
  position: relative;
  padding: 6px 2px;
  transition: color 220ms ease;
}
/* Sliding red underline on hover */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--red); color: var(--cream);
  padding: 10px 20px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--red-deep);
  box-shadow: 0 4px 12px -4px rgba(150, 47, 35, 0.5);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 18px -6px rgba(150, 47, 35, 0.6); }

/* Hamburger toggle — hidden on desktop, shown at the mobile breakpoint below */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(26, 42, 72, 0.18);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--navy);
  transition: background 180ms ease, border-color 180ms ease;
}
.nav-toggle:hover { background: rgba(26, 42, 72, 0.06); }
.nav-toggle-bar {
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 220ms ease, opacity 180ms ease;
}
.nav.open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(244, 235, 217, 0.98);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px -10px rgba(26, 42, 72, 0.25);
  padding: 18px 20px 22px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(26, 42, 72, 0.08);
}
.mobile-menu a {
  display: block;
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  border-bottom: 1px solid rgba(26, 42, 72, 0.08);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-menu-cta {
  margin-top: 10px;
  background: var(--red); color: var(--cream);
  border: 1px solid var(--red-deep);
  border-radius: var(--radius-pill);
  text-align: center;
  padding: 14px 20px;
  box-shadow: 0 6px 16px -6px rgba(150, 47, 35, 0.5);
}
.nav.open .mobile-menu { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  /* Coordinates with hero.png: saturated summer sky → grass green at the foot */
  background: linear-gradient(180deg, #7fb2d9 0%, #a8cbe0 45%, #b8c98a 85%, #8aa258 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("assets/hero.png");
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  /* Stronger cream wash on the left — keeps the headline AND the sub-line legible
     across the full text column before fading into the painting. */
  background: linear-gradient(90deg, rgba(244, 235, 217, 0.94) 0%, rgba(244, 235, 217, 0.78) 30%, rgba(244, 235, 217, 0.32) 50%, rgba(244, 235, 217, 0) 70%),
              /* Gentle top sky-to-cream glow under the nav so the wordmark reads */
              linear-gradient(180deg, rgba(244, 235, 217, 0.35) 0%, rgba(244, 235, 217, 0) 22%),
              /* Subtle navy shadow at the very bottom so the stats bar reads as anchored, not floating */
              linear-gradient(180deg, rgba(26, 42, 72, 0) 70%, rgba(26, 42, 72, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 180px 56px 80px;
  display: grid;
  grid-template-columns: minmax(0, 620px) 1fr;
  gap: 40px;
  align-items: start;
}

.hero h1 {
  font-size: clamp(56px, 8vw, 108px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--red-deep); font-weight: 700; }
.hero-sub {
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.5;
  max-width: 440px;
  color: var(--navy-deep);
  font-weight: 600;
}

.hero-cta-row {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--red); color: var(--cream);
  border-color: var(--red-deep);
  box-shadow: 0 6px 16px -6px rgba(150, 47, 35, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--red-deep); box-shadow: 0 12px 24px -8px rgba(150, 47, 35, 0.6); }
.btn-secondary {
  background: var(--cream); color: var(--navy);
  border-color: rgba(26, 42, 72, 0.12);
  box-shadow: var(--shadow-soft);
}
.btn-secondary:hover { transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--navy);
  padding: 14px 22px;
  border-color: rgba(26, 42, 72, 0.18);
}
.btn-ghost:hover { background: rgba(26, 42, 72, 0.04); }

.btn .icon { width: 18px; height: 18px; }

/* hero footer strip — vintage stats card */
.hero-stats {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: var(--cream);
  border-top: 6px solid var(--gold);
  font-family: var(--font-body);
}
.hero-stats::before {
  content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 4px;
  background: repeating-linear-gradient(90deg, var(--red) 0 10px, transparent 10px 20px);
}
.hero-stat { padding: 22px 32px; display: flex; align-items: baseline; gap: 14px; border-right: 1px solid rgba(244, 235, 217, 0.12); }
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  color: var(--gold-soft);
  font-weight: 700;
}
.hero-stat .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 500;
}

/* tri-color stripe divider */
.stripes {
  height: 14px;
  background:
    linear-gradient(180deg, var(--red) 0 4px, transparent 4px 5px, var(--navy) 5px 9px, transparent 9px 10px, var(--red) 10px 14px);
}

/* ============================================================
   SECTION SCAFFOLDS
   ============================================================ */
section { position: relative; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 56px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
.eyebrow::before, .eyebrow::after {
  content: "★"; color: var(--gold); font-size: 10px;
}

.section-title {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  margin-top: 14px;
}
.section-title em { font-style: italic; font-weight: 500; color: var(--sepia); }

.ornament {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  color: var(--gold);
  font-size: 11px;
  margin: 0 auto;
}
.ornament .line { flex: 1; max-width: 120px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.ornament .star { color: var(--gold); }

.center { text-align: center; }

/* ============================================================
   HISTORY SECTION
   ============================================================ */
.history {
  background: var(--cream);
  padding: 110px 0 80px;
  position: relative;
}
.history-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.history-photo {
  position: relative;
  transform: rotate(-1.2deg);
}
.history-photo .frame {
  background: #fff;
  padding: 14px 14px 60px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.history-photo .frame img {
  filter: sepia(0.25) contrast(1.05);
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.history-photo .caption {
  position: absolute;
  bottom: 14px; left: 22px;
  font-family: "DancingScript", "Brush Script MT", cursive;
  font-size: 26px;
  color: var(--sepia);
  transform: rotate(-1deg);
  font-weight: 600;
}
.history-photo .tape {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  width: 96px; height: 26px;
  background: rgba(200, 155, 74, 0.55);
  border: 1px dashed rgba(255,255,255,0.4);
}
/* "Next photo" affordance — a carousel-style button on the image corner */
.history-photo .history-next {
  position: absolute;
  right: 24px; bottom: 70px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--cream);
  box-shadow: 0 6px 16px -4px rgba(26, 42, 72, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.85);
  transition: transform 200ms ease, background 200ms ease;
}
.history-photo:hover .history-next { transform: scale(1.08); background: var(--red-deep); }
/* Gentle pulse so it reads as "press me," fading once the photo is hovered */
@keyframes historyNudge {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.1); }
}
.history-photo .history-next { animation: historyNudge 2.4s ease-in-out infinite; }
.history-photo:hover .history-next { animation: none; }
/* Position dots in the polaroid's bottom border, opposite the caption */
.history-photo .history-dots {
  position: absolute;
  bottom: 26px; right: 22px;
  display: flex; gap: 7px;
}
.history-photo .history-dots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(94, 75, 58, 0.28);
  transition: background 220ms ease, transform 220ms ease;
}
.history-photo .history-dots .dot.active {
  background: var(--red);
  transform: scale(1.25);
}
.history-hint {
  display: flex; align-items: center; gap: 7px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--sepia);
  opacity: 0.8;
}

.history-text { padding-right: 20px; }
.history-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--sepia);
  margin: 22px 0 0;
}
.history-text p strong { color: var(--ink); font-weight: 600; }

.since-badge {
  position: absolute;
  right: 40px; top: 50%;
  transform: translateY(-50%);
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--cream-warm);
  border: 3px double var(--gold);
  display: grid; place-items: center;
  text-align: center;
  box-shadow: 0 12px 30px -12px rgba(200, 155, 74, 0.55);
  transform: translateY(-50%) rotate(-6deg);
  font-family: var(--font-display);
}
.since-badge .small { font-size: 10px; letter-spacing: 0.3em; color: var(--red); font-weight: 700; }
.since-badge .big { font-size: 32px; color: var(--navy); font-weight: 800; line-height: 1; margin-top: 4px; }
.since-badge .stars { color: var(--gold); font-size: 10px; margin-top: 4px; letter-spacing: 0.4em; }

/* timeline */
.timeline {
  margin-top: 80px;
  position: relative;
}
.timeline-rail {
  position: absolute; left: 0; right: 0; top: 50%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.timeline-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.tl-item {
  background: var(--cream-warm);
  padding: 22px;
  border: 1px solid rgba(200, 155, 74, 0.35);
  text-align: center;
  position: relative;
}
.tl-item::before {
  content: "★"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--cream); width: 24px; height: 24px;
  display: grid; place-items: center; color: var(--gold);
  border-radius: 50%; border: 1px solid var(--gold);
  font-size: 11px;
}
.tl-year {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.tl-label { font-size: 14px; color: var(--ink); margin-top: 8px; font-weight: 500; }

/* scalloped divider */
.scallop {
  height: 22px;
  background-image: radial-gradient(circle at 11px 0, var(--cream-warm) 11px, transparent 12px);
  background-size: 22px 22px;
  background-repeat: repeat-x;
  background-position: 0 -1px;
}

/* ============================================================
   EVENTS / GATHERINGS
   ============================================================ */
.events {
  padding: 100px 0;
  background: var(--cream-warm);
}
.events-header { text-align: center; margin-bottom: 60px; }
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.event-card {
  background: var(--cream);
  border: 1px solid rgba(26, 42, 72, 0.08);
  overflow: hidden;
  position: relative;
  transition: transform 280ms ease, box-shadow 280ms ease;
  cursor: pointer;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.event-photo {
  height: 220px;
  background: var(--navy-soft);
  position: relative;
  overflow: hidden;
}
.event-photo .placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background-image:
    repeating-linear-gradient(45deg, rgba(244, 235, 217, 0.08) 0 14px, transparent 14px 28px);
  color: rgba(244, 235, 217, 0.5);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background-color: var(--navy);
}
.event-ticket {
  position: absolute;
  left: 20px; right: 20px; bottom: -22px;
  background: var(--navy);
  color: var(--cream);
  padding: 16px 20px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
  /* ticket notches */
  -webkit-mask: radial-gradient(circle at 0 50%, transparent 8px, #000 8.5px), radial-gradient(circle at 100% 50%, transparent 8px, #000 8.5px);
  -webkit-mask-composite: source-in;
  mask: radial-gradient(circle at 0 50%, transparent 8px, #000 8.5px), radial-gradient(circle at 100% 50%, transparent 8px, #000 8.5px);
  mask-composite: intersect;
  box-shadow: 0 8px 20px -8px rgba(26, 42, 72, 0.5);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.event-body {
  padding: 44px 28px 32px;
  text-align: center;
}
.event-body p {
  color: var(--sepia);
  font-size: 15px;
  margin: 0 0 18px;
}
.event-body .features {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin-top: 14px;
}
.event-body .features span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--cream-deep);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-weight: 500;
}
.event-arrow {
  margin-top: 22px;
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 200ms;
}
.event-card:hover .event-arrow { gap: 14px; }

/* ============================================================
   RIDES SHOWCASE
   ============================================================ */
.rides {
  padding: 100px 0;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.rides::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(200, 155, 74, 0.08) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(183, 62, 47, 0.1) 0, transparent 40%);
  pointer-events: none;
}
.rides .wrap { position: relative; }
.rides .eyebrow { color: var(--gold); }
.rides .eyebrow::before, .rides .eyebrow::after { color: var(--gold); }
.rides h2 { color: var(--cream); }
.rides .section-title em { color: var(--gold-soft); }

.rides-header { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end; margin-bottom: 50px; }
.rides-header p { color: rgba(244, 235, 217, 0.7); font-size: 16px; max-width: 380px; margin: 0; }

.rides-tabs {
  display: flex; gap: 0;
  border-top: 1px solid rgba(244, 235, 217, 0.15);
  border-bottom: 1px solid rgba(244, 235, 217, 0.15);
  margin-bottom: 40px;
}
.rides-tab {
  flex: 1;
  padding: 18px 16px;
  text-align: left;
  color: rgba(244, 235, 217, 0.55);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 500;
  border-right: 1px solid rgba(244, 235, 217, 0.15);
  transition: color 200ms, background 200ms;
  position: relative;
}
.rides-tab:last-child { border-right: none; }
.rides-tab:hover { color: var(--cream); background: rgba(244, 235, 217, 0.04); }
.rides-tab.active { color: var(--gold-soft); }
.rides-tab.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--gold);
}
.rides-tab .num {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1;
}

.ride-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}
.ride-image {
  height: 460px;
  border: 1px solid rgba(200, 155, 74, 0.3);
  position: relative;
  overflow: hidden;
  background: #2a3f66;
}
.ride-image .placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background-image: repeating-linear-gradient(45deg, rgba(244, 235, 217, 0.05) 0 16px, transparent 16px 32px);
  font-family: var(--font-mono); font-size: 11px; color: rgba(244, 235, 217, 0.4);
  letter-spacing: 0.18em; text-transform: uppercase;
  text-align: center; padding: 0 20px;
}
.ride-image .badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--red); color: var(--cream);
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.ride-info h3 {
  color: var(--cream);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
}
.ride-info .meta {
  display: flex; gap: 30px; margin-top: 26px;
  border-top: 1px solid rgba(244, 235, 217, 0.15);
  border-bottom: 1px solid rgba(244, 235, 217, 0.15);
  padding: 20px 0;
}
.ride-info .meta .item .k { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); opacity: 0.85; }
.ride-info .meta .item .v { font-family: var(--font-display); font-size: 22px; color: var(--cream); font-weight: 600; margin-top: 4px; }
.ride-info p { color: rgba(244, 235, 217, 0.78); font-size: 16px; line-height: 1.7; margin: 22px 0; }

/* ============================================================
   CALENDAR / AVAILABILITY
   ============================================================ */
.calendar-sec {
  padding: 100px 0;
  background: var(--cream-warm);
}
.calendar-header { text-align: center; margin-bottom: 50px; }
.calendar-wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}

.calendar {
  background: var(--cream);
  border: 1px solid rgba(26, 42, 72, 0.1);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(26, 42, 72, 0.1);
  margin-bottom: 18px;
}
.cal-head h3 { font-size: 26px; }
.cal-head .nav-btns { display: flex; gap: 8px; }
.cal-head .nav-btns button {
  width: 36px; height: 36px;
  border: 1px solid rgba(26, 42, 72, 0.15);
  background: var(--cream-warm);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background 180ms, transform 180ms;
}
.cal-head .nav-btns button:hover { background: var(--cream-deep); }
.cal-head .nav-btns button:active { transform: scale(0.92); }

.cal-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.cal-weekdays div {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sepia); text-align: center; font-weight: 600;
}
.cal-days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1 / 0.92;
  position: relative;
  background: var(--cream-warm);
  border: 1px solid transparent;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start;
  padding: 8px 10px;
  font-size: 14px;
  color: var(--ink);
  transition: all 180ms ease;
}
.cal-day:disabled { opacity: 0.3; cursor: default; }
.cal-day.muted { opacity: 0.35; }
.cal-day .dot {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
}
.cal-day.available { background: rgba(200, 155, 74, 0.12); border-color: rgba(200, 155, 74, 0.4); cursor: pointer; }
.cal-day.available:hover { background: rgba(200, 155, 74, 0.25); }
.cal-day.available .dot { background: var(--gold); }
.cal-day.limited { background: rgba(183, 62, 47, 0.08); border-color: rgba(183, 62, 47, 0.3); cursor: pointer; }
.cal-day.limited:hover { background: rgba(183, 62, 47, 0.18); }
.cal-day.limited .dot { background: var(--red); }
.cal-day.booked { background: rgba(26, 42, 72, 0.08); color: rgba(26, 42, 72, 0.4); }
.cal-day.booked .dot { background: rgba(26, 42, 72, 0.3); }
.cal-day.selected { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.cal-day.selected .dot { background: var(--gold); }

.cal-legend {
  display: flex; gap: 22px; margin-top: 20px;
  font-size: 12px; color: var(--sepia);
}
.cal-legend span { display: inline-flex; align-items: center; gap: 7px; }
.cal-legend i {
  width: 8px; height: 8px; border-radius: 50%; display: inline-block;
}

.cal-side {
  position: sticky; top: 100px;
}
.cal-side-card {
  background: var(--navy);
  color: var(--cream);
  padding: 32px;
  box-shadow: var(--shadow-deep);
  position: relative;
}
.cal-side-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 12px, var(--red) 12px 24px);
}
.cal-side-card h3 { color: var(--cream); font-size: 24px; }
.cal-side-card .selected-date {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--gold-soft);
  line-height: 1;
  margin-top: 16px;
}
.cal-side-card .day-of-week {
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(244, 235, 217, 0.7); margin-top: 8px;
}
.cal-side-card .status {
  margin-top: 24px;
  padding: 14px 16px;
  background: rgba(244, 235, 217, 0.08);
  border-left: 3px solid var(--gold);
  font-size: 14px;
  line-height: 1.5;
}
.cal-side-card .status strong { color: var(--gold-soft); }
.cal-side-card .btn { margin-top: 22px; width: 100%; justify-content: center; }

/* ============================================================
   BOOKING WIZARD
   ============================================================ */
.booking {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}
.booking-header { text-align: center; margin-bottom: 50px; }
.wizard {
  max-width: 900px; margin: 0 auto;
  background: var(--cream-warm);
  border: 1px solid rgba(200, 155, 74, 0.4);
  box-shadow: var(--shadow-card);
  position: relative;
}
.wizard::before, .wizard::after {
  content: ""; position: absolute; pointer-events: none;
}
.wizard-steps {
  display: flex; align-items: center; gap: 0;
  padding: 24px 40px;
  border-bottom: 1px solid rgba(26, 42, 72, 0.08);
  background: var(--cream);
}
.wstep { display: flex; align-items: center; gap: 10px; flex: 1; }
.wstep:not(:last-child)::after {
  content: ""; flex: 1; height: 1px;
  background: repeating-linear-gradient(90deg, var(--sepia-soft) 0 4px, transparent 4px 8px);
  margin: 0 8px;
  opacity: 0.4;
}
.wstep .dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream-warm); color: var(--sepia);
  border: 1px solid rgba(26, 42, 72, 0.15);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.wstep.active .dot { background: var(--red); color: var(--cream); border-color: var(--red); }
.wstep.done .dot { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.wstep .lbl { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sepia); font-weight: 500; }
.wstep.active .lbl, .wstep.done .lbl { color: var(--ink); }

.wizard-body { padding: 48px 40px; min-height: 380px; }
.wizard-body h3 { font-size: 32px; margin-bottom: 8px; }
.wizard-body .desc { color: var(--sepia); font-size: 15px; margin-bottom: 30px; }

.choice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.choice {
  background: var(--cream);
  border: 1.5px solid rgba(26, 42, 72, 0.12);
  padding: 24px 20px;
  text-align: left;
  transition: all 200ms ease;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.choice:hover { border-color: var(--gold); transform: translateY(-2px); }
.choice.selected {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--cream);
  box-shadow: 0 8px 24px -10px rgba(26, 42, 72, 0.5);
}
.choice.selected h4 { color: var(--cream); }
.choice .ico {
  width: 28px; height: 28px;
  color: var(--red);
}
.choice.selected .ico { color: var(--gold-soft); }
.choice h4 { font-size: 18px; }
.choice p { font-size: 13px; color: var(--sepia); margin: 0; }
.choice.selected p { color: rgba(244, 235, 217, 0.75); }
.choice .price { font-family: var(--font-display); font-size: 14px; color: var(--red); margin-top: 4px; font-weight: 600; }
.choice.selected .price { color: var(--gold-soft); }

.field { margin-bottom: 20px; }
.field label { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sepia); margin-bottom: 8px; font-weight: 600; }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid rgba(26, 42, 72, 0.12);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border 180ms, background 180ms;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--red); background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field .hint { font-size: 12px; color: var(--sepia-soft); margin-top: 6px; }
.field .err { font-size: 12px; color: var(--red); margin-top: 6px; }

.head-counter {
  display: flex; align-items: center; gap: 12px;
  background: var(--cream); border: 1.5px solid rgba(26, 42, 72, 0.12);
  padding: 10px 16px; max-width: 280px;
}
.head-counter button {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 18px;
  transition: background 180ms;
}
.head-counter button:hover { background: var(--navy-deep); }
.head-counter .val {
  flex: 1; text-align: center;
  font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--navy);
}
.head-counter .lbl-small { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sepia); }

.headcount-presets {
  display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap;
}
.preset {
  background: var(--cream);
  border: 1px solid rgba(26, 42, 72, 0.12);
  padding: 8px 14px;
  font-size: 12px;
  color: var(--sepia);
  letter-spacing: 0.1em;
  transition: all 180ms;
}
.preset:hover, .preset.active { background: var(--navy); color: var(--cream); border-color: var(--navy); }

.addons {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 16px;
}
.addon {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--cream);
  border: 1.5px solid rgba(26, 42, 72, 0.12);
  padding: 16px 18px;
  cursor: pointer;
  transition: all 180ms ease;
  text-align: left;
}
.addon:hover { border-color: var(--gold); }
.addon.checked { border-color: var(--navy); background: rgba(26, 42, 72, 0.04); }
.addon .check {
  width: 22px; height: 22px; border-radius: 4px;
  border: 1.5px solid rgba(26, 42, 72, 0.2);
  background: #fff;
  display: grid; place-items: center;
  flex-shrink: 0; margin-top: 1px;
  color: transparent;
  transition: all 180ms;
}
.addon.checked .check { background: var(--navy); border-color: var(--navy); color: var(--cream); }
.addon h5 { font-family: var(--font-display); font-size: 16px; color: var(--navy); margin: 0; font-weight: 600; }
.addon p { font-size: 12px; color: var(--sepia); margin: 4px 0 0; }
.addon .price { font-size: 12px; color: var(--red); margin-top: 6px; font-weight: 600; font-family: var(--font-mono); letter-spacing: 0.05em; }

.wizard-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 40px;
  border-top: 1px solid rgba(26, 42, 72, 0.08);
  background: var(--cream);
}
.summary-pill {
  display: inline-flex; gap: 18px; align-items: center;
  font-size: 13px; color: var(--sepia);
}
.summary-pill strong { color: var(--ink); font-family: var(--font-display); font-size: 15px; font-weight: 600; }
.summary-pill .sep { color: rgba(26,42,72,0.2); }

.wizard-nav { display: flex; gap: 10px; }

/* confirmation */
.confirmation {
  text-align: center;
  padding: 30px 20px 20px;
}
.confirmation .seal {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px double var(--gold);
  display: grid; place-items: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  color: var(--red);
  font-size: 40px;
}
.confirmation h3 { font-size: 36px; }
.confirmation .conf-num { font-family: var(--font-mono); font-size: 13px; color: var(--sepia); letter-spacing: 0.2em; margin-top: 6px; }
.confirmation .recap {
  margin: 32px auto 0; max-width: 480px;
  background: var(--cream); padding: 24px;
  border: 1px solid rgba(26, 42, 72, 0.1);
  text-align: left;
}
.confirmation .recap-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(26, 42, 72, 0.15);
  font-size: 14px;
}
.confirmation .recap-row:last-child { border-bottom: none; padding-top: 14px; font-size: 16px; }
.confirmation .recap-row .k { color: var(--sepia); }
.confirmation .recap-row .v { color: var(--ink); font-weight: 500; font-family: var(--font-display); }
.confirmation .recap-row.total .k { color: var(--ink); font-weight: 600; }
.confirmation .recap-row.total .v { color: var(--red); font-size: 22px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--cream-warm);
}
.testi-grid {
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center;
}
.testi-left h2 { font-size: clamp(36px, 4.4vw, 52px); line-height: 1.05; }
.testi-left .ornament { justify-content: flex-start; margin-top: 18px; }
.testi-left .ornament .line:last-child { display: none; }

.testi-stage {
  position: relative;
}
.testi-card {
  background: var(--cream);
  padding: 40px 40px 32px;
  border: 1px solid rgba(200, 155, 74, 0.4);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testi-card::before {
  content: "\201C";
  position: absolute; top: -20px; left: 30px;
  font-family: var(--font-display);
  font-size: 110px;
  color: var(--gold);
  line-height: 0.6;
}
.testi-card p {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.5;
  color: var(--navy);
  font-style: italic;
  font-weight: 500;
  margin: 0 0 24px;
  text-wrap: pretty;
}
.testi-card .who {
  display: flex; gap: 14px; align-items: center;
}
.testi-card .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700;
}
.testi-card .name { font-weight: 600; font-size: 15px; color: var(--ink); }
.testi-card .role { font-size: 12px; color: var(--sepia); letter-spacing: 0.06em; }

.testi-controls {
  display: flex; gap: 10px; margin-top: 22px;
}
.testi-controls button {
  width: 42px; height: 42px;
  border: 1px solid rgba(26, 42, 72, 0.15);
  border-radius: 50%;
  background: var(--cream);
  display: grid; place-items: center;
  color: var(--navy);
  transition: all 200ms;
}
.testi-controls button:hover { background: var(--navy); color: var(--cream); }
.testi-controls .dots { display: flex; gap: 6px; align-items: center; margin: 0 8px; }
.testi-controls .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(26, 42, 72, 0.15); transition: all 180ms; }
.testi-controls .dot.active { background: var(--red); transform: scaleX(2.5); border-radius: 4px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 110px 0 130px;
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 6px;
  background: linear-gradient(90deg, var(--red) 0 33%, var(--cream) 33% 66%, var(--navy-soft) 66% 100%);
}
.final-cta::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(200, 155, 74, 0.15) 0, transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(183, 62, 47, 0.12) 0, transparent 35%);
  pointer-events: none;
}
.final-cta .wrap { position: relative; z-index: 1; }
.final-cta h2 {
  color: var(--cream);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
}
.final-cta h2 em {
  font-family: "DancingScript", "Brush Script MT", cursive;
  font-style: normal;
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 1.15em;
  letter-spacing: -0.01em;
}
.final-cta p { color: rgba(244, 235, 217, 0.75); font-size: 17px; max-width: 520px; margin: 18px auto 36px; }
.final-cta .ornament { color: var(--gold-soft); }
.final-cta .ornament .line { background: linear-gradient(90deg, transparent, var(--gold-soft), transparent); }
.final-cta .btn-primary { padding: 20px 36px; font-size: 16px; }


.contact-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 720px;
  margin: 40px auto 0;
  background: rgba(244, 235, 217, 0.06);
  border: 1px solid rgba(200, 155, 74, 0.3);
  border-top-width: 3px;
  border-top-color: var(--gold);
}
.contact-row {
  padding: 22px 28px;
  display: flex; flex-direction: column; gap: 6px;
  align-items: flex-start;
  border-right: 1px solid rgba(244, 235, 217, 0.08);
  border-bottom: 1px solid rgba(244, 235, 217, 0.08);
  text-align: left;
}
.contact-row:nth-child(2n) { border-right: none; }
.contact-row:nth-last-child(-n+2) { border-bottom: none; }
.contact-k {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}
.contact-v {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
}
.contact-email { color: var(--gold-soft); transition: color 200ms; }
.contact-email:hover { color: var(--cream); }

@media (max-width: 700px) {
  .contact-card { grid-template-columns: 1fr; }
  .contact-row, .contact-row:nth-child(2n) { border-right: none; }
  .contact-row, .contact-row:nth-last-child(-n+2) { border-bottom: 1px solid rgba(244, 235, 217, 0.08); }
  .contact-row:last-child { border-bottom: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(244, 235, 217, 0.7);
  padding: 60px 0 36px;
  font-size: 14px;
  border-top: 2px solid var(--gold);
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(244, 235, 217, 0.08);
}
.foot-brand .nav-brand { margin-bottom: 16px; }
.foot-brand .nav-brand .wordmark { color: var(--gold-soft); }
.foot-brand .nav-brand .sub { color: rgba(244, 235, 217, 0.5); }
.foot-brand p { max-width: 320px; line-height: 1.6; }
.foot-col h5 { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); font-family: var(--font-body); font-weight: 600; margin-bottom: 14px; }
.foot-col a { display: block; padding: 5px 0; transition: color 200ms; }
.foot-col a:hover { color: var(--cream); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 12px; color: rgba(244, 235, 217, 0.4);
}

/* ============================================================
   RIDES GALLERY (multi-category photo gallery)
   ============================================================ */
.gallery-tabs {
  display: flex; gap: 0;
  border-top: 1px solid rgba(244, 235, 217, 0.15);
  border-bottom: 1px solid rgba(244, 235, 217, 0.15);
  margin-bottom: 24px;
  overflow-x: auto;
}
.gallery-tab {
  flex: 1;
  min-width: max-content;
  padding: 20px 22px;
  color: rgba(244, 235, 217, 0.55);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 500;
  border-right: 1px solid rgba(244, 235, 217, 0.12);
  transition: color 200ms, background 200ms;
  position: relative;
  text-align: center;
  white-space: nowrap;
}
.gallery-tab:last-child { border-right: none; }
.gallery-tab:hover { color: var(--cream); background: rgba(244, 235, 217, 0.04); }
.gallery-tab.active { color: var(--gold-soft); background: rgba(244, 235, 217, 0.06); }
.gallery-tab.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--gold);
}

.gallery-blurb {
  max-width: 760px;
  color: rgba(244, 235, 217, 0.78);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 32px;
}

/* Photo block — first tile is a 2x2 feature, the rest flow around it.
   Auto-populates from the folders. Lightbox opens on click. */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
  animation: galleryFadeIn 320ms ease-out;
}
@keyframes galleryFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gallery-cell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 155, 74, 0.3);
  background: rgba(244, 235, 217, 0.04);
  padding: 0;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.gallery-cell:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.5);
  border-color: var(--gold);
}
.gallery-cell:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* First photo gets the 2x2 feature treatment */
.gallery-cell:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Subtle magnifier badge on hover — signals "click to enlarge" */
.gallery-cell::after {
  content: "";
  position: absolute;
  top: 12px; right: 12px;
  width: 30px; height: 30px;
  background: rgba(26, 42, 72, 0.78);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 220ms ease, transform 220ms ease;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4ebd9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='6'/><path d='M15.5 15.5L20 20'/><path d='M11 8v6M8 11h6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  pointer-events: none;
}
.gallery-cell:hover::after { opacity: 1; transform: scale(1); }

/* Loading / empty states */
.gallery-loading,
.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: rgba(244, 235, 217, 0.5);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
}

@media (max-width: 1000px) {
  .gallery-grid { grid-auto-rows: 170px; }
}
@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 10px;
  }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10, 16, 30, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  transition: opacity 220ms ease;
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox-stage {
  margin: 0;
  max-width: 92vw;
  max-height: 86vh;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 14px;
}
#lightbox-img {
  /* Source photos are pre-resized to 600×450 (landscape) or 600×800 (portrait).
     Cap the lightbox at those native sizes to avoid upscaling blur on big screens.
     On smaller screens this falls back to 92vw / 80vh so the image still scales down. */
  max-width: min(92vw, 600px);
  max-height: min(80vh, 800px);
  width: auto;
  height: auto;
  display: block;
  border: 4px solid var(--cream);
  background: var(--cream);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
  transition: opacity 220ms ease;
}
#lightbox-img.is-loading { opacity: 0.4; }
.lightbox-count {
  color: var(--gold-soft);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(244, 235, 217, 0.08);
  border: 1px solid rgba(244, 235, 217, 0.18);
  color: var(--cream);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease, border-color 200ms ease;
  z-index: 1;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: scale(1.06); }
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev  { left: 22px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.06); }

@media (max-width: 640px) {
  .lightbox-close, .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-close { top: 14px; right: 14px; }
  .lightbox-prev  { left: 10px; }
  .lightbox-next  { right: 10px; }
}

/* ============================================================
   PATHS — Rent vs Public (replaces events-grid in main flow)
   ============================================================ */
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.path-card {
  position: relative;
  padding: 44px 40px 36px;
  border: 1px solid rgba(26, 42, 72, 0.1);
  background: var(--cream);
  display: flex; flex-direction: column;
  min-height: 600px;
}
.path-rent {
  background: var(--cream);
  border-color: rgba(183, 62, 47, 0.25);
}
.path-rent::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--red);
}
.path-public {
  background: var(--cream-warm);
  border-color: rgba(26, 42, 72, 0.18);
}
.path-public::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--navy);
}
.path-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 14px;
}
.path-tag.tag-public { color: var(--navy); }
.path-card h3 {
  font-size: 34px;
  line-height: 1.05;
  margin-bottom: 14px;
}
.path-card > p {
  color: var(--sepia);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px;
}
.path-card > p strong { color: var(--ink); font-weight: 600; }
.path-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 18px -2px 28px;
  border-top: 1px solid rgba(26, 42, 72, 0.1);
  border-bottom: 1px solid rgba(26, 42, 72, 0.1);
}
.path-stats > div {
  padding: 16px 14px;
  border-right: 1px solid rgba(26, 42, 72, 0.08);
  display: flex; flex-direction: column; gap: 4px;
}
.path-stats > div:last-child { border-right: none; }
.path-stats .k {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sepia);
}
.path-stats .v {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.path-types {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 24px;
}
.path-type {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(26, 42, 72, 0.1);
  background: var(--cream-warm);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
  transition: all 180ms ease;
}
.path-type:hover { border-color: var(--red); background: #fff; transform: translateX(2px); }
.path-type :first-child { color: var(--red); }
.path-footnote {
  font-size: 13px;
  color: var(--sepia);
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 14px;
  border-top: 1px dashed rgba(26, 42, 72, 0.15);
}
.path-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.public-days-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.public-day {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 14px; align-items: center;
  padding: 14px 16px;
  background: var(--cream);
  border-left: 3px solid var(--navy);
}
.pd-date {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.pd-name {
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
}
.pd-meta {
  font-size: 11px;
  color: var(--sepia);
  letter-spacing: 0.06em;
  text-align: right;
}

/* ============================================================
   PUBLIC DAYS DETAIL SECTION
   ============================================================ */
.public-days {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}
.public-days::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 12px;
  background: repeating-linear-gradient(90deg, var(--red) 0 10px, transparent 10px 20px);
  opacity: 0.5;
}
.pd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.pd-card {
  background: var(--cream-warm);
  border: 1px solid rgba(26, 42, 72, 0.1);
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.pd-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--navy);
  z-index: 2;
}
.pd-fourth::before { background: var(--red); }
.pd-family::before { background: var(--gold); }
.pd-labor::before { background: var(--navy); }
.pd-appreciation::before { background: var(--sepia); }

/* graphic header strip — full-bleed painted illustration per signature day */
.pd-graphic-wrap {
  height: 240px;
  background: var(--cream);
  border-bottom: 1px solid rgba(26, 42, 72, 0.08);
  position: relative;
  overflow: hidden;
}
/* Subtle bottom shadow so the painting transitions cleanly into the cream card body */
.pd-graphic-wrap::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 50px;
  background: linear-gradient(180deg, rgba(250, 243, 227, 0) 0%, rgba(250, 243, 227, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.pd-graphic {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  object-position: center 45%;
  transition: transform 700ms ease;
}
.pd-card:hover .pd-graphic { transform: scale(1.04); }

/* card body */
.pd-card-head {
  display: flex; gap: 18px;
  padding: 24px 28px 0;
}
.pd-stamp {
  width: 108px; height: 108px;
  background: var(--navy);
  color: var(--cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  border: 4px double var(--gold);
  position: relative;
  box-shadow: 0 6px 18px -10px rgba(26, 42, 72, 0.55);
}
.pd-fourth .pd-stamp { background: var(--red); }
.pd-stamp-month {
  font-size: 14px;
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.pd-stamp-day {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  margin-top: 4px;
  letter-spacing: -0.02em;
}
/* Event titles get a hand-lettered nameplate feel via the brand script font */
.pd-card h3 {
  font-family: "DancingScript", "Brush Script MT", cursive;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--red);
  margin-top: 6px;
}
.pd-sub {
  font-size: 12px;
  color: var(--sepia);
  letter-spacing: 0.08em;
  margin-top: 6px;
  font-style: italic;
}
.pd-blurb {
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 18px 28px 0;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(26, 42, 72, 0.08);
}

.pd-section {
  padding: 18px 28px 0;
}
.pd-section-title {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.pd-section-title::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(183, 62, 47, 0.3), transparent);
}

.pd-schedule {
  display: flex; flex-direction: column; gap: 6px;
}
.pd-sched-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13.5px;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(26, 42, 72, 0.1);
}
.pd-sched-row:last-child { border-bottom: none; }
.pd-sched-k {
  color: var(--sepia);
  font-weight: 500;
}
.pd-sched-v {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-align: right;
}

.pd-admission {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
}

.pd-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.pd-price {
  background: var(--cream);
  padding: 12px 14px;
  border: 1px solid rgba(200, 155, 74, 0.3);
  display: flex; flex-direction: column; gap: 2px;
}
.pd-price-v {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.pd-price-k {
  font-size: 11px;
  color: var(--sepia);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.pd-ride-tiers {
  display: flex; flex-direction: column; gap: 8px;
}
.pd-tier {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  background: var(--cream);
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
}
.pd-tier-num {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--navy); color: var(--cream);
  padding: 6px 4px;
  text-align: center;
}
.pd-tier-num span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: var(--gold-soft);
}
.pd-tier-num small {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 2px;
}
.pd-tier-rides {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink);
}

.pd-included {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}
.pd-included li {
  font-size: 13px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pd-included li::before {
  content: "★";
  position: absolute; left: 0; top: 2px;
  color: var(--gold);
  font-size: 11px;
}

.pd-footer {
  margin-top: auto;
  padding: 18px 28px 22px;
  font-size: 11.5px;
  color: var(--sepia);
  font-style: italic;
  line-height: 1.5;
  border-top: 1px dashed rgba(26, 42, 72, 0.12);
  margin-top: 22px;
}

.pd-fair {
  margin-top: 40px;
  padding: 32px 36px;
  background: var(--navy);
  color: var(--cream);
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px;
  border-left: 6px solid var(--gold);
}
.pd-fair h3 { color: var(--cream); }
.pd-fair .btn-ghost { color: var(--cream); border-color: rgba(244, 235, 217, 0.3); }
.pd-fair .btn-ghost:hover { background: rgba(244, 235, 217, 0.1); }

@media (max-width: 1100px) {
  .paths-grid { grid-template-columns: 1fr; }
  .pd-grid { grid-template-columns: 1fr; }
  .pd-fair { flex-direction: column; align-items: flex-start; }
}

/* tweak-controlled classes */
body.headline-roman h1 em,
body.headline-roman h2 em,
body.headline-roman h3 em {
  font-style: normal;
  color: inherit;
}
body.hide-timeline .timeline { display: none; }

/* responsive niceties */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; padding-top: 140px; }
  .history-grid { grid-template-columns: 1fr; gap: 50px; }
  .rides-header { grid-template-columns: 1fr; }
  .ride-feature { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .calendar-wrap { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .nav, .nav.scrolled { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .wrap, .hero-content { padding-left: 20px; padding-right: 20px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { padding: 16px 18px; }
  .timeline-items { grid-template-columns: 1fr 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
  .wizard-body, .wizard-steps, .wizard-footer { padding-left: 20px; padding-right: 20px; }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside common grids */
.paths-grid .reveal:nth-child(2) { transition-delay: 120ms; }
.pd-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.pd-grid .reveal:nth-child(2) { transition-delay: 100ms; }
.pd-grid .reveal:nth-child(3) { transition-delay: 200ms; }
.pd-grid .reveal:nth-child(4) { transition-delay: 300ms; }

.timeline .tl-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.timeline.is-visible .tl-item:nth-child(1) { transition-delay: 80ms; }
.timeline.is-visible .tl-item:nth-child(2) { transition-delay: 200ms; }
.timeline.is-visible .tl-item:nth-child(3) { transition-delay: 320ms; }
.timeline.is-visible .tl-item:nth-child(4) { transition-delay: 440ms; }
.timeline.is-visible .tl-item { opacity: 1; transform: translateY(0); }

/* Hero entrance — h1 letters / sub fades in on load */
.hero h1, .hero-sub, .hero-cta-row {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-sub { animation-delay: 200ms; }
.hero-cta-row { animation-delay: 360ms; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-stats .hero-stat {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-stats .hero-stat:nth-child(1) { animation-delay: 550ms; }
.hero-stats .hero-stat:nth-child(2) { animation-delay: 650ms; }
.hero-stats .hero-stat:nth-child(3) { animation-delay: 750ms; }
.hero-stats .hero-stat:nth-child(4) { animation-delay: 850ms; }

/* Nav lift in */
.nav { animation: navDrop 600ms ease-out 100ms backwards; }
@keyframes navDrop {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hover scaffolds for gallery cells (already present) — add subtle zoom on the image */
.gallery-cell .gallery-img { transition: transform 600ms ease; }
.gallery-cell:hover .gallery-img { transform: scale(1.04); }

/* History photo subtle hover lift */
.history-photo { transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1); cursor: pointer; }
.history-photo:hover { transform: rotate(-0.5deg) translateY(-4px); }

/* Footer keeps the smaller wordmark size — it's a heritage signature, not a headline */
.foot-brand .nav-brand .wordmark { font-size: 30px; }
.foot-brand .nav-brand .wordmark,
.nav.scrolled .foot-brand .nav-brand .wordmark { font-size: 30px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Smooth in-page scroll */
html { scroll-behavior: smooth; }

/* Anchor offset so sections don't hide under the fixed nav */
section[id] { scroll-margin-top: 80px; }

/* ============================================================
   PUBLIC DAY — DETAILED CONTENT BLOCKS
   ============================================================ */

/* Icon inside section titles */
.pd-section-title svg {
  color: var(--red);
  flex-shrink: 0;
  margin-right: 2px;
}

/* Schedule row with a small inline note (e.g., "closes early...") */
.pd-sched-note {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--sepia);
  font-style: italic;
  font-weight: 500;
  margin-top: 2px;
}

/* Hero admission price (FREE / $22) */
.pd-admission-hero {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.pd-admission-sub {
  font-size: 13.5px;
  color: var(--sepia);
  line-height: 1.5;
  max-width: 380px;
}

/* Two-option pricing layout (e.g. Individual Tickets vs Armband) */
.pd-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}
@media (max-width: 900px) {
  .pd-options { grid-template-columns: 1fr; }
}

.pd-option {
  background: var(--cream);
  border: 1px solid rgba(26, 42, 72, 0.1);
  padding: 18px 18px 16px;
  display: flex; flex-direction: column;
  position: relative;
}
.pd-option-feature {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.pd-option-head {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(26, 42, 72, 0.18);
}
.pd-option-feature .pd-option-head {
  border-bottom-color: rgba(244, 235, 217, 0.2);
}
.pd-option-num {
  width: 26px; height: 26px;
  background: var(--red);
  color: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  line-height: 1;
}
.pd-option-feature .pd-option-num {
  background: var(--gold);
  color: var(--navy);
}
.pd-option-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.15;
}
.pd-option-feature .pd-option-title { color: var(--cream); }
.pd-option-sub {
  font-size: 12px;
  color: var(--sepia);
  margin-top: 3px;
  line-height: 1.4;
}
.pd-option-feature .pd-option-sub { color: rgba(244, 235, 217, 0.7); }
.pd-option-note {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(26, 42, 72, 0.12);
  font-size: 11.5px;
  color: var(--sepia);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* Make a price block span both columns when there are 3 entries */
.pd-price-wide { grid-column: 1 / -1; }

/* Armband feature block */
.pd-armband {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 16px 8px 10px;
}
.pd-armband-price {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 800;
  color: var(--gold-soft);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pd-armband-lbl {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: rgba(244, 235, 217, 0.78);
  margin-top: 10px;
  line-height: 1.45;
  max-width: 200px;
}

/* Parking grid — two-up time-based pricing */
.pd-park-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pd-park {
  background: var(--cream);
  border: 1px solid rgba(200, 155, 74, 0.35);
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.pd-park-price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.pd-park-when {
  font-size: 12px;
  color: var(--sepia);
  letter-spacing: 0.02em;
}
.pd-park-when strong { color: var(--ink); font-weight: 600; }

/* Prose paragraph (Food & Drink) */
.pd-prose {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

/* Disclaimer footer rows */
.pd-footer {
  display: flex; flex-direction: column; gap: 4px;
}
.pd-disclaim {
  display: flex; gap: 8px;
  font-size: 11.5px;
  color: var(--sepia);
  font-style: italic;
  line-height: 1.5;
}
.pd-disclaim-mark {
  color: var(--red);
  font-style: normal;
  font-weight: 700;
  flex-shrink: 0;
}

/* HCC Fair callout title — matches the script nameplate treatment of the day cards */
.pd-fair-title {
  font-family: "DancingScript", "Brush Script MT", cursive;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.05;
  color: var(--gold-soft);
  margin: 6px 0 0;
}

/* 4th of July uses a red stamp, so flip the script title to navy to keep contrast lively */
.pd-fourth h3 { color: var(--navy); }

/* Facebook event RSVP CTA — sits just above the disclaimer footer on each public day card */
.pd-section-cta { padding-top: 8px; }

.pd-fb-cta {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--cream);
  border: 1.5px solid var(--navy);
  border-radius: 6px;
  color: var(--navy);
  text-decoration: none;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  position: relative;
}
.pd-fb-cta:hover {
  transform: translateY(-2px);
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  box-shadow: 0 10px 22px -10px rgba(26, 42, 72, 0.5);
}
.pd-fb-icon {
  color: #1877f2; /* Facebook brand blue at rest — pops against the cream card */
  flex-shrink: 0;
  transition: color 200ms ease;
}
.pd-fb-cta:hover .pd-fb-icon { color: var(--gold-soft); }

.pd-fb-text {
  flex: 1;
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1.2;
}
.pd-fb-text strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: inherit;
  letter-spacing: 0.005em;
}
.pd-fb-text small {
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--sepia);
  font-style: italic;
  transition: color 200ms ease;
}
.pd-fb-cta:hover .pd-fb-text small { color: rgba(244, 235, 217, 0.75); }

.pd-fb-arrow {
  color: var(--sepia);
  flex-shrink: 0;
  transition: color 200ms ease, transform 200ms ease;
}
.pd-fb-cta:hover .pd-fb-arrow {
  color: var(--gold-soft);
  transform: translate(2px, -2px);
}

/* 4th of July card has a red accent — give its CTA a matching red border accent */
.pd-fourth .pd-fb-cta { border-color: var(--red); }
.pd-fourth .pd-fb-cta:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 10px 22px -10px rgba(183, 62, 47, 0.55);
}

/* Family Day CTA accent picks up its gold theme stripe */
.pd-family .pd-fb-cta { border-color: var(--gold); }
.pd-family .pd-fb-cta:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 10px 22px -10px rgba(200, 155, 74, 0.55);
}
.pd-family .pd-fb-cta:hover .pd-fb-icon { color: var(--navy); }
.pd-family .pd-fb-cta:hover .pd-fb-text small { color: rgba(26, 42, 72, 0.72); }
.pd-family .pd-fb-cta:hover .pd-fb-arrow { color: var(--navy); }

/* Strong inline emphasis inside admission sub-text (used for "Kids 2 and under are free") */
.pd-admission-sub strong {
  color: var(--ink);
  font-weight: 700;
}

/* Customer Appreciation Day — sepia-accent CTA to match its top stripe */
.pd-appreciation .pd-fb-cta { border-color: var(--sepia); }
.pd-appreciation .pd-fb-cta:hover {
  background: var(--sepia);
  border-color: var(--sepia);
  box-shadow: 0 10px 22px -10px rgba(107, 90, 62, 0.55);
}

/* "On the house" treats strip — visually breaks out the 3 free goodies */
.pd-treats {
  margin-top: 18px;
  padding: 14px 16px 12px;
  background: var(--cream);
  border: 1px dashed var(--gold);
  position: relative;
}
.pd-treats-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--sepia);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.pd-treats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pd-treat {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  padding: 8px 10px;
  background: var(--cream-warm);
  border-left: 3px solid var(--gold);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.pd-treat-tag {
  display: inline-block;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 2px 6px;
  border-radius: 3px;
  line-height: 1.2;
}
@media (max-width: 700px) {
  .pd-treats-row { grid-template-columns: 1fr; }
}

/* ============================================================
   PARK RULES — "Good to Know" reference grid
   ============================================================ */
.park-rules {
  margin-top: 56px;
  padding: 44px 40px 40px;
  background: var(--cream-warm);
  border: 1px solid rgba(26, 42, 72, 0.1);
  position: relative;
  overflow: hidden;
}
.park-rules::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 12px, var(--red) 12px 24px);
}
.park-rules-head { text-align: center; margin-bottom: 32px; }
.park-rules-title {
  font-family: "DancingScript", "Brush Script MT", cursive;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.05;
  color: var(--navy);
  margin: 6px 0 0;
}
.park-rules-sub {
  color: var(--sepia);
  font-size: 15px;
  margin: 12px auto 0;
  max-width: 480px;
  line-height: 1.5;
}

/* Grid of rule tiles */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) { .rules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .rules-grid { grid-template-columns: 1fr; } }

.rule {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 18px 18px 16px 22px;
  background: var(--cream);
  border: 1px solid rgba(26, 42, 72, 0.1);
  border-left-width: 4px;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.rule:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.rule-no       { border-left-color: var(--red); }
.rule-limited  { border-left-color: var(--gold); }
.rule-info     { border-left-color: var(--navy); }

/* Status badge in the top-right corner */
.rule-status {
  position: absolute;
  top: 10px; right: 10px;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  color: var(--cream);
}
.rule-status-no      { background: var(--red); }
.rule-status-limited { background: var(--gold); color: var(--navy); }
.rule-status-info    { background: var(--navy); }

/* Rule icon block */
.rule-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--cream-warm);
  border: 1px solid rgba(26, 42, 72, 0.08);
  color: var(--navy);
}
.rule-no .rule-icon      { color: var(--red); }
.rule-limited .rule-icon { color: var(--gold); background: rgba(200, 155, 74, 0.08); }
.rule-info .rule-icon    { color: var(--navy); }

.rule-text {
  flex: 1; min-width: 0;
  padding-right: 22px;
}
.rule-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.2;
}
.rule-detail {
  font-size: 12.5px;
  color: var(--sepia);
  margin-top: 4px;
  line-height: 1.45;
}

/* The height-requirements rule tile is now a link to the chart below */
.rule-link { text-decoration: none; color: inherit; cursor: pointer; }
.rule-link:hover .rule-name { color: var(--red); }

/* ============================================================
   HEIGHT CHART
   ============================================================ */
.height-chart {
  margin-top: 32px;
  padding: 44px 40px 36px;
  background: var(--cream);
  border: 1px solid rgba(26, 42, 72, 0.1);
  border-top: 4px solid var(--navy);
  position: relative;
}
.hc-head { text-align: center; margin-bottom: 26px; }
.hc-title {
  font-family: "DancingScript", "Brush Script MT", cursive;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.05;
  color: var(--navy);
  margin: 6px 0 14px;
}
.hc-intro {
  color: var(--sepia);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 640px;
}

/* Legend */
.hc-legend {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px 30px;
  padding: 16px 20px;
  margin: 0 auto 26px;
  max-width: 820px;
  background: var(--cream-warm);
  border: 1px dashed rgba(200, 155, 74, 0.5);
  font-size: 12.5px;
  color: var(--sepia);
  line-height: 1.4;
}
.hc-legend-item { display: flex; align-items: center; gap: 8px; }
.hc-legend-item strong { color: var(--ink); font-family: var(--font-display); font-weight: 700; }
.hc-dot {
  width: 10px; height: 10px; border-radius: 50%;
  flex-shrink: 0;
}
.hc-dot-min   { background: var(--red); }
.hc-dot-with  { background: var(--gold); }
.hc-dot-alone { background: var(--navy); }

/* Tiny dot for table headers */
.hc-h-dot {
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  margin-right: 8px; vertical-align: middle;
}
/* The navy "Ride Alone" dot would disappear against the navy header — give it a gold halo */
.hc-table thead .hc-h-dot.hc-dot-alone {
  box-shadow: 0 0 0 1.5px var(--gold-soft);
}

/* Table */
.hc-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(26, 42, 72, 0.1);
}
.hc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}
.hc-table thead th {
  background: var(--navy);
  color: var(--gold-soft);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: left;
  padding: 14px 18px;
  border-bottom: 3px solid var(--gold);
}
.hc-table thead th:not(:first-child) { text-align: center; }
.hc-table thead th:first-child { width: 36%; }

.hc-table tbody th {
  font-family: var(--font-display);
  font-weight: 600;
  text-align: left;
  padding: 13px 18px;
  color: var(--ink);
  font-size: 15px;
  background: inherit;
}
.hc-table tbody td {
  padding: 13px 18px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.hc-table tbody tr {
  border-bottom: 1px solid rgba(26, 42, 72, 0.06);
  transition: background 180ms ease;
}
.hc-table tbody tr:nth-child(even) { background: var(--cream-warm); }
.hc-table tbody tr:hover { background: rgba(200, 155, 74, 0.12); }
.hc-table tbody tr:last-child { border-bottom: none; }

.hc-na { color: rgba(26, 42, 72, 0.3); font-family: var(--font-display); font-size: 18px; }

/* Tornado highlight — the iconic wooden coaster row */
.hc-feature {
  background: linear-gradient(90deg, rgba(183, 62, 47, 0.06), rgba(200, 155, 74, 0.06)) !important;
}
.hc-feature th { color: var(--red); }
.hc-feature td { color: var(--red); font-weight: 700; }
.hc-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  vertical-align: middle;
  border-radius: 3px;
}

.hc-note {
  margin: 20px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 12.5px;
  color: var(--sepia);
  font-style: italic;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .height-chart { padding: 32px 22px 28px; }
  .hc-title { font-size: 34px; }
  .hc-legend { gap: 8px 20px; padding: 12px 16px; font-size: 11.5px; }
}

/* ============================================================
   PUBLIC DAY CARDS — readability bump
   Floor most text at ~13px; bring body copy to a comfortable 15-16px.
   ============================================================ */
.pd-sub                 { font-size: 13.5px; }
.pd-blurb               { font-size: 16px; line-height: 1.65; }

/* Section title labels (was 10px — way too small) */
.pd-section-title       { font-size: 12px; letter-spacing: 0.18em; }

/* Schedule rows */
.pd-sched-row           { font-size: 15px; }
.pd-sched-v             { font-size: 15.5px; }
.pd-sched-note          { font-size: 12.5px; }

/* Admission subtitle */
.pd-admission-sub       { font-size: 15px; max-width: 420px; }

/* Two-options block */
.pd-option-title        { font-size: 17px; }
.pd-option-sub          { font-size: 13.5px; }
.pd-option-note         { font-size: 13px; }

/* Pricing tiles */
.pd-price-k             { font-size: 12px; }

/* Armband */
.pd-armband-lbl         { font-size: 13.5px; max-width: 220px; }

/* Parking */
.pd-park-when           { font-size: 13.5px; }

/* Food & Drink prose */
.pd-prose               { font-size: 15px; line-height: 1.65; }

/* What's included list */
.pd-included li         { font-size: 14.5px; }

/* Free treats strip */
.pd-treats-label        { font-size: 14px; }
.pd-treat               { font-size: 14.5px; }
.pd-treat-tag           { font-size: 10.5px; letter-spacing: 0.16em; padding: 3px 7px; }

/* Per-ride ticket tiers */
.pd-tier-rides          { font-size: 14px; line-height: 1.5; }
.pd-tier-num small      { font-size: 10.5px; letter-spacing: 0.14em; }

/* RSVP CTA */
.pd-fb-text strong      { font-size: 17px; }
.pd-fb-text small       { font-size: 13px; }

/* Disclaimers */
.pd-disclaim            { font-size: 13px; }

/* "Designed by Bluepine Software" credit in the footer bottom row */
.foot-credit {
  font-size: 12px;
  color: rgba(244, 235, 217, 0.4);
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: 0.02em;
}
.foot-credit-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--gold-soft);
  font-weight: 600;
  transition: color 200ms ease;
}
.foot-credit-link:hover { color: var(--cream); }
.foot-credit-mark {
  color: var(--gold-soft);
  transition: transform 400ms ease;
}
.foot-credit-link:hover .foot-credit-mark {
  transform: rotate(72deg);
  color: var(--cream);
}

