:root{
  --blue:#0c3d78;
  --orange:#ff6a2b;
  --light:#f3f6fb;
  --text:#18212c;
  --muted:#5b6b7c;
  --border:#e4e9f1;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter, Arial, sans-serif;
  color:var(--text);
  background:#fff;
}

/* Layout */
.wrap{
  max-width:1100px;
  margin:auto;
  padding:22px;
}

/* Top bar */
.topbar{
  position:sticky;
  top:0;
  z-index:20;
  background:#fff;
  border-bottom:4px solid var(--orange);
}

.navwrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.logo{
  font-family:Teko, sans-serif;
  font-size:38px;
  letter-spacing:1px;
  color:var(--blue);
  line-height:1;
}

nav a{
  margin-left:18px;
  text-decoration:none;
  color:var(--blue);
  font-weight:700;
}
nav a:hover{opacity:.85}

/* SUPPORT BUTTON IN HEADER */

.supportBtn{
  background:var(--orange);
  color:#fff !important;
  padding:11px 18px;
  border-radius:7px;
  font-weight:800;
  letter-spacing:.5px;
  text-transform:uppercase;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
  transition:all .15s ease;
}

.supportBtn:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 18px rgba(0,0,0,.18);
}

/* Hero section */
.hero{
  background:
    linear-gradient(180deg, rgba(12,61,120,.06), rgba(255,255,255,1));
  padding:26px 0 30px;
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:24px;
  align-items:start;
}

@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
}

.badge{
  display:inline-block;
  font-size:12px;
  font-weight:900;
  letter-spacing:1px;
  background:rgba(255,106,43,.12);
  color:var(--blue);
  border:1px solid rgba(255,106,43,.35);
  padding:8px 12px;
  border-radius:999px;
}

h1{
  font-family:Teko, sans-serif;
  font-size:76px;
  line-height:.92;
  margin:10px 0 10px;
  color:var(--blue);
  text-transform:uppercase;
}

@media (max-width: 560px){
  h1{font-size:56px}
}

.lead{
  margin:0 0 14px;
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
}

.quickPoints{
  display:grid;
  gap:10px;
  margin:14px 0 16px;
}
.qp{
  background:#fff;
  border:1px solid var(--border);
  border-left:6px solid var(--orange);
  border-radius:12px;
  padding:12px 14px;
  box-shadow:0 10px 22px rgba(0,0,0,.06);
  color:var(--text);
  line-height:1.5;
}
.qp b{color:var(--blue)}

/* Video callout */
.videoCallout{
  margin:16px 0 18px;
  border:1px solid rgba(12,61,120,.18);
  background:rgba(12,61,120,.06);
  border-radius:14px;
  padding:14px;
}
.videoTitle{
  font-weight:900;
  color:var(--blue);
  margin-bottom:6px;
}
.videoLink{
  display:inline-block;
  font-weight:800;
  color:var(--orange);
  text-decoration:none;
}
.videoLink:hover{text-decoration:underline}
.videoNote{
  margin-top:6px;
  font-size:12.5px;
  color:var(--muted);
  font-weight:600;
}

/* Photos */
.photoRow{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.photo{
  width:260px;
  max-width:100%;
  border-radius:14px;
  border:1px solid var(--border);
  box-shadow:0 12px 26px rgba(0,0,0,.08);
}

/* Donation form card */
.formCard{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:0 16px 34px rgba(0,0,0,.10);
  overflow:hidden;
}

.formHead{
  padding:16px 16px 14px;
  background:linear-gradient(90deg, rgba(12,61,120,.10), rgba(255,106,43,.10));
  border-bottom:1px solid var(--border);
}
.formHead h2{
  font-family:Teko, sans-serif;
  font-size:40px;
  margin:0;
  color:var(--blue);
  text-transform:uppercase;
  letter-spacing:.6px;
}
.formHead p{
  margin:6px 0 0;
  color:var(--muted);
  font-weight:650;
  font-size:13.5px;
  line-height:1.45;
}
.formBody{padding:14px 14px 18px}

.miniNote{
  margin-top:12px;
  color:var(--muted);
  font-weight:650;
  font-size:13px;
  line-height:1.55;
}

/* Section */
.section{
  padding:42px 0 54px;
  background:#fff;
  border-top:1px solid var(--border);
}

.sectionTitle{
  font-family:Teko, sans-serif;
  font-size:60px;
  color:var(--blue);
  margin:0 0 10px;
  text-transform:uppercase;
}

.sectionLead{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.65;
  font-size:15.5px;
  max-width: 85ch;
}

/* Plans grid */
.plansGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:16px;
  margin-top:14px;
}

@media (max-width: 900px){
  .plansGrid{grid-template-columns:1fr}
}

.planCard{
  background:var(--light);
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  box-shadow:0 12px 22px rgba(0,0,0,.06);
}

.planTop{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:8px;
}

.planTag{
  display:inline-block;
  font-size:12px;
  font-weight:900;
  letter-spacing:.8px;
  padding:7px 10px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(255,106,43,.40);
  color:var(--blue);
}

.planTitle{
  font-weight:900;
  color:var(--blue);
}

.planCard p{
  margin:0;
  color:var(--text);
  line-height:1.6;
}

/* Big callout quote */
.bigCallout{
  margin-top:18px;
  padding:16px 16px;
  border-radius:16px;
  border:1px solid rgba(255,106,43,.35);
  background:rgba(255,106,43,.10);
  color:var(--blue);
  font-weight:900;
  line-height:1.5;
}

/* Footer */
.footer{
  background:var(--blue);
  color:#fff;
  margin-top:0;
}

.footerGrid{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  flex-wrap:wrap;
}

.footerTitle{
  font-family:Teko, sans-serif;
  font-size:34px;
  letter-spacing:.7px;
  text-transform:uppercase;
  margin-bottom:6px;
}

.footerText{
  color:rgba(255,255,255,.88);
  line-height:1.65;
  font-weight:650;
  font-size:14px;
}

.footer a{color:#fff}

.cta{
  display:inline-block;
  margin-top:10px;
  background:var(--orange);
  color:#fff;
  padding:12px 20px;
  border-radius:8px;
  text-decoration:none;
  font-weight:900;
}
.cta:hover{opacity:.92}

/* offset for sticky header anchor scrolling */
#supportform{
  scroll-margin-top:110px;
}

@media (max-width: 900px){
  .photo {width:100%;}
}