/* ============================================================
   Southern Oregon Emergency Aid — site.css
   Warm-organic: forest & leaf greens + cream, red for emergency.
   Fraunces (display) + Inter (body).
   ============================================================ */

:root {
  /* color */
  --cream: #f4efe1;
  --cream-2: #fbf8f0;
  --surface: #ffffff;
  --green-900: #16301f;   /* deepest forest (dark sections) */
  --green-800: #1f3d29;
  --green-700: #2c5238;
  --green-600: #3d6b45;
  --green: #4a8b3f;        /* leaf / brand (from logo) */
  --green-300: #dce8cf;    /* light green surface */
  --green-100: #ecf2e2;
  --ink: #23281f;
  --muted: #5b6152;
  --muted-light: #cfd8c2;
  --red: #c0392b;
  --red-dark: #9c2b20;
  --gold: #d3a02a;
  --border: #e2dac6;
  --border-dark: rgba(255,255,255,.16);

  /* type */
  --display: "Fraunces", Georgia, serif;
  --body: "Inter", system-ui, sans-serif;

  /* spacing scale (8px base) */
  --s-1: .5rem; --s-2: 1rem; --s-3: 1.5rem; --s-4: 2rem;
  --s-5: 3rem; --s-6: 4rem; --s-7: 6rem;
  --sec-pad: clamp(4rem, 9vw, 8rem);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(30,40,25,.05), 0 10px 30px rgba(30,40,25,.08);
  --shadow-lg: 0 2px 6px rgba(30,40,25,.06), 0 24px 60px rgba(30,40,25,.14);
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 150px; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 3rem); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.1; letter-spacing: -.015em; margin: 0 0 .5em; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); }
p { margin: 0 0 1rem; }
.eyebrow { font-family: var(--body); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green-600); margin: 0 0 .9rem; }
.eyebrow-light { color: var(--green); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--muted); max-width: 62ch; }
.lead-center { margin-left: auto; margin-right: auto; text-align: center; }
.micro { font-size: .82rem; color: var(--muted); }
.micro-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--body); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: var(--radius-sm);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease-out, background .18s ease-out, color .18s ease-out, box-shadow .18s ease-out;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.btn .ico { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-sm { padding: .55rem 1.05rem; font-size: .92rem; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-support { background: var(--gold); color: #3a2d05; }
.btn-support:hover { background: #c1911f; transform: translateY(-2px); }
.btn-emergency { background: var(--red); color: #fff; box-shadow: 0 8px 24px rgba(192,57,43,.32); }
.btn-emergency:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--ink); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-700); }
.btn-ghost-light { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); color: #fff; backdrop-filter: blur(3px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.9); color: var(--green-800); }

/* ---------- Sticky topbar (strip + header move as one unit) ---------- */
.topbar { position: sticky; top: 0; z-index: 60; }

/* ---------- Emergency strip (two regions) ---------- */
.emergency-strip {
  display: flex; align-items: center; justify-content: center; gap: .5rem .9rem; flex-wrap: wrap;
  background: var(--red); color: #fff; padding: .55rem 1rem; text-align: center;
  font-size: .95rem;
}
.emergency-strip strong { font-weight: 700; }
.es-region { display: inline-flex; align-items: baseline; gap: .45rem; padding: .1rem .35rem; border-radius: 6px; transition: background .15s; }
.es-region:hover { background: rgba(255,255,255,.16); }
.es-region:focus-visible { outline: 2px solid #fff; outline-offset: 1px; }
.es-region-label { font-weight: 600; opacity: .92; font-size: .88rem; }
.emergency-strip .es-number { font-family: var(--display); font-weight: 700; font-size: 1.12rem; letter-spacing: .01em; }
.es-div { opacity: .5; }
.es-pulse { width: 10px; height: 10px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,255,255,.6)} 70%{box-shadow:0 0 0 8px rgba(255,255,255,0)} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0)} }
@media (max-width: 720px){
  .emergency-strip { flex-direction: column; gap: .35rem; padding: .5rem 1rem; }
  .emergency-strip strong { font-size: .9rem; }
  .es-div { display: none; }
  .es-region { gap: .4rem; }
}

