@charset "UTF-8";
:root {
  --navy: #082952;
  --blue: #0d3b7a;
  --blue-2: #144f98;
  --red: #c8241b;
  --red-dark: #a51e17;
  --cream: #fffaf1;
  --white: #ffffff;
  --ink: #172235;
  --muted: #5c6678;
  --line: #dce2eb;
  --surface: #f6f8fb;
  --shadow: 0 18px 45px rgba(8, 41, 82, .10);
  --radius: 20px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--container), calc(100% - 32px)); margin-inline: auto; }
.narrow { max-width: 860px; }
.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;
}
.hidden { display: none !important; }
.skip-link {
  position: fixed; left: 16px; top: -100px; z-index: 9999;
  background: var(--white); color: var(--navy); padding: 12px 16px;
  border-radius: 8px; font-weight: 800;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(8,41,82,.10);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 86px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.brand-lockup { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand span { font-weight: 800; font-size: .84rem; line-height: 1.2; }
.brand-divider { width: 1px; height: 46px; background: var(--line); }
.primary-nav { display: flex; align-items: center; gap: 20px; }
.primary-nav a { text-decoration: none; font-weight: 750; color: var(--navy); font-size: .95rem; }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--red); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 3px; }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 20px; border-radius: 12px;
  font-weight: 850; text-decoration: none; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-red { background: var(--red); color: var(--white); }
.button-red:hover { background: var(--red-dark); }
.button-blue { background: var(--blue); color: var(--white); }
.button-blue:hover { background: var(--navy); }
.button-outline { border-color: rgba(255,255,255,.9); color: var(--white); background: transparent; }
.button-outline:hover { background: rgba(255,255,255,.1); }
.button-small { min-height: 42px; padding: 9px 15px; }

