/* ===================================================================
   Stepping Stones Recovery — Stylesheet
   Palette, type, and components for a calm, compassionate nonprofit site.
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Mulish:wght@400;500;600;700;800&display=swap');

/* ---------- Design tokens ---------- */
:root {
  /* Color */
  --ink:        #2c3a34;   /* primary text — deep green-gray */
  --ink-soft:   #56655d;   /* secondary text */
  --forest:     #3a5a4b;   /* deep sage — headings, primary brand */
  --forest-dk:  #2e4a3d;   /* hover / darker */
  --sage:       #7fa08a;   /* mid sage */
  --sage-tint:  #e3ece5;   /* pale sage surface */
  --sage-tint2: #d3e0d6;   /* slightly deeper sage surface */
  --teal:       #4c7d7a;   /* muted teal — links, secondary actions */
  --teal-dk:    #3c6a67;
  --cream:      #f8f5ee;   /* default page background */
  --sand:       #efe7d7;   /* alternate section background */
  --sand-dk:    #e6dcc6;
  --gold:       #c19a4f;   /* warm accent */
  --gold-soft:  #e7d6ad;
  --terracotta: #bf7a58;   /* warm urgent accent, used sparingly */
  --terracotta-dk: #a96544;
  --white:      #ffffff;
  --line:       #e0d8c8;   /* hairline borders on cream */
  --line-sage:  #cdd9cf;
  --danger:     #9a4a3a;   /* safety notices */
  --danger-bg:  #f7e9e4;

  /* Type */
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body: 'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Spacing & radius */
  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(46, 74, 61, .06);
  --shadow:    0 14px 40px rgba(46, 74, 61, .10);
  --shadow-lg: 0 28px 70px rgba(46, 74, 61, .14);

  --wrap: 1180px;
  --gap: clamp(1.5rem, 4vw, 3rem);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--forest);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.3rem, 5.5vw, 3.7rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 700; }

