/* ==========================================================================
   GOLF PARA LA VIDA · Landing Page
   Identidad: Verde (campo) · Azul navy (institucional) · Ámbar (acento)
   ========================================================================== */

:root {
  --green:        #2E8B3D;
  --green-dark:   #1F6A2A;
  --green-soft:   #E8F3EA;
  --navy:         #1E3A6E;
  --navy-dark:    #142A52;
  --navy-soft:    #EEF2F9;
  --amber:        #F5A623;
  --amber-dark:   #D88B0A;

  --ink:          #14213D;
  --ink-2:        #2C3A57;
  --ink-3:        #4A5775;
  --muted:        #6B7691;
  --line:         #E2E6EF;
  --bg:           #FFFFFF;
  --bg-soft:      #F7F9FC;

  --shadow-sm: 0 2px 6px rgba(20, 33, 61, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 33, 61, 0.08);
  --shadow-lg: 0 18px 50px rgba(20, 33, 61, 0.14);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --container: 1180px;
  --header-h:  130px;

  --font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a  { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green); }
button { font-family: inherit; cursor: pointer; }
ul { padding: 0; margin: 0; list-style: none; }

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; font-family: var(--font-sans); font-weight: 700; letter-spacing: .02em; text-transform: uppercase; }
p  { margin: 0 0 1em; }
em { color: var(--green); font-style: italic; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow.light {
  background: rgba(255,255,255,.08);
  color: var(--amber);
  border: 1px solid rgba(255,255,255,.12);
}

.accent { color: var(--green); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 26px rgba(46, 139, 61, .35);
}
.btn-primary:hover { background: var(--green-dark); color:#fff; transform: translateY(-2px); }
.btn-secondary {
  background: var(--navy);
  color: #fff;
}
.btn-secondary:hover { background: var(--navy-dark); color:#fff; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-block { width: 100%; }

/* ===== Header / Nav ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 100px; width: auto; max-width: 100%; }

.primary-nav ul {
  display: flex; gap: 8px; align-items: center;
}
.primary-nav a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: .95rem;
  padding: 10px 12px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.primary-nav a:hover { color: var(--green); background: var(--green-soft); }
.primary-nav .nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  margin-left: 6px;
}
.primary-nav .nav-cta:hover { background: var(--green); color: #fff; }

.nav-toggle {
  display: none;
  background: transparent; border: 0;
  width: 44px; height: 44px;
  padding: 10px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  height: 2.5px; background: var(--ink); border-radius: 2px;
  margin: 5px 0;
  transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(46,139,61,.10), transparent 70%),
    radial-gradient(800px 500px at 0% 100%, rgba(30,58,110,.08), transparent 70%),
    linear-gradient(180deg, #fff 0%, #f4f8f5 100%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.hero-text .lead {
  font-size: 1.15rem;
  color: var(--ink-3);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--navy);
  line-height: 1;
}
.hero-meta span { font-size: .85rem; color: var(--muted); margin-top: 6px; }

.hero-art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--green-soft);
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(30,58,110,.25));
  pointer-events: none;
}

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section-light { background: var(--bg); }
.section-soft  { background: var(--bg-soft); }
.section-dark {
  background:
    radial-gradient(800px 500px at 90% 10%, rgba(46,139,61,.20), transparent 70%),
    linear-gradient(180deg, var(--navy-dark), var(--navy) 70%);
  color: #DCE3F0;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark em { color: var(--amber); }
.section-dark .section-sub { color: #BCC6DC; }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-sub {
  font-size: 1.1rem;
  color: var(--ink-3);
  margin: 0;
}

/* ===== Two-column layout ===== */
.two-col {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.prose p { font-size: 1.05rem; }
.pull-quote {
  margin: 28px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--green);
  background: var(--green-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
}

.figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}
.figure img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.figure figcaption {
  padding: 14px 20px;
  font-size: .9rem;
  color: var(--muted);
  background: #fff;
  text-align: center;
}

/* ===== Carousel (San Blas gallery) ===== */
.carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-md);
}
.carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: #000;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
}
.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  transition: background .2s, transform .15s, color .2s;
  z-index: 2;
}
.carousel-btn:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.carousel-btn:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}
.carousel-prev { left: 14px; }
.carousel-next { right: 14px; }

