:root {
  --ink: #17211b;
  --muted: #667168;
  --forest: #1f4c34;
  --forest-dark: #12291e;
  --moss: #7d986d;
  --wood: #8b5f39;
  --paper: #ffffff;
  --soft: #f3f6f1;
  --line: rgba(23, 33, 27, 0.14);
  --shadow: 0 22px 70px rgba(10, 20, 14, 0.18);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(7, 15, 10, 0.72), rgba(7, 15, 10, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--forest-dark);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 12, 8, 0.82) 0%, rgba(5, 12, 8, 0.42) 47%, rgba(5, 12, 8, 0.1) 100%),
    linear-gradient(0deg, rgba(5, 12, 8, 0.7) 0%, rgba(5, 12, 8, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin: 0 0 clamp(54px, 10vh, 112px) clamp(18px, 7vw, 96px);
}

.hero-location {
  margin: 0 0 20px;
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 720;
  color: rgba(255, 255, 255, 0.88);
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 10.5vw, 132px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2.4vw, 25px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 20px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: #fff;
  color: var(--forest-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.button.dark {
  background: var(--forest-dark);
  color: #fff;
}

.section-pad {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(64px, 9vw, 120px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: clamp(34px, 7vw, 92px);
  align-items: end;
}

.intro h2,
.grounds-copy h2,
.section-heading h2,
.story-text h2,
.address h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.intro p,
.grounds-copy p,
.section-heading p,
.story-text p,
.address p {
  margin: 24px 0 0;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.7;
  color: var(--muted);
}

.intro-stat {
  border-left: 2px solid var(--wood);
  padding-left: 26px;
}

.stat-number {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 760;
  color: var(--muted);
}

.grounds {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.grounds-media img,
.gallery-stage,
.story-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.grounds-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.place-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.place-list li {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.place-list span {
  font-weight: 850;
  color: var(--forest-dark);
}

.place-list small {
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.gallery {
  width: 100%;
  max-width: none;
  padding-left: clamp(18px, 4vw, 56px);
  padding-right: clamp(18px, 4vw, 56px);
  background: var(--soft);
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 34px;
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: end;
}

.section-heading p {
  max-width: 430px;
  margin: 0;
}

.gallery-stage {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto;
  overflow: hidden;
  background: #0c1510;
}

.gallery-stage img {
  width: 100%;
  height: clamp(360px, 62vw, 720px);
  object-fit: cover;
}

.spotlight-caption {
  position: absolute;
  left: clamp(18px, 4vw, 48px);
  right: clamp(18px, 4vw, 48px);
  bottom: clamp(18px, 4vw, 42px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.spotlight-caption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 500;
}

.spotlight-caption span {
  max-width: 370px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
}

.thumb-grid {
  width: min(var(--max), 100%);
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.thumb {
  display: grid;
  gap: 8px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.thumb img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: border-color 160ms ease, transform 160ms ease;
}

.thumb span {
  min-height: 2.5em;
  font-size: 12px;
  font-weight: 820;
  line-height: 1.25;
}

.thumb:hover img,
.thumb:focus-visible img,
.thumb.active img {
  border-color: var(--forest);
  transform: translateY(-1px);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.story-photo {
  margin: 0;
}

.story-photo img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}

.story-photo figcaption {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 780;
  color: var(--muted);
}

.address {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.address p {
  color: var(--ink);
  font-weight: 720;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--forest-dark);
  font-size: 13px;
  font-weight: 720;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-content {
    margin-left: 18px;
  }

  .intro,
  .grounds,
  .story {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .address,
  .spotlight-caption,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .place-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

@media (max-width: 540px) {
  .nav {
    gap: 10px;
    font-size: 12px;
  }

  .hero {
    min-height: 90svh;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .gallery-stage img {
    height: 360px;
  }

  .thumb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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