/* ---------- Header ---------- */
.site-header { background: rgba(251,248,240,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .6rem clamp(1.25rem,5vw,3rem); }
.container.header-inner { max-width: var(--maxw); }
.brand img { height: 82px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a { font-weight: 500; font-size: .98rem; color: var(--ink); transition: color .15s; }
.nav a:not(.btn):hover { color: var(--green); }
.nav a:not(.btn) { position: relative; }
.nav a:not(.btn)::after { content:""; position:absolute; left:0; bottom:-4px; width:0; height:2px; background:var(--green); transition:width .2s ease-out; }
.nav a:not(.btn):hover::after { width:100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .2s; }
.mobile-nav { display: none; flex-direction: column; background: var(--cream-2); border-bottom: 1px solid var(--border); }
.mobile-nav a { padding: .9rem clamp(1.25rem,5vw,3rem); border-top: 1px solid var(--border); font-weight: 500; }
body.nav-open .mobile-nav { display: flex; }
body.nav-open .nav-toggle span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2){ opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Sections ---------- */
.section { padding: var(--sec-pad) 0; position: relative; }

/* ---------- Photo slots (placeholders) ---------- */
.photo-slot {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; text-align: center; padding: 2rem;
  background:
    repeating-linear-gradient(45deg, rgba(74,139,63,.06) 0 14px, rgba(74,139,63,.02) 14px 28px),
    var(--green-100);
  border: 2px dashed var(--green); border-radius: var(--radius); color: var(--green-700); min-height: 200px;
}
.ps-tag { font-family: var(--body); font-weight: 800; letter-spacing: .14em; font-size: .82rem; color: var(--green-700); background: #fff; padding: .3rem .7rem; border-radius: 999px; box-shadow: var(--shadow); }
.ps-desc { font-size: .9rem; color: var(--green-700); max-width: 32ch; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 82vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; border: 0; border-radius: 0; min-height: 100%; justify-content: flex-start; align-items: flex-end; padding: 4.2rem 1.25rem 0 0; }
.hero-media .ps-tag, .hero-media .ps-desc { position: relative; z-index: 3; }
.hero-media .ps-tag { font-size: .7rem; }
.hero-media .ps-desc { color: rgba(255,255,255,.85); text-shadow: 0 1px 6px rgba(0,0,0,.5); font-size: .78rem; max-width: 22ch; text-align: right; }
.hero .eyebrow { color: #d6e8c4; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,48,31,.28) 0%, rgba(22,48,31,.55) 55%, rgba(22,48,31,.9) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; padding-top: 5rem; padding-bottom: clamp(3rem, 7vw, 6rem); }
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 24px rgba(0,0,0,.28); }
.hero-sub { font-size: clamp(1.1rem, 1.7vw, 1.4rem); max-width: 54ch; color: rgba(255,255,255,.94); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 1.2rem; }
.hero-actions .btn-emergency { font-size: 1.08rem; padding: 1rem 1.7rem; }
.hero-note { font-size: .92rem; color: rgba(255,255,255,.82); max-width: 60ch; border-left: 3px solid var(--gold); padding-left: .9rem; }

/* ---------- Get Help ---------- */
.get-help { background: var(--cream-2); }
.get-help > .container > .lead { max-width: 60ch; }
.call-box {
  display: block; margin: 2rem 0 1.4rem; padding: clamp(1.5rem, 3vw, 2.4rem);
  background: linear-gradient(180deg, #fff 0%, #fff5f3 100%);
  border: 2px solid var(--red); border-left-width: 8px; border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(192,57,43,.14); transition: transform .18s, box-shadow .18s;
}
.call-box:hover { transform: translateY(-2px); box-shadow: 0 20px 50px rgba(192,57,43,.2); }
.call-box:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.call-label { display: block; font-weight: 700; color: var(--red-dark); text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; }
.call-number { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(2.4rem, 6vw, 3.6rem); color: var(--red); line-height: 1.05; margin: .2rem 0 .3rem; }
.call-hint { display: block; color: var(--muted); font-size: .96rem; }
.serve-line { color: var(--ink); font-size: 1.02rem; }
.serve-line strong { color: var(--green-700); }

/* Region chooser (two coordinators, split by the Cascades) */
.region-intro { margin: 1.6rem 0 1.2rem; font-size: 1.05rem; color: var(--ink); max-width: 60ch; }
.region-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 0 0 1rem; }
.region-card {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: clamp(1.4rem, 2.6vw, 2rem);
  background: linear-gradient(180deg, #fff 0%, #fff5f3 100%);
  border: 2px solid var(--red); border-left-width: 8px; border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(192,57,43,.12);
  transition: transform .18s, box-shadow .18s;
}
.region-card:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(192,57,43,.2); }
.region-card:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.region-eyebrow { font-family: var(--body); font-weight: 800; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--red-dark); }
.region-counties { margin: .5rem 0 .2rem; color: var(--muted); font-size: .92rem; line-height: 1.5; }
.rc-state { color: var(--green-600); font-weight: 600; }
.region-number { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 4.4vw, 2.9rem); color: var(--red); line-height: 1.05; margin: .5rem 0 .15rem; }
.region-coord { color: var(--ink); font-weight: 600; font-size: .98rem; }
.region-cta { margin-top: .7rem; font-weight: 700; color: var(--red-dark); font-size: .95rem; }
.region-note { color: var(--muted); font-size: .96rem; max-width: 66ch; }
@media (max-width: 640px){ .region-grid { grid-template-columns: 1fr; } }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin: 2.4rem 0; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow); }
.step-n { display: inline-flex; align-items: center; justify-content: center; width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--green); color: #fff; font-family: var(--display); font-weight: 700; margin-bottom: .7rem; }
.step h3 { margin-bottom: .3rem; }
.step p { margin: 0; color: var(--muted); font-size: .95rem; }

