/* ==========================================================================
   Samata Institute — core stylesheet
   Palette: olive / forest / dark greens + beige, tan, rust
   ========================================================================== */

:root {
  /* greens */
  --forest-950: #0d1a13;
  --forest-900: #12241a;
  --forest-800: #1b3527;
  --forest-700: #244834;
  --olive-600:  #4f5f33;
  --olive-500:  #6b7d45;
  --olive-400:  #8b9c63;

  /* warms */
  --rust-600:   #a4442a;
  --rust-500:   #c05621;
  --rust-400:   #d97742;
  --tan-400:    #c9a77c;
  --tan-300:    #ddc4a1;
  --beige-200:  #ece4d6;
  --beige-100:  #f5f0e6;
  --beige-50:   #faf7f0;

  /* neutrals */
  --ink:        #16181a;
  --ink-soft:   #33383a;
  --white:      #ffffff;

  /* semantic */
  --bg:           var(--beige-50);
  --bg-alt:       var(--beige-100);
  --bg-deep:      var(--forest-900);
  --surface:      var(--white);
  --text:         var(--ink);
  --text-muted:   #5c6360;
  --text-invert:  var(--beige-100);
  --accent:       var(--rust-500);
  --accent-hover: var(--rust-600);
  --brand:        var(--forest-800);
  --line:         #ddd5c6;
  --line-soft:    #e8e1d4;

  /* type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* rhythm */
  --wrap: 1140px;
  --wrap-narrow: 720px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(13, 26, 19, .06), 0 2px 8px rgba(13, 26, 19, .04);
  --shadow-md: 0 4px 12px rgba(13, 26, 19, .07), 0 12px 32px rgba(13, 26, 19, .06);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.015em;
  margin: 0 0 .6em;
  color: var(--brand);
}
h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.28rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1.15em; }
ul, ol { margin: 0 0 1.15em; padding-left: 1.3em; }
li { margin-bottom: .4em; }
blockquote {
  margin: 2rem 0;
  padding: .3rem 0 .3rem 1.6rem;
  border-left: 3px solid var(--olive-500);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--forest-700);
}
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .88em;
  background: var(--beige-200);
  padding: .15em .4em;
  border-radius: 4px;
}
:focus-visible { outline: 2px solid var(--rust-500); outline-offset: 3px; border-radius: 2px; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 4vw, 3.5rem) 0; }
.section--alt { background: var(--bg-alt); }
.section--deep { background: var(--bg-deep); color: var(--text-invert); }
.section--deep h1, .section--deep h2, .section--deep h3 { color: var(--beige-100); }
.section--deep a { color: var(--tan-300); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--forest-900); color: var(--beige-100);
  padding: .75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 240, .88);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 1.5rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  text-decoration: none; flex-shrink: 0;
}
.brand__mark {
  width: 34px; height: 34px; flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display); font-size: 1.22rem; font-weight: 600;
  color: var(--forest-800); letter-spacing: -.02em;
}
.brand__sub {
  font-size: .625rem; text-transform: uppercase; letter-spacing: .16em;
  color: var(--olive-500); font-weight: 600;
}
.nav__links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: block; padding: .5rem .78rem; border-radius: var(--r-sm);
  text-decoration: none; font-size: .935rem; font-weight: 500;
  color: var(--ink-soft); transition: background .18s var(--ease), color .18s var(--ease);
}
.nav__links a:hover { background: var(--beige-200); color: var(--forest-800); }
.nav__links a[aria-current="page"] { color: var(--forest-800); font-weight: 600; background: var(--beige-200); }
.nav__cta { margin-left: .5rem; }
/* the CTA is a button, not a nav link — don't inherit the link colour rules above */
.nav__links .nav__cta a.btn--primary { color: var(--white); background: var(--forest-800); }
.nav__links .nav__cta a.btn--primary:hover { color: var(--white); background: var(--forest-900); }
.nav__toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: .5rem .6rem; cursor: pointer;
  color: var(--forest-800);
}
.nav__toggle svg { display: block; }

