/* MMH Design System tokens (colors, type, spacing, shadows, motion) */
@import url('tokens.css');

:root {
  /* Back-compat aliases → mapped to MMH Design System tokens */
  --bg:        var(--mmh-white);
  --bg-light:  var(--mmh-bone);
  --bg-card:   var(--mmh-white);
  --bg-beige:  #E8DEC6;          /* warm cream for Stories section */
  --ink:       var(--mmh-black);
  --ink-2:     var(--mmh-graphite);
  --ink-3:     var(--mmh-steel);
  --rule:      var(--mmh-cloud);
  --dark:      var(--mmh-black);
  --dark-2:    var(--mmh-ink);
  --accent:    var(--mmh-gold);
  --sans:      var(--font-body);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg-1);
  color: var(--fg-2);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Headlines always Montserrat (display font) */
h1, h2, h3, h4, h5, h6,
.section-title,
.hero-intro h1,
.hero-kicker,
.pain-body h2,
.path-text h3,
.pricing-aside h2,
.plan h3,
.offer-num,
.offer-title,
.plan-kicker,
.faq-q,
.stories-cta .btn-dark-stack {
  font-family: var(--font-display);
  letter-spacing: var(--tracking-tight);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* ─── Buttons ─── */
.btn-dark, .btn-muted, .btn-light, .btn-dark-stack {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 2px;
  transition: opacity .2s;
  text-align: center;
}
.btn-dark { background: var(--dark); color: #fff; }
.btn-muted { background: oklch(0.72 0.01 70); color: #fff; }
.btn-light { background: #fff; color: var(--ink); border: 1px solid var(--ink); }
.btn-dark:hover, .btn-muted:hover, .btn-light:hover, .btn-dark-stack:hover { opacity: 0.88; }
.btn-dark-stack {
  background: var(--dark); color: #fff;
  flex-direction: column; gap: 2px; padding: 14px 28px;
}
.btn-dark-stack .top { font-weight: 500; font-size: 14px; }
.btn-dark-stack .sub { font-size: 12px; opacity: 0.8; }

/* ─── Nav ─── */
.nav {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 90px;
}
.brand-logo { display: flex; align-items: center; gap: 10px; }
.brand-logo-img { height: 60px; width: auto; display: block; }
.footer-logo-img { height: 160px; width: auto; display: block; }

.nav-links { display: flex; gap: 32px; align-items: center; font-size: 13px; }
.nav-social { display: flex; gap: 18px; align-items: center; color: var(--ink); }
.nav-social a {
  display: grid; place-items: center;
  width: 32px; height: 32px;
  transition: opacity .2s;
}
.nav-social a:hover { opacity: 0.6; }

@media (max-width: 960px) {
  .nav-links { display: none; }
}

/* ─── Hero ─── */
.hero { padding: 48px 0 72px; background: var(--bg); }
.hero-intro { text-align: center; max-width: 860px; margin: 0 auto 56px; padding: 0 24px; }
.hero-intro h1 {
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 18px;
  color: var(--ink);
}
.hero-intro p {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) { .hero-split { grid-template-columns: 1fr; gap: 40px; } }

.hero-bullets {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-bullets li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.hero-bullets li strong { color: var(--ink); font-weight: 600; }
.chk { color: var(--ink); margin-top: 2px; }

.hero-kicker {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 24px;
  color: var(--ink);
}
.hero-cta { width: 100%; max-width: 380px; }

.hero-right { padding-top: 8px; }
.hero-photo {
  width: 100%;
  overflow: hidden;
  background: var(--bg-light);
  aspect-ratio: 5/4;
}
.hero-photo-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.placeholder-svg { width: 100%; height: 100%; display: block; }

/* ─── Pain ─── */
.pain-section { padding: 72px 0; background: var(--bg); }
.pain-card {
  background: var(--bg-light);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) { .pain-card { grid-template-columns: 1fr; padding: 32px; gap: 32px; } }
.pain-photo { aspect-ratio: 4/5; overflow: hidden; }
.pain-photo-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pain-body h2 {
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 28px;
  color: var(--ink);
}
.pain-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pain-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 14px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  align-items: start;
}
.pain-list .x {
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
}
.pain-closer {
  margin: 28px 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
}

/* ─── Section title shared ─── */
.section-title {
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  margin: 0 0 24px;
  color: var(--ink);
}
.section-title.light { color: #fff; }
.section-lede {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 auto 32px;
  max-width: 720px;
}
.section-lede.center { text-align: center; }
.section-lede.light { color: rgba(255,255,255,0.78); }
.mentor-point { display: inline-flex; gap: 6px; align-items: center; }

/* ─── Offer (dark) ─── */
.offer-section {
  position: relative;
  padding: 88px 0;
  background: var(--dark);
  overflow: hidden;
}
.offer-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(18,20,30,0.75), rgba(18,20,30,0.78)), url('assets/offer-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
}
.offer-section .container { position: relative; z-index: 1; }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 860px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .offer-grid { grid-template-columns: 1fr; } }
.offer-card {
  background: #fff;
  padding: 32px 28px;
  min-height: 220px;
  display: flex; flex-direction: column;
  gap: 18px;
}
.offer-num {
  font-size: 40px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.offer-title { font-size: 16px; font-weight: 600; color: var(--ink); }
.offer-desc { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; margin-top: auto; }

.offer-cta { text-align: center; margin-top: 44px; }

/* ─── Path (dark, zig-zag) ─── */
.path-section {
  position: relative;
  padding: 88px 0 0;
  background: var(--dark);
  overflow: hidden;
}
.path-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,20,30,0.75), rgba(18,20,30,0.85)),
    repeating-linear-gradient(35deg, oklch(0.28 0.03 220) 0 14px, oklch(0.22 0.02 220) 14px 28px);
  opacity: 1;
}
.path-inner { position: relative; z-index: 1; }
.path-lede {
  color: rgba(255,255,255,0.80);
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 auto 72px;
  max-width: 820px;
}

.path-steps {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0 40px;
}
.path-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.25);
  transform: translateX(-0.5px);
}
.path-row {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
  gap: 24px;
  padding: 40px 0;
  position: relative;
}
.path-node {
  width: 44px; height: 44px;
  background: var(--dark-2);
  color: #fff;
  display: grid; place-items: center;
  font-size: 16px; font-weight: 600;
  justify-self: center;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.2);
  position: relative; z-index: 1;
}
.path-text { color: #fff; }
.path-left .path-text { text-align: right; grid-column: 1; }
.path-right .path-text { text-align: left; grid-column: 3; }
.path-text h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  margin: 0 0 12px;
  color: #fff;
}
.path-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 760px) {
  .path-row { grid-template-columns: 44px 1fr; gap: 20px; padding: 24px 0; }
  .path-line { left: 22px; }
  .path-node { grid-column: 1; }
  .path-left .path-text, .path-right .path-text { grid-column: 2; text-align: left; }
}