/* Accessibility */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-link {
  position: absolute; left: 1rem; top: -100px;
  background: var(--forest); color: #fff; padding: .7rem 1.1rem;
  border-radius: var(--radius-sm); z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 1rem; color: #fff; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Layout helpers ---------- */
.wrap { width: min(var(--wrap), 92vw); margin-inline: auto; }
.wrap-narrow { width: min(820px, 92vw); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.bg-cream { background: var(--cream); }
.bg-sand  { background: var(--sand); }
.bg-sage  { background: var(--sage-tint); }
.bg-forest{ background: var(--forest); color: #eef3ef; }
.bg-forest h2, .bg-forest h3 { color: #fff; }
.bg-forest p { color: #d6e2d9; }
.bg-white { background: var(--white); }

.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex; align-items: center; gap: .55rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px;
}
.bg-forest .eyebrow { color: var(--gold-soft); }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 60ch; }
.center { text-align: center; }
.center .lead, .center .eyebrow { margin-inline: auto; }
.center .eyebrow { justify-content: center; }
.measure { max-width: 65ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--body); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: var(--radius-pill);
  border: 2px solid transparent; cursor: pointer; transition: all .18s ease;
  text-align: center; line-height: 1.2;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--forest); color: #fff; }
.btn--primary:hover { background: var(--forest-dk); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--teal-dk); color:#fff; transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #3a2e12; }
.btn--gold:hover { background: #b08c41; color:#3a2e12; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--forest); border-color: var(--line-sage); }
.btn--outline:hover { border-color: var(--forest); background: var(--sage-tint); color: var(--forest); }
.btn--ghost-light { background: rgba(255,255,255,.12); color:#fff; border-color: rgba(255,255,255,.35); }
.btn--ghost-light:hover { background: rgba(255,255,255,.2); color:#fff; }
.btn--sm { padding: .55rem 1.05rem; font-size: .9rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.center .btn-row { justify-content: center; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,245,238,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem; padding-block: .7rem;
  width: min(1340px, 95vw); margin-inline: auto;
}
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand:hover { color: inherit; }
.brand__mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand__name {
  font-family: var(--display); font-weight: 600; font-size: 1.18rem;
  color: var(--forest); line-height: 1.05; letter-spacing: -.01em;
}
.brand__name span { display: block; font-size: .68rem; font-family: var(--body);
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); }

.nav__links { display: flex; align-items: center; gap: .05rem; list-style: none; }
.nav__links a {
  display: block; padding: .5rem .58rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .92rem; color: var(--ink); white-space: nowrap;
}
.nav__links a:hover { background: var(--sage-tint); color: var(--forest); }
.nav__links a[aria-current="page"] { color: var(--forest); }
.nav__links a[aria-current="page"]::after {
  content:""; display:block; height:2px; width: 60%; margin: 2px auto 0;
  background: var(--gold); border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: .5rem; }

.nav__toggle {
  display: none; background: var(--forest); color:#fff; border: none;
  width: 46px; height: 42px; border-radius: var(--radius-sm); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle svg { width: 22px; height: 22px; }

/* mobile nav */
@media (max-width: 1180px) {
  .nav__toggle { display: inline-flex; }
  .nav__links, .nav__cta--inline { display: none; }
  .nav__drawer-cta { display: flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .8rem 4vw 1.4rem; gap: .15rem; box-shadow: var(--shadow);
  }
  .nav.is-open .nav__links a { padding: .8rem .9rem; font-size: 1.05rem; }
  .nav.is-open .nav__links a[aria-current="page"]::after { margin: 4px 0 0; }
}
@media (min-width: 1181px) { .nav__drawer-only { display: none; } }
.nav-mobcta { display: none; }
@media (max-width: 1180px) {
  .nav.is-open .nav-mobcta { display: block; margin-top: .5rem; }
  .nav.is-open .nav-mobcta:first-of-type { margin-top: 1rem; }
}

/* top utility bar */
.utilbar {
  background: var(--forest); color: #d8e4db; font-size: .82rem;
  text-align: center; padding: .35rem 1rem;
}
.utilbar a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.utilbar strong { color: var(--gold-soft); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 10%, var(--sage-tint) 0%, rgba(227,236,229,0) 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream) 100%);
}
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero__content h1 { color: var(--forest); margin-bottom: 1.2rem; }
.hero__content .lead { margin-bottom: 1.8rem; }
.hero__banner {
  display: inline-flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  background: var(--gold-soft); color: #5a4715;
  padding: .5rem 1rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: .9rem; margin-bottom: 1.4rem;
}
.hero__banner .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero__banner a { color: #5a4715; text-decoration: underline; }
.hero__art { position: relative; }
.hero__art .illus-card {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  background: var(--white); border: 1px solid var(--line);
  aspect-ratio: 56 / 47;
}

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; padding-block: 2.5rem 3rem; }
  .hero__art { order: -1; max-width: 460px; margin-inline: auto; }
}

/* ---------- Illustration / photo placeholder ---------- */
.illus { width: 100%; height: auto; display: block; }
.photo-ph {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, var(--sage-tint) 0%, var(--sand) 100%);
  min-height: 220px; display: grid; place-items: center; text-align: center;
  border: 1px solid var(--line);
}
.photo-ph__note {
  font-size: .8rem; color: var(--ink-soft); font-weight: 600;
  padding: .4rem .8rem; background: rgba(255,255,255,.7);
  border-radius: var(--radius-pill); position: absolute; bottom: .8rem; left: 50%;
  transform: translateX(-50%); white-space: nowrap;
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.6rem); }
.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: 920px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: var(--sage-tint); color: var(--forest);
  display: grid; place-items: center; margin-bottom: 1rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .98rem; }
.card--flat { box-shadow: none; }
.card--flat:hover { transform: none; box-shadow: var(--shadow-sm); }

/* value chips */
.value-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
@media (max-width: 620px){ .value-grid { grid-template-columns: 1fr; } }
.value {
  background: var(--white); border-radius: var(--radius); padding: 1.2rem 1.3rem;
  border-left: 4px solid var(--sage); box-shadow: var(--shadow-sm);
}
.value h4 { color: var(--forest); margin-bottom: .3rem; font-family: var(--display); }
.value p { font-size: .95rem; margin: 0; }

