/* ===================================================================
   HIRIRA — minimalist editorial theme. Warm paper background, near-
   black ink, a single high-voltage accent (signal lime — a nod to
   the flag/citation mark and to standing out inside an AI answer).
   Flat surfaces, hairline rules and ordinal numerals instead of
   boxed-shadow cards or icon-in-circle badges.
=================================================================== */

:root {
  --cream: #f7f4ee;
  --cream-2: #efe9dd;
  --paper: #fffdf9;
  --ink: #1c1a1f;
  --ink-soft: #56505a;
  --line: #e1dccc;
  --lime: #e3ff00;
  --lime-dark: #5b6600;
  --lime-tint: #f4f6ca;
  --ink-faint: #63615c;
  --paper-faint: #c9c6c0;
  --radius-lg: 10px;
  --radius-md: 6px;
  --font-display: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; line-height: 1.65; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 760px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, opacity .15s ease;
  white-space: nowrap;
}
.btn:hover { opacity: .88; }
.btn-lg { padding: 15px 30px; font-size: 16px; }

.btn-glossy {
  color: var(--ink);
  background: var(--lime);
}
.btn-glossy:hover { background: var(--ink); color: var(--lime); opacity: 1; }

.btn-outline {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); opacity: 1; }

.btn-white {
  color: var(--ink);
  background: var(--cream);
}
.btn-white:hover { background: #fff; opacity: 1; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.nav-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.logo-mark { height: 26px; width: auto; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink);
}
.nav-links {
  display: flex;
  gap: 28px;
  margin: 0 auto;
}
.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 14.5px;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); border-color: var(--lime-dark); }
.nav-cta { padding: 9px 18px; font-size: 13.5px; flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--ink); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 100px 24px 88px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.hero-inner { position: relative; z-index: 2; max-width: 740px; margin: 0 auto; }
.eyebrow {
  display: block;
  color: var(--lime-dark);
  font-weight: 600;
  letter-spacing: .1em;
  font-size: 12.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(36px, 6vw, 58px);
  color: var(--ink);
}
.holo { color: var(--lime-dark); font-style: italic; }
.hero-sub {
  color: var(--ink-soft);
  font-size: 18px;
  margin: 24px auto 0;
  max-width: 600px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.hero-microcopy { color: var(--ink-faint); font-size: 13px; margin-top: 16px; }

/* ---------- Section generic ---------- */
.section { padding: 84px 0; }
.section + .section { border-top: 1px solid var(--line); }
section[id], #contact-form { scroll-margin-top: 88px; }
.kicker {
  text-align: center;
  color: var(--lime-dark);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 14px;
}
.kicker-light { color: var(--lime); }
.section-title {
  text-align: center;
  font-size: clamp(26px, 3.6vw, 38px);
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto;
}
.section-lede {
  text-align: center;
  color: var(--ink-soft);
  font-size: 16.5px;
  max-width: 620px;
  margin: 16px auto 0;
}
.source-note {
  text-align: center;
  color: var(--ink-faint);
  font-size: 12px;
  font-style: italic;
  margin-top: 28px;
}

/* ---------- Stats: flat strip, hairline dividers, no card boxes ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-card {
  padding: 38px 24px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.stat-card:first-child { border-left: none; }
.stat-number { font-family: var(--font-display); font-size: 44px; font-weight: 600; color: var(--lime-dark); }
.stat-label { color: var(--ink-soft); font-size: 13.5px; margin-top: 10px; max-width: 220px; margin-left: auto; margin-right: auto; }

/* ---------- Definition callout (What is AEO / self-check) ---------- */
.aeo-howto {
  margin-top: 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 30px 32px;
}
.aeo-howto-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}
.aeo-howto-list { list-style: decimal; padding-left: 20px; margin: 0; }
.aeo-howto-list li { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin-bottom: 10px; }
.aeo-howto-note { color: var(--ink-faint); font-size: 12.5px; font-style: italic; margin-top: 14px; }

