/* ---- Design tokens ---- */
:root {
  --bg: #f4f2ec;
  --bg-2: #ece9df;
  --panel: #fbfaf6;
  --card: #ffffff;
  --ink-1: #1c2a23;
  --ink-2: #364438;
  --ink-3: #5c6b5f;
  --ink-4: #8b978d;
  --line: #e1ded4;
  --line-soft: #ece9df;
  --accent: #3f6b4f;
  --accent-deep: #2f5d44;
  --accent-soft: #e2ebe3;
  --accent-softer: #eef3ee;
  --orange: #f08a3a;
  --r: 14px;
  --r-sm: 10px;
  --r-lg: 22px;
  --shadow-sm: 0 1px 0 rgba(28, 42, 35, 0.04), 0 1px 2px rgba(28, 42, 35, 0.05);
  --shadow-md: 0 1px 0 rgba(28, 42, 35, 0.04), 0 12px 28px rgba(28, 42, 35, 0.07);
  --shadow-lg: 0 30px 60px rgba(28, 42, 35, 0.18), 0 8px 18px rgba(28, 42, 35, 0.08);
}

/* ---- Reset / typography base ---- */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-1);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  letter-spacing: -0.005em;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font-family: inherit;
}

/* ---- Shared utilities ---- */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 600;
}
.serif {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* ---- Section base ---- */
section {
  padding: 96px 0;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-head h2 {
  margin: 14px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
}
.section-head p {
  margin: 14px auto 0;
  color: var(--ink-3);
  font-size: 16px;
  max-width: 54ch;
  text-wrap: pretty;
}
.section-head h2 em {
  font-style: italic;
  color: var(--accent-deep);
}
