/* Friends of Hall Football — site styles
   Colors and type live here as custom properties. Change them once and
   the whole site follows. */

:root {
  --navy: #0a1f35;
  --blue: #0057b8;
  --blue-bright: #0d6ddb;
  --blue-shadow: #003f85;
  --blue-pale: #eef3f9;
  --blue-light: #bcd9fb;
  --ink: #14202c;
  --body: #3a4b5c;
  --muted: #5c6b7a;
  --line: #dde4ec;
  --line-soft: #e6ebf1;
  --wash: #f2f5f9;
  --wash-alt: #f7f9fc;
  --white: #ffffff;
  --black: #000000;

  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --text: "Public Sans", system-ui, -apple-system, sans-serif;

  --page: 1180px;
  --gutter: 24px;
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.55;
}

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

a { color: var(--blue); }
a:hover { color: var(--navy); }

.wrap { max-width: var(--page); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.display, h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0;
}

.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 15px;
  color: var(--blue);
}

.external-icon { flex: none; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 24px;
  text-decoration: none;
  padding: 17px 34px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
.btn--primary { color: var(--white); background: var(--blue); box-shadow: 0 4px 0 var(--blue-shadow); }
.btn--primary:hover { background: var(--blue-bright); color: var(--white); }
.btn--white { color: var(--navy); background: var(--white); box-shadow: 0 4px 0 rgba(0, 0, 0, .35); }
.btn--white:hover { background: #e8eff7; color: var(--navy); }
.btn--outline { color: var(--navy); background: var(--white); border: 2px solid var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--small { font-size: 20px; padding: 12px 22px; }
.btn--block { width: 100%; justify-content: center; font-size: 26px; padding: 18px; }

/* ---------- top bar + nav ---------- */

.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  line-height: 1.4;
  padding: 9px 20px;
  text-align: center;
}
.topbar span { opacity: .75; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  box-shadow: 0 2px 12px rgba(10, 31, 53, .08);
}
.header-inner {
  max-width: var(--page);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; flex: 0 1 auto; min-width: 0; }
.brand img { height: 52px; width: auto; flex: none; }
.brand-text { font-family: var(--display); font-weight: 800; text-transform: uppercase; line-height: .95; }
.brand-sub { display: block; font-size: 13px; color: var(--blue); letter-spacing: .14em; }
.brand-name { display: block; font-size: 30px; color: var(--navy); white-space: nowrap; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 21px;
  letter-spacing: .04em;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  text-decoration: none;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 6px;
}
.nav-link:hover { background: var(--blue-pale); color: var(--blue); }
.nav-link.is-active { background: var(--blue-pale); color: var(--blue); }
.nav-donate {
  text-decoration: none;
  color: var(--white);
  background: var(--blue);
  padding: 13px 26px;
  border-radius: 6px;
  font-size: 23px;
  margin-left: 6px;
  box-shadow: 0 3px 0 var(--blue-shadow);
  white-space: nowrap;
}
.nav-donate:hover { background: var(--navy); color: var(--white); box-shadow: 0 3px 0 var(--black); }

/* mobile menu: pure CSS, driven by a hidden checkbox */
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.mobile-bar { display: none; align-items: center; gap: 10px; }
.nav-burger {
  width: 56px;
  height: 52px;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 8px;
  cursor: pointer;
}
.nav-burger span { display: block; width: 26px; height: 3px; border-radius: 2px; background: var(--navy); }
.nav-panel { display: none; flex-direction: column; border-top: 2px solid var(--line); background: var(--white); }
.nav-panel a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 60px;
  padding: 20px;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--line-soft);
}
.nav-panel a:last-child { border-bottom: none; }
.nav-toggle:checked ~ .nav-panel { display: flex; }

/* ---------- hero ---------- */

.hero { position: relative; background: var(--navy); color: var(--white); overflow: hidden; }
.hero-inner {
  position: relative;
  max-width: var(--page);
  margin: 0 auto;
  width: 100%;
  padding: 72px var(--gutter) 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}