/* ---------- Sample finding exhibit: flat, bordered, no shadow ---------- */
.section-demo { background: var(--cream-2); }
.exhibit {
  max-width: 660px;
  margin: 44px auto 0;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 38px;
}
.exhibit-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.exhibit-client { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--ink); }
.exhibit-type { font-size: 13px; color: var(--ink-soft); margin-top: 3px; }
.exhibit-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--lime-dark); white-space: nowrap; }
.exhibit-score-row { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 26px; border: 1px solid var(--line); }
.exhibit-score { text-align: center; padding: 22px; border-left: 1px solid var(--line); }
.exhibit-score:first-child { border-left: none; }
.exhibit-score-number { display: block; font-family: var(--font-display); font-size: 38px; font-weight: 600; color: var(--ink); }
.exhibit-score-competitor .exhibit-score-number { color: var(--lime-dark); }
.exhibit-score-label { display: block; font-size: 12.5px; color: var(--ink-soft); margin-top: 6px; }
.exhibit-engines { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 26px; }
.exhibit-engine { font-size: 12.5px; font-weight: 500; color: var(--ink-soft); }
.exhibit-finding { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 28px; }
.exhibit-finding strong { color: var(--ink); }

/* ---------- Services: ordinal numerals, no icon badges, no cards ---------- */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
.pillar-item { border-top: 1px solid var(--ink); padding-top: 20px; }
.pillar-num {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--lime-dark);
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.pillar-item h3 { font-size: 17px; color: var(--ink); margin-bottom: 10px; font-weight: 600; }
.pillar-item p { color: var(--ink-soft); font-size: 14.5px; }

