:root {
  color-scheme: light;
  --ink: #20231f;
  --muted: #646a5f;
  --line: #d9ddcf;
  --paper: #fbfcf8;
  --surface: #ffffff;
  --soft: #eef3e7;
  --green: #395f34;
  --gold: #dda92e;
  --rust: #9c4936;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
p a, li a { color: var(--green); font-weight: 750; text-decoration-thickness: 0.08em; text-underline-offset: 0.2em; }
a:focus-visible, iframe:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  min-height: 56px; padding: 10px clamp(18px, 5vw, 64px);
  background: rgba(251, 252, 248, 0.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; }
.brand-mark { display: inline-grid; width: 30px; height: 30px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--gold); color: #211800; font-size: 0.88rem; }
.nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 18px; color: var(--muted); font-size: 0.95rem; }
.nav a { text-decoration: none; }
.nav a:hover { color: var(--green); }

main { padding: 0 clamp(18px, 5vw, 64px); }
.topline { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.45fr); gap: clamp(28px, 6vw, 84px); align-items: end; padding: clamp(46px, 7vw, 84px) 0 clamp(24px, 4vw, 38px); }
.intro-copy { max-width: 820px; }
.eyebrow { margin: 0 0 10px; color: var(--rust); font-size: 0.78rem; font-weight: 850; letter-spacing: 0; text-transform: uppercase; }
h1, h2 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1 { max-width: 11ch; font-size: clamp(3.3rem, 8vw, 7.4rem); }
h2 { max-width: 14ch; font-size: clamp(1.65rem, 2.8vw, 2.7rem); }
p { margin: 0; }
.lead { max-width: 660px; margin-top: 24px; color: var(--muted); font-size: clamp(1.1rem, 1.5vw, 1.28rem); }

.location-note { max-width: 280px; padding-bottom: 6px; color: var(--muted); }
.location-note p:last-child { font-size: 1.05rem; font-weight: 750; color: var(--ink); }
dt { color: var(--green); font-weight: 800; }
dd { margin: 2px 0 0; color: var(--ink); }

.map-section { display: grid; grid-template-columns: minmax(260px, 0.55fr) minmax(320px, 1fr); gap: clamp(20px, 4vw, 48px); align-items: stretch; margin-bottom: clamp(26px, 5vw, 48px); padding: 20px; background: var(--soft); border: 1px solid var(--line); border-radius: 8px; }
.map-copy { align-self: center; max-width: 390px; }
.map-copy p:not(.eyebrow) { margin-top: 14px; color: var(--muted); }
.map-section iframe { width: 100%; min-height: 280px; border: 1px solid var(--line); border-radius: 6px; background: var(--surface); }
.map-section noscript { display: block; align-self: center; color: var(--muted); }

.photo-strip { margin: 0 0 clamp(38px, 6vw, 72px); }
.photo-strip img { width: 100%; max-height: 380px; object-fit: cover; object-position: center 46%; border-radius: 8px; }
.photo-strip figcaption { margin-top: 8px; color: var(--muted); font-size: 0.92rem; }

.content-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.content-grid article { min-height: 270px; padding: clamp(26px, 4vw, 44px); background: var(--surface); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.content-grid article:nth-child(3n) { background: var(--soft); }
.content-grid p:not(.eyebrow) { max-width: 620px; margin-top: 18px; color: var(--muted); font-size: 1.04rem; }
.compact-facts { display: grid; gap: 10px; margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line); }
.compact-facts div { margin: 0; }

.site-footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; padding: 26px clamp(18px, 5vw, 64px); background: #1f2a1b; color: rgba(255,255,255,0.84); font-size: 0.95rem; }

@media (max-width: 860px) {
  .site-header { align-items: flex-start; flex-direction: column; gap: 10px; }
  .nav { justify-content: flex-start; }
  .topline, .map-section { grid-template-columns: 1fr; }
  h1 { max-width: 9ch; font-size: clamp(3rem, 16vw, 5rem); }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid article { min-height: auto; }
}
