/* ================================================================
   FOOD FREEDOM AMERICA v3.0
   Design: Feeding America-inspired — clean, white-dominant,
           human-first, urgent red accent, card-based structure
   Fonts:  Lora (headings) + DM Sans (body) — warm authority
   Palette: White / Warm Red / Dark Charcoal / Light Gray
   ADA:    WCAG 2.1 AA — 4.5:1 contrast, visible focus, skip link
   Mobile: Touch targets 44px+, responsive at 960/640/400px
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  --navy:        #0c2340;
  --red:         #c8102e;
  --red-dark:    #a00d23;
  --red-light:   #fdecea;
  --charcoal:    #1a1a1a;
  --dark:        #2d2d2d;
  --white:       #ffffff;
  --off-white:   #f7f8fa;
  --light-gray:  #eeeff2;
  --mid-gray:    #e0e2e8;
  --text:        #1a1a1a;
  --muted:       #555555;
  --border:      #d8dae0;
  --focus:       #005fcc;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 18px rgba(0,0,0,0.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.13);
  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   14px;
  --ff-head:     'Lora', Georgia, serif;
  --ff-body:     'DM Sans', system-ui, sans-serif;
  --max-w:       1160px;
  --pad:         clamp(1.25rem, 5vw, 4rem);
  --touch:       44px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--red); }
ul, ol { list-style: none; }
table { border-collapse: collapse; }

/* ── ADA SKIP LINK ── */
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  background: var(--red); color: var(--white);
  padding: .75rem 1.25rem; border-radius: var(--radius-sm);
  font-weight: 700; text-decoration: none; font-size: .9375rem;
  transition: top .2s;
}
.skip-link:focus { top: .75rem; }

/* ── SCREEN READER ONLY ── */
.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── FOCUS ── */
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 2px; }

/* ── LAYOUT ── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.section       { padding: 80px 0; }
.section--sm   { padding: 52px 0; }
.section--lg   { padding: 104px 0; }
.section--gray { background: var(--off-white); }
.section--red  { background: var(--red); }

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-family: var(--ff-body);
  font-size: .6875rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); display: block; margin-bottom: .6rem;
}
h1, .h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700; line-height: 1.1; color: var(--charcoal);
  letter-spacing: -.02em;
}
h2, .h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700; line-height: 1.2; color: var(--charcoal);
  letter-spacing: -.015em;
}
h3, .h3 {
  font-family: var(--ff-head);
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 600; line-height: 1.3; color: var(--charcoal);
}
h4, .h4 {
  font-family: var(--ff-body);
  font-size: .8125rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--charcoal);
}
.lead {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.75; color: var(--muted); max-width: 54ch;
}
p { line-height: 1.7; color: var(--muted); }

/* On red backgrounds */
.section--red .eyebrow { color: rgba(255,255,255,.65); }
.section--red h1, .section--red h2, .section--red h3 { color: var(--white); }
.section--red .lead, .section--red p { color: rgba(255,255,255,.8); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; font-family: var(--ff-body); font-weight: 700;
  font-size: .9375rem; letter-spacing: .02em;
  text-decoration: none; border-radius: var(--radius-sm);
  transition: all .18s ease; cursor: pointer;
  border: 2px solid transparent; white-space: nowrap;
  min-height: var(--touch); padding: 0 1.75rem;
}
.btn--red    { background: var(--red); color: var(--white); }
.btn--red:hover, .btn--red:focus-visible { background: var(--red-dark); color: var(--white); box-shadow: 0 3px 12px rgba(200,16,46,.35); transform: translateY(-1px); }
.btn--white  { background: var(--white); color: var(--red); }
.btn--white:hover, .btn--white:focus-visible { background: var(--off-white); color: var(--red-dark); }
.btn--outline-red { border-color: var(--red); color: var(--red); background: transparent; }
.btn--outline-red:hover { background: var(--red); color: var(--white); }
.btn--outline-white { border-color: var(--white); color: var(--white); background: transparent; }
.btn--outline-white:hover { background: var(--white); color: var(--red); }
.btn--lg { padding: 0 2.5rem; font-size: 1.0625rem; min-height: 56px; }
.btn--sm { padding: 0 1.25rem; font-size: .8125rem; min-height: 36px; }

