:root {
  /* warm-biased neutrals — chosen, not defaulted (espresso/brown hue) */
  --paper: #FBF7EF;
  --paper-2: #F2EADB;
  --ink: #241D16;
  --ink-soft: #5C5347;
  --marigold: #E9971A;
  --marigold-deep: #C97E0D;
  --tomato: #D8442A;
  --olive: #5E6B43;
  --line: rgba(36, 29, 22, 0.12);
  --card: #FFFFFF;
  --shadow: 0 1px 2px rgba(36,29,22,.06), 0 8px 30px rgba(36,29,22,.07);
  --hero-bg: #191310;
  --hero-ink: #F6EEE0;
  --hero-soft: #C6B7A4;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Iowan Old Style", "Times New Roman", serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #16110D; --paper-2: #1E1712; --ink: #F4ECDF; --ink-soft: #B6A793;
    --marigold: #F4AE38; --marigold-deep: #E9971A; --tomato: #F0603F; --olive: #A2B26F;
    --line: rgba(244,236,223,.14); --card: #211A14;
    --shadow: 0 1px 2px rgba(0,0,0,.3), 0 10px 34px rgba(0,0,0,.35);
  }
}
:root[data-theme="light"] {
  --paper: #FBF7EF; --paper-2: #F2EADB; --ink: #241D16; --ink-soft: #5C5347;
  --marigold: #E9971A; --marigold-deep: #C97E0D; --tomato: #D8442A; --olive: #5E6B43;
  --line: rgba(36,29,22,.12); --card: #FFFFFF;
  --shadow: 0 1px 2px rgba(36,29,22,.06), 0 8px 30px rgba(36,29,22,.07);
}
:root[data-theme="dark"] {
  --paper: #16110D; --paper-2: #1E1712; --ink: #F4ECDF; --ink-soft: #B6A793;
  --marigold: #F4AE38; --marigold-deep: #E9971A; --tomato: #F0603F; --olive: #A2B26F;
  --line: rgba(244,236,223,.14); --card: #211A14;
  --shadow: 0 1px 2px rgba(0,0,0,.3), 0 10px 34px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); line-height: 1.65;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; font-size: 17px;
}
.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; }
h1, h2, h3 { text-wrap: balance; margin: 0; letter-spacing: -0.02em; line-height: 1.02; }
p { margin: 0; }
img { max-width: 100%; }
:focus-visible { outline: 3px solid var(--marigold); outline-offset: 3px; border-radius: 3px; }

.eyebrow { font-size: .78rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; color: var(--marigold-deep); margin: 0; }
.hero .eyebrow, .page-head .eyebrow { color: var(--marigold); }