@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--beige-50); border-bottom: 1px solid var(--line);
    padding: .5rem 24px 1.25rem;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: .8rem .25rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav__cta { margin: .9rem 0 0; }
  .nav__cta .btn { width: 100%; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .72rem 1.4rem; border-radius: 999px; border: 1px solid transparent;
  font-family: var(--font-body); font-size: .94rem; font-weight: 600;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .18s var(--ease), background .18s var(--ease),
              color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--forest-800); color: var(--beige-100); }
.btn--primary:hover { background: var(--forest-900); box-shadow: var(--shadow-md); }
.btn--accent { background: var(--accent); color: var(--white); }
.btn--accent:hover { background: var(--accent-hover); box-shadow: var(--shadow-md); }
.btn--ghost { border-color: var(--line); color: var(--forest-800); background: transparent; }
.btn--ghost:hover { border-color: var(--olive-500); background: var(--beige-100); }
.btn--light { background: var(--beige-100); color: var(--forest-900); }
.btn--light:hover { background: var(--white); }
.btn--outline-light { border-color: rgba(236, 228, 214, .35); color: var(--beige-100); }
.btn--outline-light:hover { border-color: var(--tan-300); background: rgba(236, 228, 214, .08); }
.btn--sm { padding: .5rem 1rem; font-size: .86rem; }

/* ---------- eyebrow / labels ---------- */
.eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--olive-500); margin-bottom: 1rem;
}
.section--deep .eyebrow { color: var(--tan-400); }
.lead { font-size: 1.16rem; color: var(--text-muted); line-height: 1.7; }
.section--deep .lead { color: rgba(236, 228, 214, .8); }
.section-head { max-width: 760px; margin-bottom: 3rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 900px 600px at 88% -10%, rgba(107, 125, 69, .22), transparent 65%),
    radial-gradient(ellipse 700px 500px at 5% 105%, rgba(192, 86, 33, .12), transparent 60%),
    linear-gradient(170deg, var(--beige-50) 0%, var(--beige-100) 100%);
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line-soft);
}
.hero__grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 em { font-style: italic; color: var(--olive-600); }
.hero__lead { font-size: clamp(1.08rem, 1.5vw, 1.28rem); color: var(--ink-soft); max-width: 44ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero__stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem 1.5rem;
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line);
}
.hero__stats .stat__label { text-wrap: balance; }
@media (max-width: 520px) { .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* two-up stat pairs (about sidebar) */
.statgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.statgrid .stat__label { text-wrap: balance; }
.stat__num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 600;
  color: var(--forest-800); line-height: 1;
}
.stat__label {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-muted); margin-top: .4rem;
}
.hero__art { position: relative; }
.hero__art svg { width: 100%; height: auto; filter: drop-shadow(0 18px 40px rgba(13, 26, 19, .13)); }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 380px; }
  .hero__stats { gap: 1.75rem; }
}