.hero-copy { max-width: 100%; }
.hero h1 { font-size: clamp(38px, 8.5vw, 62px); line-height: .94; max-width: 9.5em; text-wrap: balance; }
.hero p { margin: 22px 0 0; max-width: 26em; color: #dce6f2; text-wrap: pretty; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-photo { position: relative; border-radius: var(--radius); overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
/* The photo now sits in its own column, so no fade-out scrim is needed. */
.hero-scrim { display: none; }

.page-hero { background: var(--navy); color: var(--white); }
.page-hero .wrap { padding-top: clamp(40px, 8vw, 60px); padding-bottom: clamp(44px, 8vw, 64px); }
.page-hero h1 { font-size: clamp(40px, 9vw, 64px); line-height: .95; }
.page-hero p { margin: 18px 0 0; font-size: 20px; color: #d3e0ee; max-width: 36em; text-wrap: pretty; }

/* ---------- sections ---------- */

.section { padding-top: clamp(46px, 9vw, 72px); padding-bottom: clamp(46px, 9vw, 72px); }
.section--wash { background: var(--wash); border-top: 1px solid #e2e8ef; border-bottom: 1px solid #e2e8ef; }
.section--tight { padding-top: 36px; }
.section h2 { font-size: clamp(30px, 7vw, 46px); color: var(--navy); }
.section-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.section-head--split { justify-content: space-between; }
.section-note { margin: 16px 0 0; font-size: 16px; color: var(--muted); }
.section-lede { margin: 0 0 28px; font-size: 19px; color: var(--body); max-width: 44em; text-wrap: pretty; }
.inline-link { font-size: 18px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }

/* ---------- sponsor band + grid ---------- */

.sponsor-band { background: var(--wash); border-bottom: 1px solid #e2e8ef; }
.sponsor-band .wrap { padding-top: clamp(30px, 5vw, 44px); padding-bottom: clamp(34px, 5vw, 48px); }
.sponsor-band h2 { font-size: clamp(26px, 5.5vw, 34px); color: var(--navy); }
.sponsor-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.sponsor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr)); gap: 16px; }
.sponsor-grid--page { grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); gap: 20px; }
.sponsor-tile {
  height: 140px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsor-tile img { max-height: 100%; width: auto; object-fit: contain; }

/* ---------- next game + schedule ---------- */

.next-game {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  border: 3px solid var(--navy);
  border-radius: 14px;
  overflow: hidden;
  background: var(--navy);
}
.next-game-panel { background: var(--blue); color: var(--white); padding: clamp(26px, 5vw, 40px) clamp(22px, 5vw, 40px) clamp(30px, 5vw, 44px); }
.next-game-kicker { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .16em; font-size: 17px; color: var(--blue-light); }
.next-game-title { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(36px, 7vw, 62px); line-height: 1; margin-top: 10px; }
.next-game-info { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 28px; font-size: 19px; line-height: 1.5; }
.info-label { font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: 13px; color: var(--blue-light); }
.info-value { margin-top: 4px; }
.next-game-photo img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }

.schedule { border: 2px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.schedule-head,
.game-row { display: grid; grid-template-columns: 180px 120px 1fr 1.1fr; }
.schedule-head {
  background: var(--navy);
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 17px;
}
.schedule-head div { padding: 14px 20px; }
.game-row { border-top: 1px solid var(--line-soft); font-size: 18px; align-items: start; background: var(--white); }
.game-row:nth-child(odd) { background: var(--wash-alt); }
.game-row > div { padding: 16px 20px; }
.game-date { font-weight: 700; color: var(--navy); }
.game-time, .game-site { color: var(--body); }
.game-opponent strong { color: var(--navy); }
.game-tag {
  display: block;
  margin-top: 4px;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 13px;
  color: #7a8a99;
}
.game-row.is-home .game-tag { color: var(--blue); }

/* ---------- news ---------- */

.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 28px; }
.post-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; }
.post-card-photo { height: 210px; }
.post-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-date { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: 14px; color: var(--blue); }
.post-card h3 { font-size: 28px; line-height: 1.05; color: var(--navy); }
.post-card p { margin: 0; color: var(--body); text-wrap: pretty; }
.post-more { margin-top: auto; font-weight: 700; text-decoration: none; }