/* ── NAV — white like FA ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: var(--white); height: 68px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.site-nav.scrolled { box-shadow: var(--shadow-md); }
.site-nav .wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { text-decoration: none; display: flex; align-items: center; gap: .625rem; }
.nav-logo__icon { width: 36px; height: 36px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo__icon svg { color: var(--white); }
.nav-logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo__main { font-family: var(--ff-head); font-size: .9375rem; font-weight: 700; color: var(--charcoal); }
.nav-logo__sub  { font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: .125rem; }
.nav-links a {
  font-family: var(--ff-body); font-size: .875rem; font-weight: 600;
  color: var(--dark); text-decoration: none;
  padding: .5rem .875rem; border-radius: var(--radius-sm);
  min-height: var(--touch); display: flex; align-items: center;
  transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--red); background: var(--red-light); }
.nav-links .nav-donate {
  background: var(--red); color: var(--white) !important;
  margin-left: .625rem; border-radius: var(--radius-sm);
  font-weight: 700; padding: .5rem 1.25rem;
}
.nav-links .nav-donate:hover, .nav-links .nav-donate:focus-visible { background: var(--red-dark); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer;
  padding: .4rem .6rem; color: var(--dark);
  min-width: var(--touch); min-height: var(--touch);
  align-items: center; justify-content: center;
}

/* ── HERO — FA style: white bar + big image ── */
.hero {
  padding-top: 68px;          /* nav offset */
  position: relative;
}
.hero__img-wrap {
  position: relative; height: clamp(480px, 70vh, 680px); overflow: hidden;
}
.hero__img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 60%, rgba(0,0,0,.1) 100%);
}
.hero__body {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 0 var(--pad);
}
.hero__body-inner { max-width: 600px; }
.hero__body h1 { color: var(--white); margin-bottom: 1rem; animation: fadeUp .65s ease both; }
.hero__body .lead { color: rgba(255,255,255,.88); margin-bottom: 2rem; animation: fadeUp .65s .1s ease both; }
.hero__cta-row { display: flex; gap: .75rem; flex-wrap: wrap; animation: fadeUp .65s .2s ease both; }

/* ── ZIP FINDER ── */
.zip-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2rem 2rem 1.75rem; max-width: 560px;
}
.zip-card--hero { animation: fadeUp .65s .25s ease both; }
.zip-card__label { font-family: var(--ff-body); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--charcoal); display: block; margin-bottom: .75rem; }
.zip-card__row { display: flex; gap: .5rem; }
.zip-card__input {
  flex: 1; height: var(--touch); border: 2px solid var(--border);
  border-radius: var(--radius-sm); padding: 0 1rem;
  font-family: var(--ff-body); font-size: 1rem; font-weight: 500;
  color: var(--text); outline: none; transition: border-color .15s;
}
.zip-card__input:focus { border-color: var(--focus); }
.zip-card__input::placeholder { color: #aaa; font-weight: 400; }
.zip-card__btn {
  height: var(--touch); padding: 0 1.5rem;
  background: var(--red); color: var(--white); border: none;
  border-radius: var(--radius-sm); font-family: var(--ff-body);
  font-weight: 700; font-size: .9375rem; cursor: pointer;
  transition: background .18s; white-space: nowrap;
}
.zip-card__btn:hover, .zip-card__btn:focus-visible { background: var(--red-dark); }
.zip-card__note { font-size: .75rem; color: var(--muted); margin-top: .6rem; }
.zip-card__note a { color: var(--red); font-weight: 600; text-decoration: none; }
.zip-card__note a:hover { text-decoration: underline; }
.zip-card__error { color: #c00; font-size: .8125rem; margin-top: .4rem; display: none; }
.zip-card__error.show { display: block; }

/* ── BELOW-HERO ZIP (Find Food page) ── */
.zip-band {
  background: var(--red); padding: 40px 0;
}
.zip-band .wrap { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.zip-band__label { color: var(--white); font-family: var(--ff-head); font-size: 1.375rem; font-weight: 700; white-space: nowrap; }
.zip-band .zip-card { background: transparent; box-shadow: none; padding: 0; flex: 1; min-width: 280px; max-width: 540px; }
.zip-band .zip-card__input { background: rgba(255,255,255,.95); }
.zip-band .zip-card__label { color: rgba(255,255,255,.75); }
.zip-band .zip-card__note { color: rgba(255,255,255,.7); }
.zip-band .zip-card__note a { color: var(--white); }

/* ── THREE ACTION CARDS ── */
.action-bar { background: var(--white); border-bottom: 1px solid var(--border); }
.action-bar nav.wrap { display: grid; grid-template-columns: repeat(3,1fr); padding: 0; max-width: var(--max-w); margin: 0 auto; }
.action-card {
  padding: 2rem 1.75rem; border-right: 1px solid var(--border);
  text-decoration: none; color: inherit; display: block;
  transition: background .16s; position: relative;
}
.action-card:last-child { border-right: none; }
.action-card:hover, .action-card:focus-visible { background: var(--red-light); }
.action-card:focus-visible { outline: 3px solid var(--focus); outline-offset: -3px; }
.action-card__num { font-size: 2.5rem; font-weight: 700; color: var(--mid-gray); font-family: var(--ff-head); line-height: 1; margin-bottom: .625rem; display: block; transition: color .16s; }
.action-card:hover .action-card__num { color: var(--red); }
.action-card h3 { font-family: var(--ff-body); font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: .4rem; }
.action-card p { font-size: .875rem; color: var(--muted); line-height: 1.55; }
.action-card__arrow { position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%); color: var(--border); transition: color .16s, transform .16s; }
.action-card:hover .action-card__arrow { color: var(--red); transform: translateY(-50%) translateX(3px); }

/* ── STATS BAND ── */
.stats-band { background: var(--charcoal); padding: 56px 0; }
.stats-band__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-block { padding: 0 2rem; border-right: 1px solid rgba(255,255,255,.12); text-align: center; }
.stat-block:first-child { padding-left: 0; }
.stat-block:last-child { border-right: none; }
.stat-block__num { font-family: var(--ff-head); font-size: clamp(2rem,3.5vw,2.75rem); font-weight: 700; color: var(--white); display: block; line-height: 1; margin-bottom: .4rem; }
.stat-block__num sup { font-size: .5em; vertical-align: super; color: #f87171; }
.stat-block__label { font-size: .8125rem; color: rgba(255,255,255,.6); line-height: 1.45; }
.stat-block__source { font-size: .6875rem; color: rgba(255,255,255,.3); margin-top: .25rem; display: block; }

/* ── PHOTO SPLIT — FA style ── */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 440px; }
.split--flip { direction: rtl; }
.split--flip > * { direction: ltr; }
.split__img { position: relative; overflow: hidden; min-height: 360px; }
.split__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.split:hover .split__img img { transform: scale(1.025); }
.split__body { padding: clamp(2.5rem,5vw,4.5rem); display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.split__body h2 { margin-bottom: .875rem; }
.split__body .lead { margin-bottom: 1.75rem; }

/* ── CARD GRID ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.5rem; }
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: box-shadow .18s, transform .18s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card--link { text-decoration: none; color: inherit; display: block; cursor: pointer; }
.card--link:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
.card__eyebrow { font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: .5rem; display: block; }
.card h3 { font-size: 1.0625rem; color: var(--charcoal); margin-bottom: .5rem; }
.card p { font-size: .875rem; color: var(--muted); line-height: 1.6; }
.card__img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 1.25rem; }

/* ── INITIATIVE CARDS (image cards) ── */
.img-card-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.img-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; display: block; text-decoration: none; }
.img-card:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.img-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.img-card:hover img, .img-card:focus-visible img { transform: scale(1.04); }
.img-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.05) 55%); }
.img-card__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; color: var(--white); }
.img-card__tag { font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: #fca5a5; font-weight: 700; display: block; margin-bottom: .3rem; }
.img-card h4 { font-family: var(--ff-head); font-size: .9375rem; color: var(--white); margin-bottom: .25rem; font-weight: 600; }
.img-card p { font-size: .75rem; color: rgba(255,255,255,.7); line-height: 1.45; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--off-white);
  border-bottom: 3px solid var(--red);
  padding: 112px 0 60px;
}
.page-hero h1 { margin-bottom: .875rem; }
.page-hero .lead { color: var(--muted); }

