/* ==========================================================================
   PK Christian Sponsors — Stylesheet
   ========================================================================== */

:root {
  --navy: #12233F;
  --navy-light: #1B3560;
  --gold: #E3A23C;
  --gold-dark: #C6852A;
  --cream: #FBF6EC;
  --white: #FFFFFF;
  --text: #2A2A2A;
  --muted: #667085;
  --border: #E7E2D6;
  --success: #3E7B5B;

  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(18, 35, 63, 0.10);
  --shadow-sm: 0 4px 14px rgba(18, 35, 63, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--text); }

a { color: var(--navy); text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 640px;
}

.section {
  padding: 88px 0;
}
.section--tight { padding: 56px 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: #DCE3EF; }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: #C4CEE0; }

.text-center { text-align: center; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(227, 162, 60, 0.35);
}
.btn--gold:hover { background: var(--gold-dark); }

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

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover { background: var(--navy-light); }

.btn--ghost {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: var(--white); }

.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ==========================================================================
   Top bar + Header
   ========================================================================== */

.topbar {
  background: var(--navy);
  color: #C4CEE0;
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: #C4CEE0; }
.topbar .topbar-links { display: flex; gap: 18px; }
.topbar .topbar-links a:hover { color: var(--gold); }

header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}
.brand .mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--text);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.nav-cta { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.2s;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  color: var(--white);
  display: flex;
  align-items: center;
  min-height: 620px;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(18,35,63,0.92) 20%, rgba(18,35,63,0.55) 60%, rgba(18,35,63,0.35) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 640px; }
.hero p.lede { color: #E7ECF5; }
.hero h1 { color: var(--white); }

.page-hero {
  position: relative;
  color: var(--white);
  background-size: cover;
  background-position: center;
  padding: 130px 0 70px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18,35,63,0.82);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.breadcrumb { font-size: 0.85rem; color: #B9C4DA; }
.breadcrumb a { color: #B9C4DA; }
.breadcrumb a:hover { color: var(--gold); }

/* ==========================================================================
   Stats bar
   ========================================================================== */

.stats {
  background: var(--navy);
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 44px 0;
  text-align: center;
}
.stats-grid .num {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--gold);
}
.stats-grid .label {
  font-size: 0.88rem;
  color: #C4CEE0;
  letter-spacing: 0.03em;
}

/* ==========================================================================
   Grid / Cards
   ========================================================================== */

.grid {
  display: grid;
  gap: 30px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card img { height: 200px; width: 100%; object-fit: cover; }
.card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 8px; }
.card-body p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.card-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-top: 12px;
}
.card-link:hover { color: var(--gold-dark); }

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(227,162,60,0.15);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.value-card { padding: 8px; }

/* Testimonial */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: center;
}
.testimonial img {
  width: 110px; height: 110px; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--cream);
}
.testimonial blockquote {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--navy);
  font-style: italic;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Sponsor / child cards */
.child-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.child-card img { height: 240px; object-fit: cover; }
.child-card .tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.child-card .info { padding: 18px 20px 22px; }
.child-card .info h3 { margin-bottom: 2px; }
.child-card .meta { color: var(--muted); font-size: 0.88rem; margin-bottom: 12px; }

.sample-flag {
  background: #FFF4E0;
  border: 1px dashed var(--gold-dark);
  color: #7A5613;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.88rem;
  margin-bottom: 34px;
}

