:root {
  --pink: #d81b60;
  --pink-dark: #ad1457;
  --pink-soft: #f8bbd0;
  --green: #0d7a2e;
  --green-dark: #0a5c23;
  --green-deep: #064018;
  --white: #ffffff;
  --ink: #1e1e1e;
  --muted: #646464;
  --border: #ececec;
  --shadow: 0 18px 50px rgba(0,0,0,.10);
  --radius: 18px;
  --container: 1180px;
  --header-height: 80px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 150px; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
body.reveal-enabled .reveal-section {
  opacity: 0;
  transform: translateY(68px) scale(.975);
  transition: opacity .95s cubic-bezier(.22, 1, .36, 1), transform .95s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
body.reveal-enabled .reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  body.reveal-enabled .reveal-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.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; }
.asset-image { display:none; width:100%; height:auto; }
.asset-image--loaded { display:block; }

.responsive{ display:none !important}

/* Top announcement bar */
.top-bar {
  background: var(--green-deep);
  color: white;
  padding: 2px 0;
  font-size: 2rem;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-direction: column;
  padding: 15px 0 25px;
}
.top-bar__slogan {
  margin: 0;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.top-bar__actions {
  display: flex;
  gap: 10px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--green-deep);
}
.nav-wrap { min-height: var(--header-height); display: flex; align-items: center; gap: 24px; }
.header-mark { width: 170px; text-align: center; line-height: 1; flex: 0 0 auto; display:block; }
.header-mark__image { width:100%; }
.header-mark__fallback { display:block; }
.header-mark__name { display:block; color:var(--pink); font: 400 2.2rem/1 "Pacifico", cursive; transform: rotate(-2deg); }
.header-mark__subtitle { display:block; margin-top:6px; color:var(--green-dark); font-size:.62rem; font-weight:800; letter-spacing:.24em; text-transform:uppercase; }
.header-mark__star { display:block; color:var(--pink); font-size:.6rem; margin-top:2px; }
.main-nav { margin-left:auto; display:flex; align-items:center; gap:26px; }
.main-nav a { position:relative; color:var(--green-dark); font-size:.78rem; font-weight:800; text-transform:uppercase; }
.main-nav a::after { content:""; position:absolute; left:0; right:0; bottom:-10px; height:3px; background:var(--pink); transform:scaleX(0); transition:.2s ease; }
.main-nav a:hover::after, .main-nav a.active::after { transform:scaleX(1); }
.nav-toggle { display:none; background:none; border:0; padding:8px; }
.nav-toggle span { display:block; width:26px; height:3px; margin:5px 0; background:var(--green-dark); }

/* Header donate button: hidden while hero banner is in viewport */
.site-header .donate-top { display:none; margin-left:0; }
.site-header:not(.banner-visible) .donate-top { display:inline-flex; margin-left:auto; }
.site-header:not(.banner-visible) .nav-toggle { margin-left:0; }

/* Buttons */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:7px; padding:14px 24px; border-radius:4px; border:2px solid transparent; font-size:.78rem; font-weight:800; text-transform:uppercase; letter-spacing:.02em; transition:transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform:translateY(-2px); box-shadow:0 10px 22px rgba(0,0,0,.12); }
.btn-sm { padding:10px 18px; font-size:1rem; }
.btn-pink { color:white; background:var(--pink); }
.btn-pink:hover { background:var(--pink-dark); }
.btn-green { color:white; background:var(--green); }
.btn-outline { color:var(--green-dark); border-color:var(--green); background:white; }
.btn-outline-light { color:white; border-color:rgba(255,255,255,.7); background:transparent; }
.btn-outline-light:hover { background:rgba(255,255,255,.1); }
.btn-block { width:100%; }

/* Back to top */
.back-to-top {
  position:fixed;
  right:max(16px, env(safe-area-inset-right));
  bottom:max(16px, env(safe-area-inset-bottom));
  left:auto;
  z-index:120;
  width:54px;
  height:54px;
  display:none;
  place-items:center;
  padding:0;
  color:white;
  font-size:1.5rem;
  font-weight:800;
  cursor:pointer;
  background:var(--pink);
  border:0;
  border-radius:50%;
  box-shadow:0 16px 28px rgba(0,0,0,.18);
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  transition:opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease;
}
.back-to-top:hover { background:var(--pink-dark); }
.js-enabled .back-to-top { opacity:0; visibility:hidden; transform:translateY(16px); }
.back-to-top.is-visible { opacity:1; visibility:visible; transform:translateY(0); }