/* ---------- Stepping-stones process (signature) ---------- */
.steps { position: relative; }
.steps__track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; position: relative; z-index: 1; }
.steps__path {
  position: absolute; left: 6%; right: 6%; top: 46px; height: 3px; z-index: 0;
  background-image: linear-gradient(90deg, var(--sage) 50%, transparent 50%);
  background-size: 16px 3px; background-repeat: repeat-x; opacity: .8;
}
.step { text-align: center; }
.step__stone {
  width: 90px; height: 90px; margin: 0 auto 1.1rem; border-radius: 46% 54% 52% 48% / 52% 46% 54% 48%;
  background: var(--white); border: 3px solid var(--sage);
  display: grid; place-items: center; position: relative; box-shadow: var(--shadow-sm);
  color: var(--forest);
}
.step__stone svg { width: 34px; height: 34px; }
.step__num {
  position: absolute; top: -8px; right: -6px; width: 28px; height: 28px;
  background: var(--gold); color: #3a2e12; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: .85rem;
  font-family: var(--body); border: 2px solid var(--cream);
}
.step h3 { font-size: 1.18rem; margin-bottom: .35rem; }
.step p { font-size: .95rem; }
@media (max-width: 860px) {
  .steps__track { grid-template-columns: 1fr; gap: 1.8rem; }
  .steps__path { display: none; }
  .step { display: grid; grid-template-columns: 90px 1fr; gap: 1rem; text-align: left; align-items: start; }
  .step__stone { margin: 0; }
  .step .step__body { padding-top: .3rem; }
}

/* ---------- Impact / stats ---------- */
.stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
@media (max-width: 860px){ .stats { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px){ .stats { grid-template-columns: 1fr; } }
.stat {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius); padding: 1.3rem 1rem; text-align: center;
}
.bg-forest .stat .stat__num { color: var(--gold-soft); }
.stat__num { font-family: var(--display); font-size: 2rem; font-weight: 600; color: var(--forest); line-height: 1; }
.stat__label { font-size: .85rem; color: #cdddd1; margin-top: .5rem; font-weight: 600; }
.stat__placeholder {
  font-size: .72rem; color: #9fb6a6; text-transform: uppercase; letter-spacing: .08em;
  margin-top: .4rem; display: block;
}

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,3.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--forest) 0%, var(--teal-dk) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(2.2rem,5vw,3.4rem);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; margin-bottom: .8rem; }
.cta-band p { color: #d7e3da; max-width: 56ch; margin: 0 auto 1.6rem; }
.cta-band .btn-row { justify-content: center; }
.cta-band::after {
  content:""; position:absolute; inset:auto -40px -60px auto; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(193,154,79,.35), transparent 70%); pointer-events:none;
}

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background:
    radial-gradient(90% 120% at 90% -10%, var(--sage-tint) 0%, transparent 55%),
    var(--cream);
  padding-block: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 1rem; }
.breadcrumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.breadcrumb a { color: var(--teal-dk); font-weight: 600; }

