:root {
  --park: #2f6b4f;
  --park-dark: #1d4633;
  --honey: #f4b942;
  --tomato: #d94f30;
  --cream: #fff7ea;
  --paper: #fffdf8;
  --ink: #263238;
  --muted: #66736c;
  --toast: #7b4a2d;
  --sky: #78b7c5;
  --line: rgba(38, 50, 56, 0.14);
  --shadow: 0 18px 45px rgba(38, 50, 56, 0.16);
  --radius: 8px;
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--ink);
  color: white;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 247, 234, 0.94);
  backdrop-filter: blur(16px);
}

.topbar {
  border-bottom: 1px solid rgba(47, 107, 79, 0.18);
  background: var(--park-dark);
  color: white;
  font-size: 0.88rem;
}

.topbar-inner,
.nav-inner,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
}

.topbar a {
  text-decoration: none;
  font-weight: 700;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 190px;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.05;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  min-width: 46px;
  min-height: 46px;
  font: inherit;
  font-weight: 800;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.primary-nav a {
  border-radius: var(--radius);
  padding: 0.72rem 0.82rem;
  text-decoration: none;
  font-weight: 800;
  color: #36423c;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: rgba(47, 107, 79, 0.11);
  color: var(--park-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.78rem 1rem;
  background: var(--tomato);
  color: white;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(217, 79, 48, 0.22);
}

.button.secondary {
  background: var(--park);
}

.button.secondary:hover {
  box-shadow: 0 12px 24px rgba(47, 107, 79, 0.22);
}

.button.ghost {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.button.ghost:hover {
  box-shadow: 0 10px 22px rgba(38, 50, 56, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(125% 120% at 80% 16%, rgba(120, 183, 197, 0.20), transparent 52%),
    radial-gradient(135% 120% at 10% 96%, rgba(244, 185, 66, 0.14), transparent 50%),
    linear-gradient(158deg, #235543 0%, var(--park-dark) 58%, #143526 100%);
  color: white;
}

.hero-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-dot {
  position: absolute;
  border-radius: 50%;
  filter: blur(9px);
}

.hero-dot--pink { width: 70px; height: 70px; top: 20%; left: 9%; background: #ff5ca8; opacity: 0.26; }
.hero-dot--sky { width: 110px; height: 110px; bottom: 16%; left: 16%; background: var(--sky); opacity: 0.22; }
.hero-dot--honey { width: 54px; height: 54px; top: 24%; right: 38%; background: var(--honey); opacity: 0.28; }
.hero-dot--lime { width: 80px; height: 80px; bottom: 20%; right: 10%; background: #8bc34a; opacity: 0.22; }

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  min-height: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 460px);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(1rem, 2vw, 1.6rem) 0 clamp(4rem, 7vw, 5.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin: 0 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.hero-copy {
  max-width: 600px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.55rem;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.5rem, 1.2vw, 1rem);
}

.hero-badge-sign {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-badge-sign::before {
  content: "";
  position: absolute;
  width: 86%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 253, 240, 0.24), transparent 68%);
  filter: blur(8px);
}

.hero-badge-sign img {
  position: relative;
  width: min(100%, 410px);
  height: auto;
  margin-top: -0.5rem;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.4));
}

.hero-cert {
  align-self: flex-end;
  width: min(220px, 62%);
  margin: 0;
  padding: 9px 9px 7px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.42);
  transform: translateX(18px) rotate(9deg);
  text-align: center;
}

.hero-cert img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.hero-cert figcaption {
  margin-top: 7px;
  color: var(--park-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-note {
  margin: 1.4rem 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-chip {
  display: inline-block;
  margin-right: 0.5rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--honey);
  color: var(--park-dark);
  font-size: 0.96rem;
  font-weight: 900;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-text > * {
    animation: heroRise 700ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }
  .hero-text > :nth-child(1) { animation-delay: 60ms; }
  .hero-text > :nth-child(2) { animation-delay: 140ms; }
  .hero-text > :nth-child(3) { animation-delay: 220ms; }
  .hero-text > :nth-child(4) { animation-delay: 300ms; }
  .hero-text > :nth-child(5) { animation-delay: 380ms; }

  .hero-badge {
    animation: heroBadgeIn 850ms cubic-bezier(0.22, 1, 0.36, 1) 120ms backwards;
  }
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(14px); }
}

@keyframes heroBadgeIn {
  from { opacity: 0; transform: scale(0.92) translateY(8px); }
}

.quick-strip {
  position: relative;
  z-index: 3;
  margin-top: -2.25rem;
}

.quick-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.quick-card,
.feature-card,
.price-card,
.menu-item,
.notice,
.form-panel,
.quote-card,
.info-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.quick-card {
  padding: 1rem;
  box-shadow: 0 14px 32px rgba(38, 50, 56, 0.13);
}

.quick-card span,
.kicker {
  display: block;
  color: var(--tomato);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-card strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.1rem;
}

.section {
  padding: clamp(2.5rem, 5vw, 4.25rem) 0;
}

.section.alt {
  background: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.5fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.section h2,
.page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.05;
  text-wrap: balance;
}

.section-lede {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-card .body,
.price-card,
.quote-card,
.info-panel {
  padding: 1.25rem;
}

.feature-card h3,
.price-card h3,
.menu-group h2,
.form-panel h2,
.info-panel h2,
.calendar-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.08;
}

.feature-card p,
.price-card p,
.menu-item p,
.quote-card p,
.info-panel p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.band {
  background: var(--park);
  color: white;
}

.band .section-lede,
.band p {
  color: rgba(255, 255, 255, 0.86);
}

/* Quote cards keep dark text even inside a dark band (cream card background) */
.band .quote-card p {
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 2rem;
  align-items: center;
}

.image-stack {
  display: grid;
  gap: 1rem;
}

.image-stack img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.party-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.party-gallery figure {
  margin: 0;
}

.party-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(38, 50, 56, 0.13);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.stat {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  color: white;
  font-size: 1.45rem;
}

.stat span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.page-hero {
  background: linear-gradient(135deg, var(--park-dark), var(--park));
  color: white;
  padding: clamp(2.5rem, 5vw, 4.25rem) 0;
}

.page-hero .section-lede {
  color: rgba(255, 255, 255, 0.88);
  max-width: 760px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.3rem;
}

.menu-tabs {
  margin-top: 1.25rem;
}

.tab-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  padding: 0.65rem 0.95rem;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.tab-button[aria-selected="true"] {
  background: var(--park);
  color: white;
}

.menu-panel[hidden] {
  display: none;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

/* Photo at the top of a menu panel — used only where a genuinely matching
   image exists (Breakfast, Drinks). Wide banner for landscape photos; the
   --square modifier keeps square photos contained and centred. */
.menu-hero {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0 0 1.5rem;
}

.menu-hero--square {
  aspect-ratio: 1 / 1;
  max-width: 360px;
  margin-inline: auto;
}

@media (max-width: 680px) {
  .menu-hero {
    aspect-ratio: 16 / 7;
  }
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  padding: 1rem;
}

.menu-item strong {
  font-size: 1.02rem;
}

.menu-item .price {
  color: var(--park-dark);
  font-weight: 950;
  white-space: nowrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.18rem 0.45rem;
  background: rgba(47, 107, 79, 0.12);
  color: var(--park-dark);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.notice {
  padding: 1rem;
  border-left: 5px solid var(--honey);
}

.notice strong {
  display: block;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-card.featured {
  border-color: rgba(217, 79, 48, 0.38);
  box-shadow: var(--shadow);
}

.price {
  color: var(--tomato);
  font-size: 2rem;
  font-weight: 950;
}

.check-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
  margin: 0.45rem 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--honey);
}

/* Soft play house-rules: larger, easy-to-read bullets balanced beside the heading */
.rules-list li {
  font-size: 1.25rem;
  line-height: 1.55;
  margin: 0.95rem 0;
  padding-left: 1.7rem;
  color: var(--ink);
}

.rules-list li::before {
  width: 0.62rem;
  height: 0.62rem;
  top: 0.62em;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.7fr);
  gap: 1.2rem;
  align-items: start;
}

.form-panel {
  padding: 1.25rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: #39463f;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.72rem 0.78rem;
  background: white;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.4rem;
  margin-top: 0.7rem;
  color: var(--park-dark);
  font-weight: 850;
}

.calculator-output {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(120, 183, 197, 0.16);
}

.calculator-output strong {
  font-size: 1.75rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quote-card {
  border-top: 5px solid var(--sky);
}

.quote-card cite {
  display: block;
  margin-top: 1rem;
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.8rem;
}

.booking-slot {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.booking-slot:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(38, 50, 56, 0.12);
}

.booking-slot strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.booking-slot span {
  color: var(--muted);
  font-weight: 750;
}

.booking-slot-label {
  color: var(--tomato) !important;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-slot[aria-pressed="true"] {
  border-color: var(--park);
  box-shadow: 0 0 0 2px var(--park);
  background: white;
}

.booking-note {
  margin: 0;
  color: var(--muted);
}

.booking-note a,
.booking-fallback a {
  color: var(--park-dark);
  font-weight: 750;
}

.booking-fallback {
  margin-top: 1.25rem;
  color: var(--muted);
}

.booking-form {
  margin-top: 1.25rem;
  max-width: 720px;
}

.booking-form h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.booking-success {
  margin-top: 1.25rem;
  max-width: 720px;
  padding: 1.25rem;
  border: 1px solid rgba(47, 107, 79, 0.3);
  border-radius: var(--radius);
  background: rgba(47, 107, 79, 0.08);
}

.booking-success strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  color: var(--park-dark);
}

.booking-success p {
  margin: 0.5rem 0 0;
}

.booking-success a {
  color: var(--park-dark);
  font-weight: 750;
}

.admin {
  max-width: 1100px;
}

.admin > h1 {
  margin: 0.3rem 0 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.admin-login {
  max-width: 420px;
}

.admin-block {
  margin-top: 2.5rem;
}

.admin-block h2 {
  margin: 0 0 0.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.admin-table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  font-size: 0.92rem;
}

.admin-table th,
.admin-table td {
  padding: 0.55rem 0.7rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
  vertical-align: top;
}

.admin-table th {
  color: var(--park-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-table tbody tr:last-child td {
  border-bottom: 0;
}

.button.admin-mini {
  min-height: 0;
  margin: 0 0.2rem 0.2rem 0;
  padding: 0.35rem 0.6rem;
  font-size: 0.8rem;
}

.map-head {
  max-width: 760px;
  margin-bottom: 1.3rem;
}

.map-head .section-lede {
  margin-top: 0.6rem;
}

.map-frame {
  width: 100%;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(38, 50, 56, 0.1);
}

/* Click-to-load placeholder shown in place of the Google Maps embed until the visitor opts in. */
.map-embed {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
}
.map-embed-inner {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  text-align: center;
  padding: 1.5rem;
  max-width: 34ch;
}
.map-embed-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.mobile-actions {
  display: none;
}

.site-footer {
  background: var(--ink);
  color: white;
  padding: 2.5rem 0 6rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(160px, 0.4fr));
  gap: 2rem;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin: 0.35rem 0;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.site-footer a:hover {
  color: white;
  text-decoration: underline;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
  .topbar-inner {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .primary-nav {
    position: fixed;
    inset: 82px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.8rem;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .primary-nav[data-open="true"] {
    display: flex;
  }

  .nav-actions .ghost {
    display: none;
  }

  .hero-inner,
  .section-head,
  .two-col,
  .form-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 3.25rem 0 4.5rem;
    justify-items: start;
  }

  .hero-badge {
    align-self: start;
    width: 100%;
  }

  .hero-badge-sign img {
    width: min(300px, 64vw);
  }

  .hero-cert {
    align-self: center;
    width: min(210px, 56vw);
  }

  .quick-grid,
  .feature-grid,
  .price-grid,
  .quote-grid,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 72px;
  }

  .menu-page .page-hero,
  .menu-page .section {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .nav-actions {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.25rem, 8vw, 3.1rem);
  }

  .quick-grid,
  .feature-grid,
  .price-grid,
  .menu-grid,
  .stat-row,
  .quote-grid,
  .footer-inner,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2.25rem 0;
  }

  .menu-item {
    grid-template-columns: 1fr;
  }

  .mobile-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    border-top: 1px solid var(--line);
    background: var(--paper);
  }

  .mobile-actions a,
  .mobile-actions button {
    display: grid;
    place-items: center;
    min-height: 64px;
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 950;
    text-decoration: none;
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
  }
}

.legal-content {
  max-width: 70ch;
}

.legal-content h2 {
  margin: 2.4rem 0 0.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.08;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0.65rem 0 0;
}

.legal-content a {
  color: var(--park-dark);
  font-weight: 750;
}

.cookie-table {
  width: 100%;
  margin-top: 0.9rem;
  border: 1px solid var(--line);
  border-collapse: collapse;
  background: var(--paper);
  font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.cookie-table th {
  color: var(--park-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.link-button {
  border: none;
  padding: 0;
  background: none;
  color: var(--park-dark);
  font: inherit;
  font-weight: 750;
  text-decoration: underline;
  cursor: pointer;
}

.footer-legal {
  width: min(var(--max), calc(100% - 32px));
  margin: 2.25rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
}

.footer-legal a,
.footer-legal button {
  border: none;
  padding: 0;
  background: none;
  color: rgba(255, 255, 255, 0.84);
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: white;
  text-decoration: underline;
}

.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  margin: 0 auto;
  max-width: 700px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.consent-banner[hidden],
.consent-options[hidden],
.consent-actions .button[hidden] {
  display: none;
}

.consent-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.consent-text p {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
}

.consent-text a {
  color: var(--park-dark);
  font-weight: 750;
}

.consent-options {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.consent-options label {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  font-weight: 700;
}

.consent-options input {
  width: 1.15rem;
  height: 1.15rem;
  min-height: 0;
  margin: 0;
  accent-color: var(--park);
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.form-note {
  margin: 0.8rem 0 0;
  color: #4c5a52;
  font-size: 0.85rem;
}

.form-note a {
  color: var(--park-dark);
  font-weight: 750;
}

@media (max-width: 680px) {
  .consent-banner {
    bottom: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* ---- Share button + share modal ---- */
.nav-share {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.62rem 0.85rem;
  cursor: pointer;
}
.nav-share:hover { background: rgba(47, 107, 79, 0.09); }
.nav-share svg { display: block; }

.share-modal[hidden] { display: none; }
.share-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.share-backdrop { position: absolute; inset: 0; background: rgba(20, 30, 25, 0.55); }
.share-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  background: var(--paper);
  border-radius: 14px;
  padding: 26px 24px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}
.share-x {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: none;
  background: none;
  font-size: 26px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  border-radius: 50%;
}
.share-x:hover { background: rgba(0, 0, 0, 0.06); color: var(--ink); }
.share-dialog h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  margin: 0 1.6rem 0.3rem 0;
  color: var(--ink);
}
.share-url {
  color: var(--muted);
  font-size: 0.9rem;
  word-break: break-all;
  margin: 0.3rem 0 1.1rem;
}
.share-actions { display: grid; gap: 0.6rem; }
.share-opt {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
}
.share-opt[data-act="qr"] { background: var(--park-dark); color: #fff; border-color: var(--park-dark); }
.share-opt:hover { filter: brightness(0.97); }
.share-links { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.share-links a {
  flex: 1 1 auto;
  text-align: center;
  min-width: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.6rem 0.5rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.92rem;
}
.share-links a:hover { background: rgba(47, 107, 79, 0.09); }
.share-status { color: var(--muted); font-size: 0.9rem; margin: 0.8rem 0 0; min-height: 1.1em; }
.share-back {
  border: none;
  background: none;
  color: var(--park-dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  padding: 0;
  margin-bottom: 0.5rem;
}
.share-qr {
  width: min(260px, 72vw);
  aspect-ratio: 1 / 1;
  margin: 0.5rem auto 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  display: grid;
  place-items: center;
}
.share-qr svg { width: 100%; height: 100%; display: block; }
body.share-open { overflow: hidden; }

/* ---- Admin availability calendar ---- */
.cal-head { display: flex; align-items: center; gap: 1rem; margin: 0 0 0.75rem; }
.cal-head h3 { margin: 0; font-size: 1.1rem; }
.cal-head .cal-nav { margin-left: auto; display: flex; gap: 0.4rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 4px; }
.cal-dow { font-size: 0.72rem; font-weight: 700; color: var(--muted); text-align: center; padding: 0.25rem 0; }
.cal-cell { min-height: 84px; border: 1px solid var(--line); border-radius: 6px; padding: 4px; background: #fff; text-align: left; font: inherit; cursor: pointer; display: flex; flex-direction: column; gap: 3px; }
.cal-cell:hover { border-color: var(--park); }
.cal-cell.is-empty { background: transparent; border-color: transparent; cursor: default; }
.cal-cell.is-today { outline: 2px solid var(--honey); }
.cal-cell.is-past { opacity: 0.55; }
.cal-cell.is-closed { background: repeating-linear-gradient(45deg, #f3f3f3, #f3f3f3 6px, #ececec 6px, #ececec 12px); }
.cal-date { font-size: 0.78rem; font-weight: 700; color: var(--ink); }
.cal-chip { font-size: 0.68rem; line-height: 1.2; padding: 2px 4px; border-radius: 4px; color: #fff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cal-chip.s-available { background: var(--park); }
.cal-chip.s-held { background: var(--honey); color: var(--ink); }
.cal-chip.s-booked { background: #b3403a; }
.cal-chip.s-closed { background: #8a8f8c; }
.cal-chip.e-event { background: var(--sky); color: var(--ink); }
.cal-chip.e-closure { background: #6b7280; }
.cal-warn { font-size: 0.66rem; color: #b3403a; font-weight: 700; }
.cal-day-panel { margin-top: 1rem; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; background: var(--paper); }
.cal-day-panel h3 { margin: 0 0 0.5rem; }
.cal-row { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; padding: 0.35rem 0; border-bottom: 1px solid var(--line); }
.cal-row:last-child { border-bottom: 0; }
.cal-forms { display: grid; gap: 1rem; margin-top: 0.75rem; }
@media (min-width: 720px) { .cal-forms { grid-template-columns: 1fr 1fr; } }
.cal-bulk { margin-top: 1rem; }
.cal-bulk .cal-dows { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 0.4rem 0; }
.cal-bulk .cal-dows label { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.85rem; }
.cal-time-row { display: flex; gap: 0.4rem; align-items: center; margin-bottom: 0.35rem; }
@media (max-width: 560px) { .cal-cell { min-height: 64px; } }

/* ---- Public calendar (calendar.html) ---- */
.pubcal-head { display: flex; align-items: center; gap: 1rem; margin: 0 0 1rem; }
.pubcal-head h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; }
.pubcal-head .pubcal-nav { margin-left: auto; display: flex; gap: 0.4rem; }
.pubcal-head .pubcal-nav .button { min-height: 40px; padding: 0.4rem 0.9rem; }
.pubcal-note { color: var(--muted); }
.pubcal-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 6px; }
.pubcal-dow { text-align: center; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); padding: 0.25rem 0; }
.pubcal-cell { min-height: 92px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 6px; display: flex; flex-direction: column; gap: 4px; }
.pubcal-cell.is-empty { background: transparent; border-color: transparent; }
.pubcal-cell.is-today { outline: 2px solid var(--honey); }
.pubcal-cell.is-past { opacity: 0.5; }
.pubcal-cell.is-closed { background: repeating-linear-gradient(45deg, #f4f1ea, #f4f1ea 7px, #ece7dc 7px, #ece7dc 14px); }
.pubcal-date { font-size: 0.85rem; font-weight: 800; color: var(--ink); }
.pubcal-chip { font-size: 0.72rem; line-height: 1.25; padding: 2px 6px; border-radius: 999px; font-weight: 700; align-self: flex-start; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pubcal-chip.is-event { background: rgba(120, 183, 197, 0.22); color: #1d4633; }
.pubcal-chip.is-closure { background: #6b7280; color: #fff; }
.pubcal-chip.is-open { background: var(--park); color: #fff; border: 0; cursor: pointer; font: inherit; font-size: 0.72rem; font-weight: 800; padding: 3px 8px; }
.pubcal-chip.is-open:hover { background: var(--park-dark); }
.pubcal-list { display: flex; flex-direction: column; gap: 0; }
.pubcal-row { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
.pubcal-row:last-child { border-bottom: 0; }
.pubcal-row strong { min-width: 6.5rem; }
@media (max-width: 640px) { .pubcal-head h3 { font-size: 1.2rem; } }

[data-tracking] textarea { width: 100%; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.85rem; }

.report-switch { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.report-switch .is-active { background: var(--park); color: #fff; }
.report-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 0.75rem; margin-bottom: 1rem; }
.report-stat { border: 1px solid var(--line); border-radius: var(--radius); padding: 0.9rem; background: #fff; text-align: center; }
.report-stat strong { display: block; font-size: 1.6rem; color: var(--park-dark); }
.report-stat span { font-size: 0.8rem; color: var(--muted); }
.report-funnel { font-weight: 700; color: var(--ink); }
.report-list { margin-top: 1rem; }
.report-list ul { margin: 0.25rem 0 0; padding-left: 1.1rem; }

.contacts-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.contacts-bar input[type="search"] { flex: 1 1 220px; padding: 0.5rem; border: 1px solid var(--line); border-radius: var(--radius); }
.contacts-row { cursor: pointer; }
.contacts-row:hover { background: rgba(47, 107, 79, 0.06); }
.contact-panel { margin-top: 1rem; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; background: var(--paper); display: flex; flex-direction: column; gap: 0.5rem; }
.contact-panel h3 { margin: 0; }
.contact-panel textarea { width: 100%; }
.contact-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; align-items: center; }
.tag-chip { background: rgba(120,183,197,0.22); color: #1d4633; border-radius: 999px; padding: 2px 8px; font-size: 0.78rem; font-weight: 700; cursor: pointer; }
.contact-timeline { margin: 0.25rem 0 0; padding-left: 1.1rem; font-size: 0.9rem; }
.contact-erase { color: #b3403a; border-color: #b3403a; align-self: flex-start; margin-top: 0.5rem; }
.footer-signup { border-bottom: 1px solid rgba(255,255,255,0.18); padding: 0 0 1.5rem; margin: 0 0 1.75rem; text-align: center; }
.footer-signup-inner { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1rem, 4vw, 3rem); }
.footer-signup-text { max-width: 30rem; }
.footer-signup strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; }
.footer-signup p { margin: 0.35rem 0 0; color: rgba(255,255,255,0.82); font-size: 0.9rem; }
.footer-signup a { text-decoration: underline; margin-left: auto; margin-right: auto; }
.footer-signup-form { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; max-width: 480px; }
.footer-signup-form input[type="email"] { flex: 1 1 220px; min-height: 46px; padding: 0.6rem 0.8rem; border: 1px solid rgba(255,255,255,0.3); border-radius: var(--radius); background: rgba(255,255,255,0.95); color: var(--ink); }
.footer-signup-status { min-height: 1.2em; text-align: center; }
.admin-whoami { font-size: 0.85rem; color: var(--ink-soft, #5b6b62); margin: 0 0 1rem; }
.users-add { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; margin-bottom: 1rem; }
.users-add input, .users-add select { padding: 0.45rem; border: 1px solid var(--line); border-radius: var(--radius); }
.admin-table select { padding: 0.3rem; border: 1px solid var(--line); border-radius: var(--radius); }
.audit-bots { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.85rem; white-space: nowrap; }
.audit-bot { opacity: 0.6; }
.audit-bot td:nth-child(3) { font-style: italic; }