.hero {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 10%, rgba(255,255,255,.10), transparent 35%),
    linear-gradient(135deg, #061f43 0%, #0d3b7a 62%, #102c59 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 54px; align-items: center; padding: 72px 0; }
.eyebrow, .section-kicker {
  margin: 0 0 12px; text-transform: uppercase; letter-spacing: .11em;
  font-size: .82rem; font-weight: 900;
}
.eyebrow { color: #ffd8d3; }
.hero h1 { margin: 0; font-size: clamp(2.6rem, 6vw, 5.6rem); line-height: .96; letter-spacing: -.035em; max-width: 820px; }
.hero h1 span { color: #ff4b40; }
.hero-lead { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 800; max-width: 760px; margin: 24px 0 8px; }
.hero-support { color: rgba(255,255,255,.86); max-width: 730px; margin: 0 0 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-highlights { list-style: none; padding: 0; margin: 34px 0 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.hero-highlights li { padding: 14px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); border-radius: 14px; }
.hero-highlights strong { display: block; font-size: 1.12rem; }
.hero-highlights span { display: block; color: rgba(255,255,255,.74); font-size: .9rem; }

.progress-panel {
  display: grid; grid-template-columns: 190px 1fr; gap: 24px; align-items: center;
  padding: 26px; border-radius: 28px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.thermometer-wrap { display: flex; justify-content: center; align-items: center; gap: 10px; }
.thermometer-scale { list-style: none; padding: 0; margin: 0; height: 420px; display: flex; flex-direction: column; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,.8); }
.thermometer { width: 82px; height: 420px; position: relative; margin-bottom: 32px; }
.thermometer-track {
  position: absolute; inset: 0; border: 6px solid rgba(255,255,255,.85);
  background: #f2f4f7; border-radius: 999px; overflow: hidden;
  box-shadow: inset 0 0 0 3px rgba(8,41,82,.06);
}
.thermometer-fill {
  position: absolute; left: 0; right: 0; bottom: 0; height: 32.5%;
  background: linear-gradient(180deg, #ff5d51 0%, #c8241b 100%);
  transition: height .8s ease;
}
.thermometer-bulb {
  position: absolute; width: 112px; height: 112px; border-radius: 50%;
  left: 50%; bottom: -50px; transform: translateX(-50%);
  background: radial-gradient(circle at 35% 30%, #ff776d 0%, #c8241b 48%, #93140e 100%);
  border: 6px solid rgba(255,255,255,.9); box-shadow: 0 12px 24px rgba(0,0,0,.25);
}
.progress-stats { display: grid; gap: 12px; }
.stat-card { background: var(--white); color: var(--navy); border-radius: 14px; padding: 14px 16px; }
.stat-card span { display: block; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; font-size: .74rem; }
.stat-card strong { display: block; font-size: 1.7rem; line-height: 1.1; }
.stat-card-red { background: var(--red); color: var(--white); }
.progress-stats p { color: rgba(255,255,255,.78); margin: 2px 0 0; font-size: .92rem; }

.quick-actions { margin-top: -1px; background: var(--white); padding: 26px 0; border-bottom: 1px solid var(--line); }
.action-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.action-card {
  display: flex; gap: 14px; align-items: center; padding: 20px;
  border: 1px solid var(--line); border-radius: 16px; background: var(--white);
  box-shadow: var(--shadow); text-decoration: none;
}
.action-card:hover { border-color: rgba(13,59,122,.35); transform: translateY(-2px); }
.action-icon { font-size: 1.8rem; }
.action-card strong { display: block; color: var(--navy); }
.action-card small { color: var(--muted); }

.section { padding: 76px 0; }
.section-alt { background: var(--surface); }
.section-kicker { color: var(--red); }
.section h2, .section-heading h2 { margin: 0; color: var(--navy); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -.025em; }
.section-intro, .section-heading p { color: var(--muted); font-size: 1.08rem; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.section-heading p { margin-bottom: 0; }

.locations-layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: 22px; }
.map-card, .content-card, .contact-form, .location-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.map-card { overflow: hidden; min-height: 520px; }
.map-card iframe { border: 0; width: 100%; height: 100%; min-height: 520px; display: block; }
.location-list { display: grid; gap: 14px; }
.location-card { padding: 22px; }
.location-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.2rem; }
.location-card p { margin: 0 0 12px; color: var(--muted); }
.location-card a { color: var(--red); font-weight: 850; text-decoration: none; }
.location-type { text-transform: uppercase; letter-spacing: .08em; font-size: .74rem; font-weight: 900; color: var(--blue) !important; }
.location-card-muted { background: #fbfcfe; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.content-card { padding: 28px; }
.donation-grid { list-style: none; padding: 0; margin: 24px 0 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.donation-grid li, .partner-grid span {
  padding: 13px 14px; border-radius: 12px; background: #eef4fb; color: var(--navy); font-weight: 800;
}
.donation-grid li::before { content: "★"; color: var(--red); margin-right: 9px; }
.partner-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 24px; }
.fine-print { color: var(--muted); font-size: .9rem; margin-bottom: 0; }

.impact-strip { background: var(--navy); color: var(--white); padding: 30px 0; }
.impact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.impact-grid div { text-align: center; padding: 18px; border-right: 1px solid rgba(255,255,255,.16); }
.impact-grid div:last-child { border-right: 0; }
.impact-grid strong { display: block; font-size: 1.8rem; }
.impact-grid span { color: rgba(255,255,255,.76); }

.faq-list { display: grid; gap: 12px; margin-top: 28px; }
details { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 0 18px; }
summary { cursor: pointer; list-style: none; padding: 18px 0; font-weight: 850; color: var(--navy); }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; font-size: 1.4rem; color: var(--red); }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); margin-top: 0; padding-bottom: 18px; }

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: start; }
.contact-cards { display: grid; gap: 12px; margin-top: 26px; }
.contact-cards a { display: block; text-decoration: none; padding: 16px 18px; background: #eef4fb; border-radius: 12px; }
.contact-cards strong { display: block; color: var(--navy); }
.contact-cards span { color: var(--muted); }
.contact-form { padding: 28px; display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { font-weight: 800; color: var(--navy); }
input, select, textarea {
  width: 100%; margin-top: 7px; border: 1px solid #cbd4e0; border-radius: 10px;
  padding: 13px 14px; background: var(--white); color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(13,59,122,.16); border-color: var(--blue); }
textarea { resize: vertical; }
.consent { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-weight: 600; }
.consent input { width: auto; margin-top: 5px; }
.form-note { margin: 0; color: var(--muted); font-size: .84rem; }

.site-footer { background: #061d3e; color: var(--white); padding: 52px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.site-footer h2, .site-footer h3 { margin-top: 0; }
.site-footer p, .site-footer li, .site-footer a { color: rgba(255,255,255,.78); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.footer-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); display: flex; justify-content: space-between; gap: 16px; color: rgba(255,255,255,.6); font-size: .86rem; }

@media (max-width: 1000px) {
  .primary-nav { display: none; position: absolute; top: 86px; left: 0; right: 0; background: var(--white); padding: 20px 16px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .primary-nav.open { display: grid; }
  .menu-toggle { display: block; }
  .hero-grid, .locations-layout, .split-grid, .contact-layout { grid-template-columns: 1fr; }
  .progress-panel { max-width: 620px; }
  .action-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 720px) {
  .header-inner { min-height: 76px; }
  .brand span { display: none; }
  .brand img { width: 42px; height: 42px; }
  .hero-grid { padding: 54px 0; gap: 34px; }
  .hero-highlights { grid-template-columns: 1fr; }
  .progress-panel { grid-template-columns: 1fr; }
  .thermometer-scale { height: 300px; }
  .thermometer { height: 300px; }
  .action-grid, .impact-grid, .donation-grid, .partner-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .impact-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .impact-grid div:last-child { border-bottom: 0; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