.carousel-dots {
  position: absolute;
  left: 0; right: 0;
  bottom: 60px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  transition: background .2s, transform .2s, width .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.carousel-dots button:hover { background: rgba(255,255,255,.85); }
.carousel-dots button.is-active {
  background: var(--amber);
  width: 28px;
  border-radius: 999px;
}
.carousel-dots button:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.carousel figcaption {
  padding: 14px 20px;
  font-size: .9rem;
  color: var(--muted);
  background: #fff;
  text-align: center;
}

@media (max-width: 720px) {
  .carousel-btn { width: 38px; height: 38px; }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  .carousel-dots { bottom: 56px; }
}

.placeholder-figure .placeholder-image {
  aspect-ratio: 4/3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  background:
    repeating-linear-gradient(45deg, var(--green-soft), var(--green-soft) 16px, #fff 16px, #fff 32px);
  color: var(--green-dark);
  text-align: center;
  padding: 24px;
}
.placeholder-image span { font-size: 2.4rem; }
.placeholder-image p { margin: 0; font-size: .95rem; }
.placeholder-image small { color: var(--muted); }

/* ===== Pillars ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pillar {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .25s, background .25s, border-color .25s;
}
.pillar:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.08);
  border-color: rgba(245,166,35,.5);
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.pillar h3 { color: #fff; margin-bottom: 6px; }
.pillar-tag {
  font-style: italic;
  color: var(--amber);
  font-size: .95rem;
  margin-bottom: 14px;
}
.pillar p { color: #C6D0E3; font-size: .97rem; }
.pillar-list {
  margin-top: 16px;
  display: grid; gap: 6px;
}
.pillar-list li {
  position: relative;
  padding-left: 22px;
  font-size: .92rem;
  color: #BCC6DC;
}
.pillar-list li::before {
  content: "⛳";
  position: absolute;
  left: 0; top: 0;
  font-size: .85rem;
}
.pillar-summary {
  grid-column: span 3;
  background: linear-gradient(135deg, rgba(46,139,61,.18), rgba(245,166,35,.10));
  border-color: rgba(245,166,35,.4);
  text-align: center;
  padding: 36px;
}
.pillar-summary h3 { font-size: 1.6rem; }
.pillar-summary p { color: #DCE3F0; max-width: 720px; margin-inline: auto; }
.pillar-cta {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
}

/* ===== Impact ===== */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 56px 0 32px;
}
.impact-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: border-color .2s, transform .25s, box-shadow .2s;
}
.impact-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.impact-card h4 {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 4px;
}
.impact-card p { margin: 0; color: var(--ink-3); font-size: .97rem; }

.impact-callout {
  margin-top: 32px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--green-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.5;
}
.impact-callout p { margin: 0; }
.impact-callout strong { color: var(--amber); font-weight: 700; }

/* ===== Allies ===== */
.allies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ally {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .25s, border-color .2s, box-shadow .2s;
}
.ally:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}
.ally-icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--green-soft);
  font-size: 1.7rem;
  margin-bottom: 16px;
}
.ally h3 { font-size: 1.15rem; margin-bottom: 8px; }
.ally p { font-size: .97rem; color: var(--ink-3); margin: 0; }

.allies-footer {
  margin-top: 48px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--ink-3);
  max-width: 720px;
  margin-inline: auto;
}

