/* =====================================================
   AMANDA MOMBOURQUETTE — CAMPAIGN WEBSITE
   Brand System & Shared Styles
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Lato:wght@300;400;700&display=swap');

/* ─── CSS Variables ─────────────────────────────────── */
:root {
  --red:        #8B1A1A;
  --red-dark:   #5C0F0F;
  --red-light:  #C4494F;
  --charcoal:   #2C2C2C;
  --slate:      #4A5568;
  --white:      #FFFFFF;
  --cream:      #FAF8F4;
  --light-grey: #F7F7F5;
  --border:     #E5E0D8;

  --font-head:  'Montserrat', Arial, sans-serif;
  --font-body:  'Lato', Arial, sans-serif;

  --nav-h: 100px;
  --max-w: 1200px;
  --section-pad: 96px 24px;
  --radius: 100px;
  --shadow: 0 2px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.16);

  --transition: 0.22s ease;
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography ────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; font-weight: 700; }
p  { font-size: 1.0625rem; line-height: 1.75; color: var(--slate); }

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

/* ─── Layout Utilities ──────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--red); }

.btn-outline-dark {
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }

.btn-ghost {
  color: var(--red);
  padding: 0;
  font-size: 0.875rem;
}
.btn-ghost:hover { color: var(--red-dark); }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ─── Navigation ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.10); }

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  justify-self: start;
  flex-shrink: 0;
}
.nav__logo img {
  height: 88px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Keep text logo fallback styles for footer use */
.nav__logo-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--red);
  text-transform: uppercase;
}
.nav__logo-tag {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--slate);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Centred nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: center;
}
.nav__links a {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active { color: var(--red); background: rgba(139,26,26,0.06); }

.nav__ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  flex-shrink: 0;
}
.nav__ctas .btn {
  font-size: 0.75rem;
  padding: 10px 20px;
}
/* Override white btn-outline for the light nav */
.nav__ctas .btn-outline,
.nav__mobile .btn-outline {
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.nav__ctas .btn-outline:hover,
.nav__mobile .btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  justify-self: end;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition);
  border-radius: 2px;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  padding: 24px;
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.nav__mobile a:hover { background: var(--light-grey); color: var(--red); }
.nav__mobile .btn { margin-top: 8px; width: 100%; justify-content: center; }

/* ─── Page Header (inner pages) ─────────────────────── */
.page-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 140px 24px 80px;
  text-align: center;
  color: var(--charcoal);
}
.page-header .eyebrow { color: var(--red); margin-bottom: 16px; }
.page-header h1 { color: var(--charcoal); margin-bottom: 20px; }
.page-header p { color: var(--slate); max-width: 640px; margin: 0 auto; font-size: 1.125rem; }

/* ─── Section Styles ────────────────────────────────── */
section { padding: var(--section-pad); }

.section--dark {
  background: var(--charcoal);
  color: var(--white);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.7); }
.section--dark .eyebrow { color: var(--red-light); }

.section--red {
  background: var(--red);
  color: var(--white);
}
.section--red h2, .section--red h3 { color: var(--white); }
.section--red p { color: rgba(255,255,255,0.85); }

.section--cream { background: var(--cream); }
.section--light { background: var(--light-grey); }

.section__header { margin-bottom: 56px; }
.section__header .eyebrow { margin-bottom: 12px; }
.section__header h2 { margin-bottom: 16px; }
.section__header p { max-width: 560px; }
.section__header.text-center p { margin: 0 auto; }

/* ─── Feature Strip ─────────────────────────────────── */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature-strip__item {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-strip__item:last-child { border-right: none; }
.feature-strip__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-strip__icon svg { width: 22px; height: 22px; color: var(--white); }
.feature-strip__text h4 { margin-bottom: 6px; font-size: 1rem; }
.feature-strip__text p { font-size: 0.9rem; margin: 0; }

/* ─── Split Section ─────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.split--reverse .split__image { order: -1; }
.split__content .eyebrow { margin-bottom: 12px; }
.split__content h2 { margin-bottom: 20px; }
.split__content p { margin-bottom: 24px; }
.split__image {
  border-radius: 8px;
  overflow: hidden;
  background: var(--light-grey);
  aspect-ratio: 4/5;
  position: relative;
}
.split__image img { width: 100%; height: 100%; object-fit: cover; }
.split__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-grey);
  color: var(--slate);
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 420px;
  flex-direction: column;
  gap: 12px;
}
.split__placeholder svg { width: 40px; height: 40px; opacity: 0.3; }

/* ─── Cards ─────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__image {
  aspect-ratio: 16/9;
  background: var(--light-grey);
  overflow: hidden;
}
.card__image img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 28px; }
.card__tag {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { font-size: 0.9rem; margin-bottom: 16px; }

/* Action Cards (Volunteer/Donate/Join) */
.action-card {
  border-radius: 8px;
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.action-card--dark { background: var(--charcoal); color: var(--white); }
.action-card--red  { background: var(--red); color: var(--white); }
.action-card--light { background: var(--cream); border: 1px solid var(--border); }
.action-card .eyebrow { opacity: 0.7; }
.action-card h3 { font-size: 1.75rem; color: inherit; }
.action-card p { color: inherit; opacity: 0.8; margin: 0; }
.action-card__number {
  position: absolute;
  bottom: -12px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 8rem;
  font-weight: 900;
  opacity: 0.06;
  line-height: 1;
  color: var(--white);
}

/* ─── Steps ─────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step__num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.step h4 { margin-bottom: 8px; font-size: 1.125rem; }
.step p { font-size: 0.95rem; margin: 0; }

/* ─── Accordion / FAQ ───────────────────────────────── */
.accordion { display: flex; flex-direction: column; gap: 0; }
.accordion__item {
  border-bottom: 1px solid var(--border);
}
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  color: var(--charcoal);
  gap: 16px;
  transition: color var(--transition);
}
.accordion__trigger:hover { color: var(--red); }
.accordion__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.accordion__icon svg { width: 14px; height: 14px; transition: transform var(--transition); }
.accordion__item.open .accordion__icon { background: var(--red); border-color: var(--red); }
.accordion__item.open .accordion__icon svg { color: var(--white); transform: rotate(45deg); }
.accordion__body { display: none; padding-bottom: 22px; }
.accordion__body p { font-size: 0.95rem; margin: 0; }
.accordion__item.open .accordion__body { display: block; }

/* ─── Quote / Testimonial ───────────────────────────── */
.quote-block {
  background: var(--red-dark);
  padding: 80px 24px;
  text-align: center;
  color: var(--white);
}
.quote-block blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.35;
  max-width: 860px;
  margin: 0 auto 28px;
  color: var(--white);
}
.quote-block blockquote::before { content: '\201C'; color: var(--red-light); margin-right: 4px; }
.quote-block blockquote::after  { content: '\201D'; color: var(--red-light); margin-left: 4px; }
.quote-source {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ─── CTA Banner ────────────────────────────────────── */
.cta-banner {
  background: var(--red);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-dark) 0%, transparent 60%);
  opacity: 0.45;
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 36px; font-size: 1.125rem; }
.cta-banner__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Forms ─────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }

.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; }
.checkbox-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--red); }
.checkbox-item label {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--slate);
  cursor: pointer;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: 0.8rem; color: var(--slate); margin-top: -12px; margin-bottom: 20px; line-height: 1.5; }

/* ─── Event Cards ───────────────────────────────────── */
.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.event-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.event-card__date {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 12px 14px;
  text-align: center;
  flex-shrink: 0;
  min-width: 60px;
}
.event-card__month {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.event-card__day {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  margin-top: 2px;
}
.event-card h4 { font-size: 1.1rem; margin-bottom: 6px; }
.event-card__meta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.event-card__meta span {
  font-size: 0.82rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 5px;
}
.event-card__meta svg { width: 14px; height: 14px; color: var(--red); }

/* ─── News / Press Grid ─────────────────────────────── */
.press-card {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.press-card:first-child { border-top: 1px solid var(--border); }
.press-card__date {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate);
  min-width: 90px;
  padding-top: 4px;
}
.press-card h4 { font-size: 1rem; margin-bottom: 6px; transition: color var(--transition); }
.press-card:hover h4 { color: var(--red); }
.press-card p { font-size: 0.875rem; margin: 0; }

/* ─── Endorsement cards ─────────────────────────────── */
.endorse-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}
.endorse-card blockquote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--slate);
  margin-bottom: 16px;
  line-height: 1.7;
}
.endorse-card__name {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--charcoal);
}
.endorse-card__title { font-size: 0.8rem; color: var(--slate); }

/* ─── Stats strip ───────────────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
}
.stats-strip__item {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stats-strip__item:last-child { border-right: none; }
.stats-strip__num {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.stats-strip__label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ─── Authorization line ────────────────────────────── */
.auth-line {
  font-size: 0.75rem;
  color: var(--slate);
  font-style: italic;
  padding: 12px 16px;
  border-left: 3px solid var(--red);
  background: var(--light-grey);
  border-radius: 0 4px 4px 0;
  margin-top: 16px;
}

/* ─── Footer ────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 72px 24px 0;
}
.footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__brand .nav__logo-name { font-size: 1.75rem; margin-bottom: 6px; display: block; }
.footer__brand .nav__logo-tag { margin-bottom: 20px; display: block; }
.footer__brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,0.5); }
.footer__brand .auth-line { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5); border-color: var(--red); margin-top: 20px; }

.footer__col h5 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--red-light); }

.footer__newsletter h5 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.footer__newsletter p { font-size: 0.85rem; margin-bottom: 16px; color: rgba(255,255,255,0.5); }
.footer__newsletter-form { display: flex; gap: 0; }
.footer__newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.footer__newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.footer__newsletter-form input:focus { border-color: var(--red); }
.footer__newsletter-form button {
  padding: 12px 18px;
  background: var(--red);
  color: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition);
  white-space: nowrap;
}
.footer__newsletter-form button:hover { background: var(--red-dark); }

.footer__socials { display: flex; gap: 12px; margin-top: 20px; }
.footer__social-col h5 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.footer__social-col .footer__socials { margin-top: 0; }
.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.footer__social:hover { background: var(--red); }
.footer__social svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin: 0; }

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-strip__item { border-bottom: 1px solid var(--border); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 20px; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }

  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__links, .nav__ctas { display: none; }
  .nav__hamburger { display: flex; }

  .grid-2, .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__image { order: 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-strip__item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-strip__item:last-child { border-bottom: none; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .step { grid-template-columns: 56px 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner__btns { flex-direction: column; align-items: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .split__placeholder { min-height: 280px; }
  .stats-strip { grid-template-columns: 1fr; }
}