/* ── SECTION JUMP BAR ── */
.jump-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 68px; z-index: 100;
}
.jump-bar nav { display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.jump-bar nav::-webkit-scrollbar { display: none; }
.jump-bar a {
  display: inline-flex; align-items: center;
  padding: 0 1.125rem; height: 44px;
  font-size: .8125rem; font-weight: 600;
  color: var(--muted); text-decoration: none;
  white-space: nowrap; border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: color .14s, border-color .14s;
}
.jump-bar a:hover, .jump-bar a.active { color: var(--red); border-bottom-color: var(--red); }

/* ── DATA TABLE ── */
.tbl-wrap { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; overflow-x: auto; }
.tbl { width: 100%; border-collapse: collapse; font-size: .875rem; }
.tbl thead th { background: var(--charcoal); color: var(--white); padding: .75rem 1rem; text-align: left; font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.tbl tbody td, .tbl tbody th { padding: .875rem 1rem; border-bottom: 1px solid var(--border); vertical-align: top; color: var(--text); text-align: left; font-size: .875rem; }
.tbl tbody tr:last-child td, .tbl tbody tr:last-child th { border-bottom: none; }
.tbl tbody tr:hover td, .tbl tbody tr:hover th { background: var(--off-white); }

/* ── TABS ── */
.tabs-nav { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 2.5rem; overflow-x: auto; }
.tab-btn {
  background: none; border: none;
  padding: 0 1.375rem; height: var(--touch);
  font-family: var(--ff-body); font-size: .875rem; font-weight: 600;
  color: var(--muted); cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: color .14s, border-color .14s;
}
.tab-btn.active, .tab-btn:hover { color: var(--red); border-bottom-color: var(--red); }
.tab-btn[aria-selected="true"] { color: var(--red); border-bottom-color: var(--red); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── INFO BOX ── */
.ibox {
  border-left: 3px solid var(--red); padding: 1.25rem 1.5rem;
  background: var(--off-white); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1rem;
}
.ibox h4, .ibox__h { font-size: .8125rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--charcoal); margin-bottom: .6rem; }
.ibox p { font-size: .875rem; line-height: 1.7; }

/* ── LINK LIST ── */
.linklist { list-style: none; }
.linklist li { border-bottom: 1px solid var(--border); padding: .6rem 0; font-size: .875rem; display: flex; align-items: baseline; gap: .5rem; }
.linklist li::before { content: ''; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; position: relative; top: -1px; }
.linklist a { color: var(--red); text-decoration: none; font-weight: 500; }
.linklist a:hover, .linklist a:focus-visible { text-decoration: underline; color: var(--red-dark); }

/* ── BADGE ── */
.badge { display: inline-block; background: var(--light-gray); color: var(--dark); padding: .2rem .65rem; border-radius: 100px; font-size: .75rem; font-weight: 700; }
.badge--red { background: var(--red-light); color: var(--red-dark); }

/* ── NUTRIENT BLOCK ── */
.nutrient-block { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; background: var(--white); }
.nutrient-block h4 { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--charcoal); padding-bottom: .625rem; border-bottom: 2px solid var(--red); margin-bottom: .875rem; }
.nutrient-block ul { list-style: none; }
.nutrient-block li { display: flex; justify-content: space-between; padding: .35rem 0; font-size: .8125rem; border-bottom: 1px solid var(--off-white); }
.nutrient-block li:last-child { border-bottom: none; }
.nutrient-block li span { color: var(--muted); font-weight: 600; }

/* ── HIGHLIGHT BOX ── */
.hbox { background: var(--charcoal); color: var(--white); border-radius: var(--radius); padding: 2.5rem; display: flex; gap: 2.5rem; align-items: center; }
.hbox__stat { text-align: center; flex-shrink: 0; min-width: 110px; }
.hbox__num { font-family: var(--ff-head); font-size: 3.25rem; font-weight: 700; color: var(--white); line-height: 1; display: block; }
.hbox__unit { font-size: .75rem; color: rgba(255,255,255,.45); letter-spacing: .1em; text-transform: uppercase; display: block; margin-top: .3rem; }
.hbox h3 { color: var(--white); margin-bottom: .75rem; }
.hbox p { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.7; }

/* ── CHIP ROW ── */
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  display: inline-flex; align-items: center; height: var(--touch);
  padding: 0 1rem; background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; font-size: .8125rem; font-weight: 600;
  color: var(--dark); text-decoration: none; transition: all .15s;
}
.chip:hover, .chip:focus-visible { border-color: var(--red); color: var(--red); background: var(--red-light); }

