/* De Vlindertjes – speelse gastouderopvang website */
:root {
  --sky: #b8dff5;
  --sky-deep: #8ec8eb;
  --sky-soft: #e8f6fc;
  --cloud: #ffffff;
  --grass: #7bc143;
  --grass-dark: #5fa32e;
  --grass-deep: #4a8c24;
  --sun: #ffd54a;
  --sun-glow: #ffe082;
  --ink: #2a3a2e;
  --muted: #4f6a55;
  --green-text: #4a8c2a;
  --cream: #fffdf8;
  --pink: #f4a4b8;
  --coral: #e86b5a;
  --yellow: #f5c842;
  --font-display: "Fredoka", "Nunito", sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --radius: 1.25rem;
  --shadow-soft: 0 12px 40px rgba(42, 90, 60, 0.08);
  --max: 68rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(255, 255, 255, 0.55), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(142, 200, 235, 0.35), transparent 50%),
    linear-gradient(180deg, var(--sky-soft) 0%, #f3fbf4 45%, var(--cream) 100%);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--grass-deep);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--coral);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: white;
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* —— Nav —— */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px) saturate(1.15);
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-nav.is-scrolled {
  background: rgba(255, 253, 248, 0.52);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  box-shadow: 0 2px 16px rgba(42, 90, 60, 0.05);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-brand img {
  width: 2.4rem;
  height: 2.4rem;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-brand span {
  color: var(--grass-deep);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 3px;
  margin: 5px 6px;
  background: var(--ink);
  border-radius: 2px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--grass-deep);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: 1fr auto auto;
  padding: 5.5rem 0 0;
  background: linear-gradient(180deg, #a8d8f2 0%, #c5e7f8 55%, #d7eef9 78%, #eaf6c9 92%, #8fc24e 100%);
  overflow: hidden;
  /* Ruimte tussen knoppen en gras, nét boven de mannetjes */
  --kids-clearance: 8.6rem;
}

.subhero {
  position: relative;
  min-height: 14rem;
  min-height: max(14rem, 28vh);
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 5.5rem 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #c5e7f8 0%, #d7eef9 50%, #eaf6c9 82%, #8fc24e 100%);
}

.hero-sky {
  position: absolute;
  inset: 0 0 18% 0;
  pointer-events: none;
  z-index: 1;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  animation: drift 28s ease-in-out infinite;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: inherit;
}

.cloud-1 {
  width: 11rem;
  height: 3.4rem;
  top: 16%;
  left: 4%;
  animation-duration: 32s;
}

.cloud-1::before {
  width: 4.8rem;
  height: 4.8rem;
  top: -2.4rem;
  left: 1.4rem;
}

.cloud-1::after {
  width: 6rem;
  height: 4rem;
  top: -1.6rem;
  left: 4.2rem;
}

.cloud-2 {
  width: 12rem;
  height: 3.6rem;
  top: 14%;
  right: 28%;
  animation-duration: 36s;
  animation-delay: -8s;
}

.cloud-2::before {
  width: 5rem;
  height: 5rem;
  top: -2.4rem;
  left: 1.6rem;
}

.cloud-2::after {
  width: 6rem;
  height: 4rem;
  top: -1.6rem;
  left: 5rem;
}

.cloud-3 {
  width: 9rem;
  height: 3rem;
  top: 38%;
  left: 22%;
  opacity: 0.88;
  animation-duration: 40s;
  animation-delay: -14s;
}

.cloud-3::before {
  width: 3.6rem;
  height: 3.6rem;
  top: -1.7rem;
  left: 1.1rem;
}

.cloud-3::after {
  width: 4.2rem;
  height: 3rem;
  top: -1.1rem;
  left: 3.2rem;
}

.cloud-4 {
  width: 7rem;
  height: 2.4rem;
  top: 42%;
  right: 4%;
  opacity: 0.8;
  animation-duration: 34s;
  animation-delay: -5s;
}

.cloud-4::before {
  width: 2.8rem;
  height: 2.8rem;
  top: -1.3rem;
  left: 0.9rem;
}

.cloud-4::after {
  width: 3.4rem;
  height: 2.4rem;
  top: -0.9rem;
  left: 2.5rem;
}

@keyframes drift {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(1.8rem);
  }
}

/* Zon: SVG — bol en stralen delen exact middelpunt (50,50) */
.sun-wrap {
  position: absolute;
  top: 6%;
  right: 5%;
  width: 9rem;
  height: 9rem;
  z-index: 2;
  pointer-events: none;
  animation: sun-pulse 5s ease-in-out infinite;
  display: grid;
  place-items: center;
}

.sun-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.sun-rays {
  transform-box: view-box;
  transform-origin: 50px 50px;
  animation: sun-spin 28s linear infinite;
}

@keyframes sun-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes sun-pulse {
  0%,
  100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.butterflies {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}

.butterfly {
  position: absolute;
  width: 3.4rem;
  height: 2.7rem;
  animation: flutter linear infinite;
  will-change: transform;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.12));
}