/* ---------- page header (interior pages) ---------- */
.page-head {
  background:
    radial-gradient(ellipse 800px 400px at 80% 0%, rgba(36, 72, 52, .55), transparent 70%),
    linear-gradient(160deg, var(--forest-900), var(--forest-800));
  color: var(--text-invert);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.page-head h1 { color: var(--beige-100); max-width: 22ch; }
.page-head .lead { color: rgba(236, 228, 214, .82); max-width: 62ch; }
.page-head .eyebrow { color: var(--tan-400); }
.breadcrumb {
  font-size: .8rem; color: rgba(236, 228, 214, .6);
  margin-bottom: 1.5rem; letter-spacing: .04em;
}
.breadcrumb a { color: rgba(236, 228, 214, .75); text-decoration: none; }
.breadcrumb a:hover { color: var(--tan-300); text-decoration: underline; }

/* ---------- cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r-md); padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card--link { text-decoration: none; display: block; color: inherit; }
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--olive-400); }
.card h3 { margin-bottom: .5rem; }
.card p:last-child { margin-bottom: 0; }
.card__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--beige-200); color: var(--forest-800);
  display: grid; place-items: center; margin-bottom: 1.1rem;
}
.card__icon svg { width: 22px; height: 22px; }
.card__meta {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--olive-500); font-weight: 600; margin-bottom: .6rem;
}
.card--deep {
  background: rgba(236, 228, 214, .06); border-color: rgba(236, 228, 214, .14);
  box-shadow: none;
}
.card--deep h3 { color: var(--beige-100); }
.card--deep p { color: rgba(236, 228, 214, .76); }
.card--deep .card__icon { background: rgba(236, 228, 214, .1); color: var(--tan-300); }

/* numbered pillar cards */
.pillar { position: relative; padding-top: 1.4rem; }
.pillar__num {
  font-family: var(--font-display); font-size: .82rem; font-weight: 600;
  letter-spacing: .1em; color: var(--rust-500); margin-bottom: .7rem;
  display: block;
}

/* ---------- tags / pills ---------- */
.tags { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.tag {
  display: inline-block; font-size: .74rem; font-weight: 600;
  letter-spacing: .04em; padding: .28rem .7rem; border-radius: 999px;
  background: var(--beige-200); color: var(--olive-600);
  text-decoration: none; border: 1px solid transparent;
}
a.tag:hover { background: var(--olive-500); color: var(--beige-100); }
.tag--accent { background: rgba(192, 86, 33, .12); color: var(--rust-600); }
.tag--is-active { background: var(--forest-800); color: var(--beige-100); }

/* ---------- filter bar ---------- */
.filters {
  display: flex; flex-wrap: wrap; gap: .5rem; align-items: center;
  margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line);
}
.filters__label {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .14em;
  font-weight: 700; color: var(--text-muted); margin-right: .5rem;
}
.filter-btn {
  font-family: var(--font-body); font-size: .86rem; font-weight: 600;
  padding: .42rem .95rem; border-radius: 999px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--ink-soft); transition: all .18s var(--ease);
}
.filter-btn:hover { border-color: var(--olive-400); color: var(--forest-800); }
.filter-btn.is-active { background: var(--forest-800); border-color: var(--forest-800); color: var(--beige-100); }

/* ---------- policy list ---------- */
.policy {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r-md); overflow: hidden; margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.policy__btn {
  width: 100%; display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.4rem 1.6rem; background: none; border: 0; cursor: pointer;
  text-align: left; font-family: inherit; color: inherit;
}
.policy__btn:hover { background: var(--beige-50); }
.policy__num {
  font-family: var(--font-display); font-size: .9rem; font-weight: 600;
  color: var(--rust-500); flex-shrink: 0; padding-top: .18rem; min-width: 2.1rem;
}
.policy__head { flex: 1; }
.policy__title {
  font-family: var(--font-display); font-size: 1.18rem; font-weight: 600;
  color: var(--forest-800); display: block; margin-bottom: .3rem;
  letter-spacing: -.01em;
}
.policy__tease { font-size: .93rem; color: var(--text-muted); margin: 0; }
.policy__chev {
  flex-shrink: 0; color: var(--olive-500); padding-top: .3rem;
  transition: transform .25s var(--ease);
}
.policy__btn[aria-expanded="true"] .policy__chev { transform: rotate(180deg); }
.policy__body {
  display: none; padding: 0 1.6rem 1.7rem;
  margin-left: 3.1rem; border-top: 1px solid var(--line-soft); padding-top: 1.4rem;
}
.policy__body.is-open { display: block; }
.policy__body > *:last-child { margin-bottom: 0; }
.policy__body h4 { color: var(--olive-600); margin-bottom: .5rem; margin-top: 1.4rem; }
.policy__body h4:first-child { margin-top: 0; }
@media (max-width: 620px) {
  .policy__btn { padding: 1.2rem; }
  .policy__body { margin-left: 0; padding: 1.2rem; }
}

