/* ============================================================
   EEMS — Variant 1 · Professional
   Licht, editorial, klassiek-premium.
   Fonts: Clash Display + General Sans (Fontshare)
   Radius-systeem: 10px zacht. Accent: ember, gelockt.
   ============================================================ */

:root {
  --paper: #fbfaf8;
  --paper-2: #f3f1ec;
  --white: #ffffff;
  --text: #1d1f24;
  --text-soft: #4c5056;
  --muted: #7c8087;
  --line: rgba(29, 31, 36, 0.1);
  --line-strong: rgba(29, 31, 36, 0.22);
  --accent: #c2411f;
  --accent-dark: #a83618;
  --accent-soft: rgba(194, 65, 31, 0.08);
  --dark: #16181c;
  --dark-text: #eceae5;

  --font-display: "Clash Display", "Arial Narrow", sans-serif;
  --font-body: "General Sans", "Segoe UI", sans-serif;

  --step-hero: clamp(2.8rem, 6.5vw, 5.4rem);
  --step-1: clamp(2rem, 4vw, 3.2rem);
  --step-2: clamp(1.5rem, 2.6vw, 2.1rem);

  --space-section: clamp(4.5rem, 9vw, 8rem);
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 10px;
  --shadow: 0 18px 50px -18px rgba(29, 31, 36, 0.18);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 200;
  background: var(--accent); color: #fff;
  padding: 0.6rem 1rem; border-radius: var(--radius); font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.wrap { max-width: 1280px; margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--space-section); }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.h-hero { font-size: var(--step-hero); font-weight: 600; }
.h-1 { font-size: var(--step-1); }
.h-2 { font-size: var(--step-2); }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.25rem); color: var(--text-soft); max-width: 36em; }
.body-copy { color: var(--text-soft); max-width: 62ch; }
.center { text-align: center; }
.center .lead, .center .body-copy { margin-inline: auto; }
.kicker {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 0.9rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 1rem 1.6rem; border-radius: var(--radius);
  transition: transform 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.985); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px -10px rgba(194, 65, 31, 0.5); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--text); }
.btn-light { background: var(--white); color: var(--text); border: 1px solid var(--line); }
.btn-light:hover { border-color: var(--line-strong); }
.btn-wa { background: #1faf5a; color: #fff; }
.btn-wa:hover { background: #17994d; }
.btn-lg { padding: 1.2rem 2rem; font-size: 1.05rem; }
.btn .btn-arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(251, 250, 248, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; max-width: 1380px;
}
.site-header.is-scrolled {
  background: rgba(251, 250, 248, 0.92);
  border-color: var(--line);
}
.brand {
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  display: inline-flex; align-items: baseline; gap: 0.5rem;
}
.brand small {
  font-family: var(--font-body); font-weight: 500; font-size: 0.6rem;
  letter-spacing: 0.2em; color: var(--muted);
}
.nav-desktop { display: flex; align-items: center; gap: 1.8rem; }
.nav-desktop a:not(.btn) {
  font-size: 0.95rem; font-weight: 500; color: var(--text-soft);
  transition: color 0.2s; padding-block: 0.3rem; position: relative;
}
.nav-desktop a:not(.btn):hover,
.nav-desktop a[aria-current="page"] { color: var(--text); }
.nav-desktop a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease-out);
}
.nav-desktop a:not(.btn):hover::after,
.nav-desktop a[aria-current="page"]::after { transform: scaleX(1); }
.nav-desktop .btn { padding: 0.7rem 1.25rem; font-size: 0.92rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text); transition: transform 0.3s var(--ease-out), opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 90; background: var(--paper);
  display: flex; flex-direction: column; justify-content: center; padding: var(--gutter);
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.nav-mobile.is-open { opacity: 1; visibility: visible; }
.nav-mobile a:not(.btn) {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.8rem, 7vw, 2.6rem); line-height: 1.45; color: var(--text);
}
.nav-mobile a[aria-current="page"] { color: var(--accent); }
.nav-mobile .btn { margin-top: 1.8rem; align-self: flex-start; }

