:root {
  --paper: #EDE8DE;
  --paper-alt: #E4DECF;
  --ink: #2B2E28;
  --moss: #3F4F3A;
  --moss-dark: #2E3B2A;
  --slate: #56707A;
  --sand: #B8813A;
  --line: #C9C2B4;
  --white: #FAF8F3;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Public Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Zilla Slab', serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

a { color: inherit; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Status strip */
.status-strip {
  background: var(--moss);
  color: var(--white);
  font-size: 0.95rem;
}
.status-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8FBF7A;
  margin-right: 8px;
  box-shadow: 0 0 0 3px rgba(143,191,122,0.25);
}
.status-strip strong { font-weight: 600; }
.status-strip .note {
  opacity: 0.85;
  font-size: 0.85rem;
}

/* Header / nav */
header.site {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 10;
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  font-family: 'Zilla Slab', serif;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand span.sub {
  font-family: 'Public Sans', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--slate);
  letter-spacing: 0.02em;
}
nav.primary {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 500;
}
nav.primary a {
  text-decoration: none;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  transition: border-color 0.15s ease;
}
nav.primary a:hover { border-color: var(--sand); }
nav.primary a.active {
  border-color: var(--sand);
  font-weight: 600;
}

@media (max-width: 680px) {
  nav.primary { display: none; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
  background: var(--paper);
}
.contours {
  position: absolute;
  right: -120px;
  top: -80px;
  width: 620px;
  height: 620px;
  opacity: 0.5;
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 620px) 1fr;
  gap: 40px;
  align-items: end;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 11ch;
}
.hero .lede {
  margin-top: 22px;
  font-size: 1.1rem;
  max-width: 46ch;
  color: #43473F;
}
.hero .cta-row {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 13px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--sand);
  color: var(--white);
}
.btn-secondary {
  border-color: var(--ink);
  color: var(--ink);
}

.hero-side { align-self: end; }
.hero-photo { margin: 0 0 22px; }
.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 30% center;
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 8px 8px 0 var(--paper-alt);
}
.hero-photo figcaption {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--slate);
}
.hero-facts {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 0.92rem;
  color: #4A4E44;
}
.hero-facts div { margin-bottom: 10px; }
.hero-facts strong { display: block; color: var(--ink); font-family: 'Zilla Slab', serif; font-size: 1.3rem; font-weight: 600; }

@media (max-width: 780px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-photo img { box-shadow: 5px 5px 0 var(--paper-alt); }
}

/* Section shared */
section { padding: 64px 0; }
section.alt { background: var(--paper-alt); }
.eyebrow-plain {
  color: var(--slate);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
section h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  max-width: 20ch;
}
.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}
.section-head p {
  margin-top: 14px;
  color: #4A4E44;
  max-width: 56ch;
}

/* About / facilities */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 640px;
}
.facility {
  background: var(--paper);
  padding: 28px 24px;
}
.facility h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.facility p {
  font-size: 0.92rem;
  color: #4A4E44;
}
@media (max-width: 780px) {
  .facilities-grid { grid-template-columns: 1fr; }
}

/* Hours + pricing */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
@media (max-width: 780px) {
  .split { grid-template-columns: 1fr; }
}
table.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
table.hours td {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
table.hours td:last-child {
  text-align: right;
  color: #4A4E44;
}
.flag {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--slate);
  border-left: 3px solid var(--sand);
  padding-left: 12px;
}

.pricing-card {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 22px 24px;
  margin-bottom: 14px;
}
.pricing-card .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.pricing-card h3 { font-size: 1.05rem; }
.pricing-card .price {
  font-family: 'Zilla Slab', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--moss-dark);
}
.pricing-card p {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #4A4E44;
}

/* Visiting / tourist section */
.visiting {
  background: var(--moss);
  color: var(--white);
}
.visiting .section-head p { color: rgba(250,248,243,0.85); }
.visiting .eyebrow-plain { color: #B7D3A9; }
.visiting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.visiting-grid div h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.visiting-grid div p {
  font-size: 0.9rem;
  color: rgba(250,248,243,0.8);
}
@media (max-width: 780px) {
  .visiting-grid { grid-template-columns: 1fr; }
}

/* Location / contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
}
@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-grid dl {
  font-size: 0.95rem;
}
.contact-grid dt {
  color: var(--slate);
  font-weight: 600;
  margin-top: 18px;
}
.contact-grid dt:first-child { margin-top: 0; }
.contact-grid dd { margin-top: 2px; }

.access-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--sand);
  padding: 14px 18px;
  margin: 0 0 24px;
  font-size: 0.95rem;
}
.access-note > strong {
  display: block;
  font-family: 'Zilla Slab', serif;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.access-note p + p { margin-top: 8px; }

.map-embed iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 1px solid var(--line);
}
.map-embed a {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--slate);
}

footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  font-size: 0.85rem;
  color: var(--slate);
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.status-dot.closed {
  background: #B9B4A6;
  box-shadow: 0 0 0 3px rgba(185,180,166,0.25);
}
.status-strip a { color: inherit; }
