/* ===================================================
   DE LEEUWENSPRONG — KINDERFYSIOTHERAPIE GOUDA
   Brand: #E8823A (terracotta-oranje), Nunito, warm
   =================================================== */

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

:root {
  --orange:       #E8823A;
  --orange-light: #F2A96E;
  --peach:        #F5E6D8;
  --peach-mid:    #FAEEE3;
  --white:        #FFFFFF;
  --text:         #2C2C2C;
  --text-muted:   #6B6B6B;
  --border:       #E8D5C4;

  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    20px;

  --shadow-sm:    0 2px 8px rgba(0,0,0,.07);
  --shadow:       0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.13);

  --header-h:     72px;
  --max-w:        1180px;
  --gap:          clamp(1.5rem, 4vw, 2.5rem);
  --section-py:   clamp(3.5rem, 8vw, 6rem);

  font-size: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ─── UTILITY ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: #d4722e;
  border-color: #d4722e;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,130,58,.35);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.75);
}
.btn--outline-white:hover, .btn--outline-white:focus-visible {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn--large { padding: .9rem 2.25rem; font-size: 1.05rem; }
.btn--full  { width: 100%; }
.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* ─── SITE HEADER ─────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
  gap: 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.site-logo--white .logo-text { color: var(--white); }

/* Desktop nav */
.desktop-nav { display: flex; }
.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.desktop-nav a {
  display: inline-block;
  padding: .45rem .85rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  transition: background .18s, color .18s;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible {
  background: var(--peach);
  color: var(--orange);
}
.desktop-nav .nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: .45rem 1.1rem;
  border-radius: var(--radius);
}
.desktop-nav .nav-cta:hover, .desktop-nav .nav-cta:focus-visible {
  background: #d4722e;
  color: var(--white) !important;
}

/* Hamburger trigger */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background .18s;
}
.mobile-menu__trigger:hover { background: var(--peach); }
.mobile-menu__trigger:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.hamburger-line {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ─── MOBILE FULLSCREEN OVERLAY MENU ──────────────── */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--white);
  display: flex;
  flex-direction: column;
  /* hidden state */
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s;
  height: 100dvh;
  height: 100svh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu__overlay.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: opacity .15s; transform: none !important; }
}

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0 1.5rem 2rem;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.mobile-menu__brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}
.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: background .18s;
}
.mobile-menu__close:hover { background: var(--peach); }
.mobile-menu__close:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  flex: 1;
}
.mobile-menu__item {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  transition: background .18s, color .18s;
  min-height: 56px;
}
.mobile-menu__item:hover, .mobile-menu__item:focus-visible {
  background: var(--peach);
  color: var(--orange);
}
.mobile-menu__item--cta {
  background: var(--orange);
  color: var(--white) !important;
  margin-top: .75rem;
  justify-content: center;
}
.mobile-menu__item--cta:hover, .mobile-menu__item--cta:focus-visible {
  background: #d4722e !important;
  color: var(--white) !important;
}

.mobile-menu__footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.mobile-menu__contact-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--text-muted);
  font-size: .95rem;
  font-weight: 600;
  transition: color .18s;
}
.mobile-menu__contact-link:hover { color: var(--orange); }

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  margin-top: var(--header-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,20,10,.68) 0%,
    rgba(44,28,12,.48) 60%,
    rgba(232,130,58,.18) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
  padding-block: clamp(4rem, 10vw, 7rem);
  max-width: 760px;
  margin-right: auto;
}
.hero__eyebrow {
  display: inline-block;
  background: rgba(232,130,58,.85);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.9);
  max-width: 540px;
  margin-bottom: 2.25rem;
  font-weight: 500;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── TRUST BAR ────────────────────────────────────── */
.trust-bar {
  background: var(--peach);
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.trust-bar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
}
.trust-bar__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  stroke: var(--orange);
}

/* ─── SECTIONS ─────────────────────────────────────── */
.section {
  padding-block: var(--section-py);
}
.section--white { background: var(--white); }
.section--peach  { background: var(--peach); }

.section__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section__eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
}
.section__title {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.section__lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin-inline: auto;
}

