/* Rick's Thrift — combined stylesheet (colors_and_type.css + site.css) */

/* =============================================================
   Rick's Thrift — Colors & Type
   A pink-forward, playful design system that lives alongside
   Rick's Heart Foundation, Heart for Music, and KBNF.

   Hierarchy of color decisions:
   - HOT PINK is the lead. It comes from Rick's Heart + Heart for Music.
   - Korle Blue (#007096) and Korle Orange (#ED8B00) remain as
     "partner colors" — used when content is funding KBNF specifically.
   - Cream / brown-black / dusty-rose provide the thrift-shop warmth
     (think: paper price tags, brown craft paper, hand-stamped ink).
   ============================================================= */

/* -------- WEBFONTS -------- */
/* Headline/Display: Fraunces — see fonts/  (substitute for Parisine + brand voice)
   Body: Merriweather (Google) — carried over from KBNF
   UI / labels: Source Sans 3 (Google) — carried over from KBNF
   Accent / Hand: Caveat (Google) — used SPARINGLY for price-tag style notes  */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,700;0,9..144,900;1,9..144,700&family=Merriweather:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:ital,wght@0,400;0,600;0,700;1,400&family=Caveat:wght@500;700&display=swap");

:root {
  /* ===== Brand palette ===== */

  /* Hot pink — primary. Pulled to match Rick's Heart ribbon. */
  --rt-pink-50:  #fff0f6;
  --rt-pink-100: #ffd5e6;
  --rt-pink-200: #ffa6cb;
  --rt-pink-300: #ff6fae;
  --rt-pink-400: #f43f93;   /* Hot Pink — PRIMARY brand color */
  --rt-pink-500: #d92078;   /* Pink — for body text on cream, AA on white */
  --rt-pink-600: #b3145f;
  --rt-pink-700: #7a0a3e;

  /* Bubblegum — a softer secondary pink, picked for fire-engine + mini-train */
  --rt-bubblegum: #ff8fc4;

  /* Cream / paper — primary surface */
  --rt-cream:    #fbf3e6;   /* Thrift paper bag */
  --rt-cream-2:  #f3e7cf;   /* Recessed cream — for cards-on-cream */
  --rt-ink:      #1a0f12;   /* Brown-black ink, not pure black */
  --rt-ink-2:    #3a2a2e;   /* Secondary text */
  --rt-ink-3:    #6e5a5e;   /* Tertiary text / disabled */

  /* Warm accents — chosen to harmonize with both KBNF Orange + Pink */
  --rt-mustard:  #e8a93a;   /* Price-tag yellow */
  --rt-tangerine:#f06b2a;   /* "SALE" stripe — leans toward KBNF orange */

  /* Partner colors — direct from KBNF brand guide */
  --rt-korle-blue:   #007096;
  --rt-korle-orange: #ED8B00;

  /* Semantic — built on the brand */
  --bg:        var(--rt-cream);
  --bg-elev:   #ffffff;
  --bg-sunken: var(--rt-cream-2);
  --fg:        var(--rt-ink);
  --fg-muted:  var(--rt-ink-2);
  --fg-subtle: var(--rt-ink-3);
  --fg-on-pink:#ffffff;

  --accent:        var(--rt-pink-400);
  --accent-strong: var(--rt-pink-500);
  --accent-soft:   var(--rt-pink-100);

  --success: #2f8a3e;
  --warning: var(--rt-mustard);
  --danger:  #c43b2e;

  --border:        #e5d4b8;
  --border-strong: var(--rt-ink);

  /* ===== Type families ===== */
  --font-display: "Fraunces", "Parisine Office Std", "Georgia", serif;
  --font-body:    "Merriweather", "Iowan Old Style", "Georgia", serif;
  --font-ui:      "Source Sans 3", "Source Sans Pro", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-hand:    "Caveat", "Bradley Hand", cursive;

  /* ===== Type scale (1.250 — major third, slightly playful) ===== */
  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-30: 1.875rem;
  --fs-36: 2.25rem;
  --fs-48: 3rem;
  --fs-64: 4rem;
  --fs-84: 5.25rem;
  --fs-120: 7.5rem;

  --lh-tight: 1.05;
  --lh-snug: 1.2;
  --lh-base: 1.55;
  --lh-loose: 1.7;

  /* ===== Spacing (4pt) ===== */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  /* ===== Radii — chunky, friendly, never sharp ===== */
  --r-1: 6px;
  --r-2: 12px;
  --r-3: 20px;
  --r-4: 32px;
  --r-pill: 999px;

  /* ===== Shadows — soft, warm, not slick ===== */
  --shadow-sm: 0 1px 0 rgba(26,15,18,.08), 0 2px 6px rgba(26,15,18,.06);
  --shadow-md: 0 6px 18px rgba(26,15,18,.10), 0 1px 0 rgba(26,15,18,.04);
  --shadow-lg: 0 18px 48px rgba(122,10,62,.16);
  --shadow-tag: 2px 3px 0 var(--rt-ink); /* hard offset, for price-tag stickers */

  /* ===== Motion ===== */
  --ease-out: cubic-bezier(.2,.7,.2,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
  --dur-fast: 140ms;
  --dur-base: 220ms;
  --dur-slow: 420ms;
}

/* =============================================================
   SEMANTIC TYPE STYLES — use these as utility classes
   ============================================================= */

.rt-display, h1.rt-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(var(--fs-48), 7vw, var(--fs-120));
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  color: var(--fg);
}

