:root {
  --cream: #f2f0eb;
  --cream-deep: #edebe9;
  --green: #006241;
  --green-ink: #1e3932;
  --green-deep: #004c32;
  --gold: #cba258;
  --foam: #fffef9;
  --muted: #5c5a55;
  --line: rgba(30, 57, 50, 0.12);
  --shadow: 0 18px 40px rgba(30, 57, 50, 0.08);
  --radius-pill: 999px;
  --max: 72rem;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--green-ink);
  background: var(--cream);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  background: var(--green);
  color: var(--cream);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  z-index: 80;
}

.skip:focus {
  top: 0.75rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(242, 240, 235, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand img {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--green);
}

.brand-mark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-mark strong {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.05rem;
}

.brand-mark span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.05rem;
  height: 2px;
  background: currentColor;
  position: relative;
}

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

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

.nav-panel {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0 0 1.1rem;
}

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

.nav-panel a {
  text-decoration: none;
  padding: 0.55rem 0.2rem;
  font-weight: 600;
}

.nav-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.75rem 1.45rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn-green {
  background: var(--green);
  color: var(--cream);
}

.btn-green:hover {
  background: var(--green-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(242, 240, 235, 0.55);
}

.btn-ghost:hover {
  background: rgba(242, 240, 235, 0.12);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--cream);
}

.hero {
  position: relative;
  min-height: min(92vh, 46rem);
  display: grid;
  align-items: end;
  color: var(--cream);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 76, 50, 0.18) 0%, rgba(0, 98, 65, 0.18) 38%, rgba(0, 98, 65, 0.88) 100%);
}

.hero-band {
  position: relative;
  z-index: 1;
  padding: clamp(5.5rem, 14vw, 8rem) 0 2.4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0.45rem 0 0.7rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.3rem, 8vw, 4.6rem);
  line-height: 1.02;
  font-weight: 600;
}

.hero p.lead {
  max-width: 36rem;
  margin: 0 0 1.25rem;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(203, 162, 88, 0.16);
  color: var(--cream);
  border: 1px solid rgba(203, 162, 88, 0.45);
  font-size: 0.86rem;
  font-weight: 650;
}

.section {
  padding: clamp(3.2rem, 8vw, 5.5rem) 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 1.8rem;
}

.section-head h2 {
  margin: 0.3rem 0 0.5rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.85rem, 5vw, 3rem);
  line-height: 1.1;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.alt {
  background: var(--cream-deep);
}

.green-band {
  background: var(--green);
  color: var(--cream);
}

.green-band .section-head p,
.green-band .muted {
  color: rgba(242, 240, 235, 0.78);
}

.price-grid,
.review-grid,
.visit-grid {
  display: grid;
  gap: 0.9rem;
}

.price-card,
.review-card,
.visit-card {
  background: var(--foam);
  border-radius: 1.25rem;
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow);
}

.price-card {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.price-card h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
}

.price-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-card strong {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.45rem;
  color: var(--green);
  white-space: nowrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.gallery-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  min-height: 11rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 11rem;
  object-fit: cover;
}

.gallery-grid figcaption {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 98, 65, 0.82);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 700;
}

.gallery-grid .wide {
  grid-column: 1 / -1;
  min-height: 16rem;
}

.gallery-grid .wide img {
  min-height: 16rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.review-card h3 {
  margin: 0.35rem 0 0.55rem;
  font-size: 1.05rem;
}

.review-card p {
  margin: 0;
}

.review-card footer {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.hours {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.hours span {
  color: var(--muted);
  font-weight: 500;
}

.note {
  margin: 0.9rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.map-frame {
  width: 100%;
  min-height: 16rem;
  border: 0;
  border-radius: 1.25rem;
  background: var(--cream-deep);
}

.staff {
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  gap: 0.85rem;
  align-items: center;
  margin-top: 1.1rem;
}

.staff img {
  width: 5.2rem;
  height: 5.2rem;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold);
}

.site-footer {
  background: var(--green-ink);
  color: var(--cream);
  padding: 2.4rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
}

.site-footer h2 {
  margin: 0 0 0.4rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.6rem;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.site-footer small {
  display: block;
  margin-top: 1.4rem;
  color: rgba(242, 240, 235, 0.68);
}

@media (min-width: 800px) {
  .nav-toggle {
    display: none;
  }

  .nav-panel {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 1.15rem;
    padding: 0;
  }

  .nav-panel[hidden] {
    display: flex !important;
  }

  .nav-cta {
    display: flex;
    gap: 0.5rem;
  }

  .nav-cta .btn {
    min-height: 2.6rem;
    padding: 0.45rem 1.05rem;
    font-size: 0.92rem;
  }

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

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

  .visit-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-grid .wide {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 100%;
  }

  .gallery-grid .wide img {
    min-height: 100%;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
    align-items: end;
  }
}