/* ---------- Packages ---------- */
.section-packages { background: var(--paper); }
.package-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 46px; align-items: stretch; border: 1px solid var(--line); }
.package-card {
  background: var(--paper);
  padding: 30px 24px;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 9px;
  position: relative;
}
.package-card:first-child { border-left: none; }
.package-card h3 { font-size: 16px; color: var(--ink); font-weight: 600; }
.package-price { font-family: var(--font-display); font-size: 23px; font-weight: 600; color: var(--ink); }
.package-price span { font-family: var(--font-body); font-size: 12.5px; font-weight: 500; color: var(--ink-soft); }
.package-note { font-size: 11.5px; color: var(--ink-soft); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.package-body { color: var(--ink-soft); font-size: 13.5px; flex-grow: 1; }
.package-card .btn { margin-top: 10px; }
.package-featured { background: var(--lime-tint); }
.featured-tag {
  color: var(--lime-dark); font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 2px;
}
.package-footnote { text-align: center; color: var(--ink-soft); font-size: 13px; margin-top: 32px; }

/* ---------- Process: numerals, no circle badges ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.process-step { padding-right: 8px; }
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--lime-dark);
  margin-bottom: 14px;
}
.process-step h3 { font-size: 15.5px; color: var(--ink); margin-bottom: 8px; font-weight: 600; }
.process-step p { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Why ---------- */
.section-why { background: var(--ink); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.why-item { border-top: 1px solid rgba(255,255,255,.18); padding-top: 20px; }
.why-item h3 { color: #fff; font-size: 16.5px; margin-bottom: 10px; font-weight: 600; }
.why-item p { color: var(--paper-faint); font-size: 14px; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 38px; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 4px; font-family: var(--font-body); font-weight: 600; font-size: 15.5px;
  color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-icon { font-family: var(--font-display); color: var(--lime-dark); font-size: 18px; transition: transform .2s ease; flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-answer p { padding: 0 4px 20px; color: var(--ink-soft); font-size: 14.5px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--ink);
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { font-size: clamp(24px, 3.6vw, 32px); margin-bottom: 14px; color: #fff; }
.cta-banner p { color: var(--paper-faint); font-size: 16px; max-width: 540px; margin: 0 auto 28px; }

/* ---------- Contact form (inside cta-banner) ---------- */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form .form-field { margin-bottom: 16px; }
.contact-form label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--paper-faint);
  margin-bottom: 6px;
}
.contact-form .form-required { color: var(--lime); }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  transition: border-color .15s ease, background .15s ease;
}
.contact-form textarea { min-height: 84px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.55); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--lime);
  background: rgba(255,255,255,.1);
}
.contact-form select option { color: var(--ink); }
.contact-form select.form-field-flash { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(227,255,0,.25); }
.contact-form textarea { resize: vertical; }
.contact-form .form-honeypot { position: absolute; left: -9999px; opacity: 0; }
.contact-form .btn { width: 100%; margin-top: 4px; }
.contact-form .btn[disabled] { opacity: .6; cursor: not-allowed; }
.form-status {
  margin-top: 12px;
  font-size: 14px;
  min-height: 20px;
}
.form-status.is-success { color: var(--lime); }
.form-status.is-error { color: #ff9d9d; }
.form-fallback {
  text-align: center;
  color: var(--paper-faint);
  font-size: 13.5px;
  margin-top: 20px;
}
.form-fallback a { color: var(--lime); }
@media (max-width: 640px) {
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--cream-2); padding: 56px 0 24px; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.logo-footer { margin-bottom: 14px; }
.footer-tag { color: var(--ink-soft); font-size: 13.5px; max-width: 300px; line-height: 1.6; }
.footer-tag-small { margin-top: 10px; font-size: 12.5px; color: var(--ink-faint); }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: var(--ink-soft); font-size: 14px; transition: color .15s ease; }
.footer-links a:hover { color: var(--lime-dark); }
.footer-cta-col .footer-contact-email a { color: var(--ink); font-size: 14.5px; font-weight: 600; }
.footer-cta-col .footer-contact-email { margin-bottom: 14px; }
.btn-footer { width: 100%; padding: 11px 18px; font-size: 13.5px; }
.footer-response-note { color: var(--ink-faint); font-size: 12px; margin-top: 12px; }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { color: var(--ink-faint); font-size: 12px; }
.footer-bottom-links a { color: var(--ink-faint); transition: color .15s ease; }
.footer-bottom-links a:hover { color: var(--lime-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; gap: 30px; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-card { border-left: none; border-top: 1px solid var(--line); }
  .stat-card:first-child { border-top: none; }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .package-card:nth-child(2) { border-left: 1px solid var(--line); }
  .package-card:nth-child(3) { border-left: none; border-top: 1px solid var(--line); }
  .package-card:nth-child(4) { border-top: 1px solid var(--line); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ===================================================================
   MOBILE (phones + small tablets), rebuilt for reading comfort:
   - body text no smaller than 16px (avoids squinting/zooming, the
     single biggest driver of "hard to read" on a phone)
   - line-height opened up to ~1.7 for easier line-to-line tracking
   - every tappable element sized to at least 44-48px (Fitts's law,
     thumb-reach, fewer mis-taps)
   - more air between stacked blocks so one idea is visible/parsed
     at a time, instead of everything reading as one dense column
   - hero trimmed so the headline + CTA are reachable without a
     long blind scroll (reduce cost of the first action)
=================================================================== */
@media (max-width: 760px) {
  html { -webkit-text-size-adjust: 100%; }
  body { font-size: 16px; }

  .container { padding: 0 22px; }

  /* ---- Nav: full-width tap targets, roomy dropdown ---- */
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; padding: 10px 22px 20px;
    gap: 2px; border-bottom: 1px solid var(--line); max-height: 75vh; overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; padding: 10px; margin-left: auto; }
  .nav-cta { display: none; }
  .nav-links a { display: block; padding: 14px 4px; font-size: 16.5px; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child a { border-bottom: none; }

  /* ---- Nav on blog / legal pages: logo + "All Guides" + "Get a Free Check"
     don't fit one row on narrow phones and were pushing off-screen.
     Wrap onto a second row instead of overflowing. Only affects pages
     using .legal-back-btn (blog articles, blog hub, privacy, terms) —
     the homepage's hamburger nav is untouched. ---- */
  .nav-wrap:has(.legal-back-btn) {
    flex-wrap: wrap;
    row-gap: 8px;
    justify-content: center;
    padding: 14px 20px;
  }
  .nav-wrap:has(.legal-back-btn) .logo { flex: 1 1 100%; justify-content: center; }
  .legal-back-btn { font-size: 12.5px; padding: 7px 12px; white-space: nowrap; }

  /* ---- Hero: trimmed so headline + CTA sit higher, easy first read ---- */
  .hero { padding: 52px 22px 60px; }
  .eyebrow { font-size: 12px; margin-bottom: 16px; }
  .hero-title { font-size: 34px; line-height: 1.18; }
  .hero-sub { font-size: 16.5px; line-height: 1.6; margin-top: 18px; }
  .hero-ctas { flex-direction: column; width: 100%; gap: 12px; margin-top: 28px; }
  .hero-ctas .btn { width: 100%; min-height: 50px; font-size: 16px; }
  .hero-microcopy { font-size: 13.5px; }

  /* ---- Section rhythm: generous but not bloated ---- */
  .section { padding: 52px 0; }
  .kicker { font-size: 12px; margin-bottom: 12px; }
  .section-title { font-size: 26px; line-height: 1.25; padding: 0 4px; }
  .section-lede { font-size: 16px; line-height: 1.65; margin-top: 14px; padding: 0 4px; }

  /* ---- Stats: bigger tap-free reading, clear number/label pairing ---- */
  .stat-grid { margin-top: 36px; }
  .stat-card { padding: 30px 20px; }
  .stat-number { font-size: 38px; }
  .stat-label { font-size: 14.5px; line-height: 1.55; max-width: none; }
  .source-note { font-size: 12.5px; line-height: 1.6; padding: 0 8px; }

  /* ---- Exhibit card: more breathing room, single-column score ---- */
  .exhibit { padding: 26px 20px; margin-top: 32px; }
  .exhibit-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .exhibit-client { font-size: 18px; }
  .exhibit-score-row { grid-template-columns: 1fr; margin-bottom: 22px; }
  .exhibit-score { border-left: none; border-top: 1px solid var(--line); padding: 20px; }
  .exhibit-score:first-child { border-top: none; }
  .exhibit-score-number { font-size: 34px; }
  .exhibit-score-label { font-size: 13.5px; }
  .exhibit-engines { gap: 10px 18px; }
  .exhibit-engine { font-size: 13.5px; }
  .exhibit-finding { font-size: 15px; line-height: 1.65; }
  .exhibit .btn { width: 100%; min-height: 48px; }

  /* ---- Services / Process: readable body copy, clear separation ---- */
  .pillar-grid { gap: 34px; }
  .pillar-item h3 { font-size: 18px; }
  .pillar-item p { font-size: 15.5px; line-height: 1.65; }
  .process-grid { grid-template-columns: 1fr; gap: 30px; }
  .step-num { font-size: 24px; margin-bottom: 10px; }
  .process-step h3 { font-size: 16.5px; }
  .process-step p { font-size: 15px; line-height: 1.6; }

  /* ---- Packages: single column, roomy cards, full-width CTAs ---- */
  .package-grid { grid-template-columns: 1fr; margin-top: 34px; }
  .package-card { border-left: none !important; border-top: 1px solid var(--line); padding: 26px 22px; gap: 10px; }
  .package-card:first-child { border-top: none; }
  .package-card h3 { font-size: 17.5px; }
  .package-price { font-size: 25px; }
  .package-body { font-size: 14.5px; line-height: 1.6; }
  .package-card .btn { min-height: 48px; margin-top: 6px; }
  .package-footnote { font-size: 13px; padding: 0 8px; }

  /* ---- Why: darker section, same comfort rules apply ---- */
  .why-grid { gap: 26px; }
  .why-item h3 { font-size: 17.5px; }
  .why-item p { font-size: 15px; line-height: 1.6; }

  /* ---- FAQ: full-width tap target on the whole question row ---- */
  .faq-question { padding: 18px 4px; font-size: 16px; line-height: 1.4; }
  .faq-answer p { font-size: 15px; line-height: 1.65; padding-right: 8px; }

  /* ---- CTA banner ---- */
  .cta-banner { padding: 44px 24px; }
  .cta-banner h2 { font-size: 24px; line-height: 1.3; }
  .cta-banner p { font-size: 15.5px; line-height: 1.6; }
  .cta-banner .btn { width: 100%; min-height: 50px; }

  /* ---- Footer: single column, roomy tap targets, easy thumb scroll ---- */
  .footer-grid { grid-template-columns: 1fr; gap: 34px; text-align: left; margin-top: 4px; }
  .footer-brand { grid-column: auto; }
  .footer-tag { font-size: 14.5px; max-width: none; }
  .footer-col-title { margin-bottom: 12px; margin-top: 6px; }
  .footer-links { gap: 4px; }
  .footer-links a { display: block; padding: 10px 0; font-size: 15.5px; }
  .footer-cta-col .footer-contact-email a { font-size: 15.5px; }
  .btn-footer { min-height: 48px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; padding-top: 26px; }
  .footer-bottom p, .footer-bottom-links a { font-size: 13px; }
}

/* ---------- Small phones: keep hierarchy, avoid cramped edges ---------- */
@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .hero { padding: 46px 18px 54px; }
  .hero-title { font-size: 29px; }
  .hero-sub { font-size: 16px; }
  .section-title { font-size: 23px; }
  .section-lede { font-size: 15.5px; }
  .stat-number { font-size: 32px; }
  .exhibit-score-number { font-size: 28px; }
  .exhibit { padding: 22px 16px; }
  .btn-lg { padding: 14px 20px; font-size: 15.5px; }
}
