/* ============================================================
   LEEDS FOOD AID NETWORK — Redesign Stylesheet
   Accessible · WCAG 2.1 AA · Clean · Warm · Professional
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Brand colours */
  --green-dark:   #1a5c38;
  --green-mid:    #2e7d52;
  --green-light:  #d4edda;
  --green-pale:   #f0f8f3;
  --amber:        #e67e22;
  --amber-light:  #fef3e2;
  --amber-dark:   #b85c0a;
  --charcoal:     #1e2a22;
  --text-body:    #2d3a30;
  --text-muted:   #5a6b5d;
  --white:        #ffffff;
  --off-white:    #f7fbf8;
  --border:       #c4d9ca;

  /* Typography */
  --font-display: 'Lora', Georgia, serif;
  --font-body:    'Source Sans 3', 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Sizing */
  --max-width:     1140px;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;

  /* Transitions */
  --transition: 0.22s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* --- Skip Link (accessibility) --- */
.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  background: var(--green-dark);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  z-index: 9999;
  text-decoration: none;
  transition: top var(--transition);
}
.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* --- Focus styles --- */
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 3px;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  background: var(--green-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 1rem;
}

.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}
.site-logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.site-logo .logo-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* --- Main Nav --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.main-nav a.active {
  background: var(--amber);
  color: var(--charcoal);
}

/* --- Hamburger (mobile) --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.6rem;
  cursor: pointer;
  aria-label: "Toggle navigation";
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, #3a9966 100%);
  color: var(--white);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.12s;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--amber);
  color: var(--charcoal);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-outline-green {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline-green:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-lg {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.btn-sm {
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: var(--space-xl) 0;
}
.section-alt {
  background: var(--off-white);
}
.section-dark {
  background: var(--green-dark);
  color: var(--white);
}
.section-amber {
  background: var(--amber-light);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.section-header .label {
  display: inline-block;
  color: var(--green-mid);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header .label { color: rgba(255,255,255,0.65); }

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.section-dark .section-header p { color: rgba(255,255,255,0.78); }

/* ============================================================
   CARDS
   ============================================================ */
.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 28px rgba(26,92,56,0.12);
  transform: translateY(-3px);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
}
.card-icon.amber { background: var(--amber-light); }

.card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.card p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.card a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.card a:hover { color: var(--green-mid); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--green-dark);
  color: var(--white);
  padding: var(--space-lg) 0;
}
.stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 4rem;
  text-align: center;
}
.stat-item {}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}

/* ============================================================
   ALERT / BANNER
   ============================================================ */
.alert-banner {
  background: var(--amber);
  color: var(--charcoal);
  padding: 0.9rem 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.97rem;
}
.alert-banner a {
  color: var(--charcoal);
  font-weight: 700;
  text-decoration: underline;
}

/* ============================================================
   SUPPORT TYPE GRID (Find Support page)
   ============================================================ */
.support-type {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--green-mid);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  transition: box-shadow var(--transition);
}
.support-type:hover { box-shadow: 0 4px 18px rgba(26,92,56,0.1); }
.support-type h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.support-type p {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-size: 0.97rem;
}
.support-type .meta {
  font-size: 0.88rem;
  color: var(--green-dark);
  font-weight: 600;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}
.step-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.step-body p {
  color: var(--text-muted);
  font-size: 0.97rem;
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-group {
  margin-bottom: 1.4rem;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--charcoal);
  margin-bottom: 0.45rem;
}
.form-group .field-hint {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
  line-height: 1.5;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(46,125,82,0.2);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.required-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.required-note span { color: #c0392b; font-weight: 700; }

/* ============================================================
   ACCORDION (FAQ)
   ============================================================ */
.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-item:last-child { border-bottom: none; }

.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}
.accordion-btn:hover { background: var(--green-pale); }
.accordion-btn[aria-expanded="true"] { background: var(--green-pale); color: var(--green-dark); }

.accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  transition: transform var(--transition);
}
.accordion-btn[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }

.accordion-content {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
}
.accordion-content.open { display: block; }

/* ============================================================
   TABLE
   ============================================================ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97rem;
}
.data-table th {
  background: var(--green-dark);
  color: var(--white);
  padding: 0.85rem 1.1rem;
  text-align: left;
  font-weight: 700;
}
.data-table td {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}
.data-table tr:nth-child(even) td { background: var(--green-pale); }
.data-table tr:last-child td { border-bottom: none; }
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); }

/* ============================================================
   TWO-COLUMN SPLIT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.split-visual {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.split h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.split p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* ============================================================
   CALLOUT BOX
   ============================================================ */
.callout {
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin: 1.5rem 0;
}
.callout-green {
  background: var(--green-light);
  border-left: 5px solid var(--green-mid);
}
.callout-amber {
  background: var(--amber-light);
  border-left: 5px solid var(--amber);
}
.callout h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.callout p {
  color: var(--text-muted);
  font-size: 0.97rem;
  margin-bottom: 0;
}

/* ============================================================
   TEAM CARD
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.25rem 1.5rem;
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-light);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.team-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.25rem; }
.team-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--green-pale);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  font-size: 0.88rem;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  align-items: center;
}
.breadcrumb li + li::before {
  content: '›';
  color: var(--text-muted);
  margin-right: 0.3rem;
}
.breadcrumb a { color: var(--green-dark); text-decoration: underline; }
.breadcrumb [aria-current] { color: var(--text-muted); font-weight: 600; }

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  padding: var(--space-xl) 0;
  text-align: left;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  padding: var(--space-xl) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-main {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a {
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  font-size: 0.93rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: underline; }

/* ============================================================
   ACCESSIBILITY TOOLBAR
   ============================================================ */
.a11y-bar {
  background: var(--charcoal);
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}
.a11y-bar span {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.5rem;
}
.a11y-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.a11y-btn:hover { background: rgba(255,255,255,0.22); }

/* High contrast mode */
body.high-contrast {
  --green-dark:  #000000;
  --green-mid:   #000000;
  --text-body:   #000000;
  --text-muted:  #111111;
  --white:       #ffffff;
  --off-white:   #ffffff;
  --border:      #000000;
  filter: contrast(1.4);
}

/* Large text mode */
body.large-text { font-size: 20px; }

/* ============================================================
   DONATE / VOLUNTEER TABS
   ============================================================ */
.tabs {
  border-bottom: 2px solid var(--border);
  display: flex;
  gap: 0.25rem;
  margin-bottom: 2rem;
}
.tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}
.tab-btn:hover { color: var(--green-dark); }
.tab-btn[aria-selected="true"] {
  color: var(--green-dark);
  border-bottom-color: var(--green-dark);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================================
   MAP PLACEHOLDER
   ============================================================ */
.map-placeholder {
  background: var(--green-light);
  border-radius: var(--radius-md);
  border: 2px dashed var(--green-mid);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
}
.map-placeholder .map-icon { font-size: 2.5rem; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
}
.badge-green { background: var(--green-light); color: var(--green-dark); }
.badge-amber { background: var(--amber-light); color: var(--amber-dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  html { font-size: 16px; }

  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.75rem 1rem; font-size: 1rem; }

  .hero { padding: var(--space-xl) 0; }
  .hero h1 { font-size: 1.85rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-inner { gap: 2rem; }

  .a11y-bar { justify-content: center; }

  .card-grid, .card-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .tabs { flex-direction: column; border-bottom: none; }
  .tab-btn { border-bottom: none; border-left: 3px solid transparent; text-align: left; margin-bottom: 0; }
  .tab-btn[aria-selected="true"] { border-left-color: var(--green-dark); border-bottom-color: transparent; }
}