/* ---------- person cards ---------- */
.person {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.person:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.person__portrait {
  aspect-ratio: 4 / 3; background: linear-gradient(150deg, var(--olive-500), var(--forest-800));
  display: grid; place-items: center; position: relative;
}
.person__initials {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 600;
  color: rgba(245, 240, 230, .92); letter-spacing: .02em;
}
.person__body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.person__name { font-size: 1.15rem; margin-bottom: .2rem; }
.person__role {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--rust-500); font-weight: 600; margin-bottom: .9rem;
}
.person__bio { font-size: .93rem; color: var(--text-muted); flex: 1; }
.person__foot { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line-soft); }

/* single-person layout: portrait beside the bio rather than above it */
.person--solo { flex-direction: row; max-width: 720px; }
.person--solo:hover { transform: none; box-shadow: var(--shadow-sm); }
.person--solo .person__portrait { aspect-ratio: auto; flex: 0 0 200px; }
.person--solo .person__initials { font-size: 3rem; }
.person--solo .person__body { padding: 1.9rem 2rem; }
@media (max-width: 620px) {
  .person--solo { flex-direction: column; }
  .person--solo .person__portrait { flex: 0 0 auto; aspect-ratio: 16 / 9; }
}

/* ---------- post list ---------- */
.post-list { list-style: none; margin: 0; padding: 0; }
.post {
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem;
  padding: 1.9rem 0; border-bottom: 1px solid var(--line);
  align-items: start;
}
.post:first-child { padding-top: 0; }
.post__title { font-size: 1.4rem; margin-bottom: .5rem; }
.post__title a { text-decoration: none; }
.post__title a:hover { color: var(--rust-600); }
.post__excerpt { color: var(--text-muted); margin-bottom: .9rem; max-width: 68ch; }
.post__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .6rem;
  font-size: .82rem; color: var(--text-muted);
}
.post__dot { color: var(--line); }
.post__aside { text-align: right; font-size: .8rem; color: var(--text-muted); white-space: nowrap; }
@media (max-width: 680px) {
  .post { grid-template-columns: 1fr; gap: .75rem; }
  .post__aside { text-align: left; }
}

.featured {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); padding: clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-md); margin-bottom: 3.5rem;
  border-left: 4px solid var(--rust-500);
}
.featured .post__title { font-size: clamp(1.6rem, 3vw, 2.1rem); }

/* ---------- link directory ---------- */
.linkgroup { margin-bottom: 3rem; }
.linkgroup__title {
  display: flex; align-items: baseline; gap: .8rem;
  padding-bottom: .8rem; margin-bottom: 1.4rem;
  border-bottom: 2px solid var(--olive-500);
}
.linkgroup__title h2 { margin: 0; font-size: 1.5rem; }
.linkgroup__count { font-size: .8rem; color: var(--text-muted); }
.linkrow {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.25rem; border-radius: var(--r-md);
  text-decoration: none; color: inherit; border: 1px solid transparent;
  transition: background .18s var(--ease), border-color .18s var(--ease);
}
.linkrow:hover { background: var(--surface); border-color: var(--line-soft); }
.linkrow__body { flex: 1; min-width: 0; }
.linkrow__name {
  font-weight: 600; color: var(--forest-800); display: flex;
  align-items: center; gap: .45rem; margin-bottom: .2rem;
}
.linkrow__name svg { width: 13px; height: 13px; opacity: .45; flex-shrink: 0; }
.linkrow:hover .linkrow__name { color: var(--rust-600); }
.linkrow__desc { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ---------- forms ---------- */
.form-grid { display: grid; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field label { font-size: .86rem; font-weight: 600; color: var(--forest-800); }
.field label .req { color: var(--rust-500); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--text);
  padding: .78rem .95rem; border: 1px solid var(--line);
  border-radius: var(--r-sm); background: var(--surface);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--olive-500);
  box-shadow: 0 0 0 3px rgba(107, 125, 69, .15);
}
.field__hint { font-size: .8rem; color: var(--text-muted); }
.form-note { font-size: .85rem; color: var(--text-muted); }