/* header */
header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.bar { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.01em; text-decoration: none; color: inherit; }
.brand .mark { width: 30px; height: 30px; border-radius: 8px; flex: none; background: var(--marigold); color: #191310; display: grid; place-items: center; font-weight: 900; font-size: .72rem; letter-spacing: .01em; }
.brand small { display: block; font-weight: 600; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-top: -2px; }
nav.links { display: flex; align-items: center; gap: 24px; }
nav.links a { text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: .95rem; }
nav.links a:hover { color: var(--ink); }
nav.links a.active { color: var(--ink); }
.theme-btn { background: transparent; border: 1px solid var(--line); color: var(--ink-soft); width: 38px; height: 38px; border-radius: 9px; cursor: pointer; font-size: 1rem; line-height: 1; display: grid; place-items: center; }
.theme-btn:hover { color: var(--ink); border-color: var(--ink-soft); }
@media (max-width: 720px) { nav.links a:not(.btn) { display: none; } }

.btn { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; font-weight: 700; font-size: .98rem; text-decoration: none; padding: 12px 20px; border-radius: 11px; border: 1px solid transparent; transition: transform .12s ease, box-shadow .12s ease, background .12s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-give { background: var(--tomato); color: #fff; box-shadow: 0 6px 18px color-mix(in srgb, var(--tomato) 40%, transparent); }
.btn-give:hover { background: color-mix(in srgb, var(--tomato) 90%, #000); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink-soft); }
.btn-sm { padding: 9px 15px; font-size: .9rem; border-radius: 9px; }
.hero .btn-ghost { color: var(--hero-ink); border-color: rgba(246,238,224,.28); }
.hero .btn-ghost:hover { border-color: var(--hero-ink); }

/* hero + page-head (committed dark world) */
.hero, .page-head { position: relative; overflow: hidden; background: var(--hero-bg); color: var(--hero-ink); }
.hero { padding: clamp(64px, 12vw, 128px) 0 clamp(56px, 9vw, 104px); }
.page-head { padding: clamp(56px, 9vw, 92px) 0 clamp(44px, 7vw, 72px); }
.hero::before, .page-head::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 82% 8%, rgba(233,151,26,.30), transparent 55%), radial-gradient(80% 70% at 12% 100%, rgba(216,68,42,.16), transparent 60%);
}
.hero .wrap, .page-head .wrap { position: relative; }
.hero h1 { font-size: clamp(2.7rem, 7.2vw, 5.4rem); font-weight: 800; letter-spacing: -.035em; line-height: .97; max-width: 15ch; margin: 18px 0 0; }
.hero h1 em { font-style: normal; color: var(--marigold); }
.hero .lede { margin: 22px 0 0; max-width: 54ch; font-size: clamp(1.05rem, 2.1vw, 1.28rem); color: var(--hero-soft); line-height: 1.55; }
.page-head h1 { font-size: clamp(2.2rem, 5.4vw, 3.6rem); font-weight: 800; letter-spacing: -.03em; max-width: 18ch; margin: 14px 0 0; }
.page-head .lede { margin: 18px 0 0; max-width: 56ch; font-size: clamp(1rem, 2vw, 1.18rem); color: var(--hero-soft); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.trustline { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; margin-top: 34px; font-size: .84rem; color: var(--hero-soft); }
.trustline b { color: var(--hero-ink); font-weight: 700; }
.trustline .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--marigold); }

/* sections */
.section { padding: clamp(56px, 9vw, 104px) 0; }
.section.alt { background: var(--paper-2); }
.lead-2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; letter-spacing: -.03em; max-width: 20ch; margin-top: 12px; }
.section p.body { color: var(--ink-soft); max-width: 62ch; margin-top: 18px; font-size: 1.08rem; }
.prose p { color: var(--ink-soft); max-width: 64ch; margin-top: 18px; font-size: 1.1rem; }
.prose p strong { color: var(--ink); font-weight: 700; }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
@media (max-width: 800px){ .grid3 { grid-template-columns: 1fr; gap: 16px; } }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 26px 24px; box-shadow: var(--shadow); }
.card .ic { width: 40px; height: 40px; color: var(--marigold-deep); }
.card h3 { font-size: 1.16rem; margin: 16px 0 8px; letter-spacing: -.01em; }
.card p { color: var(--ink-soft); font-size: .99rem; }
.card .places { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: .8rem; font-weight: 600; color: var(--ink); background: var(--paper-2); border: 1px solid var(--line); padding: 5px 11px; border-radius: 999px; }

/* media: real footage + stills */
.media-grid { display: grid; grid-template-columns: 300px 1fr; gap: 32px; align-items: start; margin-top: 44px; }
@media (max-width: 760px){ .media-grid { grid-template-columns: 1fr; gap: 24px; } }
.media-video { margin: 0; position: relative; }
.media-video video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border-radius: 20px; border: 1px solid var(--line); background: #000; box-shadow: var(--shadow); display: block; }
@media (max-width: 760px){ .media-video { max-width: 300px; margin: 0 auto; } }
.media-tag { position: absolute; left: 12px; top: 12px; display: inline-flex; align-items: center; gap: 6px; background: rgba(25,19,16,.82); color: #fff; font-size: .74rem; font-weight: 700; letter-spacing: .03em; padding: 6px 10px; border-radius: 999px; }
.media-tag .live { width: 7px; height: 7px; border-radius: 50%; background: var(--tomato); }
.media-side { align-self: stretch; }
.media-side p.body { margin-top: 0; }
.photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.photos figure { margin: 0; }
.photos img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 38%; border-radius: 13px; border: 1px solid var(--line); box-shadow: var(--shadow); display: block; }
.media-cap { margin-top: 16px; color: var(--ink-soft); font-size: .92rem; }
.story-photo { margin: 34px 0 0; }
.story-photo img { width: 100%; max-width: 560px; border-radius: 16px; border: 1px solid var(--line); box-shadow: var(--shadow); display: block; }
.story-photo figcaption { margin-top: 10px; color: var(--ink-soft); font-size: .88rem; max-width: 560px; }