.butterfly svg {
  width: 100%;
  height: 100%;
  animation: wing-flap 0.26s ease-in-out infinite alternate;
  transform-origin: center;
}

.bf-1 {
  top: 26%;
  left: 10%;
  width: 3.8rem;
  animation-duration: 14s;
  color: #e85d8a;
}
.bf-2 {
  top: 20%;
  left: 42%;
  width: 3rem;
  animation-duration: 18s;
  animation-delay: -4s;
  color: #7b5ce8;
}
.bf-3 {
  top: 40%;
  left: 68%;
  width: 4.2rem;
  animation-duration: 12s;
  animation-delay: -7s;
  color: #f0a020;
}
.bf-4 {
  top: 30%;
  left: 82%;
  width: 2.8rem;
  animation-duration: 16s;
  animation-delay: -2s;
  color: #3db8a8;
}
.bf-5 {
  top: 48%;
  left: 28%;
  width: 3.5rem;
  animation-duration: 20s;
  animation-delay: -11s;
  color: #e86b5a;
}
.bf-6 {
  top: 18%;
  left: 62%;
  width: 2.6rem;
  animation-duration: 15s;
  animation-delay: -6s;
  color: #5b8def;
}

@keyframes wing-flap {
  from { transform: scaleX(1) rotate(-8deg); }
  to { transform: scaleX(0.65) rotate(8deg); }
}

@keyframes flutter {
  0% { transform: translate(0, 0) rotate(-10deg); }
  25% { transform: translate(5rem, -3rem) rotate(12deg); }
  50% { transform: translate(11rem, 0.8rem) rotate(-6deg); }
  75% { transform: translate(6rem, 2.5rem) rotate(10deg); }
  100% { transform: translate(0, 0) rotate(-10deg); }
}

.hero-content {
  position: relative;
  z-index: 6;
  text-align: center;
  max-width: 42rem;
  width: 100%;
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
  align-self: center;
}

.hero-brand {
  margin: 0;
  animation: fade-up 0.9s ease both;
}

.brand-logo {
  display: block;
  width: min(48vw, 15rem, 34vh);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 6px 16px rgba(42, 90, 60, 0.16));
}

.hero-tagline {
  margin: 0.75rem auto 0;
  max-width: 30rem;
  font-size: clamp(1.05rem, 2.5vw, 1.28rem);
  font-weight: 600;
  color: var(--muted);
  animation: fade-up 0.9s ease 0.12s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  position: relative;
  z-index: 7;
  margin: 0;
  padding: 0 1.25rem var(--kids-clearance);
  animation: fade-up 0.9s ease 0.22s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 550;
  font-size: 1.05rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--grass);
  color: white;
  box-shadow: 0 8px 20px rgba(91, 163, 46, 0.28);
}

.btn-primary:hover {
  background: var(--grass-dark);
  color: white;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--grass-deep);
  border-color: rgba(74, 140, 36, 0.25);
}

