:root {
  --ink: #17211d;
  --muted: #68736d;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --line: #d8ddd7;
  --accent: #4b6356;
  --accent-dark: #31463b;
  --soft: #edf0eb;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 245, 239, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(216, 221, 215, 0.8);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.05rem;
}

.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a { text-decoration: none; font-size: 0.93rem; color: #37423c; }
.site-nav a:hover { color: var(--accent-dark); }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.4rem; }

.hero { padding: 96px 0 78px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 72px;
}

eyebrow, .section-kicker {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--accent);
}

h1, h2, h3 { margin-top: 0; }
h1, h2 { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; }
h1 { font-size: clamp(4rem, 8vw, 7.8rem); line-height: 0.92; margin-bottom: 24px; }
h2 { font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.05; margin-bottom: 30px; }
h3 { font-size: 1.05rem; }

.lede { max-width: 650px; font-size: clamp(1.18rem, 2vw, 1.5rem); color: #445149; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 12px 18px; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 0.92rem; }
.btn.primary { background: var(--ink); color: white; }
.btn.secondary { border: 1px solid var(--ink); }

.hero-panel { min-height: 460px; }
.placeholder-box {
  height: 100%;
  min-height: 460px;
  border: 1px dashed #9ca8a1;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,.55)),
    radial-gradient(circle at 20% 20%, #dfe6df 0, transparent 36%),
    radial-gradient(circle at 80% 70%, #e4ddd1 0, transparent 38%);
  color: var(--muted);
  text-align: center;
  padding: 30px;
}
.placeholder-box span { font-weight: 600; color: var(--ink); }
.placeholder-box small { margin-top: 8px; }

.section { padding: 92px 0; border-top: 1px solid var(--line); }
.section.alt { background: var(--surface); }
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; }
.prose { font-size: 1.08rem; max-width: 720px; }
.prose p:first-child { margin-top: 0; }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.card { min-height: 230px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.card-number { display: block; font-size: 0.74rem; color: var(--muted); margin-bottom: 54px; letter-spacing: 0.1em; }
.card h3 { font-size: 1.15rem; }
.card p { color: #556059; margin-bottom: 0; }
.placeholder-card { border-style: dashed; }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.person-card { display: grid; grid-template-columns: 86px 1fr; gap: 22px; padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.avatar-placeholder { width: 72px; height: 72px; border-radius: 50%; background: var(--soft); display: grid; place-items: center; font-family: "DM Serif Display", Georgia, serif; font-size: 1.2rem; }
.role { color: var(--accent); font-weight: 600; margin-top: -6px; }
.person-card p:last-child { color: var(--muted); margin-bottom: 0; }
.placeholder-person { border-style: dashed; }

.update-list { border-top: 1px solid var(--line); }
.update-item { display: grid; grid-template-columns: 180px 1fr; gap: 30px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.update-item time { color: var(--accent); font-size: 0.9rem; font-weight: 600; }
.update-item h3 { margin-bottom: 8px; }
.update-item p { margin: 0; color: var(--muted); }
.placeholder-update { opacity: 0.72; }

.contact-section { background: var(--accent-dark); color: white; }
.contact-section .section-kicker { color: #cfd8d2; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-card { padding: 28px; border: 1px solid rgba(255,255,255,.25); border-radius: 18px; background: rgba(255,255,255,.05); }
.contact-card p { margin: 0 0 8px; }
.placeholder-text { opacity: 0.68; font-style: italic; }

.site-footer { padding: 34px 0; background: #111814; color: #d8dfda; }
.footer-grid { display: grid; grid-template-columns: 1fr 2fr auto; gap: 32px; align-items: end; }
.site-footer p { margin: 4px 0; font-size: 0.88rem; }
.copyright { text-align: right; }

@media (max-width: 900px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .hero-panel, .placeholder-box { min-height: 320px; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .copyright { text-align: left; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero { padding-top: 64px; }
  .site-nav {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 68px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .cards, .team-grid { grid-template-columns: 1fr; }
  .update-item { grid-template-columns: 1fr; gap: 8px; }
  h1 { font-size: 4rem; }
}