.path-cta {
  padding: 72px 0;
  background: var(--dark);
  text-align: center;
  position: relative;
  z-index: 2;
}

/* ─── Mentors ─── */
.mentors-section { padding: 88px 0; background: var(--bg-light); }
.mentors-divider {
  border-top: 1px solid var(--rule);
  max-width: 600px;
  margin: 40px auto 64px;
}
.mentors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 20px;
  align-items: start;
}
@media (max-width: 640px) { .mentors-grid { grid-template-columns: repeat(2, 1fr); } }
.mentor { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.mentor-photo { aspect-ratio: 3/4; overflow: hidden; background: #fff; width: 100%; }
.mentor-photo-img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; display: block; }
.mentor-photo-empty { display: none; }
.mentor-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.mentor-photo + .mentor-name { border-top: none; padding-top: 0; margin-top: 0; }
.mentor-role { font-size: 13px; color: var(--ink-2); }

.mentors-cta { text-align: center; margin-top: 64px; }

/* ─── Stories (beige) ─── */
.stories-section { padding: 88px 0; background: var(--bg-beige); color: var(--ink); }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 980px) { .stories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stories-grid { grid-template-columns: 1fr; } }

.story-video { position: relative; }
.video-thumb {
  display: block;
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  transition: transform .2s;
}
.video-thumb:hover { transform: translateY(-2px); }
.video-thumb:hover .play-btn svg circle { fill: rgba(255,255,255,0.95); }
.video-thumb > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.play-btn svg {
  width: 60px;
  height: 60px;
  display: block;
}
.video-tag {
  position: absolute;
  bottom: 10px; left: 10px;
  color: #fff;
  font-size: 11px;
  font-family: system-ui, sans-serif;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  pointer-events: none;
}