/* Donate modal */
.donate-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.donate-modal[hidden] { display: none; }
.donate-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  cursor: pointer;
}
.donate-modal__content {
  position: relative;
  width: min(460px, 100%);
  padding: 36px 30px 32px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  z-index: 1;
}
.donate-modal__content--embed {
  width: min(720px, 100%);
  height: min(820px, 90vh);
  padding: 0;
  overflow: hidden;
}
.donate-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 2;
  background: white;
  border: 0;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.donate-modal__close:hover { color: var(--ink); background: var(--border); }
.donate-modal__body h2 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 1.5rem;
}
.donate-modal__body p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
}
.donate-modal__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius);
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: calc(90vh - var(--header-height));
  background: #f4f4f4;
  background-image: url(assets/downtown-jax-color-blur.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hero-grid {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  min-height: 0;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 3vw;
  text-align: center;
}
.hero-content img {
  width: min(520px, 95%);
  height: auto;
  margin: 0 auto 30px;
}
.hero-image {
  position: relative;
  min-height: 0;
  overflow: hidden;
  max-height: 820px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 10px 0px;
  max-width: 550px;
  margin: 0 auto;
}

/* Sections */
.section { padding:80px 0; }
.narrow { max-width: 900px; margin-inline: auto; }

/* Intro section */
.intro-section { padding-bottom: 40px; }
.intro-lead {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--ink);
  text-align: center;
  font-weight: 500;
}

/* Priorities */
.priorities-section { padding-top: 40px; }
.priorities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.priority-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
.priority-card__media {
  background: linear-gradient(135deg, rgba(216,27,96,.1), rgba(13,122,46,.1));
  height: 100%;
  min-height: 160px;
  display: grid;
  place-items: center;
  padding: 24px;
}
.priority-card__media img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.priority-card__body {
  padding: 24px 24px 24px 0;
}
.priority-card__body h3 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.priority-card__body p {
  margin: 0;
  font-size: .95rem;
  color: var(--muted);
}

/* Split sections */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-copy h2 {
  margin: 0 0 20px;
  color: var(--green-dark);
  font-size: 2.2rem;
  line-height: 1.2;
}
.split-copy p {
  margin: 0 0 18px;
  color: var(--ink);
}
.split-copy .lead-quote {
  color: var(--green-dark);
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  margin: 24px 0;
}
.split-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-placeholder {
  aspect-ratio: 4 / 3;
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
  background: linear-gradient(135deg, #fff8fb 0%, #f2f9f4 100%);
  border: 3px dashed var(--pink);
  border-radius: 16px;
  box-shadow: inset 0 0 0 4px rgba(216,27,96,.08);
}
.image-placeholder span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Video placeholders — What I've Heard */
.video-placeholder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.video-placeholder {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  border: 1px solid var(--border);
}
.video-placeholder__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff8fb 0%, #f2f9f4 100%);
  border: 2px dashed var(--pink);
  border-radius: 10px;
}
.video-placeholder__play {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.1rem;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(216,27,96,.3);
}
.video-placeholder__title {
  margin: 0;
  color: var(--green-dark);
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.video-placeholder__note {
  margin: 0;
  font-size: .82rem;
  color: var(--muted);
}

/* What I've Heard — content + video placeholders */
.heard-section { background: #f9fbfa; }
.heard-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: stretch;
}
.heard-copy {
  display: flex;
  flex-direction: column;
}
.heard-copy h2 {
  margin: 0 0 22px;
  color: var(--green-dark);
  font-size: 2.2rem;
  line-height: 1.2;
}
.heard-copy p {
  margin: 0 0 16px;
  color: var(--ink);
}
.heard-copy .lead-quote {
  color: var(--green-dark);
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  margin: 18px 0;
}
.heard-media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr auto;
  gap: 16px;
}
.heard-media .video-placeholder:nth-child(1) {
  grid-column: span 2;
}
.heard-media .video-placeholder {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.heard-media .video-placeholder__thumb {
  flex: 1 1 auto;
  min-height: 0;
}
.heard-media .video-placeholder__title { margin-top: 10px; }

/* Why I'm Running — distinct from Legacy section */
.why-section {
  background: linear-gradient(135deg, #fff8fb 0%, #f2f9f4 100%);
}
.why-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
}
.why-copy h2 {
  margin: 0 0 22px;
  color: var(--green-dark);
  font-size: 2.4rem;
  line-height: 1.15;
}
.why-copy p {
  margin: 0 0 18px;
  color: var(--ink);
}
.why-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.5;
}
.why-media {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-media__frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
  background: var(--green-dark);
  padding: 5px;
}
/* .why-media__frame::before {
  content: "";
  position: absolute;
  inset: -40px -60px auto auto;
  width: 280px;
  height: 500px;
  background: var(--pink);
  opacity: 1;
  border-radius: 50%;
  z-index: 0;
} */
.why-media__frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 23px;
  display: block;
}
.why-quote {
  margin: 0;
  padding: 22px 26px;
  border-left: 5px solid var(--pink);
  background: white;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.5;
}