/* Steps */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.step .step-num {
  counter-increment: step;
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step .step-num::before { content: counter(step); }

/* Pricing / donate tiers */
.tier {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  background: var(--white);
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.tier:hover { transform: translateY(-4px); }
.tier--featured { border-color: var(--gold); box-shadow: var(--shadow); }
.tier .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
}
.tier .amount {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 10px 0;
}
.tier .amount span { font-size: 1rem; color: var(--muted); font-weight: 500; }
.tier ul { list-style: none; padding: 0; margin: 18px 0 26px; text-align: left; }
.tier li { padding: 7px 0; color: var(--muted); font-size: 0.92rem; border-bottom: 1px solid var(--border); }
.tier li:last-child { border-bottom: none; }
.tier li::before { content: "✓ "; color: var(--success); font-weight: 700; }

/* Impact allocation bar */
.allocation { margin: 30px 0; }
.allocation-row { margin-bottom: 18px; }
.allocation-row .row-label {
  display: flex; justify-content: space-between; font-family: var(--font-head);
  font-weight: 600; font-size: 0.92rem; margin-bottom: 6px; color: var(--navy);
}
.bar-track { background: var(--border); border-radius: 999px; height: 10px; overflow: hidden; }
.bar-fill { background: var(--gold); height: 100%; border-radius: 999px; }

/* Forms */
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(227,162,60,0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: -6px; }
.hp-field { position: absolute; left: -9999px; }

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.amount-option {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 14px 8px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  background: var(--white);
}
.amount-option:hover { border-color: var(--gold); }
.amount-option.selected { border-color: var(--gold); background: #FFF7E9; }

.toggle-group {
  display: inline-flex;
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 26px;
}
.toggle-group button {
  border: none;
  background: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
}
.toggle-group button.active { background: var(--navy); color: var(--white); }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: var(--radius);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: #C4CEE0; }

/* Newsletter */
.newsletter {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.newsletter form { display: flex; gap: 10px; flex: 1; min-width: 280px; }
.newsletter input {
  flex: 1;
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
}

/* Team */
.team-card { text-align: center; }
.team-card img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.team-card h3 { margin-bottom: 2px; }
.team-card .role { color: var(--gold-dark); font-weight: 600; font-size: 0.88rem; margin-bottom: 10px; }

/* Values grid */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

/* Timeline (about) */
.timeline { border-left: 3px solid var(--border); padding-left: 30px; margin-left: 6px; }
.timeline-item { position: relative; padding-bottom: 34px; }
.timeline-item::before {
  content: "";
  position: absolute; left: -38px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--gold);
}
.timeline-item .year { font-family: var(--font-head); font-weight: 700; color: var(--navy); }

/* Footer */
footer.site-footer {
  background: var(--navy);
  color: #B9C4DA;
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: #B9C4DA; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand span { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1.1rem; }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.social-row a:hover { background: var(--gold); color: var(--navy); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; font-size: 0.82rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: #B9C4DA; }

/* Utilities */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.tag-pill {
  display: inline-block;
  background: rgba(227,162,60,0.15);
  color: var(--gold-dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ==========================================================================
   Sponsorship Builder (checkout-style item picker)
   ========================================================================== */

.quick-bundles {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 40px;
}
.bundle-btn {
  border: 2px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  padding: 12px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.bundle-btn:hover { border-color: var(--gold); }
.bundle-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.bundle-btn .amt { color: var(--gold-dark); font-weight: 700; }
.bundle-btn.active .amt { color: var(--gold); }

.builder-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.item-grid { display: grid; gap: 12px; }

.item-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  user-select: none;
}
.item-card:hover { border-color: var(--gold); }
.item-card.selected { border-color: var(--gold); background: #FFFBF3; }
.item-card .item-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(227,162,60,0.15);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.item-card.selected .item-icon { background: var(--gold); color: var(--navy); }
.item-card .item-info { flex: 1; min-width: 0; }
.item-card .item-info h3 {
  font-size: 1rem; margin-bottom: 3px;
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.item-card .item-price { font-family: var(--font-head); color: var(--gold-dark); font-weight: 700; font-size: 0.9rem; }
.item-card .item-info p { margin: 0; font-size: 0.86rem; color: var(--muted); }
.item-toggle {
  flex-shrink: 0;
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 9px 16px;
  border-radius: 999px;
  min-width: 90px;
  text-align: center;
  pointer-events: none;
}
.item-card.selected .item-toggle { background: var(--navy); color: var(--white); }

.cart-summary {
  position: sticky;
  top: 96px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.cart-summary h3 { margin-bottom: 4px; }
.cart-summary .cart-sub { color: var(--muted); font-size: 0.85rem; margin-bottom: 16px; }
.cart-list { list-style: none; padding: 0; margin: 0 0 16px; max-height: 300px; overflow-y: auto; }
.cart-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 0.86rem; color: var(--text); gap: 10px;
}
.cart-list li span:first-child { flex: 1; }
.cart-list .cart-empty { color: var(--muted); font-style: italic; border-bottom: none; padding: 4px 0; }
.cart-line { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.cart-remove {
  background: none; border: none; color: var(--muted); font-size: 1.15rem;
  cursor: pointer; line-height: 1; padding: 0;
}
.cart-remove:hover { color: #C0392B; }
.cart-total-row {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--font-head); font-weight: 700; color: var(--navy);
  font-size: 1.6rem; padding-top: 14px; border-top: 2px solid var(--border); margin-bottom: 20px;
}
.cart-total-row .cart-total-label { flex: 1; font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.cart-total-row .cart-total-unit { font-size: 0.85rem; font-weight: 500; color: var(--muted); }

.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

#mobileCartBar {
  display: none;
}

@media (max-width: 980px) {
  .builder-layout { grid-template-columns: 1fr; }
  .cart-summary { display: none; }
}

@media (max-width: 760px) {
  #mobileCartBar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--navy);
    color: var(--white);
    padding: 14px 20px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    z-index: 60;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.25);
  }
  #mobileCartBar .mobile-total { font-family: var(--font-head); }
  #mobileCartBar .mobile-total strong { display: block; font-size: 1.1rem; }
  #mobileCartBar .mobile-total small { display: block; font-weight: 400; font-size: 0.72rem; color: #C4CEE0; }
  body.has-mobile-cart { padding-bottom: 78px; }
}

/* Order summary recap on donate page */
.order-summary {
  background: #FFFBF3;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 28px;
}
.order-summary h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 1.05rem; }
.order-summary .order-summary-items { color: var(--muted); font-size: 0.92rem; margin-bottom: 10px; }
.order-summary-total-row { font-family: var(--font-head); font-weight: 700; color: var(--navy); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .split-media { order: -1; }
  .testimonial { grid-template-columns: 1fr; text-align: center; }
  .testimonial img { margin: 0 auto; }
}

@media (max-width: 760px) {
  .topbar { display: none; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 26px;
    border-bottom: 1px solid var(--border);
    display: none;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-cta .btn--ghost { display: none; }
  .nav-toggle { display: block; }
  .grid--2, .grid--3, .grid--4, .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 22px; }
  .newsletter { padding: 28px; }
  .section { padding: 60px 0; }
}