.story-quote-card {
  background: oklch(0.82 0.02 70);
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 20px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink);
}
.quote-text { margin: 0; white-space: pre-line; }
.quote-attr { margin-top: auto; padding-top: 16px; }
.qa-name { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--ink); }
.qa-sub { font-size: 12px; color: var(--ink-3); font-style: italic; margin-top: 2px; }

.stories-cta { text-align: center; margin-top: 48px; }

/* ─── Kunden (2x2 text cards) ─── */
.kunden-section { padding: 88px 0; background: var(--bg); }
.kunden-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 860px) { .kunden-grid { grid-template-columns: 1fr; } }

.kunde-card {
  background: #fff;
  padding: 28px 28px 36px;
  display: flex; flex-direction: column; gap: 20px;
}
.kunde-head {
  display: flex; gap: 14px; align-items: center;
}
.kunde-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.kunde-avatar-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kunde-name { font-size: 14px; color: var(--ink-2); }
.kunde-title { font-size: 14px; font-weight: 600; color: var(--ink); }
.kunde-body { font-size: 13.5px; line-height: 1.55; color: var(--ink-2); }
.kunde-body p { margin: 0 0 14px; }
.kunde-body p:last-child { margin: 0; }

.kunden-cta { text-align: center; margin-top: 48px; }

/* ─── Pricing ─── */
.pricing-section { padding: 88px 0; background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; gap: 28px; } }