.rt-h1, h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-64);
  line-height: var(--lh-tight);
  letter-spacing: -0.015em;
  color: var(--fg);
}

.rt-h2, h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-36);
  line-height: var(--lh-snug);
  letter-spacing: -0.01em;
  color: var(--fg);
}

.rt-h3, h3 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: var(--fs-24);
  line-height: var(--lh-snug);
  color: var(--fg);
}

.rt-h4, h4 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: var(--fs-18);
  line-height: var(--lh-snug);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--fg);
}

.rt-body, p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-18);
  line-height: var(--lh-base);
  color: var(--fg-muted);
}

.rt-body-sm {
  font-family: var(--font-body);
  font-size: var(--fs-16);
  line-height: var(--lh-base);
  color: var(--fg-muted);
}

.rt-ui {
  font-family: var(--font-ui);
  font-size: var(--fs-16);
  font-weight: 600;
  color: var(--fg);
}

.rt-caption {
  font-family: var(--font-ui);
  font-size: var(--fs-14);
  line-height: var(--lh-base);
  color: var(--fg-subtle);
}

.rt-eyebrow {
  font-family: var(--font-ui);
  font-size: var(--fs-12);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-strong);
}

/* Hand-written accent — for price tags, "today only!" notes.
   Use SPARINGLY — never for body, never for navigation. */
.rt-hand {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: var(--fs-30);
  color: var(--accent-strong);
  transform: rotate(-3deg);
  display: inline-block;
}

/* =============================================================
   BASELINE
   ============================================================= */
html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--fs-18);
  line-height: var(--lh-base);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}


/* ----- site.css ----- */

/* ============================================================
   Rick's Thrift — Website styles
   Mobile-first. Breakpoints: 600px (sm), 900px (md), 1200px (lg).
   Lives at /website/. Imports tokens from ../colors_and_type.css
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-strong); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 2px; }
a:hover { color: var(--rt-pink-600); }

/* ===== Layout ===== */
.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 900px) { .wrap { padding: 0 32px; } }

.section { padding: 56px 0; }
@media (min-width: 900px) { .section { padding: 88px 0; } }

.section h1, .section h2 { margin: 0; }
.eyebrow {
  font: 700 11px/1 var(--font-ui);
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--accent-strong);
  margin: 0 0 12px;
}
.h-display {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: clamp(40px, 9vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: clamp(32px, 6.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  margin: 0;
}
.lede {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 60ch;
  margin: 16px 0 0;
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--rt-cream);
  border-bottom: 1.5px solid var(--border);
}
.header-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  max-width: 1120px; margin: 0 auto;
}
@media (min-width: 900px) { .header-bar { padding: 18px 32px; } }
.brand {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: 28px; line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-decoration: none;
  display: inline-flex; align-items: baseline; gap: 4px;
}
.brand .dot { color: var(--accent); }
.nav-toggle {
  background: var(--fg); color: var(--rt-cream);
  border: 0; padding: 10px 14px;
  border-radius: var(--r-pill);
  font: 700 13px/1 var(--font-ui);
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }

.site-nav {
  display: none;
  border-top: 1.5px solid var(--border);
  background: var(--rt-cream);
}
.site-nav.open { display: block; }
.site-nav ul {
  list-style: none; margin: 0; padding: 8px 20px 16px;
  display: flex; flex-direction: column; gap: 2px;
}
.site-nav a {
  display: block;
  padding: 14px 4px;
  font: 700 16px/1 var(--font-ui);
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid rgba(26,15,18,.08);
}
.site-nav a.cta {
  margin-top: 8px;
  background: var(--accent); color: #fff;
  border: 0; border-radius: var(--r-pill);
  text-align: center; padding: 14px 16px;
}
@media (min-width: 900px) {
  .site-nav { display: block !important; border-top: 0; }
  .site-nav ul {
    flex-direction: row; align-items: center; gap: 6px;
    padding: 0;
  }
  .site-nav a {
    padding: 10px 14px; border-bottom: 0;
    border-radius: var(--r-pill);
    font-size: 15px;
  }
  .site-nav a:hover { background: var(--rt-pink-100); color: var(--accent-strong); }
  .site-nav a.cta { margin-top: 0; }
  .site-nav a.cta:hover { background: var(--rt-pink-500); color: #fff; }
}

/* ===== Hero ===== */
.hero {
  background: var(--rt-cream);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: 28px;
  padding: 32px 0 12px;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    padding: 48px 0 24px;
  }
}
.hero .lede { margin-top: 20px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-photo {
  border-radius: var(--r-3);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Hot pink info strip below hero */
.info-strip {
  background: var(--rt-pink-400);
  color: #fff;
}
.info-strip-inner {
  display: grid;
  gap: 18px;
  padding: 28px 0;
}
@media (min-width: 700px) {
  .info-strip-inner { grid-template-columns: repeat(3, 1fr); }
}
.info-item h4 {
  font: 700 11px/1 var(--font-ui);
  text-transform: uppercase; letter-spacing: 0.22em;
  margin: 0 0 8px; opacity: 0.92;
}
.info-item p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700; font-style: italic;
  font-size: 22px; line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
}
.info-item p a { color: #fff; text-decoration-color: rgba(255,255,255,0.5); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font: 700 15px/1 var(--font-ui);
  padding: 14px 22px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--rt-pink-500); color: #fff; }
.btn-ink { background: var(--fg); color: var(--rt-cream); }
.btn-ink:hover { background: var(--rt-ink-2); color: var(--rt-cream); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--fg); }
.btn-ghost:hover { background: var(--fg); color: var(--rt-cream); }

/* ===== Section: Who's Rick ===== */
.rick {
  background: var(--rt-cream);
}
.rick-grid {
  display: grid; gap: 28px; margin-top: 32px;
}
@media (min-width: 900px) {
  .rick-grid { grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
}
.rick-photo {
  border-radius: var(--r-3);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
  background: #efe2c8;
}
.rick-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.rick-body p {
  font-family: var(--font-body);
  font-size: 17px; line-height: 1.65;
  color: var(--fg-muted);
  margin: 0 0 16px;
}
.rick-body p strong { color: var(--fg); font-weight: 700; }

.cowboy-card {
  background: #fff;
  border: 2px solid var(--fg);
  border-radius: var(--r-3);
  padding: 22px 24px;
  margin: 24px 0 16px;
  position: relative;
  box-shadow: var(--shadow-tag);
}
.cowboy-card .cowboy-label {
  position: absolute; top: -12px; left: 18px;
  background: var(--rt-mustard); color: var(--fg);
  font: 700 10px/1 var(--font-ui);
  text-transform: uppercase; letter-spacing: 0.22em;
  padding: 6px 10px; border: 2px solid var(--fg); border-radius: 6px;
}
.cowboy-card .cowboy-quote {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 30px; line-height: 1.1;
  color: var(--fg);
  margin: 0;
}
.cowboy-card .cowboy-meta {
  font: 500 13px/1.4 var(--font-ui);
  color: var(--fg-subtle);
  margin: 10px 0 0;
}

.rick-quirks {
  display: grid; gap: 12px; margin-top: 8px; padding: 0;
  list-style: none;
}
.rick-quirks li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-2);
  padding: 14px 16px;
  font: 500 15px/1.5 var(--font-ui);
  color: var(--fg);
}
.rick-quirks li::before {
  content: "♥"; color: var(--accent); margin-right: 10px; font-size: 18px;
}

