:root {
  --forest: #143528;
  --moss: #3d6b4f;
  --moss-soft: #5a8a6c;
  --birch: #f4f0e6;
  --birch-deep: #e7e0d0;
  --brick: #9c4b3a;
  --brick-deep: #7a3a2d;
  --gold: #b8956a;
  --ink: #1a2420;
  --muted: #5a675f;
  --card: #ffffff;
  --line: rgba(20, 53, 40, 0.12);
  --shadow: 0 22px 50px rgba(20, 53, 40, 0.12);
  --radius: 20px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--birch);
  line-height: 1.75;
  font-size: 1.0625rem;
  font-weight: 400;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brick); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--forest); }
.wrap { width: min(1160px, calc(100% - 2.5rem)); margin-inline: auto; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--forest); color: #fff;
  padding: .65rem 1rem; z-index: 100; border-radius: 8px;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Header */
.topbar {
  background: var(--forest); color: #e8f0e4; font-size: .88rem;
  padding: .45rem 0;
}
.topbar .wrap { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between; align-items: center; }
.topbar a { color: #fff; text-decoration: none; font-weight: 500; }
.topbar a:hover { color: var(--gold); }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 240, 230, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .95rem 0;
}
.brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; color: inherit; }
.brand-mark {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--forest); color: var(--birch);
  display: grid; place-items: center; flex-shrink: 0;
}
.brand-mark svg { width: 28px; height: 28px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--forest); letter-spacing: -0.01em;
}
.brand-text span { font-size: .78rem; color: var(--muted); font-weight: 500; }
.nav-toggle {
  display: none; border: 1px solid var(--line); background: #fff;
  border-radius: 999px; padding: .5rem 1rem; font: inherit; cursor: pointer; font-weight: 600;
}
.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .25rem .15rem; align-items: center;
}
.site-nav a {
  text-decoration: none; color: var(--ink); font-weight: 560; font-size: .9rem;
  padding: .45rem .7rem; border-radius: 999px;
}
.site-nav a:hover { background: var(--birch-deep); color: var(--forest); }
.site-nav a[aria-current="page"] { color: var(--brick); background: rgba(156,75,58,.08); }
.site-nav a.nav-cta {
  background: var(--brick); color: #fff; margin-left: .35rem;
  padding: .55rem 1.05rem; box-shadow: 0 8px 18px rgba(156,75,58,.25);
}
.site-nav a.nav-cta:hover { background: var(--forest); color: #fff; }

/* Unique split hero */
.hero-split {
  display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 72vh;
  background: var(--forest);
}
.hero-copy {
  color: #f5f7f4; padding: clamp(2.5rem, 6vw, 4.5rem);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.hero-copy::after {
  content: ""; position: absolute; right: 0; top: 12%; bottom: 12%; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(184,149,106,.55), transparent);
}
.hero-photo {
  position: relative; min-height: 420px;
  background-size: cover; background-position: center;
}
.hero-photo::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,53,40,.35), transparent 45%);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 650; color: var(--gold); margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 1.6rem; height: 2px; background: var(--gold);
}
.hero-copy h1 {
  font-family: var(--font-display); font-weight: 580; line-height: 1.12;
  font-size: clamp(2rem, 4.4vw, 3.15rem); margin: 0 0 1.1rem;
  letter-spacing: -0.02em;
}
.hero-copy .lead { font-size: 1.12rem; max-width: 36rem; opacity: .94; margin: 0 0 1.5rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .78rem 1.35rem; border-radius: 999px; font-weight: 650;
  text-decoration: none; border: 2px solid transparent; cursor: pointer; font: inherit;
}
.btn-primary { background: var(--brick); color: #fff; }
.btn-primary:hover { background: var(--gold); color: var(--forest); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-outline { background: #fff; color: var(--forest); border-color: var(--moss); }
.btn-outline:hover { background: var(--forest); color: #fff; }

.page-hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(184,149,106,.22), transparent 50%),
    var(--forest);
  color: #fff; padding: 3.4rem 0 2.6rem;
}
.page-hero h1 {
  font-family: var(--font-display); font-weight: 580; line-height: 1.15;
  font-size: clamp(1.75rem, 3.6vw, 2.6rem); margin: 0 0 .85rem;
}
.page-hero .lead { max-width: 40rem; opacity: .94; margin: 0; }

.section { padding: 3.6rem 0; }
.section.alt { background: #fff; }
.section.moss {
  background: linear-gradient(160deg, var(--forest), #1f4a34);
  color: #f2f6f1;
}
.section.moss a { color: var(--gold); }
.section-kicker {
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; color: var(--brick); margin: 0 0 .6rem;
}
.section.moss .section-kicker { color: var(--gold); }
h2 {
  font-family: var(--font-display); font-weight: 580; line-height: 1.2;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem); margin: 0 0 1rem;
  letter-spacing: -0.015em; color: var(--forest);
}
.section.moss h2 { color: #fff; }
h3 {
  font-family: var(--font-display); font-weight: 580; font-size: 1.25rem;
  margin: 0 0 .55rem; color: var(--forest);
}
.prose p { margin: 0 0 1.05rem; }
.prose p:last-child { margin-bottom: 0; }
.lead-ink { font-size: 1.12rem; color: var(--muted); max-width: 46rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.45rem 1.4rem; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: linear-gradient(180deg, var(--moss), var(--gold));
}
.card h3 { margin-top: .1rem; }
.card p { margin: 0; color: var(--muted); }
.card-soft {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 1.3rem;
}
.card-soft h3 { color: #fff; }
.photo-frame {
  border-radius: calc(var(--radius) + 4px); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.photo-frame figcaption {
  font-size: .86rem; color: var(--muted); padding: .7rem .9rem .85rem; background: #fff;
}

.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin: 1.5rem 0;
}
.stat {
  background: #fff; border-radius: 16px; padding: 1.1rem 1.2rem;
  border: 1px solid var(--line); text-align: center;
}
.stat strong {
  display: block; font-family: var(--font-display); font-size: 1.45rem;
  color: var(--forest); margin-bottom: .2rem;
}
.stat span { font-size: .88rem; color: var(--muted); }

.visit-banner {
  background: linear-gradient(120deg, var(--birch-deep), #fff 55%);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
}
.visit-banner p { margin: 0; max-width: 40rem; }
.visit-banner strong { color: var(--forest); }

.gallery {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: .85rem;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 16px;
  min-height: 180px;
}
.gallery .span-tall { grid-row: span 2; min-height: 380px; }

.callout {
  border-left: 4px solid var(--gold); background: #fff;
  padding: 1.1rem 1.25rem; border-radius: 0 14px 14px 0;
  box-shadow: var(--shadow);
}

.form-card {
  background: #fff; border-radius: var(--radius); padding: 1.6rem;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
label { display: block; font-weight: 600; font-size: .9rem; margin: 0 0 .35rem; }
input, select, textarea {
  width: 100%; font: inherit; padding: .7rem .85rem; border-radius: 12px;
  border: 1px solid rgba(20,53,40,.2); background: var(--birch); margin-bottom: 1rem;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--moss); outline-offset: 1px; background: #fff;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }

.map-band { background: var(--birch-deep); padding: 2.4rem 0 0; }
.map-band h2 { margin-bottom: .35rem; }
.map-band p { color: var(--muted); margin: 0 0 1rem; }
.map-frame {
  border-radius: 18px 18px 0 0; overflow: hidden; border: 1px solid var(--line);
  border-bottom: 0; background: #ddd;
}
.map-frame iframe { width: 100%; height: 420px; display: block; border: 0; }

.site-footer {
  background: var(--forest); color: #d7e4db; padding: 2.8rem 0 1.6rem;
}
.site-footer a { color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.75rem;
  margin-bottom: 2rem;
}
.site-footer h3 {
  color: var(--gold); font-size: .82rem; letter-spacing: .08em;
  text-transform: uppercase; margin: 0 0 .85rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0 0 .45rem; }
.footer-brand {
  font-family: var(--font-display); color: #fff; font-size: 1.25rem;
  margin: 0 0 .55rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.1rem;
  display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; justify-content: space-between;
  font-size: .88rem;
}
.alnm { font-weight: 650; }

@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-copy::after { display: none; }
  .hero-photo { min-height: 300px; order: -1; }
  .grid-2, .grid-3, .grid-4, .footer-grid, .stat-row, .form-grid, .gallery {
    grid-template-columns: 1fr;
  }
  .gallery .span-tall { grid-row: auto; min-height: 240px; }
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; width: 100%; }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; padding: .5rem 0 1rem; }
  .header-inner { flex-wrap: wrap; }
  .site-nav a.nav-cta { margin-left: 0; text-align: center; }
}
