/* ============================================
   Our Sister's Place — Survivor-Centered Redesign
   ============================================ */

:root {
  /* Palette */
  --plum-900: #2E2A35;
  --plum-800: #3D2F4A;
  --plum-700: #4A3458;
  --plum-600: #5B3A6B;
  --plum-500: #6E4A80;
  --plum-300: #A98EB5;
  --plum-100: #E8DFEC;
  --plum-50:  #F4EEF6;

  --terra-700: #A8694F;
  --terra-600: #C9846B;
  --terra-500: #D9947B;
  --terra-300: #E8B5A1;
  --terra-100: #F5DDD0;
  --terra-50:  #FAEEE6;

  --cream:    #F7F3ED;
  --cream-2:  #EFE9E0;
  --paper:    #FBF8F2;
  --ink:      #2E2A35;
  --ink-soft: #4A4452;
  --ink-mute: #6B6376;
  --line:     #E5DED2;
  --line-2:   #D9D0C2;

  --safety:   #B91C42; /* high-urgency red for crisis CTAs */
  --safety-d: #8E142F;

  /* Type scale */
  --font-serif: "Newsreader", "Source Serif 4", Georgia, serif;
  --font-sans:  "Public Sans", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(46,42,53,.06), 0 2px 4px rgba(46,42,53,.04);
  --sh-md: 0 4px 12px rgba(46,42,53,.08), 0 8px 24px rgba(46,42,53,.06);
  --sh-lg: 0 12px 32px rgba(46,42,53,.12), 0 24px 48px rgba(46,42,53,.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

img, svg { display: block; max-width: 100%; }

a { color: var(--plum-600); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--plum-900);
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(40px, 6vw, 76px); line-height: 1.02; letter-spacing: -0.025em; }
h2 { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.08; letter-spacing: -0.018em; }
h3 { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.18; }
h4 { font-size: 19px; line-height: 1.3; }

p { margin: 0; text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra-700);
}

/* ============== SAFETY BAR (top, persistent) ============== */
.safety-bar {
  background: var(--plum-900);
  color: var(--cream);
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 90;
}
.safety-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.safety-bar-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.safety-bar-left .pulse {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--terra-500);
  box-shadow: 0 0 0 0 rgba(217,148,123,.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(217,148,123,.7); }
  70% { box-shadow: 0 0 0 10px rgba(217,148,123,0); }
  100% { box-shadow: 0 0 0 0 rgba(217,148,123,0); }
}
.safety-bar a { color: var(--terra-300); }
.safety-bar a:hover { color: var(--cream); }
.safety-bar-right { display: flex; align-items: center; gap: 18px; }

/* ============== TOP NAV ============== */
.nav {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 36px; z-index: 80;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--plum-700);
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: all .15s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--plum-700); border-color: var(--terra-500); }
.nav-cta-group { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--r-md);
  color: var(--plum-900);
}
.menu-toggle:hover { background: var(--plum-50); }

/* ============== QUICK ESCAPE BUTTON (always visible) ============== */
.quick-escape {
  background: var(--safety);
  color: white;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 11px 18px 11px 14px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(185, 28, 66, 0.3);
  transition: all .15s;
  white-space: nowrap;
}
.quick-escape:hover {
  background: var(--safety-d);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(185, 28, 66, 0.4);
}
.quick-escape kbd {
  background: rgba(255,255,255,.22);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  margin-left: 4px;
}

/* Floating quick escape (persistent on every screen) */
.quick-escape-float {
  position: fixed;
  top: 14px;
  right: 16px;
  z-index: 200;
  box-shadow: 0 6px 20px rgba(185, 28, 66, 0.45);
  display: none; /* shown when scrolled */
}
.quick-escape-float.visible { display: inline-flex; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-sans);
  transition: all .15s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--plum-600);
  color: var(--cream);
}
.btn-primary:hover { background: var(--plum-700); transform: translateY(-1px); }
.btn-secondary {
  background: var(--terra-600);
  color: white;
}
.btn-secondary:hover { background: var(--terra-700); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--plum-700);
  border: 1.5px solid var(--plum-300);
}
.btn-ghost:hover { background: var(--plum-50); }
.btn-large { padding: 18px 30px; font-size: 17px; }

