@font-face {
  font-family: "Newsreader";
  src: url("fonts/newsreader-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("fonts/newsreader-400i.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("fonts/newsreader-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("fonts/newsreader-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --grove: #1c3328;
  --grove-deep: #102018;
  --willow: #b89b5e;
  --willow-soft: #d4c49a;
  --paper: #f3efe4;
  --ivory: #faf7f0;
  --ink: #1c1915;
  --muted: #6a645a;
  --rule: #d6cebf;
  --moss: #3d5c45;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16.5px;
}

a { color: var(--grove); }
a:hover { color: var(--moss); }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: 0.4rem 0.7rem;
  z-index: 20;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem 1.2rem;
  flex-wrap: wrap;
  padding: 0.7rem 1.5rem;
  background: var(--ivory);
  border-bottom: 1px solid var(--rule);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
}
.brand img {
  width: 40px;
  height: 40px;
  display: block;
  flex-shrink: 0;
}
.brand span {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.site-nav nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.15rem;
  flex-wrap: wrap;
}
.site-nav nav a {
  text-decoration: none;
  color: var(--grove);
  font-weight: 600;
  font-size: 0.92rem;
}
.site-nav nav a:hover { color: var(--moss); }
.site-nav .nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.5rem 0.95rem;
  background: var(--grove);
  color: var(--ivory);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.site-nav .nav-call:hover {
  background: var(--grove-deep);
  color: var(--ivory);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(78vh, 640px);
  display: grid;
  align-items: end;
  background: var(--grove-deep);
  color: var(--ivory);
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(16, 32, 24, 0.88) 0%,
    rgba(16, 32, 24, 0.55) 42%,
    rgba(16, 32, 24, 0.28) 100%
  );
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 3.4rem 1.5rem 2.4rem;
}
.kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--willow-soft);
  margin: 0 0 0.7rem;
}
.hero h1 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.85rem, 5.4vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1.15rem;
  max-width: 18ch;
  text-wrap: balance;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  background: var(--willow);
  color: var(--grove-deep);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.02rem;
}
.btn:hover {
  background: var(--willow-soft);
  color: var(--grove-deep);
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem 3.2rem;
}

section { padding: 2.1rem 0; }
section h2 {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}
.section-note {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0 0 1.25rem;
  max-width: 42rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.cards article {
  background: var(--ivory);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}
.cards img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
  background: var(--grove-deep);
}
.cards h3 {
  margin: 0.9rem 1rem 0.35rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--grove);
}
.cards p {
  margin: 0 1rem 1.1rem;
  font-size: 0.92rem;
  color: #3f3a34;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.calendar article {
  padding: 1.15rem 1rem 1.25rem 0;
  border-right: 1px solid var(--rule);
}
.calendar article:last-child { border-right: none; padding-right: 0; }
.calendar h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-family: "Newsreader", Georgia, serif;
}
.calendar p { margin: 0; font-size: 0.9rem; color: var(--muted); }

.area {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 2rem;
  align-items: center;
}
.area .places {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.45;
}
.area .places li { border-bottom: 1px solid var(--rule); padding: 0.2rem 0; }
.area figure { margin: 0; }
.yard {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: var(--grove-deep);
}

.contact {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  background: var(--grove-deep);
  color: var(--ivory);
  padding: 1.8rem 1.5rem;
  margin: 0.4rem 0 0;
}
.contact h2 { color: var(--willow-soft); }
.contact p { margin: 0.4rem 0; }
.contact a { color: var(--willow-soft); }
.contact .btn {
  margin-top: 0.7rem;
}

.site-foot {
  padding: 1.3rem 1.5rem 2rem;
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
}
.site-foot p { margin: 0; }

@media (max-width: 860px) {
  .site-nav { padding: 0.65rem 1rem; }
  .hero-copy { padding: 2.6rem 1rem 1.8rem; }
  .wrap { padding: 0 1rem 2.6rem; }
  .area, .contact { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .cards img { height: 220px; }
  .calendar { grid-template-columns: 1fr 1fr; }
  .calendar article {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding-right: 0.6rem;
  }
  .calendar article:nth-child(odd) { padding-right: 0.8rem; }
  .yard { height: 240px; }
  .hero { min-height: 72vh; }
}

@media (max-width: 520px) {
  .brand span { font-size: 1.02rem; }
  .site-nav nav a:not(.nav-call) { font-size: 0.88rem; }
  .site-nav .nav-call {
    min-height: 46px;
    padding: 0.65rem 0.95rem;
  }
  .hero { min-height: 78vh; }
  .hero h1 { font-size: 1.85rem; max-width: none; }
  .btn {
    min-height: 52px;
    width: 100%;
    max-width: 22rem;
    font-size: 1.08rem;
  }
  .calendar { grid-template-columns: 1fr; }
}

@media print {
  .site-nav { position: static; }
  .contact { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  a { text-decoration: none; }
}
