/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #f7f3ec;
  --paper:   #ede8de;
  --ink:     #1e1b17;
  --mid:     #7a7268;
  --faint:   #beb6aa;
  --line:    #ddd8ce;
  --red:     #8b2a2a;
  --red-dim: rgba(139,42,42,.07);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 99;
  background: rgba(247,243,236,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 2.5rem; height: 58px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-style: italic; font-weight: 400;
  color: var(--ink); text-decoration: none; letter-spacing: .01em;
}
.nav-logo span { color: var(--red); margin-left: .2rem; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: .62rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { width: 20px; height: 1px; background: var(--ink); display: block; }
.mobile-nav { display: none; background: var(--bg); border-bottom: 1px solid var(--line); padding: 1.5rem 2.5rem; flex-direction: column; gap: 1.1rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Jost', sans-serif; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mid); text-decoration: none; }
.mobile-nav a:hover { color: var(--ink); }

/* ── PAGE ── */
.page { max-width: 680px; margin: 0 auto; padding: 5rem 2.5rem 7rem; }

/* ── TYPE ── */
.tag {
  font-family: 'Jost', sans-serif;
  font-size: .58rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--red); display: block; margin-bottom: 1rem;
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  line-height: 1.02; font-weight: 400;
  letter-spacing: -.01em; margin-bottom: 1.5rem;
}
h1 em { font-style: italic; }
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.08; font-weight: 400;
  margin-top: 3.5rem; margin-bottom: 1rem;
}
h3 {
  font-family: 'Jost', sans-serif;
  font-size: .72rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--mid); margin-top: 2rem; margin-bottom: .6rem;
}
p { color: rgba(30,27,23,.7); margin-bottom: 1.1rem; font-size: 1rem; line-height: 1.85; }
strong { color: var(--ink); font-weight: 600; }
em { font-style: italic; }
a { color: var(--red); text-decoration: none; border-bottom: 1px solid rgba(139,42,42,.25); transition: border-color .2s; }
a:hover { border-color: var(--red); }

hr { border: none; border-top: 1px solid var(--line); margin: 3rem 0; }

/* ── INTRO ── */
.intro {
  font-size: 1.15rem; line-height: 1.9; font-style: italic;
  color: rgba(30,27,23,.75);
  padding-left: 1.5rem;
  border-left: 2px solid var(--red);
  margin-bottom: 2.5rem;
}

/* ── STAT ROW ── */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px; background: var(--line); margin: 2.5rem 0;
}
.stat { background: var(--bg); padding: 1.75rem 1.5rem; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 400; color: var(--red);
  line-height: 1; margin-bottom: .3rem;
}
.stat-label {
  font-family: 'Jost', sans-serif;
  font-size: .58rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--mid); line-height: 1.5;
}

/* ── PULL QUOTE ── */
.pull-quote {
  padding: 2.25rem 0; margin: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-style: italic;
  line-height: 1.6; color: var(--ink);
}
.pull-quote cite {
  display: block; font-style: normal;
  font-family: 'Jost', sans-serif;
  font-size: .58rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--mid); margin-top: 1rem;
}

/* ── TESTIMONY ── */
.testimony {
  background: var(--paper);
  border-left: 2px solid var(--red);
  padding: 1.75rem 1.75rem 1.75rem 2rem;
  margin: 2rem 0;
}
.testimony p { font-style: italic; font-size: .98rem; color: rgba(30,27,23,.78); margin-bottom: .75rem; }
.testimony p:last-of-type { margin-bottom: 0; }
.testimony cite {
  display: block; font-style: normal;
  font-family: 'Jost', sans-serif;
  font-size: .58rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--mid); margin-top: .9rem;
}

/* ── IMAGE PLACEHOLDER ── */
.img-block {
  width: 100%; background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem; margin: 2rem 0;
  font-family: 'Jost', sans-serif;
}
.img-block img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-block .img-hint {
  font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--faint); padding: 3rem 1rem; text-align: center;
}
.img-caption {
  font-family: 'Jost', sans-serif;
  font-size: .62rem; letter-spacing: .08em;
  color: var(--mid); margin-top: -.5rem; margin-bottom: 2rem;
  text-align: center;
}

/* ── LIST ── */
.plain-list { list-style: none; margin: 1.5rem 0; }
.plain-list li {
  padding: 1rem 0; border-bottom: 1px solid var(--line);
  display: flex; gap: 1.25rem;
  font-size: .95rem; color: rgba(30,27,23,.72); line-height: 1.75;
}
.plain-list li:last-child { border-bottom: none; }
.li-marker {
  font-family: 'Jost', sans-serif;
  font-size: .58rem; letter-spacing: .12em;
  color: var(--red); padding-top: 4px; flex-shrink: 0; min-width: 18px;
}

/* ── ORG LIST ── */
.org-list { list-style: none; margin: 1.75rem 0; }
.org-list li {
  padding: 1rem 0; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between;
  align-items: baseline; flex-wrap: wrap; gap: .5rem;
}
.org-list li:last-child { border-bottom: none; }
.org-name { font-size: .95rem; font-family: 'Cormorant Garamond', serif; }
.org-link {
  font-family: 'Jost', sans-serif;
  font-size: .58rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--mid); text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px; transition: color .2s, border-color .2s;
}
.org-link:hover { color: var(--ink); border-color: var(--ink); }

/* ── PAGE NAV ── */
.page-nav {
  display: flex; justify-content: space-between;
  padding-top: 2.5rem; border-top: 1px solid var(--line);
  margin-top: 4rem; flex-wrap: wrap; gap: 1rem;
}
.page-nav a {
  font-family: 'Jost', sans-serif;
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; border-bottom: none;
  transition: color .2s;
}
.page-nav a:hover { color: var(--ink); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--line);
  padding: 1.75rem 2.5rem;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy {
  font-family: 'Jost', sans-serif;
  font-size: .58rem; letter-spacing: .1em; color: var(--mid);
}
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a {
  font-family: 'Jost', sans-serif;
  font-size: .58rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; border-bottom: none;
}
.footer-links a:hover { color: var(--ink); }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .page { padding: 3rem 1.5rem 5rem; }
  footer { flex-direction: column; text-align: center; }
}