.help-cols { display: grid; grid-template-columns: 1.3fr 1fr; gap: 1.4rem; margin-top: 1rem; }
.have-ready, .dont-deploy { border-radius: var(--radius); padding: 1.6rem; }
.have-ready { background: var(--green-100); border: 1px solid var(--green-300); }
.dont-deploy { background: #fff5f3; border: 1px solid #f2c9c2; }
.dont-deploy h3 { color: var(--red-dark); }
.check-list { list-style: none; padding: 0; margin: .5rem 0 0; }
.check-list li { position: relative; padding-left: 1.7rem; margin-bottom: .5rem; color: var(--ink); }
.check-list li::before { content: ""; position: absolute; left: 0; top: .35em; width: 1rem; height: .55rem; border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green); transform: rotate(-45deg); }
.reassure { margin-top: 1.6rem; font-size: 1.1rem; text-align: center; color: var(--ink); }
.reassure strong { color: var(--green-700); }

/* ---------- What We Do ---------- */
.what-we-do { text-align: center; }
.what-we-do .eyebrow { text-align: center; }
.do-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin: 2.6rem 0 2rem; text-align: left; }
.do-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.9rem; box-shadow: var(--shadow); transition: transform .2s ease-out, box-shadow .2s ease-out; }
.do-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.do-ico { display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: 12px; background: var(--green-100); margin-bottom: 1rem; }
.do-ico svg { width: 1.5rem; height: 1.5rem; fill: none; stroke: var(--green); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.do-card p { color: var(--muted); margin: 0; }
.coordination { max-width: 760px; margin: 0 auto; background: var(--green-800); color: #fff; border-radius: var(--radius); padding: 1.6rem 2rem; }
.coordination p { margin: 0; font-size: 1.08rem; color: rgba(255,255,255,.92); }
.coordination strong { color: #fff; }

/* ---------- Volunteer ---------- */
.volunteer { background: var(--green-900); color: #fff; }
.volunteer .eyebrow { color: #9ecb7f; }
.volunteer h2 { color: #fff; }
.volunteer .lead { color: rgba(255,255,255,.85); }
.vol-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: start; }
.how-it-works { list-style: none; padding: 0; margin: 1.5rem 0; }
.how-it-works li { display: flex; align-items: baseline; gap: .8rem; margin-bottom: .8rem; color: rgba(255,255,255,.9); }
.how-it-works li span { flex: 0 0 auto; width: 1.9rem; height: 1.9rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--green); color: #fff; font-family: var(--display); font-weight: 700; font-size: .95rem; }
.vol-needs { background: rgba(255,255,255,.06); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 1.8rem; }
.vol-needs h3 { color: #fff; }
.need-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.need-list li { padding: .8rem 0; border-bottom: 1px solid var(--border-dark); }
.need-list li:last-child { border-bottom: 0; }
.need-list b { display: block; color: #fff; font-family: var(--display); font-weight: 600; font-size: 1.05rem; }
.need-list span { color: rgba(255,255,255,.72); font-size: .92rem; }
.need-foot { color: rgba(255,255,255,.72); font-size: .9rem; margin: 0; }
.volunteer .micro { color: rgba(255,255,255,.6); margin-top: .6rem; }
.vol-forms { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .5rem; }
.vol-forms .btn { flex: 1 1 auto; justify-content: center; min-width: 190px; }

/* ---------- Story ---------- */
.story { background: var(--cream); }
.story-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3rem; align-items: center; }
.story-media { min-height: 420px; height: 100%; }
.pull-quote { font-family: var(--display); font-size: clamp(1.3rem, 2.4vw, 1.9rem); font-weight: 500; font-style: italic; line-height: 1.3; color: var(--green-800); border-left: 4px solid var(--gold); padding: .3rem 0 .3rem 1.4rem; margin: 1.6rem 0; }
.story-text p { color: var(--ink); }

/* ---------- Rescue stories ---------- */
.stories { background-color: var(--green-800); color: #fff; background-image: url("assets/firs.svg"); background-repeat: repeat-x; background-position: center bottom; background-size: auto 300px; }
.stories .stories-h { color: #fff; }
.story-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 2.2rem; }
.rescue-card { background: rgba(255,255,255,.05); border: 1px solid var(--border-dark); border-radius: var(--radius); overflow: hidden; }
.rc-media { min-height: 220px; border-radius: 0; border: 0; border-bottom: 2px dashed var(--green); }
.rc-media.has-photo { min-height: 0; border-bottom: 0; }
.rc-media.has-photo img { display: block; width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.rc-body { padding: 1.6rem; }
.rescue-card h3 { color: #fff; }
.rescue-card p { color: rgba(255,255,255,.82); margin: 0; }

/* ---------- Stats ---------- */
.stats { background: var(--green-600); color: #fff; padding: clamp(3rem,6vw,5rem) 0; }
.stat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem; text-align: center; }
.stat-num { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1; color: #fff; }
.stat-label { display: block; margin-top: .5rem; font-size: .86rem; color: rgba(255,255,255,.95); letter-spacing: .01em; }

/* ---------- News + Partners ---------- */
.news-partners { background: var(--cream-2); }
.news-head-row { text-align: center; }
.news-head-row .eyebrow { text-align: center; }
.news-grid { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.news-grid a { display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1.4rem; transition: transform .18s, box-shadow .18s, border-color .18s; }
.news-grid a:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--green-300); }
.news-src { display: block; font-weight: 700; font-size: .74rem; letter-spacing: .09em; text-transform: uppercase; color: var(--green-600); }
.news-head { display: block; font-family: var(--display); font-size: 1.05rem; line-height: 1.3; color: var(--ink); margin: .35rem 0 .7rem; flex: 1; }
.news-go { font-size: .88rem; font-weight: 600; color: var(--green); }
.partners-band { margin-top: 3rem; background: var(--green-100); border-radius: var(--radius); padding: 2.2rem; text-align: center; }
.partners-band .eyebrow { text-align: center; }
.partner-list { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.partner-inline { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 2rem; }
.partner-list li { font-family: var(--display); font-size: 1.15rem; font-weight: 600; color: var(--green-800); }
.partner-inline li { padding: .3rem .2rem; }

/* ---------- Be Prepared ---------- */
.prepared { text-align: center; background: var(--cream); }
.prepared .eyebrow { text-align: center; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin: 2.4rem 0 1rem; text-align: left; }
.guide-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.guide-card p { color: var(--muted); font-size: .95rem; flex: 1; }
.guide-go { font-weight: 600; color: var(--green); font-size: .9rem; }

/* ---------- Support ---------- */
.support { background-color: var(--green-900); color: #fff; text-align: center; background-image: url("assets/firs.svg"); background-repeat: repeat-x; background-position: center bottom; background-size: auto 260px; }
.support .eyebrow { text-align: center; }
.support h2 { color: #fff; }
.support .lead { color: rgba(255,255,255,.85); }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin: 2.6rem 0 2rem; text-align: left; }
.support-card { background: rgba(255,255,255,.06); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 1.8rem; display: flex; flex-direction: column; }
.support-card h3 { color: #fff; }
.support-card p { color: rgba(255,255,255,.8); font-size: .96rem; }
.support-card .btn { margin-top: .6rem; }
.support-card .btn + .btn { margin-top: .6rem; }
.support-give { background: rgba(211,160,42,.12); border-color: rgba(211,160,42,.4); }
.paypal-qr { display: block; width: fit-content; margin: .4rem 0 1rem; padding: 12px; background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow); transition: transform .18s, box-shadow .18s; }
.paypal-qr:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.paypal-qr:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.paypal-qr img { width: 200px; height: 200px; display: block; }
.mail-to { font-family: var(--display); color: #fff; line-height: 1.5; margin-top: .5rem; }
.igive-line { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem 1.5rem; flex-wrap: wrap; text-align: left; background: rgba(255,255,255,.06); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 1.4rem 1.8rem; margin: 0 0 1.6rem; }
.igive-text h3 { color: #fff; margin: 0 0 .25rem; }
.igive-text p { color: rgba(255,255,255,.8); font-size: .96rem; margin: 0; max-width: 62ch; }
.igive-line .btn { flex: 0 0 auto; margin: 0; }
.tax-line { max-width: 70ch; margin: 1rem auto 0; color: rgba(255,255,255,.7); font-size: .9rem; }

/* ---------- Who We Are (team) ---------- */
.team { background: var(--cream); text-align: center; }
.team .eyebrow { text-align: center; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin: 2.4rem 0 1rem; text-align: left; }
.team-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s ease-out, box-shadow .2s ease-out; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-photo { min-height: 210px; border: 0; border-radius: 0; border-bottom: 2px dashed var(--green); }
.team-card h3 { margin: 1.1rem 1.3rem .1rem; }
.team-role { margin: 0 1.3rem .5rem; color: var(--green-700); font-weight: 600; font-size: .9rem; }
.team-bio { margin: 0 1.3rem 1.3rem; color: var(--muted); font-size: .93rem; }

/* ---------- Current Need band ---------- */
.current-need { background: #f7edd0; border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); padding: clamp(1.6rem, 4vw, 2.6rem) 0; }
.cn-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cn-eyebrow { text-transform: uppercase; letter-spacing: .12em; font-weight: 700; font-size: .78rem; color: #856410; margin: 0 0 .3rem; }
.cn-line { font-family: var(--display); font-size: clamp(1.2rem, 2.2vw, 1.7rem); font-weight: 600; color: var(--ink); margin: 0; max-width: 48ch; }
.cn-inner .btn { flex: 0 0 auto; }

/* ---------- FAQ ---------- */
.faq { background: var(--green-100); }
.faq-inner { max-width: 820px; }
.faq-list { margin-top: 1.8rem; }
.faq-list details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: .7rem; overflow: hidden; }
.faq-list summary { cursor: pointer; padding: 1.1rem 1.3rem; font-family: var(--display); font-weight: 600; font-size: 1.08rem; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color .15s; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 1.5rem; line-height: 1; color: var(--green); flex: 0 0 auto; }
.faq-list details[open] summary::after { content: "\2013"; }
.faq-list summary:hover { color: var(--green-700); }
.faq-list summary:focus-visible { outline: 3px solid var(--gold); outline-offset: -3px; border-radius: var(--radius-sm); }
.faq-a { padding: 0 1.3rem 1.2rem; color: var(--muted); }
.faq-a p { margin: 0; }

/* ---------- Where your money goes ---------- */
.money { background: var(--cream-2); }
.money-inner { max-width: 900px; }
.money-list { list-style: none; padding: 0; margin: 2rem 0 0; }
.money-list li { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.6rem 0; border-top: 1px solid var(--border); }
.money-list li:first-child { border-top: 0; padding-top: .5rem; }
.money-n { font-family: var(--display); font-weight: 700; font-size: clamp(1.7rem, 3vw, 2.5rem); color: var(--green); line-height: 1; flex: 0 0 auto; min-width: 2.6rem; }
.money-list h3 { margin: 0 0 .35rem; }
.money-list p { margin: 0; color: var(--muted); max-width: 62ch; }

/* ---------- Footer ---------- */
.site-footer { background-color: var(--green-900); color: rgba(255,255,255,.82); padding: clamp(3rem,5vw,4.5rem) 0 2rem; border-top: 1px solid var(--border-dark); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.foot-logo { height: 96px; width: auto; background: #fff; padding: 10px 14px; border-radius: 10px; margin-bottom: 1rem; }
.foot-brand p { max-width: 32ch; font-size: .95rem; }
.foot-col h4 { color: #fff; font-family: var(--body); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .9rem; }
.foot-col a { display: block; padding: .28rem 0; color: rgba(255,255,255,.8); transition: color .15s; }
.foot-col a:hover { color: var(--gold); }
.foot-col p { font-size: .95rem; margin-bottom: .8rem; }
.foot-col p a { display: inline; }
.foot-legal { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-dark); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.foot-legal p { font-size: .82rem; color: rgba(255,255,255,.55); margin: 0; }

/* ---------- Reveal (visible by default; animates in — never hides content) ---------- */
.reveal.in { animation: fadeUp .6s ease-out both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(3, 1fr); gap: 1.8rem 1rem; }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: 1fr; }
  .vol-inner, .story-inner { grid-template-columns: 1fr; gap: 2rem; }
  .story-media { min-height: 300px; }
  .story-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .do-grid { grid-template-columns: 1fr; }
  .help-cols { grid-template-columns: 1fr; }
  .hero { min-height: 74vh; }
  .brand img { height: 64px; }
  .hero-media .ps-desc { display: none; }
  .hero-media { padding: 3.4rem .8rem 0 0; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: 1fr; }
  .foot-legal { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Team photos (real) */
.team-photo.has-photo { min-height: 0; border-bottom: 0; padding: 0; background: none; display: block; }
.team-photo.has-photo img { display: block; width: 100%; aspect-ratio: 8 / 9; object-fit: cover; }

/* Hero photo (real) */
.hero-media.has-photo { padding: 0; background: #14110f; display: block; overflow: hidden; }
.hero-media.has-photo img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: 50% 60%; }
.hero-media.has-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,17,15,.62) 0%, rgba(20,17,15,.35) 45%, rgba(20,17,15,.08) 100%); }
@media (max-width: 720px) { .hero-media.has-photo img { object-position: 50% 70%; } .hero-media.has-photo::after { background: linear-gradient(180deg, rgba(20,17,15,.45) 0%, rgba(20,17,15,.55) 100%); } }

/* Story photo (real) */
.story-media.has-photo { padding: 0; border: 0; background: none; display: block; overflow: hidden; border-radius: var(--radius); }
.story-media.has-photo img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
@media (max-width: 900px) { .story-media.has-photo img { min-height: 300px; max-height: 420px; } }

.hero:has(.hero-media.has-photo) .hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.08) 100%); }

/* Partners band with photo */
.partners-band.has-photo { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 2.2rem; align-items: center; text-align: left; padding: 1.4rem; }
.partners-band.has-photo .eyebrow, .partners-band.has-photo .lead-center { text-align: left; margin-left: 0; }
.partners-band.has-photo .partner-inline { justify-content: flex-start; gap: .5rem 1.6rem; }
.partners-photo { margin: 0; }
.partners-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-sm); }
.partners-photo figcaption { font-size: .82rem; color: var(--muted); margin-top: .55rem; }
@media (max-width: 800px) { .partners-band.has-photo { grid-template-columns: 1fr; text-align: center; padding: 1.4rem; }
  .partners-band.has-photo .eyebrow, .partners-band.has-photo .lead-center { text-align: center; margin-left: auto; }
  .partners-band.has-photo .partner-inline { justify-content: center; } }

/* Why we do this (Maria's words) */
.why { background: var(--cream-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-inner { max-width: 760px; }
.why h2 { font-style: italic; font-weight: 500; color: var(--green-800); margin-bottom: 1.6rem; }
.why-body p { font-size: 1.08rem; line-height: 1.7; color: var(--ink); }
.why-body p:first-child::first-letter { font-family: var(--display); font-size: 3.4em; float: left; line-height: .85; padding: .08em .12em 0 0; color: var(--green); }
.why-attr { margin-top: 1.4rem; padding-top: 1rem; border-top: 3px solid var(--gold); display: inline-block; color: var(--muted); font-size: .95rem; }
.why-attr strong { color: var(--green-800); font-family: var(--display); font-size: 1.15rem; }

/* Useful links (Be Prepared) */
.links-band { margin: 1.4rem auto 0; max-width: 980px; text-align: left; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem 1.8rem; box-shadow: var(--shadow); }
.links-h { font-family: var(--display); font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 600; color: var(--green-800); margin: 0 0 1.1rem; padding-bottom: .6rem; border-bottom: 3px solid var(--gold); display: inline-block; }
.links-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.5rem; }
.links-list li { padding: .85rem 0; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: .15rem; }
.links-list li:nth-child(-n+2) { border-top: 0; padding-top: 0; }
@media (max-width: 760px) { .links-list { grid-template-columns: 1fr; } .links-list li:nth-child(2) { border-top: 1px solid var(--border); padding-top: .85rem; } }
.links-list a { font-weight: 700; color: var(--green-700); font-size: 1.05rem; }
.links-list a::after { content: "\00a0\2197"; font-size: .85em; }
.links-list a:hover { color: #b8891a; text-decoration: underline; text-decoration-color: var(--gold); }
.links-list span { color: var(--muted); font-size: .95rem; }

.guide-more { text-align: center; margin: 1.6rem 0 0; }
.resources-wrap { max-width: 1000px; }
.resources-wrap .links-band { margin: 1.4rem 0 0; max-width: none; }
.resources-wrap .links-band:first-of-type { margin-top: .4rem; }

/* Resources panel (Be Prepared) */
.resources-panel { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; text-align: left; margin: 2.2rem auto 0; padding: 2.2rem 2.4rem; background-color: var(--green-800); color: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); background-image: url("assets/firs.svg"); background-repeat: repeat-x; background-position: center bottom; background-size: auto 200px; transition: transform .2s ease-out, box-shadow .2s ease-out; }
.resources-panel:hover { transform: translateY(-3px); box-shadow: 0 2px 6px rgba(30,40,25,.1), 0 28px 60px rgba(30,40,25,.22); }
.resources-panel h3 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 0 0 .5rem; }
.resources-panel .rp-text > p:not(.eyebrow) { color: rgba(255,255,255,.85); max-width: 60ch; margin-bottom: 1.1rem; }
.rp-chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.rp-chips li { font-size: .84rem; font-weight: 600; padding: .35rem .8rem; border-radius: 999px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); }
.rp-go { white-space: nowrap; font-weight: 700; font-size: 1.05rem; padding: .95rem 1.5rem; border-radius: var(--radius-sm); background: var(--gold); color: #3a2d05; }
.resources-panel:hover .rp-go { background: #c1911f; }
@media (max-width: 800px) { .resources-panel { grid-template-columns: 1fr; padding: 1.6rem 1.4rem; } .rp-go { text-align: center; } }
.rp-chips li:hover { background: var(--gold); border-color: var(--gold); color: #3a2d05; }
.guide-card:focus-visible, .resources-panel:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.links-list a:focus-visible, .nav a:focus-visible, .mobile-nav a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.vol-photo-wrap { position: relative; width: calc(100% + 3.6rem); margin: -1.8rem 0 1.2rem -1.8rem; }
.vol-photo-wrap img { display: block; width: 100%; max-width: none; height: 220px; object-fit: cover; object-position: 50% 40%; border-radius: var(--radius) var(--radius) 0 0; }

/* After the Fire (USDA recovery) */
.recovery { background: var(--green-100); text-align: center; }
.recovery .eyebrow { text-align: center; }
.recovery h2 { max-width: 22ch; margin-left: auto; margin-right: auto; }
.recovery-inner { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 2.4rem; align-items: start; text-align: left; margin-top: 2.4rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.recovery-img img { width: 100%; display: block; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.recovery-list { list-style: none; margin: 0 0 1.2rem; padding: 0; }
.recovery-list li { display: grid; grid-template-columns: 4.2rem 1fr; gap: .8rem; padding: .7rem 0; border-top: 1px solid var(--border); font-size: .98rem; color: var(--muted); }
.recovery-list li:first-child { border-top: 0; padding-top: 0; }
.recovery-list b { font-family: var(--display); font-size: 1.15rem; color: var(--green-800); }
.recovery-list strong { color: var(--ink); font-weight: 600; }
.recovery-deadline { display: block; background: #fbeae7; border-left: 4px solid var(--red); border-radius: var(--radius-sm); padding: .7rem 1rem; color: var(--red-dark); margin: 0 0 1.2rem; }
.rd-label { margin-right: .5rem; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.recovery-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
@media (max-width: 900px) { .recovery-inner { grid-template-columns: 1fr; } }

/* Pull-quote attribution (Linda + Maria) */
.pull-quote p { margin: 0; }
.pq-attr { margin-top: .8rem; font-family: var(--body); font-style: normal; font-size: .95rem; color: var(--muted); }
.pq-attr strong { font-family: var(--display); font-style: normal; font-weight: 600; font-size: 1.1rem; color: var(--green-800); }
.why-quote { margin: 0 0 2rem; font-size: clamp(1.6rem, 3vw, 2.4rem); }

/* Photo credits (2026-09-18, per Linda) */
.rc-media.has-photo { position: relative; }
.photo-credit { position: absolute; right: .55rem; bottom: .5rem; font-size: .68rem; letter-spacing: .02em; line-height: 1; padding: .3rem .5rem; border-radius: 3px; color: rgba(255,255,255,.92); background: rgba(20,32,26,.62); pointer-events: none; }
.credit-inline { color: var(--muted); opacity: .85; white-space: nowrap; }
.foot-legal a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.foot-legal a:hover, .foot-legal a:focus-visible { color: var(--gold, #d9b34a); }
.hero-credit { right: 1rem; bottom: .9rem; z-index: 4; }
.story-media.has-photo { position: relative; }
.partners-media { position: relative; }
.partners-media img { display: block; width: 100%; }