/* Service list */
.service-list {
  margin: 24px 0 0;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
}
.service-list li {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.45;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
  border-left: 5px solid var(--pink);
}

/* Legacy gallery section */
.legacy-section { background: linear-gradient(180deg, #fff 0%, #fff8fb 100%); }
.legacy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.legacy-layout--gallery-left .legacy-gallery { order: 1; }
.legacy-layout--gallery-left .legacy-copy { order: 2; }
.legacy-copy {
  display: flex;
  flex-direction: column;
}
.legacy-copy h2 {
  margin: 0 0 20px;
  color: var(--green-dark);
  font-size: 2.2rem;
  line-height: 1.2;
}
.legacy-copy p {
  margin: 0 0 14px;
  color: var(--ink);
}
.legacy-copy p:last-of-type {
  margin-bottom: 0;
}
.legacy-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.legacy-gallery__item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
  background: #e8e8e8;
}
.legacy-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.legacy-gallery__item:nth-child(1) img { object-position: center 15%; }
.legacy-gallery__item:nth-child(2) img { object-position: center 20%; }
.legacy-gallery__item:nth-child(3) img { object-position: center 25%; }
.legacy-gallery__item:nth-child(4) img { object-position: center 10%; }
.legacy-gallery__item--large {
  grid-row: span 2;
}
.legacy-gallery__item--wide {
  grid-column: span 2;
  grid-row: span 2;
}

/* Full-width background sections */
.bg-section {
  position: relative;
  padding: 120px 0;
  color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 64, 24, .82);
}
.bg-section__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.bg-section__content h2 {
  margin: 0 0 24px;
  font-size: 2.4rem;
  line-height: 1.2;
}
.bg-section__content p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.92);
}
.bg-section__content .lead-quote {
  color: var(--pink-soft);
  font-size: 1.25rem;
  font-weight: 700;
}
.bg-section__content .closing-line {
  margin-top: 24px;
  color: var(--pink-soft);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.drives-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 22px;
  text-align: left;
}
.drives-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255,255,255,.92);
  font-size: 1.05rem;
  line-height: 1.65;
}
.drives-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--pink-soft);
  font-size: 1.1rem;
}
.drives-list li strong {
  color: white;
  text-transform: uppercase;
  font-size: .95rem;
  letter-spacing: .02em;
}
.bg-section--service { background-image: url("assets/downtown-jax.png"); }
.bg-section--action { background-image: url("assets/downtown-jax.png"); background-position: center 20%; }

