/* =====================================================
   FYSIO KERKWEG OOST — Demo Site
   Palette: Navy #1B3A6B | Magenta #E8175D | White #FFF
   ===================================================== */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1B3A6B;
  --navy-dark:  #122850;
  --navy-mid:   #1d4080;
  --magenta:    #E8175D;
  --magenta-dk: #c4124e;
  --white:      #FFFFFF;
  --cream:      #F7F5F2;
  --light:      #F4F6FA;
  --text:       #1A1A2E;
  --text-mid:   #3D4460;
  --text-light: #6B7280;
  --border:     #E2E8F0;

  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(27,58,107,0.10);
  --shadow-md:  0 8px 40px rgba(27,58,107,0.14);
  --shadow-lg:  0 20px 60px rgba(27,58,107,0.18);

  --nav-h:      72px;
  --section-py: clamp(64px, 8vw, 120px);
  --container:  1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; }

/* Focusring (accessibility) */
:focus-visible { outline: 3px solid var(--magenta); outline-offset: 3px; border-radius: 4px; }

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

.section { padding-block: var(--section-py); }
.section--light  { background: var(--light); }
.section--cream  { background: var(--cream); }
.section--navy   { background: var(--navy); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 72px);
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 10px;
}
.section-label--light { color: rgba(232,23,93,0.8); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title--white { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--lg { padding: 15px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--magenta {
  background: var(--magenta);
  color: var(--white);
  border-color: var(--magenta);
}
.btn--magenta:hover, .btn--magenta:focus-visible {
  background: var(--magenta-dk);
  border-color: var(--magenta-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,23,93,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover { background: var(--light); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* =====================================================
   NAV HEADER
   ===================================================== */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 900;
  transition: box-shadow 0.3s;
}
.nav-header.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text {
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}
.logo-text strong { font-weight: 700; display: block; font-size: 1.05rem; }
.logo-text--white, .logo-text--white strong { color: var(--white); }

.nav-links {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--navy); background: var(--light); }

.nav-cta { margin-left: 8px; }

.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
  border-radius: 8px;
}
.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}

/* =====================================================
   MOBILE MENU OVERLAY
   ===================================================== */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  background: var(--navy);
  z-index: 950;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}

.mobile-menu__backdrop {
  display: none;
}

.mobile-menu__panel { display: flex; flex-direction: column; height: 100%; }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.mobile-menu__logo .logo-text { color: var(--white); }
.mobile-menu__logo .logo-text strong { color: var(--white); }

.mobile-menu__close {
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition: background 0.2s;
}
.mobile-menu__close svg { width: 22px; height: 22px; }
.mobile-menu__close:hover { background: rgba(255,255,255,0.2); }

.mobile-menu__list {
  list-style: none;
  padding: 24px 24px 0;
  flex: 1;
}
.mobile-menu__item {
  display: flex;
  align-items: center;
  padding: 16px 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  text-align: left;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  transition: color 0.15s, padding-left 0.15s;
}
.mobile-menu__item:hover { color: var(--magenta); padding-left: 8px; }
.mobile-menu__list li:last-child .mobile-menu__item { border-bottom: none; }

.mobile-menu__footer {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.mobile-menu__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  font-size: 1rem;
}
.mobile-menu__phone svg { width: 18px; height: 18px; flex-shrink: 0; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  margin-top: var(--nav-h);
  overflow: hidden;
  background-color: #1B3A6B;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #1B3A6B;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.35;
  mix-blend-mode: luminosity;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18,40,80,0.75) 0%,
    rgba(27,58,107,0.55) 50%,
    rgba(27,58,107,0.35) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
  padding-block: 48px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(232,23,93,0.15);
  border-radius: 50px;
  border: 1px solid rgba(232,23,93,0.3);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--white);
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.trust-item svg { width: 18px; height: 18px; color: var(--magenta); flex-shrink: 0; }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  animation: bounce 2s infinite;
}
.hero__scroll svg { width: 20px; height: 20px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* =====================================================
   CARDS / DIENSTEN GRID
   ===================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card--dienst:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.card__icon-wrap svg { width: 24px; height: 24px; }
.card__icon-wrap--navy {
  background: rgba(27,58,107,0.08);
  color: var(--navy);
}
.card__icon-wrap--magenta {
  background: rgba(232,23,93,0.1);
  color: var(--magenta);
}
.card__icon-wrap--white {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.card__text {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}
.card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card__list li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
}
.card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--magenta);
}

/* CTA card variant */
.card--cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
  display: flex;
  align-items: stretch;
}
.card__cta-inner { display: flex; flex-direction: column; justify-content: center; }
.card--cta-card .card__title { color: var(--white); }
.card--cta-card .card__text { color: rgba(255,255,255,0.75); }

/* =====================================================
   OVER ALAIN
   ===================================================== */
.over-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.over__image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.over__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-lg);
}

.over__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--magenta);
  color: var(--white);
  border-radius: 50%;
  width: 96px;
  height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(232,23,93,0.4);
  text-align: center;
}
.badge__num {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}
.badge__label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.over__content .section-title { text-align: left; margin-bottom: 0; }
.over__content .section-label { text-align: left; }
.over__lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin: 20px 0 14px;
  font-weight: 500;
}
.over__text {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 28px;
}