/* ============== HERO ============== */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 24px 90px;
  display: grid;
  grid-template-columns: 1.15fr .95fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.story-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--terra-600);
  font-family: var(--font-serif);
  font-weight: 400;
}
.hero-photo {
  margin: 30px 0 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-md, 0 8px 24px rgba(46,42,53,.12));
  aspect-ratio: 16/9;
  max-width: 560px;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo figcaption {
  position: absolute;
  bottom: 8px; left: 10px;
  font-size: 10.5px;
  color: white;
  background: rgba(46,42,53,.65);
  padding: 4px 8px;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.04em;
}
.hero-lede {
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 50ch;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Help panel (right side of hero) */
.help-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--sh-md);
  position: relative;
}
.help-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r-xl);
  padding: 1px;
  background: linear-gradient(180deg, var(--terra-300), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.help-panel h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.help-panel-sub {
  color: var(--ink-mute);
  font-size: 14px;
  margin-bottom: 22px;
}
.help-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.help-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all .15s;
  text-decoration: none;
  color: var(--ink);
}
.help-channel:hover {
  border-color: var(--terra-500);
  background: white;
  transform: translateX(2px);
  text-decoration: none;
}
.help-channel-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--plum-50);
  color: var(--plum-700);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.help-channel.urgent .help-channel-icon {
  background: rgba(185, 28, 66, 0.1);
  color: var(--safety);
}
.help-channel-body { flex: 1; min-width: 0; }
.help-channel-label {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.help-channel-value {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--plum-900);
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.help-channel-arrow {
  color: var(--ink-mute);
  transition: transform .15s;
}
.help-channel:hover .help-channel-arrow { transform: translateX(3px); color: var(--plum-700); }
.help-panel-foot {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 8px;
}
.help-panel-foot svg { color: var(--plum-500); flex-shrink: 0; }

/* ============== SECTION SCAFFOLDING ============== */
.section {
  padding: 100px 24px;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}
.section-head-left { max-width: 640px; }
.section-head h2 { margin-top: 12px; }
.section-head p {
  margin-top: 18px;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ============== PATHS GRID ============== */
.paths-section { background: var(--paper); }
.paths-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.path-card {
  grid-column: span 4;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all .2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 260px;
}
.path-card:hover {
  border-color: var(--plum-300);
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  text-decoration: none;
}
.path-card.feature { grid-column: span 6; background: var(--plum-700); color: var(--cream); border-color: var(--plum-700); }
.path-card.feature h3 { color: var(--cream); }
.path-card.feature .path-card-text { color: var(--plum-100); }
.path-card.feature .path-card-cta { color: var(--terra-300); }
.path-card.feature:hover { background: var(--plum-800); }
.path-card.tall { grid-column: span 6; }

.path-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--terra-50);
  color: var(--terra-700);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.path-card.feature .path-card-icon {
  background: rgba(255,255,255,.1);
  color: var(--terra-300);
}
.path-card h3 { font-size: 24px; }
.path-card-text {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}
.path-card-cta {
  margin-top: auto;
  padding-top: 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--plum-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.path-card:hover .path-card-cta svg { transform: translateX(3px); }
.path-card-cta svg { transition: transform .15s; }

/* ============== ASSESSMENT PROMPT ============== */
.assess {
  background: linear-gradient(135deg, var(--plum-700), var(--plum-800));
  color: var(--cream);
  border-radius: var(--r-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.assess h2 { color: white; }
.assess-text {
  margin-top: 18px;
  font-size: 17px;
  color: var(--plum-100);
  line-height: 1.6;
}
.assess-actions { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.assess .btn-primary { background: var(--cream); color: var(--plum-800); }
.assess .btn-primary:hover { background: white; }
.assess .btn-ghost { color: var(--cream); border-color: rgba(255,255,255,.3); }
.assess .btn-ghost:hover { background: rgba(255,255,255,.08); }

.assess-questions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.assess-q {
  padding: 18px 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: white;
  display: flex;
  align-items: center;
  gap: 14px;
}
.assess-q::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terra-500);
  flex-shrink: 0;
}

/* ============== PROGRAMS ============== */
.programs-section { background: var(--cream); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.program {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  transition: all .2s;
  text-decoration: none;
  color: inherit;
}
.program:hover {
  background: white;
  border-color: var(--plum-300);
  text-decoration: none;
}
.program-mark {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  flex-shrink: 0;
  background: var(--plum-50);
  color: var(--plum-700);
}
.program-mark.terra { background: var(--terra-50); color: var(--terra-700); }
.program-mark.cream { background: var(--cream-2); color: var(--plum-700); }
.program-mark.plum { background: var(--plum-100); color: var(--plum-800); }
.program h3 { font-size: 22px; }
.program-text {
  margin-top: 8px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.program-meta {
  margin-top: 14px;
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 500;
}
.program-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ============== STORY / IMPACT ============== */
.impact-section { background: var(--plum-900); color: var(--cream); }
.impact-section h2 { color: white; }
.impact-section .eyebrow { color: var(--terra-300); }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.impact-stat {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 28px;
}
.impact-stat-num {
  font-family: var(--font-serif);
  font-size: clamp(54px, 5vw, 76px);
  font-weight: 400;
  line-height: 1;
  color: white;
  letter-spacing: -0.02em;
}
.impact-stat-num .accent { color: var(--terra-500); font-style: italic; }
.impact-stat-label {
  margin-top: 14px;
  color: var(--plum-100);
  font-size: 15px;
  line-height: 1.5;
  max-width: 28ch;
}

.story-card {
  margin-top: 80px;
  background: var(--plum-800);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}
.story-portrait {
  width: 220px; height: 260px;
  border-radius: var(--r-lg);
  overflow: hidden;
  overflow: hidden;
  position: relative;
  background: var(--plum-700);
  flex-shrink: 0;
}
.story-quote {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.4;
  color: white;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.story-quote-mark {
  font-size: 80px;
  line-height: 0;
  color: var(--terra-500);
  font-family: var(--font-serif);
  vertical-align: -0.3em;
  margin-right: 6px;
}
.story-attribution {
  margin-top: 22px;
  font-size: 14px;
  color: var(--plum-100);
  display: flex;
  align-items: center;
  gap: 12px;
}
.story-attribution::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--terra-500);
}

/* ============== GET INVOLVED ============== */
.involve-section { background: var(--paper); }
.involve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.involve-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.involve-card.donate {
  background: var(--terra-600);
  color: white;
  border-color: var(--terra-600);
}
.involve-card.donate h3 { color: white; }
.involve-card.donate p { color: rgba(255,255,255,.88); }
.involve-card h3 { font-size: 24px; }
.involve-card p { margin-top: 12px; color: var(--ink-soft); }
.involve-card .btn { margin-top: 28px; align-self: flex-start; }
.involve-card.donate .btn {
  background: white;
  color: var(--terra-700);
}
.involve-card.donate .btn:hover { background: var(--cream); }
.involve-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra-700);
  margin-bottom: 16px;
}
.involve-card.donate .involve-tag { color: rgba(255,255,255,.85); }

.donate-amounts {
  display: flex;
  gap: 8px;
  margin: 20px 0 4px;
}
.donate-amount {
  flex: 1;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  padding: 12px 8px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-family: var(--font-serif);
  font-size: 18px;
  transition: all .15s;
}
.donate-amount:hover, .donate-amount.active {
  background: white;
  color: var(--terra-700);
}

/* ============== FOOTER ============== */
.footer {
  background: var(--plum-900);
  color: var(--plum-100);
  padding: 72px 24px 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand { color: var(--cream); }
.footer-brand p {
  margin-top: 18px;
  color: var(--plum-100);
  font-size: 15px;
  max-width: 36ch;
  line-height: 1.6;
}
.footer-col h4 {
  color: white;
  font-family: var(--font-sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a { color: var(--plum-100); font-size: 15px; }
.footer-col a:hover { color: var(--cream); }
.footer-bot {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--plum-300);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-safety-note {
  margin-top: 20px;
  padding: 18px;
  background: rgba(255,255,255,.04);
  border-left: 3px solid var(--terra-500);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 13px;
  color: var(--plum-100);
  line-height: 1.55;
}

/* ============== QUICK ESCAPE PAGE / OVERLAY ============== */
.escape-overlay {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 1000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  opacity: 0;
  transition: opacity .2s;
}
.escape-overlay.active { display: flex; opacity: 1; }
.escape-overlay h1 {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--plum-900);
  max-width: 14ch;
}
.escape-overlay p {
  margin-top: 20px;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 40ch;
}
.escape-countdown {
  margin-top: 36px;
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 500;
  color: var(--terra-600);
  line-height: 1;
}

/* ============== HOVER COVER (cover screen on mouse-leave) ============== */
.hover-cover {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 999;
  display: none;
  flex-direction: column;
  padding: 60px;
  opacity: 0;
  transition: opacity .15s;
}
.hover-cover.active { display: flex; opacity: 1; }
.hover-cover h1 {
  font-family: var(--font-serif);
  font-size: 56px;
  color: var(--plum-900);
  max-width: 18ch;
}
.hover-cover .recipe-meta {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  color: var(--ink-mute);
  font-size: 14px;
}
.hover-cover .recipe-body {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
}
.hover-cover h3 { margin-bottom: 16px; }
.hover-cover ol, .hover-cover ul {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
  padding-left: 22px;
}
.hover-cover-hint {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--plum-700);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: var(--r-pill);
  font-size: 13px;
  box-shadow: var(--sh-md);
}

/* ============== MOBILE NAV DRAWER ============== */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 380px;
  background: var(--cream);
  z-index: 300;
  padding: 24px;
  transform: translateX(100%);
  transition: transform .25s ease;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(46,42,53,.2);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46,42,53,.5);
  z-index: 290;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.mobile-drawer-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.mobile-drawer-close {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  color: var(--plum-900);
}
.mobile-drawer-close:hover { background: var(--plum-50); }
.mobile-drawer-links {
  display: flex; flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.mobile-drawer-links a {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--plum-900);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer-links a:last-child { border-bottom: none; }
.mobile-drawer-actions {
  display: flex; flex-direction: column; gap: 12px;
}
.mobile-drawer .quick-escape {
  justify-content: center;
  font-size: 16px;
  padding: 16px;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; padding: 56px 24px 72px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .programs-grid { grid-template-columns: 1fr; }
  .involve-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .assess { grid-template-columns: 1fr; gap: 32px; padding: 48px; }
  .story-card { grid-template-columns: 1fr; padding: 36px; gap: 28px; }
  .story-portrait { width: 100%; height: 240px; }
  .path-card.feature, .path-card.tall { grid-column: span 6; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav { top: 0; }
  .safety-bar { display: none; }
  .nav-cta-group .quick-escape { display: none; }
  .quick-escape-float { display: inline-flex; top: 12px; right: 12px; }

  .section { padding: 64px 20px; }
  .hero-inner { padding: 36px 20px 56px; gap: 36px; }
  .help-panel { padding: 24px; }
  .help-channel-value { font-size: 19px; }

  .section-head { flex-direction: column; align-items: start; gap: 16px; margin-bottom: 36px; }
  .paths-grid { gap: 12px; }
  .path-card, .path-card.feature, .path-card.tall { grid-column: span 12; min-height: auto; padding: 26px; }
  .impact-grid { grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
  .impact-stat-num { font-size: 48px; }
  .story-card { margin-top: 48px; padding: 28px; }
  .story-quote { font-size: 20px; }
  .programs-grid { gap: 14px; }
  .program { grid-template-columns: 1fr; gap: 16px; padding: 26px; }
  .program-mark { width: 52px; height: 52px; }
  .involve-card { padding: 28px; }
  .footer { padding: 48px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-bot { flex-direction: column; gap: 8px; }

  .hover-cover { padding: 32px 24px; }
  .hover-cover h1 { font-size: 36px; }
  .hover-cover .recipe-body { grid-template-columns: 1fr; gap: 32px; margin-top: 28px; }

  .assess { padding: 32px 24px; }
  .assess-q { font-size: 15px; padding: 14px 16px; }
}

/* Texture / grain */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: .035; mix-blend-mode: multiply;
  background-image:
    radial-gradient(rgba(46,42,53,1) 1px, transparent 1px);
  background-size: 3px 3px;
}

/* ============== THRIFT STORE BAND (home) ============== */
.thrift-section { background: var(--cream); }
.thrift-band {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.thrift-copy .thrift-lede {
  margin-top: 20px;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 46ch;
}
.thrift-copy .thrift-lede strong { color: var(--plum-800); font-weight: 600; }
.thrift-stats {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.thrift-stat { background: var(--paper); padding: 20px 18px; }
.thrift-stat-num {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--plum-900);
  line-height: 1;
}
.thrift-stat-num .accent { color: var(--terra-600); font-style: italic; }
.thrift-stat p {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.35;
}
.thrift-actions { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

.thrift-media {
  position: relative;
  display: block;
  text-decoration: none;
  aspect-ratio: 1 / 1;
}
.thrift-media:hover { text-decoration: none; }
.thrift-photo {
  position: absolute;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
  background: var(--plum-50);
}
.thrift-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,.7,.3,1); }
.thrift-media:hover .thrift-photo img { transform: scale(1.04); }
.thrift-photo-main { inset: 0 18% 18% 0; }
.thrift-photo-small {
  width: 46%; aspect-ratio: 3/4;
  right: 0; bottom: 0;
  border-width: 4px; border-color: var(--cream);
}
.thrift-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--terra-600); color: white;
  padding: 7px 13px; border-radius: var(--r-pill);
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700;
}
.thrift-pricetag {
  position: absolute;
  left: 2%; bottom: 22%;
  background: white;
  padding: 12px 16px; border-radius: 4px;
  box-shadow: 0 10px 26px rgba(46,42,53,.2);
  transform: rotate(-4deg);
  border-left: 3px solid var(--terra-600);
  z-index: 2;
}
.thrift-pricetag-price { font-family: var(--font-serif); font-size: 22px; font-weight: 500; color: var(--plum-900); line-height: 1; }
.thrift-pricetag-label { margin-top: 4px; font-size: 10.5px; color: var(--ink-mute); letter-spacing: 0.02em; }

@media (max-width: 880px) {
  .thrift-band { grid-template-columns: 1fr; gap: 36px; }
  .thrift-media { max-width: 460px; }
}

/* ============== SITE-WIDE SCROLL REVEAL ============== */
/* Only hides content once JS confirms motion is OK (html.motion-ready),
   and never under reduced-motion — so no-JS / reduced-motion users see everything. */
@media (prefers-reduced-motion: no-preference) {
  html.motion-ready [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition:
      opacity .72s cubic-bezier(.16,.7,.3,1),
      transform .72s cubic-bezier(.16,.7,.3,1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }
  html.motion-ready [data-reveal="fade"] { transform: none; }
  html.motion-ready [data-reveal="scale"] { transform: translateY(26px) scale(.985); }
  html.motion-ready [data-reveal].is-in {
    opacity: 1;
    transform: none;
  }
}