.form-status {
  display: none; padding: .9rem 1.1rem; border-radius: var(--r-sm);
  font-size: .92rem; margin-top: 1rem;
}
.form-status.is-visible { display: block; }
.form-status--ok { background: rgba(107, 125, 69, .14); color: var(--olive-600); border: 1px solid rgba(107, 125, 69, .3); }

/* ---------- contact split ---------- */
.split { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.info-block { margin-bottom: 2rem; }
.info-block h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.info-block p { margin-bottom: 0; color: var(--text-muted); font-size: .95rem; }
.info-block a { color: var(--rust-600); text-decoration: none; font-weight: 500; }
.info-block a:hover { text-decoration: underline; }

/* ---------- prose (about, articles) ---------- */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.75rem; }
.prose h3 { margin-top: 2rem; }
.prose > *:first-child { margin-top: 0; }
.prose a { color: var(--rust-600); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }

/* timeline */
.timeline { list-style: none; margin: 2rem 0 0; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 5px; top: .6rem; bottom: .6rem;
  width: 2px; background: var(--line);
}
.timeline li { position: relative; padding: 0 0 1.9rem 2rem; }
.timeline li::before {
  content: ""; position: absolute; left: 0; top: .48rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--olive-500); border: 2px solid var(--bg);
  box-shadow: 0 0 0 2px var(--olive-500);
}
.timeline__year {
  font-family: var(--font-display); font-weight: 600; color: var(--rust-500);
  font-size: .92rem; letter-spacing: .04em; display: block; margin-bottom: .2rem;
}
.timeline p { margin: 0; color: var(--text-muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(ellipse 700px 400px at 15% 110%, rgba(192, 86, 33, .3), transparent 65%),
    linear-gradient(140deg, var(--forest-800), var(--forest-950));
  color: var(--text-invert);
  border-radius: var(--r-lg); padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.cta-band h2 { color: var(--beige-100); max-width: 24ch; margin-inline: auto; }
.cta-band p { color: rgba(236, 228, 214, .82); max-width: 55ch; margin-inline: auto; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 2rem; }

/* ---------- quote feature ---------- */
.quote-feature { text-align: center; max-width: 780px; margin: 0 auto; }
.quote-feature blockquote {
  border: 0; margin: 0 0 1.5rem; padding: 0;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem); font-style: normal;
  line-height: 1.4; color: var(--beige-100);
}
.quote-feature cite {
  font-style: normal; font-size: .88rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--tan-400); font-weight: 600;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--forest-950); color: rgba(236, 228, 214, .72);
  padding: clamp(3rem, 5vw, 4.5rem) 0 2rem; font-size: .93rem;
}
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 3rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand .brand__name { color: var(--beige-100); }
.footer__brand p { margin-top: 1rem; max-width: 34ch; font-size: .9rem; line-height: 1.6; }
.footer h4 {
  color: var(--beige-100); font-family: var(--font-body); font-size: .74rem;
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1.1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: .6rem; }
.footer a { text-decoration: none; color: rgba(236, 228, 214, .72); transition: color .18s var(--ease); }
.footer a:hover { color: var(--tan-300); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  padding-top: 1.75rem; border-top: 1px solid rgba(236, 228, 214, .12);
  font-size: .82rem; color: rgba(236, 228, 214, .5);
}
.footer__bottom p { margin: 0; }
.footer__legal { display: flex; gap: 1.25rem; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.is-hidden { display: none !important; }