/* ---------- newsletter band ---------- */

.newsletter-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 48px;
  align-items: center;
  border: 3px solid var(--navy);
  border-radius: 14px;
  padding: clamp(26px, 5vw, 44px) clamp(22px, 5vw, 44px) clamp(30px, 5vw, 48px);
}
.newsletter-band { background: var(--white); }
.newsletter-band h2 { margin-top: 8px; line-height: 1; }
.newsletter-band p { margin: 18px 0 0; font-size: 19px; color: var(--body); max-width: 34em; text-wrap: pretty; }
.newsletter-cover { height: 260px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.newsletter-cover img { width: 100%; height: 100%; object-fit: cover; }

.newsletter-frame { border: 2px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--wash-alt); }
.newsletter-frame iframe { display: block; width: 100%; height: min(900px, 140vw); min-height: 520px; border: none; background: var(--white); }

.issue-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 24px; }
.issue-card { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; background: var(--white); }
.issue-card-photo { height: 200px; }
.issue-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.issue-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.issue-season { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: 14px; color: var(--blue); }
.issue-card h3 { font-size: 26px; line-height: 1.05; color: var(--navy); }

/* ---------- volunteer / forms ---------- */

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: clamp(28px, 5vw, 56px); align-items: start; }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy p { color: #d3e0ee; max-width: 32em; text-wrap: pretty; font-size: 19px; }
.contact-label { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: 14px; color: #7fb2ee; }

.card { background: var(--white); border-radius: 14px; padding: clamp(22px, 5vw, 32px); color: var(--ink); }
.card--outline { background: var(--white); border: 2px solid var(--line); }
.card h3 { font-size: 28px; color: var(--navy); line-height: 1; }
.card-form { display: flex; flex-direction: column; gap: 18px; margin-top: 22px; }

.field { display: block; font-size: 16px; font-weight: 600; color: var(--body); }
.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  font-family: var(--text);
  font-size: 18px;
  padding: 14px 16px;
  border: 2px solid #cdd7e2;
  border-radius: 10px;
  background: #fbfcfe;
  color: var(--ink);
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--blue); outline: none; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 16px; }

.check { display: flex; gap: 12px; align-items: flex-start; font-size: 17px; font-weight: 600; color: var(--body); cursor: pointer; }
.check input { width: 22px; height: 22px; margin: 2px 0 0; accent-color: var(--blue); flex: none; }
.check small { display: block; font-weight: 400; font-size: 15px; color: var(--muted); margin-top: 3px; }

/* ---------- donate ---------- */

.donate-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: clamp(24px, 4vw, 48px); align-items: start; }
.donate-card { border: 3px solid var(--navy); border-radius: 16px; padding: clamp(22px, 5vw, 36px) clamp(20px, 5vw, 36px) clamp(26px, 5vw, 40px); }
.donate-card h2 { font-size: clamp(30px, 6.5vw, 36px); line-height: 1; }
.step { margin-top: 30px; }
.step:first-of-type { margin-top: 28px; }
.step-label { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: 15px; color: var(--muted); }

.amount-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(140px, 100%), 1fr)); gap: 14px; margin-top: 14px; }
.amount input { position: absolute; opacity: 0; pointer-events: none; }
.amount span {
  display: block;
  text-align: left;
  cursor: pointer;
  padding: 18px;
  border-radius: var(--radius);
  border: 2px solid #cdd7e2;
  background: var(--white);
  color: var(--navy);
  font-family: var(--display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
}
.amount input:checked + span { border-color: var(--blue); background: #eaf2fd; color: var(--blue); box-shadow: 0 0 0 3px rgba(0, 87, 184, .18); }
.amount input:focus-visible + span { outline: 3px solid var(--blue); outline-offset: 2px; }

.custom-amount { display: block; position: relative; margin-top: 7px; }
.custom-amount span { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-size: 22px; font-weight: 700; color: var(--muted); }
.custom-amount input { padding-left: 38px; font-size: 22px; font-weight: 600; }

.side-stack { display: flex; flex-direction: column; gap: 24px; }
.side-card { border: 2px solid var(--line); border-radius: 14px; padding: 28px; }
.side-card--wash { background: var(--wash-alt); }
.side-card h3 { font-size: 26px; color: var(--navy); }
.side-card p { margin: 12px 0 0; color: var(--body); text-wrap: pretty; }
.side-meta { margin-top: 16px; color: var(--body); }
.side-meta-label { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: 14px; color: var(--blue); }
.side-meta-value { margin-top: 5px; font-weight: 600; }
.bullets { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; list-style: none; padding: 0; }
.bullets li { display: flex; gap: 12px; align-items: baseline; color: var(--body); line-height: 1.5; }
.bullets li::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); transform: translateY(-2px); }
.link-stack { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; font-weight: 600; }
.link-stack span { color: var(--body); font-weight: 400; }