/* ===== Section: Causes ===== */
.causes { background: #fff; }
.cause-row {
  display: grid; gap: 20px; margin-top: 36px;
}
@media (min-width: 700px) { .cause-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .cause-row { grid-template-columns: repeat(3, 1fr); } }
.cause-card {
  background: var(--rt-cream);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.cause-card.kbnf { background: #fff; border: 2px solid var(--rt-korle-blue); }
.cause-logo {
  height: 56px;
  display: flex; align-items: center;
}
.cause-logo img { max-height: 56px; width: auto; }
.cause-card h3 {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: 28px; line-height: 1.05;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--fg);
}
.cause-card p {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}
.cause-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.cause-stat .num {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: 28px; line-height: 1;
  color: var(--accent-strong);
}
.cause-card.kbnf .cause-stat .num { color: var(--rt-korle-blue); }
.cause-stat .lbl {
  font: 600 11px/1.2 var(--font-ui);
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--fg-subtle);
  margin-top: 4px;
}
.cause-card .cause-link {
  font: 700 13px/1 var(--font-ui);
  text-transform: uppercase; letter-spacing: 0.16em;
  text-decoration: none;
  color: var(--accent-strong);
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 4px;
}
.cause-card.kbnf .cause-link { color: var(--rt-korle-blue); }
.cause-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ===== Section: Drop-off ===== */
.dropoff { background: var(--rt-cream-2); }
.bin-row {
  display: grid; gap: 16px; margin-top: 28px;
}
@media (min-width: 700px) { .bin-row { grid-template-columns: 1fr 1fr; } }
.bin-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-sm);
}
.bin-card .bin-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font: 700 11px/1 var(--font-ui);
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--accent-strong);
}
.bin-card .bin-tag::before {
  content: ""; width: 18px; height: 22px;
  background: var(--accent);
  -webkit-mask: radial-gradient(circle at 9px 8px, transparent 3.5px, #000 4px) no-repeat;
          mask: radial-gradient(circle at 9px 8px, transparent 3.5px, #000 4px) no-repeat;
  clip-path: path("M9 0 C 4 0, 0 4, 0 9 C 0 16, 9 22, 9 22 C 9 22, 18 16, 18 9 C 18 4, 14 0, 9 0 Z");
}
.bin-card h3 {
  font-family: var(--font-display);
  font-weight: 700; font-style: italic;
  font-size: 24px; line-height: 1.1;
  margin: 0;
  color: var(--fg);
}
.bin-card .bin-address {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.5;
  color: var(--fg-muted);
  margin: 0;
}
.bin-card .bin-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.bin-card .bin-actions a {
  font: 700 12px/1 var(--font-ui);
  text-transform: uppercase; letter-spacing: 0.16em;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  text-decoration: none;
}
.bin-card .bin-actions .map { background: var(--fg); color: var(--rt-cream); }
.bin-card .bin-actions .map:hover { background: var(--rt-ink-2); color: var(--rt-cream); }

.dropoff-help {
  margin-top: 28px;
  background: #fff;
  border: 1.5px dashed var(--fg);
  border-radius: var(--r-3);
  padding: 22px 24px;
}
.dropoff-help h3 {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: 24px;
  margin: 0 0 8px;
}
.dropoff-help p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--fg-muted); }