/* ---------- hero ---------- */
.hero {
  padding-top: clamp(7rem, 14vh, 9.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.hero-copy .lead { margin-top: 1.4rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-media { position: relative; }
.hero-media img {
  border-radius: calc(var(--radius) * 1.6);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 4.6; object-fit: cover; width: 100%;
}
.hero-badge {
  position: absolute; left: -1.2rem; bottom: 2rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 0.9rem 1.2rem; display: flex; align-items: center; gap: 0.8rem;
  max-width: 260px;
}
.hero-badge svg { color: var(--accent); flex: none; }
.hero-badge p { font-size: 0.88rem; line-height: 1.45; color: var(--text-soft); }
.hero-badge strong { color: var(--text); display: block; font-size: 0.92rem; }

/* ---------- diensten ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.4rem;
  margin-top: clamp(2.2rem, 4vw, 3.5rem);
}
.service-card {
  border-radius: calc(var(--radius) * 1.4); overflow: hidden;
  background: var(--white); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card--train { grid-column: span 7; }
.service-card--herstel { grid-column: span 5; }
.service-card--massage { grid-column: span 5; }
.service-card--clash { grid-column: span 7; }
.service-media { overflow: hidden; aspect-ratio: 16 / 8.5; }
.service-card--herstel .service-media, .service-card--massage .service-media { aspect-ratio: 16 / 9.8; }
.service-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.service-card:hover .service-media img { transform: scale(1.045); }
.service-body { padding: clamp(1.3rem, 2.5vw, 1.9rem); display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.service-body h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
.service-body p { color: var(--text-soft); font-size: 0.98rem; }
.service-link {
  margin-top: auto; padding-top: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.95rem; color: var(--accent);
}
.service-link svg { transition: transform 0.3s var(--ease-out); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ---------- usp band ---------- */
.usp-band { background: var(--paper-2); border-block: 1px solid var(--line); }
.usp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.usp { display: grid; gap: 0.5rem; }
.usp svg { color: var(--accent); }
.usp h3 { font-size: 1.15rem; }
.usp p { color: var(--text-soft); font-size: 0.96rem; }

/* ---------- over / coach ---------- */
.coach-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 6vw, 5.5rem); align-items: center;
}
.coach-grid img { border-radius: calc(var(--radius) * 1.6); box-shadow: var(--shadow); width: 100%; }
.coach-quote {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem); line-height: 1.35;
  border-left: 3px solid var(--accent); padding-left: 1.2rem;
  margin-block: 1.5rem;
}

/* ---------- dark quote band ---------- */
.quote-band {
  background: var(--dark); color: var(--dark-text);
  text-align: center; padding-block: clamp(4.5rem, 9vw, 7.5rem);
  position: relative; overflow: clip;
}
.quote-band blockquote {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 3.2vw, 2.6rem); line-height: 1.3;
  max-width: 21em; margin-inline: auto;
}
.quote-band blockquote::before { content: "\201C"; color: var(--accent); }
.quote-band blockquote::after { content: "\201D"; color: var(--accent); }
.quote-band figcaption { margin-top: 1.5rem; color: rgba(236, 234, 229, 0.6); font-size: 0.95rem; }
.quote-band figcaption strong { color: var(--dark-text); }

/* ---------- steps ---------- */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: clamp(2.2rem, 4vw, 3.5rem);
}
.steps-grid--4 { grid-template-columns: repeat(4, 1fr); }
.step {
  background: var(--white); border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.4);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.step-num {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  color: var(--accent); margin-bottom: 0.9rem; display: block;
}
.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step p { color: var(--text-soft); font-size: 0.97rem; }

/* ---------- reviews ---------- */
.review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem; margin-top: clamp(2.2rem, 4vw, 3.5rem);
}
.review-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.4);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex; flex-direction: column; gap: 1.1rem;
}
.review-stars { display: flex; gap: 3px; color: var(--accent); }
.review-card p { color: var(--text-soft); font-size: 0.99rem; flex: 1; }
.review-who { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-weight: 700; font-size: 0.85rem;
}
.review-who strong { display: block; font-size: 0.95rem; line-height: 1.3; }
.review-who span { font-size: 0.83rem; color: var(--muted); }
.review-featured { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 2rem; background: var(--paper-2); }
.review-featured p {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.35; color: var(--text);
}
.reviews-note { margin-top: 1.6rem; font-size: 0.85rem; color: var(--muted); }

/* ---------- page hero (subpages) ---------- */
.page-hero { padding-top: clamp(7.5rem, 13vh, 9.5rem); padding-bottom: 0; }
.page-hero .lead { margin-top: 1.2rem; }
.page-hero-media { margin-top: clamp(2rem, 5vw, 3.5rem); }
.page-hero-media img {
  width: 100%; border-radius: calc(var(--radius) * 1.6);
  box-shadow: var(--shadow); aspect-ratio: 21 / 9.5; object-fit: cover;
}

/* ---------- split ---------- */
.split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.split img { border-radius: calc(var(--radius) * 1.6); box-shadow: var(--shadow); width: 100%; }
.split--flip > *:first-child { order: 2; }

/* ---------- checklist ---------- */
.check-list { display: grid; gap: 0.9rem; margin-top: 1.6rem; }
.check-list li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--text-soft); }
.check-list svg { flex: none; color: var(--accent); margin-top: 0.3rem; }