/* What I'll Do — light layout to contrast with green contact section */
.do-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfa 100%);
}
.do-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.do-copy h2 {
  margin: 0 0 22px;
  color: var(--green-dark);
  font-size: 2.4rem;
  line-height: 1.15;
}
.do-copy p {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.7;
}
.do-copy .lead-quote {
  color: var(--green-dark);
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  margin: 0 0 18px;
}
.do-copy .closing-line {
  margin-top: 24px;
  color: var(--pink);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.do-commitments {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.commitment-card {
  background: white;
  padding: 24px 28px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  border-left: 5px solid var(--pink);
}
.commitment-card h3 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.commitment-card p {
  margin: 0;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.65;
}
.commitment-card strong {
  color: var(--green-dark);
}

/* Contact section */
.contact-section {
  background: var(--green-deep);
  color: white;
  padding: 90px 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
}
.contact-form {
  background: white;
  padding: 36px;
  border-radius: 16px;
  color: var(--ink);
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}
.contact-form label {
  display: block;
  margin-bottom: 14px;
}
.field-label {
  display: block;
  margin-bottom: 6px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green-dark);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: .95rem;
  transition: border-color .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink);
}
.help-options {
  border: 0;
  padding: 0;
  margin: 20px 0;
}
.help-options legend {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.help-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 500;
  margin-bottom: 10px;
  cursor: pointer;
}
.help-options input {
  width: auto;
  accent-color: var(--pink);
}
.form-status {
  margin: 14px 0 0;
  font-size: .9rem;
  text-align: center;
  color: rgba(255,255,255,.95);
  min-height: 1.5em;
}
.contact-form button:disabled {
  opacity: .7;
  cursor: not-allowed;
}
.form-thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 360px;
  padding: 40px;
  color: var(--green-dark);
}
.form-thank-you[hidden] { display: none; }
.form-thank-you h3 {
  margin: 0 0 12px;
  font-size: 1.8rem;
  color: var(--green-dark);
}
.form-thank-you p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
}
.contact-heading h2 {
  margin: 0 0 20px;
  font-size: 3rem;
  line-height: 1.1;
  color: white;
  text-transform: uppercase;
}
.contact-heading h2 img{
  width: 50%;
}
.contact-heading h2 .script-accent {
  color: var(--pink-soft);
  font: 400 4rem/1 "Pacifico", cursive;
  text-transform: none;
}
.contact-heading p {
  color: rgba(255,255,255,.85);
  margin: 0 0 24px;
  font-size: 1.05rem;
}
.contact-info p {
  margin: 6px 0;
  font-size: .95rem;
}
.contact-info a {
  color: var(--pink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-info a:hover {
  color: white;
}

/* Footer */
.site-footer { background: var(--green-deep); color: white; }
.site-footer__main { padding: 70px 0 55px; }
.footer-layout {
  display: grid;
  grid-template-columns: 1.3fr .8fr .9fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand .footer-logo {
  /* width: 170px; */
  height: auto;
  margin-bottom: 16px;
  text-align: center;
}
.footer-tagline {
  margin: 0 0 20px;
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--pink-soft);
  text-align: center;
}
.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  transition: background .2s ease, transform .2s ease;
}
.footer-social a:hover {
  background: var(--pink);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-links h3,
.footer-contact h3,
.footer-action h3 {
  margin: 0 0 18px;
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--pink-soft);
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s ease;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--pink-soft);
}
.footer-contact p,
.footer-action p {
  margin: 0 0 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  line-height: 1.55;
}
.footer-action .btn { margin-top: 8px; }

.paid-for {
  background: var(--pink);
  color: white;
  padding: 18px 20px;
  text-align: center;
}
.paid-for__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.paid-for span {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.8);
  padding: 5px 18px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.paid-for small {
  display: block;
  font-size: .68rem;
  line-height: 1.5;
  text-transform: none;
  color: rgba(255,255,255,.9);
  max-width: 780px;
}
.paid-for .copyright { font-size: .64rem; color: rgba(255,255,255,.85); }

@media (max-width: 1024px) {
  .back-to-top { display:grid; }
  .main { display: none; }
  .responsive { display: block !important }

  .hero { min-height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-columns: 1.5fr 1fr;
  }
  .hero-content {
    order: 1;
    padding: 0px 5vw 0px;
  }
  .hero-content img { 
    width: min(420px, 72%); 
  }
  .hero-image {
    order: 2;
    min-height: 420px;
    max-height: 55vh;
  }
  .hero-image img {
    width: 100%;
    margin: 0 auto;
    object-position: 0px 0px;
  }

  .top-bar {
    text-align: center;
  }
  .top-bar__slogan {
    flex-direction: row;
  }
  /* .top-bar__slogan {
    padding-bottom: 25px;
  } */
  .top-bar__actions {
    justify-content: center;
  }


}

@media (max-width: 980px) {

  .top-bar__inner { flex-direction: column; gap: 8px; text-align: center; }
  .top-bar__slogan { font-size: 1.75rem; padding-bottom: 25px; flex-direction: column;}
  .top-bar__actions { justify-content: center; }
  .nav-toggle { display:block; margin-left:auto; order:3; }
  .main-nav { display:none; position:absolute; top:80px; left:0; right:0; background:white; padding:20px; box-shadow:var(--shadow); flex-direction:column; gap:18px; }
  .main-nav.open { display:flex; }
  .donate-top { margin-left:0; order:2; }
  .priorities-grid { grid-template-columns: 1fr; }
  .priority-card { grid-template-columns: 120px 1fr; }
  .priority-card__media { min-height: 120px; }
  .priority-card__media img { width: 60px; height: 60px; }
  .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .heard-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  .legacy-layout { grid-template-columns: 1fr; gap: 40px; }
  .legacy-layout--gallery-left .legacy-gallery,
  .legacy-layout--gallery-left .legacy-copy { order: 0; }
  .legacy-gallery { grid-auto-rows: 140px; }
  .service-list { gap: 10px; }
  .image-placeholder { min-height: 260px; }
  .video-placeholder-grid { gap: 14px; }
  .video-placeholder { padding: 12px; }
  .video-placeholder__title { font-size: .88rem; }
  .split-section--image-left .split-media { order: 2; }
  .split-section--image-left .split-copy { order: 1; }
  .split-section--image-right .split-media { order: 2; }
  .split-section--image-right .split-copy { order: 1; }
  .why-media { order: 2; }
  .why-copy { order: 1; }
  .heard-media { order: 2; }
  .heard-copy { order: 1; }
  .heard-media { grid-template-columns: 1fr; grid-template-rows: auto; }
  .heard-media .video-placeholder:nth-child(1) { grid-column: span 1; }
  .bg-section { padding: 90px 0; }
  .do-layout { grid-template-columns: 1fr; gap: 40px; }
  .do-copy { order: 1; }
  .do-commitments { order: 2; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-heading { text-align: center; }
  .contact-heading h2 img{ margin: 0 auto; }
  .footer-layout { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand .footer-logo { margin: 0 auto 14px; }
  .footer-social { justify-content: center; }
}



@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto .90fr;
  }
  .hero-content img {
      width: min(420px, 100%);
  }
  .hero-image img {
    width: 57%;
  }
  .contact-form-wrap {
    order:2
  }
  .contact-heading {
    order: 1;
  }
}