/* ===== How to Help ===== */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.help-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .2s, border-color .2s;
}
.help-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.help-card h3 { font-size: 1.25rem; }
.help-card p { color: var(--ink-3); font-size: .98rem; }
.help-card ul {
  margin: 8px 0 22px;
  display: grid; gap: 6px;
}
.help-card ul.cols-2 {
  grid-template-columns: 1fr 1fr;
  gap: 6px 18px;
}
.help-card li {
  position: relative; padding-left: 18px;
  font-size: .95rem; color: var(--ink-2);
}
.help-card li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--green); font-weight: 700;
}
.help-card .btn { margin-top: auto; align-self: flex-start; }
.help-featured {
  background: linear-gradient(160deg, #fff 0%, var(--green-soft) 100%);
  border-color: var(--green);
}
.help-badge {
  position: absolute; top: -10px; left: 24px;
  background: var(--green);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.help-footer {
  margin-top: 48px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--ink-3);
  max-width: 720px;
  margin-inline: auto;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 { color: #fff; }
.contact-tag {
  color: #BCC6DC;
  margin-bottom: 28px;
}
.contact-list { display: grid; gap: 18px; }
.contact-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 16px 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
}
.ci-label {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
}
.ci-value {
  color: #fff;
  font-weight: 500;
  word-break: break-word;
}
a.ci-value:hover { color: var(--amber); }

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--ink-2);
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { color: var(--ink); margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink-2);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,139,61,.18);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-note {
  margin-top: 10px;
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
}

/* ===== Footer ===== */
.site-footer {
  background: #0F1F3D;
  color: #B8C2D6;
  padding: 64px 0 24px;
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand img { height: 200px; width: auto; max-width: 100%; margin-bottom: 20px; filter: brightness(1.08); background: #fff; padding: 14px 18px; border-radius: var(--radius); }
.footer-brand p { color: #8B96AE; font-size: .95rem; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.footer-cols h4 {
  color: #fff;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-cols li { margin-bottom: 8px; }
.footer-cols a { color: #B8C2D6; font-size: .95rem; }
.footer-cols a:hover { color: var(--amber); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  color: #6E7A95;
  font-size: .85rem;
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero { padding: calc(var(--header-h) + 40px) 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { aspect-ratio: 16/10; order: -1; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar-summary { grid-column: span 2; }
  .impact-grid, .allies-grid, .help-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-wrap { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 980px) {
  :root { --header-h: 90px; }
  .brand-logo { height: 70px; }
  .footer-brand img { height: 130px; }
  .hero { padding-top: calc(var(--header-h) + 40px); }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
  .hero-meta { grid-template-columns: 1fr; gap: 14px; padding-top: 22px; }
  .hero-meta div { flex-direction: row; align-items: baseline; gap: 12px; }
  .hero-meta strong { font-size: 1.4rem; }

  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: #fff;
    border-bottom: 0 solid var(--line);
    padding: 0 16px;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height .35s ease, padding .25s, border-width .25s, box-shadow .25s, visibility 0s linear .35s;
  }
  .primary-nav.is-open {
    max-height: 480px;
    padding: 12px 16px 24px;
    border-bottom-width: 1px;
    box-shadow: var(--shadow-md);
    visibility: visible;
    transition: max-height .35s ease, padding .25s, border-width .25s, box-shadow .25s, visibility 0s linear 0s;
  }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .primary-nav a { padding: 12px 14px; }
  .primary-nav .nav-cta { margin-left: 0; text-align: center; margin-top: 8px; }

  .pillars { grid-template-columns: 1fr; }
  .pillar-summary { grid-column: span 1; padding: 28px 22px; }
  .impact-grid, .allies-grid, .help-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .impact-callout { font-size: 1.05rem; padding: 32px 20px; }
}

@media (max-width: 420px) {
  :root { --header-h: 70px; }
  .footer-cols { grid-template-columns: 1fr; }
  .brand-logo { height: 50px; }
  .footer-brand img { height: 100px; padding: 8px 12px; }
  .hero { padding-top: calc(var(--header-h) + 32px); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
}

/* ===== Reduce motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