/* ---------- Notices ---------- */
.notice {
  border-radius: var(--radius); padding: 1.1rem 1.3rem; font-size: .95rem;
  display: flex; gap: .9rem; align-items: flex-start;
}
.notice svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.notice p { margin: 0; }
.notice--safety { background: #f6e8e2; border: 1px solid #e3c3b6; color: #6e3325; }
.notice--safety strong, .notice--safety svg { color: var(--danger); }
.notice--safety p { color: #6e3325; }
.notice--info { background: var(--sage-tint); border: 1px solid var(--line-sage); color: var(--forest-dk); }
.notice--info p { color: var(--forest-dk); }
.notice--privacy { background: var(--sand); border: 1px solid var(--sand-dk); color: #5e5238; }
.notice--privacy p { color: #5e5238; }

/* ---------- Accordion (FAQ / expandable) ---------- */
.accordion { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--white); }
.acc-item + .acc-item { border-top: 1px solid var(--line); }
.acc-trigger {
  width: 100%; text-align: left; background: var(--white); border: none; cursor: pointer;
  padding: 1.15rem 1.3rem; font-family: var(--body); font-weight: 700; font-size: 1.05rem;
  color: var(--forest); display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.acc-trigger:hover { background: var(--cream); }
.acc-trigger .chev { width: 22px; height: 22px; flex-shrink: 0; transition: transform .2s; color: var(--teal); }
.acc-trigger[aria-expanded="true"] .chev { transform: rotate(180deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.acc-panel__inner { padding: 0 1.3rem 1.3rem; }
.acc-panel__inner p { margin: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.4rem, 4vw, 2.4rem); box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.3rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .9rem; color: var(--ink); }
.field .req { color: var(--terracotta); }
.field .hint { font-size: .8rem; color: var(--ink-soft); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: .75rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream); transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(76,125,122,.15); background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }
.fieldset { border: none; padding: 0; margin: 0; }
.fieldset legend { font-weight: 700; font-size: .95rem; color: var(--forest); margin-bottom: .6rem; padding: 0; }
.check-row { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.check-row input { width: auto; margin-top: .25rem; accent-color: var(--forest); }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem .9rem; }
@media (max-width: 560px){ .check-grid { grid-template-columns: 1fr; } }
.form-success {
  display: none; background: var(--sage-tint); border: 1px solid var(--line-sage);
  border-radius: var(--radius); padding: 1.4rem 1.5rem; color: var(--forest-dk);
}
.form-success.show { display: block; }
.form-success h3 { color: var(--forest); margin-bottom: .4rem; }

/* ---------- Housing cards ---------- */
.filters {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem 1.3rem; box-shadow: var(--shadow-sm); margin-bottom: 2rem;
}
.filters__row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: flex-end; }
.filters .field { flex: 1 1 180px; gap: .3rem; }
.filters .field label { font-size: .8rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.chip {
  font-size: .82rem; font-weight: 700; padding: .4rem .85rem; border-radius: var(--radius-pill);
  border: 1.5px solid var(--line-sage); background: var(--cream); color: var(--ink-soft); cursor: pointer;
  transition: all .15s;
}
.chip:hover { border-color: var(--sage); }
.chip.active { background: var(--forest); color: #fff; border-color: var(--forest); }

.house-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s;
}
.house-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.house-card__media { position: relative; aspect-ratio: 16/10; }
.house-card__media .photo-ph { height: 100%; border-radius: 0; border: none; min-height: 0; }
.status {
  position: absolute; top: .9rem; left: .9rem; font-size: .78rem; font-weight: 800;
  padding: .35rem .8rem; border-radius: var(--radius-pill); letter-spacing: .02em;
  background: var(--white); box-shadow: var(--shadow-sm);
}
.status--open    { color: #2f6b4a; } .status--open::before,
.status--limited { } 
.status[data-tone="green"]  { color: #2f6b4a; }
.status[data-tone="gold"]   { color: #8a6a1e; }
.status[data-tone="teal"]   { color: var(--teal-dk); }
.status[data-tone="gray"]   { color: #6b6b6b; }
.status[data-tone="terra"]  { color: #a9532f; }
.house-card__body { padding: 1.4rem; display: flex; flex-direction: column; gap: .9rem; flex: 1; }
.house-card__body h3 { margin: 0; }
.house-card__loc { font-size: .9rem; font-weight: 700; color: var(--teal-dk); display: flex; align-items: center; gap: .35rem; }
.house-card__loc svg { width: 16px; height: 16px; }
.house-card__desc { font-size: .96rem; margin: 0; }
.spec-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; font-size: .9rem; }
.spec-list li { display: flex; gap: .55rem; color: var(--ink-soft); }
.spec-list li svg { width: 16px; height: 16px; color: var(--sage); flex-shrink: 0; margin-top: 3px; }
.spec-list li strong { color: var(--ink); font-weight: 700; }
.house-card__updated { font-size: .78rem; color: var(--ink-soft); }
.house-card__actions { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: auto; }
.tag-line { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag { font-size: .72rem; font-weight: 700; padding: .25rem .6rem; border-radius: var(--radius-pill);
  background: var(--sage-tint); color: var(--forest-dk); }

/* outside provider listing */
.provider {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem; display: grid; gap: .5rem; box-shadow: var(--shadow-sm);
}
.provider h4 { color: var(--forest); font-size: 1.15rem; }
.provider__meta { display: flex; flex-wrap: wrap; gap: .4rem; }

/* ---------- Resource directory ---------- */
.res-cat { margin-bottom: 1rem; }
.res-list { display: grid; gap: .8rem; }
.res-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1rem 1.2rem; display: grid; gap: .3rem;
}
.res-item h4 { color: var(--forest); margin: 0; }
.res-item .ph { color: var(--ink-soft); font-style: italic; font-size: .9rem; }

/* ---------- Meeting buttons grid ---------- */
.link-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
@media (max-width: 820px){ .link-grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 520px){ .link-grid { grid-template-columns: 1fr;} }
.link-tile {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem; display: flex; gap: .9rem; align-items: center; box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s; color: var(--ink);
}
.link-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--ink); }
.link-tile__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--sage-tint);
  color: var(--forest); display: grid; place-items: center; flex-shrink: 0; }
.link-tile__icon svg { width: 22px; height: 22px; }
.link-tile strong { display: block; color: var(--forest); font-family: var(--display); font-weight: 600; font-size: 1.05rem; }
.link-tile span { font-size: .85rem; color: var(--ink-soft); }

/* ---------- Two big homepage cards ---------- */
.dual { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 760px){ .dual { grid-template-columns: 1fr; } }
.dual-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  border-top: 5px solid var(--sage); transition: transform .18s, box-shadow .18s;
}
.dual-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.dual-card--gold { border-top-color: var(--gold); }
.dual-card .card__icon { width: 56px; height: 56px; }

/* ---------- Process list (admissions) ---------- */
.olist { list-style: none; counter-reset: step; padding: 0; display: grid; gap: 1rem; }
.olist li { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: start; }
.olist li::before {
  counter-increment: step; content: counter(step);
  width: 44px; height: 44px; border-radius: 50%; background: var(--sage-tint); color: var(--forest);
  display: grid; place-items: center; font-weight: 800; font-family: var(--display);
}
.olist li h4 { margin-bottom: .2rem; color: var(--forest); }
.olist li p { margin: 0; font-size: .96rem; }

/* checklist */
.checklist { list-style: none; padding: 0; display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink-soft); }
.checklist li svg { width: 20px; height: 20px; color: var(--sage); flex-shrink: 0; margin-top: 3px; }

/* pill list */
.pill-list { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; padding: 0; }
.pill-list li { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: .45rem 1rem; font-weight: 600; font-size: .9rem; color: var(--ink); }

/* leadership */
.people { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }
@media (max-width: 900px){ .people { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .people { grid-template-columns: 1fr; } }
.person { text-align: center; }
.person__photo {
  width: 130px; height: 130px; margin: 0 auto 1rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-tint), var(--sand));
  display: grid; place-items: center; border: 3px solid var(--white); box-shadow: var(--shadow-sm);
  color: var(--sage); font-family: var(--display); font-size: 2.2rem; font-weight: 600;
}
.person h4 { color: var(--forest); margin-bottom: .15rem; }
.person .role { color: var(--teal); font-weight: 700; font-size: .9rem; }
.person .bio-ph { font-size: .88rem; color: var(--ink-soft); font-style: italic; margin-top: .5rem; }

/* donate tiers */
.tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
@media (max-width: 760px){ .tiers { grid-template-columns: 1fr; } }
.tier {
  background: var(--white); border: 2px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; text-align: center; cursor: pointer; transition: all .15s;
}
.tier:hover, .tier.sel { border-color: var(--forest); box-shadow: var(--shadow-sm); }
.tier__amt { font-family: var(--display); font-size: 1.9rem; color: var(--forest); }
.tier__desc { font-size: .9rem; color: var(--ink-soft); margin-top: .4rem; }

.give-toggle { display: inline-flex; background: var(--sand); border-radius: var(--radius-pill); padding: .25rem; gap: .25rem; }
.give-toggle button {
  border: none; background: transparent; padding: .55rem 1.4rem; border-radius: var(--radius-pill);
  font-family: var(--body); font-weight: 700; cursor: pointer; color: var(--ink-soft);
}
.give-toggle button.on { background: var(--white); color: var(--forest); box-shadow: var(--shadow-sm); }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest); color: #cdddd1; padding-block: clamp(2.5rem,5vw,3.5rem) 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 880px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__name span { color: var(--gold-soft); }
.footer-mission { font-size: .92rem; color: #b9cdbf; margin-top: 1rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-family: var(--body); font-size: .85rem; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: .9rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .5rem; }
.footer-col a { color: #cdddd1; font-size: .92rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-contact p { color: #cdddd1; font-size: .92rem; margin-bottom: .4rem; }
.social { display: flex; gap: .6rem; margin-top: 1rem; }
.social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: grid; place-items: center; color: #fff; }
.social a:hover { background: var(--gold); color: #3a2e12; }
.social svg { width: 18px; height: 18px; }
.footer-disclaimer {
  background: rgba(0,0,0,.18); border-radius: var(--radius); padding: 1rem 1.2rem;
  font-size: .82rem; color: #b9cdbf; margin-top: 2.2rem; display: flex; gap: .7rem; align-items: flex-start;
}
.footer-disclaimer svg { width: 20px; height: 20px; color: var(--gold-soft); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15); margin-top: 1.8rem; padding-top: 1.3rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  font-size: .82rem; color: #a8bcae;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-bottom a { color: #a8bcae; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Utility ---------- */
.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 1.6rem; }
.mt-2 { margin-top: 2rem; } .mt-1 { margin-top: 1rem; } .mb-2 { margin-bottom: 2rem; }
.hidden { display: none !important; }
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ---------- Contact info cards & misc (pages 2) ---------- */
.info-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm); margin-bottom: 1.2rem;
}
.info-card h3 { color: var(--forest); margin-bottom: 1rem; font-size: 1.15rem; }
.contact-list { list-style: none; padding: 0; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: .8rem; align-items: flex-start; }
.contact-list li svg { width: 22px; height: 22px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.contact-list .lbl { display: block; font-weight: 700; font-size: .82rem; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink); }
.contact-list .ph { font-size: .92rem; color: var(--ink-soft); font-style: italic; }
.split--top { align-items: start; }
.check-row.consent { margin-top: 1.2rem; font-size: .9rem; }
.lead-2 { font-size: clamp(1.05rem, 1.4vw, 1.18rem); color: var(--ink-soft); line-height: 1.7; }
.res-cat.card { text-align: left; }
.res-cat .res-list { margin-top: 1rem; }