/* ===== Section: Estate / Big donations form ===== */
.estate { background: var(--rt-cream); }
.estate-grid {
  display: grid; gap: 28px; margin-top: 32px;
}
@media (min-width: 900px) { .estate-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
.estate-body p {
  font-size: 16px; line-height: 1.6; color: var(--fg-muted); margin: 0 0 14px;
}
.estate-body ul {
  list-style: none; padding: 0; margin: 8px 0 0;
}
.estate-body ul li {
  padding-left: 28px; position: relative;
  font: 500 15px/1.55 var(--font-ui);
  color: var(--fg);
  margin-bottom: 8px;
}
.estate-body ul li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
}

.estate-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  padding: 24px;
  display: grid; gap: 14px;
  box-shadow: var(--shadow-md);
}
.estate-form h3 {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: 26px;
  margin: 0 0 4px;
}
.estate-form .form-sub {
  font: 400 14px/1.5 var(--font-body);
  color: var(--fg-muted); margin: 0 0 8px;
}
.estate-form label {
  font: 700 11px/1 var(--font-ui);
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--fg-subtle);
  display: block; margin-bottom: 6px;
}
.estate-form input, .estate-form select, .estate-form textarea {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 16px;
  padding: 12px 14px;
  background: #fff;
  color: var(--fg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-2);
  outline: none;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.estate-form textarea { min-height: 96px; resize: vertical; font-family: var(--font-body); }
.estate-form input:focus, .estate-form select:focus, .estate-form textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px var(--rt-pink-200);
}
.field-row { display: grid; gap: 14px; }
@media (min-width: 600px) { .field-row.two { grid-template-columns: 1fr 1fr; } }
.estate-form .submit-row {
  display: flex; gap: 12px; align-items: center; margin-top: 6px; flex-wrap: wrap;
}
.estate-form .submit-row .small {
  font: 500 12px/1.4 var(--font-ui);
  color: var(--fg-subtle);
}

/* ===== Section: Volunteer ===== */
.volunteer {
  background: var(--fg);
  color: var(--rt-cream);
}
.volunteer .eyebrow { color: var(--rt-pink-200); }
.volunteer h2 { color: var(--rt-cream); }
.volunteer .lede { color: rgba(251,243,230,0.85); }
.vol-row {
  display: grid; gap: 16px; margin-top: 32px;
}
@media (min-width: 700px) { .vol-row { grid-template-columns: repeat(3, 1fr); } }
.vol-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-3);
  padding: 22px;
}
.vol-card h4 {
  font-family: var(--font-display);
  font-weight: 700; font-style: italic;
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--rt-cream);
}
.vol-card p {
  font-size: 14px; line-height: 1.55;
  color: rgba(251,243,230,0.78);
  margin: 0;
}
.vol-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.volunteer .btn-primary { background: var(--accent); color: #fff; }
.volunteer .btn-ghost { color: var(--rt-cream); border-color: var(--rt-cream); }
.volunteer .btn-ghost:hover { background: var(--rt-cream); color: var(--fg); }

/* ===== Footer ===== */
.site-footer {
  background: var(--rt-cream-2);
  border-top: 2px solid var(--fg);
  padding: 40px 0 28px;
}
.footer-grid {
  display: grid; gap: 24px;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-grid h4 {
  font: 700 11px/1 var(--font-ui);
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--fg-subtle);
  margin: 0 0 12px;
}
.footer-grid p, .footer-grid li {
  font: 500 14px/1.6 var(--font-ui);
  color: var(--fg);
  margin: 0;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li a { color: var(--fg); text-decoration: none; }
.footer-grid ul li a:hover { color: var(--accent-strong); text-decoration: underline; }
.footer-meta {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font: 500 12px/1.5 var(--font-ui);
  color: var(--fg-subtle);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: 32px; line-height: 1;
  color: var(--fg); margin-bottom: 8px;
}
.footer-brand .dot { color: var(--accent); }

/* ===== Anchor offset for sticky header ===== */
section[id] { scroll-margin-top: 80px; }