/* ── TEAM / PERSON CARD ── */
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.person-card { display: flex; gap: 1.25rem; padding: 1.75rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.person-card__av { width: 52px; height: 52px; border-radius: 50%; background: var(--red); color: var(--white); font-family: var(--ff-head); font-size: 1.125rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.person-card__name { font-family: var(--ff-head); font-size: 1rem; color: var(--charcoal); }
.person-card__role { font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); display: block; margin: .15rem 0 .6rem; }
.person-card p { font-size: .8125rem; line-height: 1.7; }

/* ── PARTNER CARD ── */
.partner-card { max-width: 480px; padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.partner-card h3 { font-size: 1.0625rem; margin-bottom: .5rem; }
.partner-card p { font-size: .875rem; line-height: 1.65; }
.partner-card a { display: inline-block; margin-top: .875rem; font-size: .8125rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--red); text-decoration: none; }
.partner-card a:hover { text-decoration: underline; }

/* ── PATHWAY STRIP ── */
.pathway-strip { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.pathway-item { background: var(--white); padding: 1.75rem 1.5rem; border-right: 1px solid var(--border); }
.pathway-item:last-child { border-right: none; }
.pathway-item__label { font-size: .6875rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: .4rem; display: block; }
.pathway-item h4 { font-family: var(--ff-head); font-size: .9375rem; color: var(--charcoal); margin-bottom: .875rem; font-weight: 600; text-transform: none; letter-spacing: 0; }
.pathway-item .linklist li { font-size: .8125rem; }

/* ── KITCHEN CARD ── */
.kitchen-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.kitchen-card__head, .kitchen-card__header { background: var(--charcoal); padding: 1.125rem 1.5rem; display: flex; align-items: center; gap: .75rem; }
.kitchen-card__head svg, .kitchen-card__header svg { color: #fca5a5; flex-shrink: 0; }
.kitchen-card__head h3, .kitchen-card__head h4,
.kitchen-card__header h3, .kitchen-card__header h4 { color: var(--white); font-size: 1rem; text-transform: none; letter-spacing: 0; font-family: var(--ff-head); font-weight: 600; }
.kitchen-list { list-style: none; padding: 1rem 1.5rem; background: var(--white); }
.kitchen-list li { padding: .5rem 0; font-size: .875rem; color: var(--text); border-bottom: 1px solid var(--off-white); display: flex; align-items: baseline; gap: .6rem; line-height: 1.5; }
.kitchen-list li:last-child { border-bottom: none; }
.kitchen-list li::before { content: ''; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; position: relative; top: -1px; }

/* ── ORGANIC DOMAIN CARDS ── */
.domain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.domain-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.domain-card__head { padding: 1rem 1.5rem .75rem; border-bottom: 3px solid var(--red); }
.domain-card__head--people      { border-bottom-color: #2563eb; }
.domain-card__head--soil        { border-bottom-color: #92400e; }
.domain-card__head--plants      { border-bottom-color: #15803d; }
.domain-card__head--environment { border-bottom-color: #0e7490; }
.domain-card__head--food        { border-bottom-color: var(--red); }
.domain-card__head svg { display: block; margin-bottom: .4rem; }
.domain-card__head--people svg      { color: #2563eb; }
.domain-card__head--soil svg        { color: #92400e; }
.domain-card__head--plants svg      { color: #15803d; }
.domain-card__head--environment svg { color: #0e7490; }
.domain-card__head--food svg        { color: var(--red); }
.domain-card h4 { font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--charcoal); }
.domain-card .kitchen-list { padding-top: .5rem; }

/* ── DONATE BAND ── */
.donate-band { background: var(--red); padding: 72px 0; text-align: center; }
.donate-band h2 { color: var(--white); margin-bottom: .875rem; }
.donate-band .lead { color: rgba(255,255,255,.85); margin: 0 auto 2rem; }

/* ── NEWSLETTER ── */
.newsletter { background: var(--off-white); border-top: 1px solid var(--border); padding: 48px 0; }
.newsletter__inner { max-width: 520px; margin: 0 auto; text-align: center; }
.newsletter h3 { font-size: 1.25rem; margin-bottom: .4rem; color: var(--charcoal); }
.newsletter > .newsletter__inner > p { margin-bottom: 1.25rem; }
.newsletter__form { display: flex; gap: .5rem; }
.newsletter__form input { flex: 1; height: var(--touch); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0 1rem; font-family: var(--ff-body); font-size: .9375rem; outline: none; transition: border-color .15s; }
.newsletter__form input:focus { border-color: var(--focus); }
.newsletter__form button { height: var(--touch); padding: 0 1.5rem; background: var(--red); color: var(--white); border: none; border-radius: var(--radius-sm); font-family: var(--ff-body); font-weight: 700; font-size: .875rem; cursor: pointer; transition: background .18s; }
.newsletter__form button:hover { background: var(--red-dark); }

/* ── FOOTER ── */
.site-footer { background: #111; color: rgba(255,255,255,.45); padding: 48px 0 32px; font-size: .8125rem; }
.site-footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.site-footer__brand { display: flex; flex-direction: column; gap: .75rem; }
.site-footer__brand .nav-logo__main { color: var(--white); font-size: 1rem; }
.site-footer__brand .nav-logo__sub  { color: rgba(255,255,255,.4); }
.site-footer__brand address { font-style: normal; color: rgba(255,255,255,.4); line-height: 1.9; font-size: .8125rem; }
.site-footer__brand address a { color: rgba(255,255,255,.4); }
.footer-col h4 { font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .4rem; }
.footer-col ul li a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .8125rem; transition: color .15s; display: inline-flex; align-items: center; min-height: 28px; }
.footer-col ul li a:hover { color: var(--white); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.25rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.3); text-decoration: none; font-size: .75rem; }
.footer-legal a:hover { color: var(--white); }

/* ── COLS ── */
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.cols-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }

/* ── DONATE PAGE ── */
.donate-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 3rem; }

/* ── RESOURCE LINK ── */
.resource-link { display: inline-block; font-size: .8125rem; font-weight: 700; color: var(--red); text-decoration: none; }
.resource-link:hover { text-decoration: underline; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ── TABLET 960px ── */
@media (max-width: 960px) {
  .cols-3, .domain-grid, .img-card-grid { grid-template-columns: repeat(2,1fr); }
  .pathway-strip { grid-template-columns: repeat(2,1fr); }
  .stats-band__grid { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .stat-block { border-right: none; padding: 0; }
  .action-bar nav.wrap { grid-template-columns: 1fr; }
  .action-card { border-right: none; border-bottom: 1px solid var(--border); }
  .action-card:last-child { border-bottom: none; }
  .split { grid-template-columns: 1fr; }
  .split--flip { direction: ltr; }
  .split__img { min-height: 280px; }
  .team-grid { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .hbox { gap: 2rem; }
}

/* ── MOBILE 640px ── */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .cols-2, .cols-3, .domain-grid, .img-card-grid,
  .pathway-strip { grid-template-columns: 1fr; }
  .pathway-item { border-right: none; border-bottom: 1px solid var(--border); }
  .pathway-item:last-child { border-bottom: none; }

  /* Nav */
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--white); padding: 1rem;
    border-top: 1px solid var(--border); gap: .25rem;
    max-height: calc(100vh - 68px); overflow-y: auto;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-links a { border-radius: var(--radius-sm); padding: 0 1rem; }
  .nav-links .nav-donate { margin-left: 0; justify-content: center; }

  /* Hero */
  .hero__img-wrap { height: 380px; }
  .hero__cta-row { flex-direction: column; }
  .hero__cta-row .btn { width: 100%; }
  .zip-card--hero { max-width: 100%; }
  .zip-card__row { flex-direction: column; }
  .zip-card__btn { width: 100%; justify-content: center; }

  /* Zip band */
  .zip-band .wrap { flex-direction: column; gap: 1rem; }
  .zip-band__label { white-space: normal; }

  /* Tables */
  .tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Forms */
  .newsletter__form { flex-direction: column; }

  /* Stats */
  .stats-band__grid { grid-template-columns: 1fr 1fr; }
  .stat-block { padding: 0; border: none; }

  /* Person card */
  .person-card { flex-direction: column; }

  /* Highlight box */
  .hbox { flex-direction: column; text-align: center; }

  /* Footer */
  .site-footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
}

/* ── PRINT ── */
@media print {
  .site-nav, .newsletter, .skip-link, .nav-toggle, .jump-bar { display: none !important; }
  body { color: #000; background: #fff; }
  .page-hero { background: #f5f5f5; border: none; }
}

/* ================================================================
   FFA ADDITIONS v3.1 — Map, SNAP Wizard, Language Toggle, FAQ
   ================================================================ */

/* ── LANGUAGE TOGGLE ── */
.lang-toggle {
  display: flex; align-items: center; gap: 3px;
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 6px 10px;
  font-family: var(--ff-body); font-size: .6875rem; font-weight: 700;
  letter-spacing: .08em; cursor: pointer; color: var(--muted);
  transition: border-color .15s; min-height: 34px; margin-left: .5rem;
}
.lang-toggle:hover { border-color: var(--red); }
.lang-toggle:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
.lang-toggle__option { transition: color .15s; }
.lang-toggle__option.active { color: var(--red); }
.lang-toggle__sep { color: var(--border); }

/* ── MAP SEARCH SECTION ── */
.map-search-section {
  background: var(--off-white); padding: 52px 0 0;
  border-bottom: 1px solid var(--border);
}
.map-search__header { text-align: center; margin-bottom: 2rem; }
.map-search__header h2 { margin-bottom: .5rem; }
.map-search__header p { color: var(--muted); font-size: .9375rem; }

.map-search__bar {
  display: flex; gap: .5rem; max-width: 620px; margin: 0 auto;
}
.map-search__input {
  flex: 1; height: 52px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); padding: 0 1.25rem;
  font-family: var(--ff-body); font-size: 1rem; font-weight: 500;
  color: var(--text); background: var(--white); outline: none;
  transition: border-color .15s; box-shadow: var(--shadow-sm);
}
.map-search__input:focus { border-color: var(--focus); }
.map-search__input::placeholder { color: #aaa; font-weight: 400; }
.map-search__btn { height: 52px; padding: 0 1.75rem; font-size: .9375rem; border-radius: var(--radius-sm); }
.map-search__btn.loading { opacity: .7; pointer-events: none; cursor: wait; }

.map-search__hint {
  text-align: center; font-size: .8125rem; color: var(--muted);
  margin-top: .75rem; margin-bottom: 0;
}
.map-search__hint a { color: var(--red); font-weight: 600; text-decoration: none; }
.map-search__hint a:hover { text-decoration: underline; }

/* Map area */
.map-area {
  margin-top: 2rem; border-top: 1px solid var(--border);
  padding-top: 1.5rem; padding-bottom: 0;
  animation: fadeUp .3s ease;
}
.map-status {
  font-size: .875rem; font-weight: 600; padding: .625rem 1rem;
  border-radius: var(--radius-sm); margin-bottom: 1rem; display: flex;
  align-items: center; gap: .5rem;
}
.map-status--loading { background: #dbeafe; color: #1e40af; }
.map-status--loading::before { content: ''; width: 14px; height: 14px; border: 2px solid #1e40af; border-top-color: transparent; border-radius: 50%; animation: spin .7s linear infinite; flex-shrink: 0; }
.map-status--success { background: #dcfce7; color: #166534; }
.map-status--success::before { content: '✓'; }
.map-status--info    { background: #fef9c3; color: #854d0e; }
.map-status--info::before { content: 'ℹ'; }
.map-status--error   { background: var(--red-light); color: var(--red-dark); }
.map-status--error::before { content: '!'; }

@keyframes spin { to { transform: rotate(360deg); } }

.map-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 1.25rem;
  min-height: 420px;
}
.ffa-map {
  height: 420px; border-radius: var(--radius);
  border: 1px solid var(--border); z-index: 1;
  box-shadow: var(--shadow-sm);
}
.map-results { overflow-y: auto; max-height: 420px; }
.map-results__inner { display: flex; flex-direction: column; gap: .75rem; }

.map-result-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem 1.125rem;
  transition: box-shadow .15s;
}
.map-result-card:hover { box-shadow: var(--shadow-sm); }
.map-result-card__type {
  font-size: .625rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--red); margin-bottom: .25rem;
}
.map-result-card h4 {
  font-family: var(--ff-body); font-size: .875rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: .2rem; text-transform: none; letter-spacing: 0;
}
.map-result-card p { font-size: .8125rem; color: var(--muted); margin: 0; line-height: 1.45; }
.map-result-card__hours { font-style: italic; }
.map-result-card__actions { margin-top: .625rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.map-result-card__actions button,
.map-result-card__actions a {
  font-size: .75rem; font-weight: 700; padding: .3rem .75rem;
  border-radius: var(--radius-sm); cursor: pointer; text-decoration: none;
  border: none; min-height: 0;
}
.map-btn-map { background: var(--red-light); color: var(--red); }
.map-btn-dir { background: var(--off-white); color: var(--dark); }

.map-no-results {
  padding: 1.5rem; text-align: center; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.map-no-results h4 { margin-bottom: .5rem; font-family: var(--ff-body); text-transform: none; letter-spacing: 0; font-size: 1rem; }
.map-no-results p { font-size: .875rem; }
.map-no-results .link-list { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.map-no-results .link-list a { font-size: .875rem; font-weight: 700; color: var(--red); text-decoration: none; }
.map-no-results .link-list a:hover { text-decoration: underline; }

.map-also {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 1rem 0 1.5rem; font-size: .8125rem; color: var(--muted);
}
.map-also span { font-weight: 600; }
.map-also a { color: var(--red); font-weight: 600; text-decoration: none; }
.map-also a:hover { text-decoration: underline; }

/* ── SNAP / WIC WIZARD ── */
.wizard-section { background: var(--white); padding: 64px 0; }
.wizard-wrap { max-width: 780px; margin: 0 auto; }

.wizard {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin-top: 2rem;
}

.wizard__progress {
  display: flex; background: var(--white);
  border-bottom: 1px solid var(--border);
}
.wizard__prog-step {
  flex: 1; padding: .875rem 1rem; text-align: center;
  font-size: .75rem; font-weight: 700; color: var(--muted);
  border-right: 1px solid var(--border); position: relative;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: background .2s, color .2s;
}
.wizard__prog-step:last-child { border-right: none; }
.wizard__prog-step__num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--mid-gray); color: var(--white);
  font-size: .6875rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .2s;
}
.wizard__prog-step.active { color: var(--charcoal); background: var(--red-light); }
.wizard__prog-step.active .wizard__prog-step__num { background: var(--red); }
.wizard__prog-step.done { color: #166534; }
.wizard__prog-step.done .wizard__prog-step__num { background: #16a34a; }

.wizard__panel { padding: 2.5rem; }
.wizard__panel h3 { font-family: var(--ff-head); font-size: 1.375rem; color: var(--charcoal); margin-bottom: .5rem; }
.wizard__hint { font-size: .875rem; color: var(--muted); margin-bottom: 1.5rem; }

.wizard__opts { display: flex; flex-wrap: wrap; gap: .625rem; }
.wizard__opt {
  min-width: 64px; padding: .625rem 1rem;
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--ff-body);
  font-size: .9375rem; font-weight: 700; color: var(--dark);
  cursor: pointer; transition: all .15s; min-height: 44px;
}
.wizard__opt:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }
.wizard__opt.selected { border-color: var(--red); background: var(--red); color: var(--white); }
.wizard__opt--wide { min-width: 0; flex: 1 1 auto; font-size: .875rem; }

.wizard__checks { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }
.wizard__check {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .9375rem; color: var(--text); cursor: pointer;
  padding: .875rem 1rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: border-color .15s;
}
.wizard__check:hover { border-color: var(--red); }
.wizard__check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--red); flex-shrink: 0; cursor: pointer; }
.wizard__check span { font-weight: 500; line-height: 1.5; }

/* Results */
.wizard-results__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 1.5rem;
}
.wizard-result {
  padding: 1.25rem; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: var(--white);
}
.wizard-result--yes { border-color: #16a34a; background: #f0fdf4; }
.wizard-result--maybe { border-color: #d97706; background: #fffbeb; }
.wizard-result--no { border-color: var(--mid-gray); background: var(--off-white); opacity: .8; }

.wizard-result__badge {
  font-size: .625rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: .5rem; display: block;
}
.wizard-result--yes .wizard-result__badge { color: #166534; }
.wizard-result--maybe .wizard-result__badge { color: #92400e; }
.wizard-result--no .wizard-result__badge { color: var(--muted); }

.wizard-result h4 {
  font-family: var(--ff-body); font-size: .9375rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: .3rem;
  text-transform: none; letter-spacing: 0;
}
.wizard-result p { font-size: .8125rem; color: var(--muted); line-height: 1.5; margin-bottom: .875rem; }
.wizard-results__note {
  font-size: .8125rem; color: var(--muted); font-style: italic;
  border-top: 1px solid var(--border); padding-top: 1.25rem; margin-top: 1rem;
}

/* ── FAQ ACCORDION ── */
.faq-section { background: var(--off-white); padding: 64px 0; }
.faq-list { margin-top: 2rem; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.25rem 1.5rem;
  background: var(--white); border: none; cursor: pointer; text-align: left;
  font-family: var(--ff-body); font-size: .9375rem; font-weight: 700;
  color: var(--charcoal); transition: background .15s;
  min-height: var(--touch);
}
.faq-toggle:hover { background: var(--red-light); }
.faq-toggle:focus-visible { outline: 3px solid var(--focus); outline-offset: -3px; }
.faq-toggle[aria-expanded="true"] { color: var(--red); background: var(--red-light); }
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--off-white); border-radius: 50%;
  transition: transform .22s, background .15s;
}
.faq-toggle[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--red); color: var(--white); }
.faq-icon svg { width: 10px; height: 10px; }
.faq-body { padding: 0 1.5rem 1.25rem; background: var(--white); }
.faq-body p, .faq-body li { font-size: .9375rem; color: var(--muted); line-height: 1.7; }
.faq-body ul { padding-left: 1.25rem; list-style: disc; }
.faq-body ul li { margin-bottom: .3rem; }
.faq-body a { color: var(--red); font-weight: 600; }
.faq-body[hidden] { display: none; }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 900px) {
  .map-layout { grid-template-columns: 1fr; }
  .ffa-map { height: 300px; }
  .map-results { max-height: 280px; }
  .wizard-results__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .map-search__bar { flex-direction: column; }
  .map-search__btn { width: 100%; }
  .wizard__panel { padding: 1.5rem; }
  .wizard__prog-step span:not(.wizard__prog-step__num) { display: none; }
  .lang-toggle { margin-left: .25rem; padding: 5px 7px; }
}

/* ── ZIP REDIRECT NOTICE ── */
.zip-redirect-notice {
  display: flex; align-items: flex-start; gap: .875rem;
  background: #fffbeb; border: 1px solid #fcd34d;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: .875rem; color: #78350f;
  line-height: 1.65; margin-top: 1.25rem; max-width: 820px; margin-left: auto; margin-right: auto;
}
.zip-redirect-notice__icon { color: #d97706; flex-shrink: 0; margin-top: 1px; }
.zip-redirect-notice strong { color: #92400e; }
.zip-redirect-notice em { font-style: italic; }

/* ================================================================
   ADA PATCH v3.1 — Focus styles, touch targets, lang toggle
   ================================================================ */

/* Wizard option buttons — focus */
.wizard__opt:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* Wizard checkbox rows — focus on the label wrapper */
.wizard__check:focus-within {
  border-color: var(--focus);
  outline: 2px solid var(--focus);
  outline-offset: 1px;
}

/* Map result card action buttons — focus */
.map-btn-map:focus-visible,
.map-btn-dir:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Bump btn--sm to meet 44px WCAG 2.5.5 minimum touch target */
.btn--sm {
  min-height: 44px;
  padding: 0 1.25rem;
}

/* Lang toggle — ensure screen reader gets correct semantics */
.lang-toggle {
  /* Already styled — just ensuring it's included in focus audit */
}

/* Map search input — explicit error state */
.map-search__input[aria-invalid="true"] {
  border-color: var(--red);
  background: var(--red-light);
}

/* Wizard results links — ensure 44px touch target */
.wizard-result .btn--sm {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* FAQ toggle — make sure icon has enough contrast in all states */
.faq-toggle:focus-visible .faq-icon {
  background: var(--focus);
  color: var(--white);
}

/* ================================================================
   Find Food hero — search bar embedded in hero
   ================================================================ */
.page-hero--map {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 0 3rem;
}
.page-hero--map .eyebrow { color: rgba(255,255,255,.6); }
.page-hero--map h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero--map .lead { color: rgba(255,255,255,.82); margin-bottom: 2rem; }

.map-search__bar--hero {
  max-width: 580px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: .35rem .35rem .35rem .75rem;
}
.map-search__input--hero {
  background: transparent;
  color: var(--white);
  border: none;
  outline: none;
  font-size: 1.0625rem;
}
.map-search__input--hero::placeholder { color: rgba(255,255,255,.5); }
.map-search__input--hero:focus { border: none; box-shadow: none; }

/* white button inside navy hero */
.page-hero--map .btn--white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}
.page-hero--map .btn--white:hover,
.page-hero--map .btn--white:focus-visible {
  background: var(--off-white);
  color: var(--red-dark);
}

.map-search__hint--hero {
  margin-top: 1rem;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}
.map-search__hint--hero a { color: rgba(255,255,255,.8); }
.map-search__hint--hero a:hover { color: var(--white); }

@media (max-width: 640px) {
  .map-search__bar--hero {
    flex-direction: column;
    padding: .5rem;
    gap: .5rem;
    align-items: stretch;
  }
  .map-search__bar--hero .btn--white {
    width: 100%;
    justify-content: center;
  }
}