.pricing-aside h2 {
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--ink);
}
.pricing-aside p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 28px;
}
.proof { display: flex; gap: 14px; align-items: center; }
.proof-avatars { display: flex; }
.proof-avatars > div {
  width: 36px; height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.proof-avatars > div:first-child { margin-left: 0; }
.proof-avatars svg, .proof-avatars img { width: 100%; height: 100%; display: block; object-fit: cover; }
.proof-stars { color: var(--ink-3); letter-spacing: 3px; font-size: 12px; }
.proof-rate { font-size: 12px; color: var(--ink-2); margin-top: 2px; }

.plan {
  padding: 32px 28px;
  display: flex; flex-direction: column;
  min-height: 520px;
}
.plan-light { background: var(--bg-light); color: var(--ink); }
.plan-dark  { background: var(--dark); color: #fff; }
.plan-kicker {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.plan-kicker.light { color: rgba(255,255,255,0.8); }
.plan h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 2px 0 24px;
  line-height: 1.25;
}
.plan-dark h3 { color: #fff; }
.plan .sparkle { font-size: 18px; }
.plan-desc {
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0 0 24px;
  color: inherit;
  opacity: 0.8;
}
.plan-cta {
  display: flex; width: 100%; margin: 0 0 24px;
  padding: 14px 20px; font-size: 14px;
}
.plan-feats {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
  font-size: 13.5px;
}
.plan-feats li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; }
.plan-feats .arr { color: inherit; opacity: 0.6; }
.plan-dark .plan-feats strong { color: #fff; }
.plan-light .plan-feats strong { color: var(--ink); }

/* ─── FAQ (dark) ─── */
.faq-section { padding: 88px 0; background: var(--dark); color: #fff; }
.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
  border-top: 1px solid rgba(255,255,255,0.22);
}
.faq-row { border-bottom: 1px solid rgba(255,255,255,0.22); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  padding: 24px 0;
  font-size: 17px;
  color: #fff;
  text-align: left;
  font-weight: 400;
}
.faq-tog { font-size: 20px; font-weight: 300; opacity: 0.8; }
.faq-a-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-row.open .faq-a-wrap { max-height: 1600px; }
.faq-a {
  padding: 0 0 24px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
}
.faq-a p { margin: 0 0 14px; }
.faq-a p:last-child { margin: 0; }
.faq-a strong { color: #fff; }

.faq-cta { text-align: center; margin-top: 48px; }

/* ─── Footer ─── */
.footer {
  padding: 72px 0 40px;
  background: var(--bg);
  color: var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h5 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 20px;
  color: var(--ink);
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14px; color: var(--ink-2);
}
.footer-col a:hover { color: var(--ink); }

.footer-socials { display: flex; gap: 14px; margin-top: 20px; font-size: 16px; color: var(--ink-2); }

.footer-contact {
  display: flex; gap: 14px; align-items: center;
  margin-bottom: 20px;
}
.fc-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
}
.fc-avatar svg, .fc-avatar img { width: 100%; height: 100%; display: block; object-fit: cover; }
.fc-name { font-size: 14px; color: var(--ink); }
.fc-role { font-size: 13px; color: var(--ink-2); }
.footer-cta { padding: 12px 24px; font-size: 13px; }

.footer-rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 16px 0 24px;
}
.footer-legal {
  font-size: 11px;
  line-height: 1.6;
  color: var(--ink-3);
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (iPad portrait ≤ 1024 px)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .offer-section  { padding: 72px 0; }
  .path-section   { padding: 72px 0 0; }
  .path-cta       { padding: 56px 0; }
  .mentors-section,
  .kunden-section,
  .stories-section,
  .pricing-section,
  .faq-section    { padding: 72px 0; }

  .mentors-grid { grid-template-columns: repeat(3, 1fr); }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 640 px)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Container */
  .container { padding: 0 16px; }

  /* ── Nav ── */
  .nav-inner       { height: 64px; }
  .brand-logo-img  { height: 44px; }
  .nav-social      { gap: 10px; }
  .nav-social a    { width: 26px; height: 26px; }

  /* ── Hero ── */
  .hero { padding: 28px 0 44px; }
  .hero-intro      { margin-bottom: 32px; }
  .hero-intro h1   { font-size: 22px; line-height: 1.3; }
  .hero-intro p    { font-size: 14px; }
  .hero-kicker     { font-size: 18px; }
  .hero-cta        { max-width: 100%; }
  .hero-bullets li { font-size: 14px; }

  /* ── Shared sections ── */
  .pain-section    { padding: 48px 0; }
  .mentors-section { padding: 48px 0; }
  .kunden-section  { padding: 48px 0; }
  .pricing-section { padding: 48px 0; }
  .offer-section   { padding: 52px 0; }
  .path-section    { padding: 52px 0 0; }
  .path-cta        { padding: 48px 0; }
  .stories-section { padding: 52px 0; }
  .faq-section     { padding: 52px 0; }
  .footer          { padding: 44px 0 24px; }

  .section-title   { font-size: 26px; }
  .section-lede    { font-size: 14px; }

  /* ── Buttons ── */
  .btn-dark, .btn-muted, .btn-light {
    padding: 14px 28px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
  .btn-dark-stack { width: auto; }  /* keep narrow in nav/cta row */

  /* ── Pain ── */
  .pain-card       { padding: 24px 20px; }
  .pain-body h2    { font-size: 22px; margin-bottom: 20px; }
  .pain-list li    { font-size: 14px; }
  .pain-closer     { font-size: 14px; }

  /* ── Offer ── */
  .offer-grid      { margin-top: 32px; gap: 12px; }
  .offer-card      { padding: 24px 20px; min-height: auto; }
  .offer-num       { font-size: 32px; }

  /* ── Path ── */
  .path-lede       { font-size: 13.5px; margin-bottom: 48px; }

  /* ── Mentors ── */
  .mentors-grid    { grid-template-columns: repeat(2, 1fr); gap: 12px 14px; }
  .mentors-divider { margin: 28px auto 44px; }
  .mentors-cta     { margin-top: 44px; }

  /* ── Stories ── */
  .stories-grid    { grid-template-columns: 1fr; gap: 14px; }
  .story-quote-card{ padding: 22px; }

  /* ── Kunden ── */
  .kunden-grid     { gap: 14px; }
  .kunde-card      { padding: 22px 20px 28px; }

  /* ── Pricing ── */
  .plan            { min-height: auto; padding: 28px 22px; }
  .proof           { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* ── FAQ ── */
  .faq-q           { font-size: 15px; padding: 18px 0; }
  .faq-a           { font-size: 13.5px; }

  /* ── Footer ── */
  .footer-grid     { gap: 28px; }
  .footer-logo-img { height: 100px; }
  .footer-col h5   { font-size: 14px; margin-bottom: 14px; }
  .footer-col ul   { font-size: 13px; gap: 10px; }
  .footer-legal    { font-size: 10.5px; }
}