/* ---------- Hero photo (real-image placeholder + swap-in target) ---------- */
.hero-photo, .hero-photo-ph {
  width: 100%; aspect-ratio: 56/47; display: block;
  border-radius: var(--radius-lg); overflow: hidden;
}
.hero-photo { object-fit: cover; }
.hero-photo-ph {
  position: relative; margin: 0; background: var(--sage-tint);
  border: 1px solid var(--line);
}
.hero-photo-ph__art { width: 100%; height: 100%; display: block; }
.hero-photo-ph__note {
  position: absolute; left: 50%; bottom: .9rem; transform: translateX(-50%);
  max-width: 90%; text-align: center; white-space: normal;
  font-size: .78rem; font-weight: 600; color: var(--ink-soft);
  background: rgba(255,255,255,.82); padding: .45rem .9rem;
  border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}

/* ---------- Drop-in image slots (show real photo if present, else placeholder) ---------- */
.img-slot { position: relative; }
.img-slot__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity .35s ease; border-radius: inherit;
}
.img-slot.has-img .img-slot__img { opacity: 1; }
.illus-card.img-slot .img-slot__img { border-radius: var(--radius-lg); }
.photo-ph > svg { width: 60px; height: 60px; color: var(--sage); opacity: .8; }
.img-slot.has-img > svg { visibility: hidden; }
.img-slot.has-img .photo-ph__note { display: none; }