.over__credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.cred-item svg { width: 20px; height: 20px; color: var(--magenta); flex-shrink: 0; margin-top: 1px; }

/* =====================================================
   WERKWIJZE / STEPS
   ===================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(to right, var(--navy) 0%, var(--magenta) 100%);
  opacity: 0.2;
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step__num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--magenta);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.step__icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, background 0.2s;
}
.step:hover .step__icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.step__icon svg { width: 26px; height: 26px; color: var(--navy); transition: color 0.2s; }
.step:hover .step__icon svg { color: var(--white); }
.step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step__text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* =====================================================
   REVIEWS
   ===================================================== */
.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
.google-rating__stars {
  display: flex;
  gap: 2px;
}
.google-rating__stars svg { width: 22px; height: 22px; }
.google-rating__score {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}
.google-rating__label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review-card--featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.review-card__stars { display: flex; gap: 3px; }
.review-card__stars svg { width: 18px; height: 18px; }

.review-card__text {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--text-mid);
  flex: 1;
}
.review-card--featured .review-card__text { color: rgba(255,255,255,0.85); }

.review-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-card__avatar--magenta { background: var(--magenta); }

.review-card__name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  font-style: normal;
}
.review-card__name--white { color: var(--white); }
.review-card__since {
  font-size: 0.8rem;
  color: var(--text-light);
}
.review-card__since--light { color: rgba(255,255,255,0.6); }

/* =====================================================
   CTA BAND
   ===================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, #2d4f8a 100%);
  padding-block: clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 80% 50%, rgba(232,23,93,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-band__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.cta-band__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-top: 10px;
}
.cta-band__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.form-group label span { color: var(--magenta); }
.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.97rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  outline: none;
  box-shadow: 0 0 0 3px rgba(27,58,107,0.12);
}
.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: -8px;
}

/* Contact info card */
.contact-info__card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  color: var(--white);
}
.contact-info__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
}
.contact-info__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.contact-info__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-info__list svg {
  width: 20px;
  height: 20px;
  color: var(--magenta);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info__list strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}
.contact-info__list span,
.contact-info__list a {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}
.contact-info__list a:hover { color: var(--magenta); }

.openingstijden { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; }
.openingstijden__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.openingstijden__title svg { width: 16px; height: 16px; color: var(--magenta); }
.openingstijden__table { width: 100%; border-collapse: collapse; }
.openingstijden__table td {
  padding: 5px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.openingstijden__table td:last-child { text-align: right; color: rgba(255,255,255,0.6); }
.openingstijden__table tr.gesloten td { color: rgba(255,255,255,0.35); }

/* =====================================================
   FOOTER KIT
   ===================================================== */
.footer-kit {
  background: var(--navy-dark);
  color: var(--white);
}
.footer-kit__main {
  padding-block: clamp(48px, 7vw, 80px);
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.footer-kit__brand { }
.footer-logo { margin-bottom: 16px; }
.footer-kit__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 260px;
}

.footer-kit__heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-kit__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-kit__links a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s;
}
.footer-kit__links a:hover { color: var(--magenta); }

.footer-kit__address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.footer-kit__address a:hover { color: var(--magenta); }

.footer-kit__hours {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.footer-kit__hours td {
  padding: 4px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.footer-kit__hours td:last-child { text-align: right; }
.footer-kit__cta { margin-top: 4px; }

.footer-kit__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 20px;
}
.footer-kit__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-kit__copy,
.footer-kit__demo-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-kit__demo-note a { color: var(--magenta); text-decoration: underline; }

/* =====================================================
   IMAGE FILL SAFEGUARD
   ===================================================== */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================================================
   RESPONSIVE — TABLET (768px)
   ===================================================== */
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .over-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .over__image-wrap {
    max-width: 340px;
    margin: 0 auto;
  }
  .over__content .section-title,
  .over__content .section-label { text-align: center; }
  .over__credentials { align-items: flex-start; }
  .over__content .btn { display: block; width: fit-content; margin: 0 auto; }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .steps-grid::before { display: none; }
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .review-card--featured { transform: none; }
  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-band__actions { justify-content: center; }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-kit__main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-kit__brand { grid-column: 1 / -1; }
  .nav-links, .nav-cta { display: none; }
  .mobile-menu__trigger { display: flex; }
}

/* =====================================================
   RESPONSIVE — MOBILE (375-520px)
   ===================================================== */
@media (max-width: 520px) {
  :root { --nav-h: 64px; }

  .hero {
    height: 100svh;
    max-height: none;
  }
  .hero__title { font-size: 2rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__trust { gap: 12px; }

  .card-grid {
    grid-template-columns: 1fr;
  }
  .form-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-kit__main {
    grid-template-columns: 1fr;
  }
  .footer-kit__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .over__badge {
    right: 0;
    bottom: -16px;
    width: 80px;
    height: 80px;
  }
  .badge__num { font-size: 1.3rem; }
}