.btn-secondary:hover {
  background: white;
  color: var(--grass-deep);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Grasveld zoals visitekaartje: volle breedte, kids erop */
.hero-ground {
  position: relative;
  z-index: 5;
  margin-top: auto;
}

.grass-field {
  position: relative;
  height: clamp(8rem, 20vw, 12rem);
  background: linear-gradient(180deg, #8fc24e 0%, #7bb83d 40%, #6aa832 100%);
  margin: 0;
  overflow: visible;
}

.grass-field::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1.1rem;
  height: 1.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 20' preserveAspectRatio='none'%3E%3Cpath fill='%238fc24e' d='M0 20 V10 Q5 0 10 10 T20 10 T30 10 T40 10 T50 10 T60 10 T70 10 T80 10 T90 10 T100 10 T110 10 T120 10 V20Z'/%3E%3C/svg%3E");
  background-size: 7rem 100%;
  background-repeat: repeat-x;
}

.kids-logo {
  position: absolute;
  left: 50%;
  /* Voeten/handen rusten op de bovenrand van het grasveld */
  bottom: 58%;
  transform: translateX(-50%);
  width: min(76vw, 34rem);
  height: auto;
  image-rendering: auto;
  filter: drop-shadow(0 3px 6px rgba(42, 90, 60, 0.2));
  animation: kids-bounce 3.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

.subhero .kids-logo {
  width: min(58vw, 22rem);
  bottom: 22%;
}

@keyframes kids-bounce {
  0%,
  100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-0.4rem); }
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.25rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 550;
  color: var(--grass-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-lead {
  margin: 0 0 1.75rem;
  max-width: 40rem;
  font-size: 1.1rem;
  color: var(--muted);
}

.prose p {
  margin: 0 0 1.15rem;
  max-width: 42rem;
  font-size: 1.05rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.page-copy > .prose + *,
.page-layout + .feature-row,
.page-layout + .reviews-layout,
.page-layout + .album-grid,
.page-layout + .album-empty {
  margin-top: 2.5rem;
}

.highlight {
  display: inline;
  background: linear-gradient(180deg, transparent 55%, rgba(171, 217, 242, 0.28) 55%);
}

/* —— Feature row —— */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
}

.feature {
  padding-top: 0.25rem;
  border-top: 3px solid var(--grass);
}

.feature h3 {
  margin: 0.85rem 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 550;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* —— Day timeline —— */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2.15rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem 1.5rem;
  align-items: start;
}

.timeline-time {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--grass-deep);
  line-height: 1.2;
}

.timeline-body h2,
.timeline-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 550;
}

.timeline-body p {
  margin: 0;
  color: var(--muted);
}

/* —— Tarieven —— */
.price-block {
  display: grid;
  grid-template-columns: minmax(0, 16rem) 1fr;
  gap: 2rem;
  align-items: start;
}

.price-figure {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--grass-deep);
  margin: 0;
}

.price-figure small {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
  font-weight: 550;
  color: var(--muted);
}

.split-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-top: 2rem;
}

.split-lists h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.split-lists ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.split-lists li + li {
  margin-top: 0.35rem;
}

.note {
  margin-top: 1.5rem;
  padding: 1rem 0 0;
  border-top: 2px dashed rgba(123, 193, 67, 0.45);
  color: var(--muted);
  max-width: 42rem;
}

/* —— Certificaten —— */
.cert-intro {
  max-width: 42rem;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 0.65rem 1rem;
  margin-top: 0;
  list-style: none;
  padding: 0;
}

.cert-grid li {
  position: relative;
  padding: 0.55rem 0.75rem 0.55rem 1.65rem;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0.65rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.cert-grid li::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 0.9rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--grass);
}

/* —— Sky wash (Welkom, Een dag, Album, Contact, Ervaringen, …) —— */
.section-sky,
.section-reviews {
  background-color: var(--sky-soft);
  background-image: linear-gradient(
    180deg,
    rgba(184, 223, 245, 0.28) 0%,
    transparent 22%,
    var(--sky-soft) 38%,
    var(--sky-soft) calc(100% - 9rem),
    #f6fcfe calc(100% - 4.5rem),
    var(--cream) 100%
  );
}

/* —— Reviews —— */
.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16.5rem, 21rem);
  gap: 1.75rem 2rem;
  align-items: start;
}

.reviews-layout-solo {
  grid-template-columns: minmax(16rem, 28rem);
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 12rem;
  padding: 1.2rem 1.25rem 1.1rem;
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(255, 255, 255, 0.95);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover,
.review-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--grass);
  color: inherit;
  box-shadow: 0 16px 36px rgba(42, 90, 60, 0.12);
}

.review-card-mark {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 0.65;
  color: var(--grass);
  margin-bottom: 0.5rem;
}