@media (max-width: 640px) {
  :root { --header-height: 70px; }
  .container { width:min(100% - 28px, var(--container)); }
  .back-to-top { right:max(10px, env(safe-area-inset-right)); bottom:max(10px, env(safe-area-inset-bottom)); width:44px; height:44px; font-size:1.2rem; }
  /* .hero-content { padding: 10px 5vw 0px; } */
  .hero-content img { width: min(360px, 80%); }
  .hero-image { min-height: 340px; max-height: 50vh; overflow: hidden; }
  /* .hero-image img { 
    width: 87%; 
  } */
  .top-bar__actions { flex-wrap: wrap; justify-content: center; }
  .nav-wrap { min-height: var(--header-height); gap:12px; }
  .header-mark { width:130px; }
  .header-mark__name { font-size:1.9rem; }
  .header-mark__subtitle { font-size:.52rem; }
  .donate-top { padding:10px 13px; font-size:.7rem; }
  .main-nav { top:70px; }
  .section { padding:60px 0; }
  .intro-lead { font-size: 1.1rem; }
  .priority-card { grid-template-columns: 1fr; }
  .priority-card__body { padding: 20px; }
  .priority-card__media { min-height: 120px; }
  .split-copy h2 { font-size: 1.8rem; }
  .why-copy h2 { font-size: 1.9rem; }
  .why-quote { font-size: 1rem; padding: 18px 20px; }
  .legacy-copy h2 { font-size: 1.8rem; }
  .legacy-gallery { grid-auto-rows: 120px; gap: 10px; }
  .service-list li { padding: 14px 16px; font-size: .9rem; }
  .service-list { gap: 8px; }
  .video-placeholder-grid { gap: 12px; }
  .video-placeholder { padding: 10px; }
  .video-placeholder__title { font-size: .85rem; }
  .video-placeholder__note { font-size: .75rem; }
  .heard-media { gap: 12px; }
  .bg-section__content h2 { font-size: 1.9rem; }
  .drives-list li { font-size: .98rem; }
  .do-copy h2 { font-size: 1.9rem; }
  .do-copy .lead-quote { font-size: 1.1rem; }
  .commitment-card { padding: 18px 20px; }
  .commitment-card h3 { font-size: .92rem; }
  .commitment-card p { font-size: .9rem; }
  .contact-form { padding: 24px; }
  .contact-heading h2 { font-size: 2.2rem; }
  .contact-heading h2 .script-accent { font-size: 3rem; }
  .site-footer__main { padding: 50px 0 40px; }
  .footer-layout { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-brand .footer-logo { margin: 0 auto 12px; }
  .footer-links nav { align-items: center; }
  .paid-for { padding: 16px 18px; }
  .paid-for span { font-size: .65rem; padding: 4px 12px; }
  .paid-for small { font-size: .62rem; }
}

@media (max-width: 430px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto .80fr;
  }
}

@media (max-width: 414px) {
  /* .hero-content {
        padding: 0px 5vw 0px;
  } */
  .hero-image {
      min-height: 320px;
      max-height: 57vh;
  }
  /* .hero-image img {
      width: 89%;
  } */
  .top-bar__slogan {
    font-size: 1rem;
  }
  .btn-sm{
    font-size:.75rem
  }
}

@media (max-width: 375px) {
  .hero-image img {
      width: 65%;
  }
}