/* quote band */
.quote { background: var(--hero-bg); color: var(--hero-ink); position: relative; overflow: hidden; }
.quote::before { content:""; position:absolute; inset:0; background: radial-gradient(90% 120% at 90% 10%, rgba(233,151,26,.20), transparent 55%); }
.quote .wrap { position: relative; }
.quote blockquote { margin: 0; font-family: var(--serif); font-style: italic; font-size: clamp(1.6rem, 3.8vw, 2.7rem); line-height: 1.28; max-width: 20ch; letter-spacing: -.01em; }
.quote .mark { color: var(--marigold); font-family: var(--serif); font-size: 3.2rem; line-height: 0; }
.quote cite { display: block; margin-top: 26px; font-family: var(--sans); font-style: normal; font-size: .92rem; color: var(--hero-soft); }
.quote cite b { color: var(--hero-ink); }
.quote cite a { color: var(--marigold); text-decoration: none; font-weight: 600; }
.quote cite a:hover { text-decoration: underline; }

/* goal */
.goal-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
@media (max-width: 860px){ .goal-grid { grid-template-columns: 1fr; gap: 28px; } }
.goal-panel { background: linear-gradient(150deg, var(--marigold), var(--marigold-deep)); color: #241a08; border-radius: 20px; padding: 34px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.goal-panel .truck { width: 100%; height: auto; color: #241a08; opacity: .96; }
.goal-panel .cap { font-weight: 800; font-size: 1.15rem; margin-top: 8px; letter-spacing: -.01em; }
.goal-panel .cap span { display:block; font-weight:600; font-size:.92rem; opacity:.8; }

/* ethos cycle */
.cycle { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
@media (max-width: 800px){ .cycle { grid-template-columns: 1fr; } }
.step { position: relative; padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--card); }
.step .n { font-weight: 800; color: var(--olive); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }
.step h3 { font-size: 1.1rem; margin: 8px 0 6px; }
.step p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* trust */
.trust { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 8px; }
@media (max-width: 800px){ .trust { grid-template-columns: 1fr; } }
.trust .t { display: flex; gap: 14px; align-items: flex-start; }
.trust .t svg { width: 26px; height: 26px; color: var(--olive); flex: none; margin-top: 2px; }
.trust .t h3 { font-size: 1.02rem; margin: 0 0 3px; }
.trust .t p { color: var(--ink-soft); font-size: .92rem; margin: 0; }
.trust .t a { color: var(--marigold-deep); font-weight: 600; text-decoration: none; }
.trust .t a:hover { text-decoration: underline; }

/* donate band */
.give { background: var(--tomato); color: #fff; text-align: center; border-radius: 24px; padding: clamp(40px, 6vw, 68px) 28px; box-shadow: var(--shadow); }
.give h2 { font-size: clamp(1.9rem, 4.4vw, 3.1rem); font-weight: 800; letter-spacing: -.03em; }
.give p { max-width: 46ch; margin: 16px auto 0; color: rgba(255,255,255,.9); font-size: 1.08rem; }
.give .btn-white { background: #fff; color: var(--tomato); margin-top: 28px; font-size: 1.05rem; padding: 15px 30px; }
.give .btn-white:hover { background: #fff2ee; }
.give small { display: block; margin-top: 16px; color: rgba(255,255,255,.8); font-size: .84rem; }

.follow { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; justify-content: center; }
.follow a { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; background: var(--card); border: 1px solid var(--line); color: var(--ink); padding: 11px 16px; border-radius: 12px; font-weight: 600; font-size: .95rem; transition: transform .12s ease, border-color .12s ease; }
.follow a:hover { transform: translateY(-1px); border-color: var(--ink-soft); }
.follow svg { width: 18px; height: 18px; }
.follow b { font-weight: 700; }
.follow span { color: var(--ink-soft); font-weight: 500; }

/* footer */
footer { border-top: 1px solid var(--line); padding: 44px 0; color: var(--ink-soft); font-size: .9rem; }
.foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; }
.foot .brand { color: var(--ink); }
.foot a { color: var(--ink-soft); text-decoration: none; }
.foot a:hover { color: var(--ink); }
.foot .meta { max-width: 42ch; }
.foot .ein { font-variant-numeric: tabular-nums; }

/* reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