/* ---------- Responsive image framing (keep faces/upper bodies visible) ---------- */
.img-slot__img { object-position: center 28%; }      /* bias up so heads aren't cropped */
.illus-card.img-slot .img-slot__img { object-position: center 55%; } /* hero subjects sit lower */
.img-band {
  width: 100%; aspect-ratio: 21 / 9; border-radius: var(--radius-lg);
  overflow: hidden; min-height: 0;
}
.img-band .img-slot__img { object-position: center 22%; }
@media (max-width: 720px) {
  .img-band { aspect-ratio: 3 / 2; }                  /* taller on phones so people fit */
  .img-band .img-slot__img { object-position: center 25%; }
}

/* ---------- Footer contact icons (compact, inline) ---------- */
.footer-contact p { display: flex; align-items: center; gap: .55rem; }
.footer-contact p svg { width: 18px; height: 18px; flex-shrink: 0; color: #9fc0ad; }
.footer-contact p a { color: #cdddd1; }
.footer-contact p a:hover { color: #fff; text-decoration: underline; }

/* ---------- Resources directory (Austin / DFW links) ---------- */
.res-item { padding: .7rem 0; border-top: 1px solid var(--line); }
.res-item:first-child { border-top: 0; }
.res-area {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--teal); background: var(--sage-tint);
  padding: .15rem .5rem; border-radius: var(--radius-pill); margin-bottom: .35rem;
}
.res-item h4 { font-size: 1rem; margin: 0 0 .15rem; }
.res-item h4 a { color: var(--forest); }
.res-item h4 a:hover { color: var(--teal); text-decoration: underline; }
.res-item .hint { font-size: .85rem; color: var(--ink-soft); }

/* ---------- Leadership headshots ---------- */
.person__photo { overflow: hidden; }
.person__img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; border-radius: 50%; display: block; }