.pay-note { margin: 14px 0 0; font-size: 15px; color: var(--muted); text-align: center; }
.stripe-slot {
  border: 2px dashed #9fb0c2;
  border-radius: 14px;
  background: var(--wash-alt);
  padding: clamp(32px, 7vw, 56px) clamp(18px, 4vw, 32px);
  text-align: center;
}
.stripe-slot strong { display: block; font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(24px, 5.5vw, 30px); color: var(--navy); letter-spacing: .02em; }
.stripe-slot p { margin: 14px auto 0; color: var(--muted); max-width: 34em; text-wrap: pretty; }

/* ---------- sponsor tiers ---------- */

#levels { scroll-margin-top: 120px; }
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 24px; }
.tier { background: var(--white); border: 2px solid var(--line); border-top: 8px solid var(--navy); border-radius: 14px; padding: 30px 28px 32px; display: flex; flex-direction: column; gap: 14px; }
.tier--titan { border-top-color: var(--navy); }
.tier--blue { border-top-color: var(--blue); }
.tier--black { border-top-color: #111111; }
.tier--friend { border-top-color: #7a8a99; }
.tier-name { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 30px; line-height: 1; color: var(--navy); }
.tier-amount { font-family: var(--display); font-weight: 700; font-size: 38px; line-height: 1; color: var(--blue); }
.tier p { margin: 0; color: var(--body); text-wrap: pretty; }
.tier .btn { margin-top: auto; justify-content: center; font-size: 22px; padding: 14px; }

/* ---------- footer ---------- */

.site-footer { background: var(--black); color: #9fb0c2; padding: 44px 24px; font-size: 16px; }
.footer-inner { max-width: var(--page); margin: 0 auto; display: flex; gap: 28px; flex-wrap: wrap; justify-content: space-between; align-items: center; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: #9fb0c2; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--white); }

/* ---------- responsive ---------- */

@media (max-width: 1160px) {
  .nav { display: none; }
  .mobile-bar { display: flex; }
}

@media (max-width: 1100px) {
  .hero-inner { padding: 44px 18px 48px; grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .hero-photo img { aspect-ratio: 16 / 10; }
  .next-game { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 900px) {
  :root { --gutter: 18px; }

  .schedule-head { display: none; }
  .game-row { grid-template-columns: auto 1fr; gap: 4px 16px; padding: 16px 18px; }
  .game-row > div { padding: 0; }
  .game-opponent, .game-site { grid-column: 1 / -1; }
  .game-site { font-size: 16px; }

  .newsletter-band { gap: 28px; }
  .next-game-info { gap: 26px; }
}

/* Donation amount buttons — each links straight to a Stripe Payment Link */
.amount--link { text-decoration: none; display: block; }
.amount--link span { cursor: pointer; transition: border-color .15s, background .15s, color .15s; }
.amount--link:hover span { border-color: var(--blue); background: #eaf2fd; color: var(--blue); }
.amount--link:focus-visible span { outline: 3px solid var(--blue); outline-offset: 2px; }

/* ---------- small-screen fixes ---------- */

@media (max-width: 900px) {
  /* Long opponent and venue names were able to widen the schedule rows. */
  .game-row { align-items: baseline; }
  .game-opponent, .game-site, .next-game-title, .post-card h3 { overflow-wrap: anywhere; }
  .next-game-photo img { min-height: 200px; }
}

/* The header row (logo + wordmark + Donate + burger) could not fit on a
   phone and was forcing the whole page wider than the viewport. Everything
   below shrinks those pieces so the row fits at 320px and up. */
@media (max-width: 620px) {
  .header-inner { padding: 10px 14px; gap: 10px; }
  .brand { gap: 8px; }
  .brand img { height: 40px; }
  .brand-sub { font-size: 10px; letter-spacing: .1em; }
  .brand-name { font-size: 21px; }

  .mobile-bar { gap: 8px; flex: none; }
  /* Donate and the burger share one height so they line up as a pair. */
  .nav-donate {
    font-size: 18px;
    height: 46px;
    padding: 0 16px;
    margin-left: 0;
    display: inline-flex;
    align-items: center;
    border: 2px solid transparent;
  }
  .nav-burger { width: 46px; height: 46px; gap: 5px; }
  .nav-burger span { width: 22px; }

  .topbar { font-size: 12px; padding: 8px 14px; }

  .btn { font-size: 21px; padding: 15px 26px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .sponsor-actions .btn { flex: 1 1 auto; justify-content: center; }
  .footer-inner { justify-content: flex-start; }

  .next-game-title { font-size: clamp(30px, 9vw, 44px); }
  .next-game-info { gap: 20px 28px; }
  .post-card-photo { height: 180px; }
  .post-card-body { padding: 22px 22px 24px; }
  .post-card h3 { font-size: 24px; }
  .newsletter-cover { height: 200px; }
}

@media (max-width: 380px) {
  .brand-name { font-size: 18px; white-space: normal; }
  .brand img { height: 34px; }
  .nav-donate { font-size: 16px; height: 42px; padding: 0 12px; }
  .nav-burger { width: 42px; height: 42px; }
  .btn { font-size: 19px; padding: 13px 20px; }
}

/* Long unbroken strings (emails, URLs) must not widen the page. */
.side-meta-value, .contact-label + div, .info-value, .footer-inner,
.link-stack a, .link-stack span, .side-card p, .signup-list a {
  overflow-wrap: anywhere;
}

/* ---------- volunteer band + volunteer page ---------- */

.volunteer-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.volunteer-cta { display: flex; justify-content: flex-start; }
.volunteer-cta .btn { font-size: 26px; padding: 18px 34px; }

/* The sign-up list is editor-supplied HTML, so style it generically. */
.signup-list { margin-top: 26px; }
.signup-list ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.signup-list li {
  border: 2px solid var(--line);
  border-left: 6px solid var(--blue);
  border-radius: var(--radius);
  background: var(--white);
}
.signup-list li a {
  display: block;
  padding: 20px 24px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: .01em;
  text-decoration: none;
  color: var(--navy);
  overflow-wrap: anywhere;
}
.signup-list li:hover { border-color: var(--blue); background: var(--blue-pale); }
.signup-list p { color: var(--body); }

@media (max-width: 620px) {
  .volunteer-cta .btn { width: 100%; justify-content: center; font-size: 22px; }
  .signup-list li a { font-size: 20px; padding: 16px 18px; }
}

/* ---------- follow the titans band ---------- */

.social-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
.social-band h2 { color: var(--navy); }
.social-band p { color: var(--body); margin: 14px 0 0; max-width: 34em; }

.social-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); gap: 18px; }

.social-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 26px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--white);
  transition: transform .15s ease, box-shadow .15s ease;
}
.social-card svg { width: 34px; height: 34px; flex: none; }
.social-card-name {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1;
}
.social-card-go {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 15px;
  opacity: .9;
}
.social-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(10, 31, 53, .22); color: var(--white); }

.social-card--fb { background: #1877f2; }
.social-card--ig { background: linear-gradient(135deg, #833ab4 0%, #e1306c 55%, #f9a825 100%); }

@media (max-width: 620px) {
  .social-card { padding: 20px 18px; }
  .social-card-name { font-size: 24px; }
}