/* ─── ABOUT GRID ───────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-grid__image { position: relative; }
.about-img {
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(44,28,12,.18);
  width: 100%; display: block;
  height: auto;
  object-fit: cover;
}
.about-grid__text .section__eyebrow { display: block; margin-bottom: .6rem; }
.about-grid__text .section__title   { text-align: left; }
.about-grid__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.about-list {
  margin: 1.25rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
}
.about-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

/* ─── CARD GRID ─────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  grid-auto-rows: 1fr;
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  min-height: 200px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card__icon-wrap {
  margin-bottom: 1.1rem;
}
.card__icon-circle,
div.card__icon-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .5rem;
}
.card__text {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

/* ─── CTA BAND ──────────────────────────────────────── */
.cta-band {
  background: var(--orange);
  padding-block: var(--section-py);
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.cta-band__text .section__eyebrow {
  color: rgba(255,255,255,.8);
}
.cta-band__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.cta-band__sub {
  color: rgba(255,255,255,.88);
  font-size: 1rem;
  max-width: 440px;
}

/* Aanmeld Form (inside cta-band) */
.aanmeld-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.form-field label {
  font-size: .875rem;
  font-weight: 700;
  color: var(--text);
}
.form-field label span { color: var(--orange); }
.form-field input,
.form-field textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .65rem .9rem;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,130,58,.2);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-note {
  font-size: .82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}
.form-note a { color: var(--orange); font-weight: 600; }

/* ─── TESTIMONIAL ───────────────────────────────────── */
.testimonial-section {}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
  text-align: center;
}
.testimonial__stars {
  display: flex;
  justify-content: center;
  gap: .25rem;
  margin-bottom: 1.25rem;
}
.testimonial__quote {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}
.testimonial__quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--peach);
  position: absolute;
  top: -2rem;
  left: -.5rem;
  line-height: 1;
  font-style: normal;
}
.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
}
.testimonial__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial__author strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: var(--text);
}
.testimonial__author span {
  font-size: .85rem;
  color: var(--text-muted);
}

/* ─── CONTACT ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-card {
  background: var(--peach);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.contact-card__icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: .75rem;
}
.contact-card h3 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .35rem;
}
.contact-card p, .contact-card a {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.contact-card a:hover { color: var(--orange); text-decoration: underline; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* ─── MAP CTA ───────────────────────────────────────── */
.map-cta {
  background: var(--peach);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  border: 1px solid var(--border);
  overflow: hidden;
}
.map-cta__image-wrap {
  margin: -2rem -2.5rem 1.5rem;
}
.map-cta__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.map-cta__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.map-cta__icon { flex-shrink: 0; }
.map-cta__text { flex: 1; min-width: 200px; }
.map-cta__text h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .3rem;
}
.map-cta__text p {
  font-size: .9rem;
  color: var(--text-muted);
}
.map-cta .btn { flex-shrink: 0; }

/* ─── FOOTER ────────────────────────────────────────── */
.footer-kit {
  background: var(--text);
  color: rgba(255,255,255,.8);
  padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem;
}
.footer-kit__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2.5rem;
}
.footer-kit__brand .site-logo {
  margin-bottom: .9rem;
}
.footer-kit__brand p {
  font-size: .875rem;
  line-height: 1.6;
  max-width: 240px;
}
.footer-kit__col h4,
.footer-kit__contact h4 {
  font-size: .85rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .85rem;
}
.footer-kit__col ul { display: flex; flex-direction: column; gap: .4rem; }
.footer-kit__col a {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  transition: color .18s;
}
.footer-kit__col a:hover { color: var(--orange-light); }
.footer-kit__contact address { display: flex; flex-direction: column; gap: .4rem; }
.footer-kit__contact p, .footer-kit__contact a {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
}
.footer-kit__contact a:hover { color: var(--orange-light); }

.footer-kit__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.footer-kit__demo-note a {
  color: var(--orange-light);
  font-weight: 600;
}

/* ─── RESPONSIVE ────────────────────────────────────── */

/* Hide desktop nav, show hamburger on mobile */
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-menu__trigger { display: flex; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-grid__image { order: -1; max-height: 360px; overflow: hidden; }
  .about-img { height: 360px; object-fit: cover; }
  .about-grid__text .section__title { text-align: center; }
  .about-grid__text .section__eyebrow { display: block; text-align: center; }
  .about-grid__text { text-align: center; }
  .about-list li { justify-content: center; }
  .about-grid__text .btn { display: block; text-align: center; }
}

@media (max-width: 860px) {
  .cta-band__inner { grid-template-columns: 1fr; }
  .cta-band__text { text-align: center; }
  .cta-band__sub { margin-inline: auto; }
}

@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-kit__grid { grid-template-columns: 1fr; }
  .trust-bar__list { gap: .75rem 1.5rem; }
  .trust-bar__item { font-size: .82rem; }
}

@media (max-width: 480px) {
  .footer-kit__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }
  .card-grid { grid-template-columns: 1fr; }
}

/* ─── HEADER SCROLL STATE ───────────────────────────── */
@media (min-width: 769px) {
  .desktop-nav { display: flex; }
  .mobile-menu__trigger { display: none; }
}