/* ---------- faq ---------- */
.faq-list { max-width: 780px; margin-inline: auto; margin-top: clamp(2rem, 4vw, 3rem); }
.faq-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); margin-bottom: 0.8rem;
  transition: box-shadow 0.3s;
}
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 1.4rem; cursor: pointer; list-style: none;
  font-weight: 600; font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { flex: none; width: 12px; height: 12px; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--accent); inset: 0; margin: auto;
  transition: transform 0.3s var(--ease-out);
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }
.faq-body { padding: 0 1.4rem 1.3rem; color: var(--text-soft); }
.faq-cat {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin: 2.2rem 0 1rem;
}
.faq-list .faq-cat:first-child { margin-top: 0; }

/* ---------- contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 5vw, 5rem); align-items: start;
}
.contact-channels { display: grid; gap: 0.9rem; margin-top: 1.8rem; }
.contact-channel {
  display: flex; align-items: center; gap: 1rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.05rem 1.25rem;
  transition: border-color 0.25s, transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.contact-channel:hover { border-color: var(--line-strong); transform: translateX(3px); box-shadow: var(--shadow); }
.contact-channel svg { flex: none; color: var(--accent); }
.contact-channel.channel-wa svg { color: #1faf5a; }
.contact-channel strong { display: block; font-size: 0.98rem; }
.contact-channel span { font-size: 0.86rem; color: var(--muted); }

.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.4); box-shadow: var(--shadow);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
}
.field { display: grid; gap: 0.4rem; margin-bottom: 1.15rem; }
.field label { font-weight: 600; font-size: 0.94rem; }
.field input, .field select, .field textarea {
  background: var(--paper); border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius) * 0.8); color: var(--text);
  padding: 0.85rem 1rem; font: inherit; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.field .field-error { display: none; color: #b3391a; font-size: 0.85rem; }
.field.has-error input, .field.has-error select { border-color: #b3391a; }
.field.has-error .field-error { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.88rem; color: var(--muted); margin-top: 1rem; }
.form-success {
  display: none; text-align: center; padding: 2.5rem 1rem;
}
.form-success.is-visible { display: block; animation: v1-fade 0.5s var(--ease-out); }
.form-success svg { color: #1faf5a; margin-inline: auto; margin-bottom: 1rem; }
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--text-soft); max-width: 34ch; margin-inline: auto; }

/* ---------- cta final ---------- */
.cta-final {
  background: var(--dark); color: var(--dark-text);
  border-radius: calc(var(--radius) * 2);
  padding: clamp(3rem, 7vw, 5.5rem);
  text-align: center; position: relative; overflow: clip;
}
.cta-final::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(55% 80% at 50% 110%, rgba(194, 65, 31, 0.25), transparent 70%);
}
.cta-final > * { position: relative; }
.cta-final h2 { font-size: clamp(1.9rem, 4.5vw, 3.4rem); }
.cta-final p { margin: 1rem auto 2rem; color: rgba(236, 234, 229, 0.72); max-width: 36em; }
.cta-final .btn-ghost { border-color: rgba(236, 234, 229, 0.3); color: var(--dark-text); }
.cta-final .btn-ghost:hover { border-color: var(--dark-text); }
.cta-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: 3rem 2rem; background: var(--paper-2); }
.footer-grid {
  display: grid; grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: 2rem; margin-bottom: 2.5rem;
}
.footer-grid h4 {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 0.9rem; font-weight: 600;
}
.footer-grid a { display: block; padding-block: 0.28rem; color: var(--text-soft); font-size: 0.95rem; }
.footer-grid a:hover { color: var(--text); }
.footer-brand p { color: var(--muted); max-width: 30ch; margin-top: 0.9rem; font-size: 0.93rem; }
.footer-meta {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-top: 1.4rem; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.84rem;
}

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 80;
  display: none; gap: 1px; background: var(--line);
  border-top: 1px solid var(--line);
  transform: translateY(100%); transition: transform 0.4s var(--ease-out);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta a { flex: 1; text-align: center; padding: 0.95rem; font-weight: 600; font-size: 0.94rem; background: var(--white); }
.sticky-cta a.primary { background: var(--accent); color: #fff; }
.sticky-cta a.wa { background: #1faf5a; color: #fff; }

/* ---------- reveal ---------- */
@keyframes v1-fade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0; transform: translateY(22px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    transition-delay: calc(var(--i, 0) * 80ms);
  }
  .reveal.is-inview { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1023px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}
@media (min-width: 1024px) { .nav-mobile { display: none !important; } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media img { aspect-ratio: 16 / 10; }
  .hero-badge { left: 1rem; bottom: -1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--train, .service-card--herstel,
  .service-card--massage, .service-card--clash { grid-column: 1 / -1; }
  .usp-grid, .steps-grid, .review-grid { grid-template-columns: 1fr; }
  .review-featured { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .coach-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .split--flip > *:first-child { order: 0; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: flex; }
  body.has-sticky-cta { padding-bottom: 54px; }
  .page-hero-media img { aspect-ratio: 16 / 10; }
}
@media (max-width: 480px) {
  .hero-ctas .btn, .cta-ctas .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
}
