:root {
  --bg: #f7f3eb;
  --paper: #fffaf1;
  --green: #315c42;
  --green-dark: #183b2b;
  --text: #263228;
  --muted: #6f756c;
  --line: rgba(49, 92, 66, .22);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem clamp(1rem, 5vw, 5rem);
  background: rgba(255, 250, 241, .96);
  border-bottom: 1px solid var(--line);
}
.site-header.compact { padding-block: 1rem; }

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  text-decoration: none;
}
.brand-mark { width: 92px; height: auto; }
.brand-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green-dark);
  line-height: 1;
}
.brand-subtitle { color: var(--muted); font-size: .95rem; }

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .88rem;
}
.main-nav a { color: var(--text); }
.main-nav a.active { color: var(--green); border-bottom: 2px solid var(--green); padding-bottom: .3rem; }

.hero {
  position: relative;
  min-height: 54vh;
  overflow: hidden;
  background: #d9ddce;
}
.hero img { width: 100%; height: 68vh; min-height: 470px; object-fit: cover; object-position: center center; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247,243,235,.96), rgba(247,243,235,.62) 36%, rgba(247,243,235,.08) 64%);
}
.hero-text {
  position: absolute;
  z-index: 1;
  top: 15%;
  left: clamp(1.5rem, 8vw, 7rem);
  max-width: 520px;
}
.hero h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.12;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); margin: 0 0 1.2rem; }
.hero p { font-size: clamp(1.1rem, 2vw, 1.45rem); }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem !important;
  font-weight: 700;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 8vw, 7rem);
  background: var(--paper);
}
.intro h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-top: 0; }
.intro-text p { max-width: 650px; }
.note {
  margin-top: 2rem;
  padding-left: 1.3rem;
  border-left: 3px solid var(--green);
}
.framed-image {
  margin: 0;
  padding: .55rem;
  background: white;
  box-shadow: 0 16px 35px rgba(24, 59, 43, .16);
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 2.5rem clamp(1.5rem, 8vw, 7rem);
  background: #f1eadf;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.values article {
  text-align: center;
  padding: 1rem 2rem;
  border-right: 1px solid var(--line);
}
.values article:last-child { border-right: 0; }
.icon { font-size: 2.5rem; color: var(--green); line-height: 1; }
.values h3 { font-size: 1.35rem; margin: .75rem 0 .35rem; }
.values p { font-size: .95rem; margin: 0; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.gallery img { width: 100%; height: 310px; object-fit: cover; }

.contact {
  text-align: center;
  padding: 4rem 1.5rem 5rem;
  background: var(--paper) url("assets/footer-hills.svg") bottom center / cover no-repeat;
}
.mail-icon { font-size: 2rem; color: var(--green); }
.contact h2 { margin: .5rem 0 1rem; }
.contact a { font-size: 1.25rem; font-weight: 600; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1.5rem, 8vw, 7rem);
  background: var(--green-dark);
  color: #f7f3eb;
  font-size: .9rem;
}
.site-footer a { color: #f7f3eb; margin-left: 1.2rem; }

.legal-page {
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 1.5rem;
  min-height: 62vh;
}
.legal-page h1 { font-family: Georgia, "Times New Roman", serif; color: var(--green-dark); font-size: 3rem; }
.legal-page h2 { margin-top: 2rem; }

@media (max-width: 900px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .section-grid, .values, .gallery { grid-template-columns: 1fr; }
  .values article { border-right: 0; border-bottom: 1px solid var(--line); }
  .values article:last-child { border-bottom: 0; }
  .hero img { height: 58vh; }
  .site-footer { flex-direction: column; }
  .site-footer a { margin-left: 0; margin-right: 1rem; }
}
