:root {
  --forest: #143218;
  --forest-2: #1c4622;
  --leaf: #3b7a38;
  --lime: #cce14d;
  --lime-2: #d9ed73;
  --cream: #f3eee3;
  --paper: #faf7f0;
  --sand: #e6dcc8;
  --ink: #1b1914;
  --ink-soft: #454139;
  --muted: #6d685c;
  --line: #d8cfbb;
  --white: #fffdf8;
  --closed: #9a3d2c;
  --open: #2c7a3a;
  --shadow: 0 18px 50px rgba(20, 50, 24, 0.12);
  --radius: 22px;
  --header: 76px;
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(204, 225, 77, 0.18), transparent 50%),
    var(--cream);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

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

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--lime);
  color: var(--forest);
  padding: 8px 12px;
  z-index: 80;
}
.skip:focus { top: 12px; }

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

.eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leaf);
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); margin: 0 0 18px; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin: 0 0 14px; }
h3 { font-size: 1.45rem; margin: 0 0 8px; }
p { margin: 0 0 1em; color: var(--ink-soft); }
.lead { font-size: 1.18rem; max-width: 38rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: rgba(243, 238, 227, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(20, 50, 24, 0.08);
}

.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: max-content;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--forest);
}
.brand strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav a {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.nav a:hover,
.nav a.is-active {
  background: var(--forest);
  color: var(--lime);
}
.nav-extra { display: none; }

.header-aside {
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.live-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--closed);
  box-shadow: 0 0 0 4px rgba(154, 61, 44, 0.12);
}
.live-pill[data-state="open"] { border-color: rgba(44, 122, 58, 0.3); }
.live-pill[data-state="open"] .dot {
  background: var(--open);
  box-shadow: 0 0 0 4px rgba(44, 122, 58, 0.14);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 560;
}
.btn-lime { background: var(--lime); color: var(--forest); }
.btn-lime:hover { background: var(--lime-2); }
.btn-forest { background: var(--forest); color: var(--cream); }
.btn-forest:hover { background: var(--forest-2); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--forest);
  position: relative;
  margin: 0 auto;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.hero {
  position: relative;
  min-height: clamp(620px, calc(100svh - var(--header)), 860px);
  color: var(--white);
  isolation: isolate;
  display: grid;
  align-items: end;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,50,24,0.15) 0%, rgba(20,50,24,0.25) 40%, rgba(12,24,14,0.88) 100%);
}
.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 32px;
  align-items: end;
}
.hero-copy p { color: rgba(255,253,248,0.86); }
.hero-kicker {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.chip {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(204, 225, 77, 0.16);
  border: 1px solid rgba(204, 225, 77, 0.4);
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.ticket {
  background: var(--paper);
  color: var(--ink);
  border-radius: 18px;
  padding: 20px 20px 16px;
  box-shadow: var(--shadow);
  position: relative;
}
.today-list { list-style: none; margin: 0; padding: 0; }
.today-list li {
  display: grid;
  gap: 2px;
  padding: 12px 0;
  border-top: 1px dashed var(--line);
}
.today-list span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.today-list strong { font-size: 1.05rem; }
.today-list small { color: var(--muted); }

.ticker {
  background: var(--forest);
  color: var(--lime);
  overflow: hidden;
  border-block: 1px solid rgba(204,225,77,0.2);
}
.ticker-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: ticker 32s linear infinite;
  padding: 12px 0;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section { padding: 88px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 36px;
}
.section-head p { max-width: 34rem; margin: 0; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: stretch;
}
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse .split-copy { order: 2; }
.frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  min-height: 420px;
  height: 100%;
}
.frame img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.stamp {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--lime);
  color: var(--forest);
  padding: 8px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card-body { padding: 22px 22px 24px; }
.card-body p { margin-bottom: 14px; }
.more {
  font-weight: 600;
  color: var(--forest);
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.fact {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}
.fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.fact span { color: var(--muted); font-size: 0.95rem; }

.mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.mosaic figure { margin: 0; overflow: hidden; border-radius: 18px; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic figure:first-child { grid-row: 1 / span 2; }

.hours-panel,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.hours-table th,
.hours-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
}
.hours-table thead th { color: var(--muted); font-weight: 500; font-size: 0.8rem; }
.hours-table .is-today { background: rgba(204, 225, 77, 0.22); }
.hours-table .is-today th { font-weight: 700; }

.visit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}
.map {
  min-height: 420px;
  border: 0;
  border-radius: var(--radius);
  width: 100%;
  filter: saturate(0.85) contrast(1.02);
}

.page-hero {
  padding: 56px 0 20px;
}
.page-hero .display { max-width: 16ch; }
.crumbs {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.crumbs a { color: var(--leaf); text-decoration: none; }

.prose { max-width: 42rem; }
.prose h2 { margin-top: 1.4em; }
.list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}
.list li {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.form {
  display: grid;
  gap: 14px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { display: grid; gap: 6px; font-size: 0.92rem; }
label span { color: var(--muted); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  padding: 12px 12px;
  color: var(--ink);
}
textarea { min-height: 140px; resize: vertical; }
.form-note[data-state="ok"] { color: var(--open); }
.form-note[data-state="error"] { color: var(--closed); }

.site-footer {
  background: var(--forest);
  color: var(--cream);
  padding: 56px 0 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.site-footer a { color: var(--lime); text-decoration: none; }
.site-footer p, .site-footer li { color: rgba(243,238,227,0.78); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-logo { width: min(420px, 100%); height: auto; margin-bottom: 14px; }
.legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(204,225,77,0.15);
  padding-top: 16px;
  color: rgba(243,238,227,0.62);
  font-size: 0.88rem;
}

.mobile-cta {
  display: none;
  position: sticky;
  bottom: 0;
  z-index: 30;
  background: rgba(20, 50, 24, 0.96);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-cta .btn { flex: 1; }

@media (max-width: 900px) {
  .nav, .header-aside .btn, .live-pill { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
  .nav {
    display: none;
    position: fixed;
    inset: var(--header) 0 0 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
  }
  .nav.is-open { display: flex; }
  .nav a { font-size: 1.4rem; padding: 12px 8px; }
  .nav-extra {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }
  .nav-extra .live-pill { display: inline-flex; width: fit-content; }
  .hero-inner, .split, .split.reverse, .feature-grid, .facts, .visit-grid, .footer-grid, .form-row {
    grid-template-columns: 1fr;
  }
  .split.reverse .split-copy { order: 0; }
  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 180px 180px;
  }
  .mosaic figure:first-child { grid-column: 1 / -1; grid-row: auto; }
  .mobile-cta { display: flex; }
  .section { padding: 64px 0; }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero { padding-bottom: 72px; }
  .hero-inner { margin-bottom: 24px; }
  main { padding-bottom: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track, .card { animation: none; transition: none; }
}

@media print {
  .site-header, .ticker, .mobile-cta, .hero-actions, .nav-toggle { display: none !important; }
  body { background: white; }
}