.review-cards li:nth-child(3n + 2) .review-card-mark {
  color: var(--pink);
}

.review-cards li:nth-child(3n + 3) .review-card-mark {
  color: #e0a81a;
}

.review-card h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 550;
  line-height: 1.3;
  color: var(--ink);
}

.review-card p {
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.review-card-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.review-card-who {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.review-initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: rgba(123, 193, 67, 0.2);
  color: var(--grass-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.review-card .review-meta {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.3;
}

.review-more {
  flex-shrink: 0;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--grass-deep);
  white-space: nowrap;
}

.review-card:hover .review-more {
  color: var(--coral);
}

.review-meta {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
}

.review-back {
  margin: 0 0 1.15rem;
}

.review-back a {
  font-weight: 700;
  text-decoration: none;
}

.review-detail {
  max-width: 44rem;
  padding: 1.75rem 1.85rem 2rem;
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.review-detail .section-title {
  margin-bottom: 0.65rem;
}

.review-detail .review-card-mark {
  display: block;
}

.review-detail .review-meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.2rem;
}

.review-panel {
  position: sticky;
  top: 5.25rem;
  margin-top: 0;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1.25rem 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reviews blockquote {
  margin: 0;
  padding: 0;
  border: 0;
}

.reviews p {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
}

.reviews footer {
  font-size: 0.9rem;
  color: var(--muted);
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: grid;
  gap: 0.15rem;
}

.contact-list strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--grass-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-list a,
.contact-list span {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--coral);
}

.contact-panel {
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-panel h2,
.contact-panel h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.contact-panel p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.site-form {
  display: grid;
  gap: 0.85rem;
}

.site-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.site-form input,
.site-form textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 2px solid rgba(74, 140, 36, 0.2);
  border-radius: 0.75rem;
  background: white;
  color: var(--ink);
}

.site-form input:focus,
.site-form textarea:focus {
  outline: none;
  border-color: var(--grass);
  box-shadow: 0 0 0 3px rgba(123, 193, 67, 0.2);
}

.site-form button {
  justify-self: start;
  margin-top: 0.25rem;
}

.form-note {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer {
  margin-top: 0;
  background: var(--cream);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.15rem 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0.35rem 1.25rem 1.85rem;
  background: transparent;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  background: transparent;
  box-shadow: none;
}

.footer-badge:hover,
.footer-badge:focus-visible {
  color: inherit;
}

.footer-badge:focus-visible {
  outline: 3px solid var(--grass);
  outline-offset: 4px;
  border-radius: 0.5rem;
}

.footer-badge img {
  display: block;
  height: auto;
  background: transparent;
}

.footer-badge-nysa img {
  width: min(11.25rem, 44vw);
}

.footer-badge-sbb img {
  width: min(7rem, 30vw);
  mix-blend-mode: multiply;
}

.footer-badge-hk img {
  width: min(10.75rem, 42vw);
}

.footer-badge-blend img {
  mix-blend-mode: multiply;
}

.footer-ground {
  position: relative;
  margin-top: 1.15rem;
  padding: 0.15rem 1.25rem 1.25rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  background: linear-gradient(180deg, #8fc24e 0%, #6aa832 100%);
}

.footer-ground::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1.1rem;
  height: 1.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 20' preserveAspectRatio='none'%3E%3Cpath fill='%238fc24e' d='M0 20 V10 Q5 0 10 10 T20 10 T30 10 T40 10 T50 10 T60 10 T70 10 T80 10 T90 10 T100 10 T110 10 T120 10 V20Z'/%3E%3C/svg%3E");
  background-size: 7rem 100%;
  background-repeat: repeat-x;
}

.footer-ground p {
  margin: 0.2rem 0 0;
}

.footer-kids {
  display: block;
  width: min(15.5rem, 52vw);
  margin: -2.15rem auto 0.35rem;
  filter: drop-shadow(0 3px 6px rgba(42, 90, 60, 0.2));
}

/* —— Motion reduce —— */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cloud,
  .sun-wrap,
  .sun-rays,
  .butterfly,
  .butterfly svg,
  .kids-logo,
  .hero-brand,
  .hero-tagline,
  .hero-actions,
  .review-card {
    animation: none !important;
    transition: none !important;
  }

  .review-card:hover,
  .review-card:focus-visible {
    transform: none;
  }
}

/* —— Responsive —— */
@media (max-width: 860px) {
  .feature-row,
  .price-block,
  .split-lists,
  .contact-grid,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .review-panel {
    position: static;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 1.25rem 1rem;
    background: rgba(255, 253, 248, 0.98);
    border-bottom: 1px solid rgba(74, 140, 36, 0.12);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(74, 140, 36, 0.1);
  }

  .sun-wrap {
    width: 6.5rem;
    height: 6.5rem;
    top: 7%;
    right: 3%;
  }

  .hero .kids-logo {
    width: min(92vw, 26rem);
    bottom: 54%;
  }

  .subhero .kids-logo {
    width: min(72vw, 18rem);
    bottom: 16%;
  }

  .brand-logo {
    width: min(56vw, 13.5rem, 30vh);
  }

  .hero {
    --kids-clearance: 8.35rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 18rem;
    margin-inline: auto;
  }
}

/* Laptops / lage vensters: knoppen blijven boven de kids, logo mag krimpen */
@media (max-height: 820px) {
  .brand-logo {
    width: min(40vw, 13rem, 28vh);
  }

  .hero .kids-logo {
    width: min(64vw, 28rem);
  }

  .subhero .kids-logo {
    width: min(48vw, 18rem);
    bottom: 14%;
  }

  .hero {
    --kids-clearance: 7.75rem;
  }

  .sun-wrap {
    width: 6.25rem;
    height: 6.25rem;
  }
}

@media (max-height: 680px) {
  .brand-logo {
    width: min(32vw, 11rem, 24vh);
  }

  .hero .kids-logo {
    width: min(52vw, 22rem);
  }

  .subhero .kids-logo {
    width: min(42vw, 16rem);
    bottom: 12%;
  }

  .hero {
    --kids-clearance: 7rem;
  }

  .btn {
    padding: 0.7rem 1.15rem;
    font-size: 0.98rem;
  }
}

/* —— CMS pages —— */
.page-layout.has-image {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem 2.5rem;
  align-items: start;
}

.page-image {
  margin: 0;
}

.page-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.flash {
  max-width: var(--max);
  margin: 1.25rem auto 0;
  padding: 0.85rem 1.25rem;
  border-radius: 0.85rem;
  font-weight: 700;
}

.flash-success { background: #e7f6d8; color: var(--grass-deep); }
.flash-error { background: #fde8e4; color: #8a2b22; }

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 620px) {
  .review-cards {
    grid-template-columns: 1fr;
  }

  .review-card-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-badges {
    gap: 0.85rem 1.35rem;
    padding: 0.5rem 1rem 1.35rem;
  }
}

.prose ul,
.prose ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.prose h2,
.prose h3 {
  font-family: var(--font-display);
  margin: 1.25rem 0 0.4rem;
}

@media (max-width: 860px) {
  .page-layout.has-image {
    grid-template-columns: 1fr;
  }
}

/* Homepage welcome photo (beside copy; stacks via .page-layout.has-image) */
.home-welcome.has-image .page-image {
  position: sticky;
  top: 5.5rem;
}

.home-welcome.has-image .page-image img {
  display: block;
}

/* —— Fotoalbum —— */
.album-empty {
  margin: 0;
  color: var(--muted);
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14.5rem, 1fr));
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.album-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
}

.album-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e4f0e6;
}

.album-item:hover img,
.album-item:focus-visible img {
  filter: brightness(1.04);
}

.album-caption {
  display: block;
  padding: 0.7rem 0.85rem 0.85rem;
  font-family: var(--font-display);
  font-weight: 550;
  font-size: 0.98rem;
  line-height: 1.3;
  color: var(--ink);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 2.5rem 1.25rem;
  background: rgba(26, 38, 30, 0.82);
  cursor: zoom-out;
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  margin: 0;
  max-width: min(56rem, 100%);
  cursor: default;
}

.lightbox img {
  max-width: 100%;
  max-height: min(78vh, 44rem);
  margin: 0 auto;
  border-radius: 0.85rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.lightbox figcaption {
  margin-top: 0.85rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: white;
}

.lightbox-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: var(--cream);
}


