/* ------------------------------------------------------------------ */
/* Lunea Kinderslaap — base                                            */
/* ------------------------------------------------------------------ */

:root {
  --bg: #FFFDFA;
  --text: #5E4741;
  --heading: #8A6A63;
  --link: #6F544E;
  --link-hover: #3F312C;
  --btn: #BEA99C;
  --btn-hover: #A98E80;
  --border: #EBE1D6;
  --bg-pink: #F6E9E1;
  --bg-green: #EEF1E9;
  --bg-cream: #FAF4E5;
  --dark: #3F312C;
}

* { box-sizing: border-box; }

@font-face {
  font-family: 'Brittany Signature';
  src: url('../fonts/BrittanySignature.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-padding-top: 105px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Mulish', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--link-hover); }

input, textarea, button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

img { max-width: 100%; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.section { padding-top: 80px; padding-bottom: 80px; }

.section-bg-pink { background: var(--bg-pink); }
.section-bg-green { background: var(--bg-green); }
.section-bg-cream { background: var(--bg-cream); }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}
.eyebrow--accent { color: var(--heading); }

.h2 {
  font-family: 'Stardom', serif;
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.14;
  color: var(--heading);
  margin: 0 0 28px;
  max-width: 22ch;
  text-wrap: pretty;
}
.h2--tight { margin-bottom: 40px; }

.p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}
.p:last-child { margin-bottom: 0; }
.p-block .p:last-child { margin-bottom: 0; }

.small-p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease;
}
.btn--solid {
  background: var(--btn);
  color: var(--dark);
  padding: 15px 28px;
}
.btn--solid:hover { background: var(--btn-hover); color: var(--dark); }
.btn--white {
  background: #FFFFFF;
  color: var(--link);
  padding: 15px 28px;
}
.btn--white:hover { background: var(--bg-pink); color: var(--link); }
.btn--outline {
  background: #FFFFFF;
  border: 1px solid var(--btn);
  color: var(--link);
  padding: 13px 24px;
  align-self: center;
  margin-top: auto;
}
.btn--outline:hover { background: var(--bg-pink); }
.btn--mt { margin-top: 36px; }
.btn--form { padding: 16px 26px; justify-self: start; }

/* ------------------------------------------------------------------ */
/* Header                                                              */
/* ------------------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 250, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header__row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.site-header__logo { flex: none; }
.site-header__logo img { display: block; width: 140px; height: auto; }

.site-header__right {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 16px;
  flex-wrap: wrap;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: grid;
  gap: 5px;
  justify-self: start;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #5E4741;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 28px;
  margin-top: 10px;
  width: 200px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(63,49,44,0.14);
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.3s ease, opacity 0.2s ease;
}
.mobile-menu.is-open {
  max-height: 400px;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__link {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  padding: 13px 20px;
  border-top: 1px solid var(--border);
}
.mobile-menu__link:first-child { border-top: none; }

@media (max-width: 759px) {
  .site-header__row { padding: 16px 16px; }
  .mobile-menu { right: 16px; }
}

/* ------------------------------------------------------------------ */
/* Hero                                                                */
/* ------------------------------------------------------------------ */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 45%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(63,49,44,0.30) 0%, rgba(63,49,44,0.02) 45%, rgba(63,49,44,0.0) 60%, rgba(63,49,44,0.32) 100%);
}

.hero__title-wrap {
  position: relative;
  z-index: 2;
  left: clamp(20px, 6vw, 56px);
  max-width: 1320px;
  box-sizing: border-box;
}

.hero__title {
  margin: 0;
  font-family: 'Stardom', serif;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 0.88;
}

.hero__line {
  display: block;
  letter-spacing: 0.03em;
  transition: opacity 0.7s ease, transform 0.7s ease;
  opacity: 0;
  transform: translateY(16px);
}
.hero__line.is-revealed { opacity: 1; transform: translateY(0); }
.hero__line--2 { transition-delay: 0.22s, 0.22s; }
.hero__line--3 { transition-delay: 0.44s, 0.44s; }
.hero__line--1 { font-size: clamp(70px, 12.5vw, 180px); }
.hero__line--2, .hero__line--3 {
  font-size: clamp(52px, min(11vw, 13vh), 150px);
  font-style: italic;
}
.hero__line--2 { margin-left: clamp(24px, 7vw, 100px); margin-top: 0.18em; }
.hero__line--3 { margin-left: clamp(48px, 13vw, 200px); margin-top: -0.06em; }

.hero__copy-wrap {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  margin-left: auto;
  margin-right: clamp(20px, 6vw, 56px);
  max-width: min(400px, calc(100% - 2 * clamp(20px, 6vw, 56px)));
  text-align: right;
}

.hero__copy {
  margin: 0 0 26px;
  font-size: 17px;
  line-height: 1.7;
  color: #FFFFFF;
  text-wrap: pretty;
  text-shadow: 0 2px 20px rgba(63,49,44,0.4);
}

/* ------------------------------------------------------------------ */
/* Intro bar                                                          */
/* ------------------------------------------------------------------ */

.intro-bar { background: var(--bg-pink); }
.intro-bar__grid {
  padding-top: 46px;
  padding-bottom: 46px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.intro-bar__text { font-size: 16px; line-height: 1.6; color: var(--text); }

/* ------------------------------------------------------------------ */
/* Split content grids (About / USP / Werkwijze)                      */
/* ------------------------------------------------------------------ */

.split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 56px;
  align-items: center;
}
#over .split-grid > div:first-child { order: 2; }
#over .split-grid > div:last-child { order: 1; }

.blob-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 260px 260px 8px 8px;
  transition: transform 0.6s ease;
}
.blob-image:hover { transform: scale(1.015); }

.blob-image--portrait {
  max-width: 300px;
  aspect-ratio: 3 / 4;
  box-shadow: 0 16px 36px rgba(63,49,44,0.22);
  margin: 0 auto;
}

.usp-intro { margin-bottom: 52px; align-items: center; }
.usp-portrait { text-align: center; }

.p-block .p { margin-bottom: 18px; }

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.usp-grid__item {
  transition: opacity 0.7s ease, transform 0.7s ease;
  opacity: 0;
  transform: translateY(16px);
}
.usp-grid__item.is-revealed { opacity: 1; transform: translateY(0); }
.usp-grid__item:nth-child(2) { transition-delay: 0.08s; }
.usp-grid__item:nth-child(3) { transition-delay: 0.16s; }

/* ------------------------------------------------------------------ */
/* Werkwijze steps                                                    */
/* ------------------------------------------------------------------ */

.steps { display: grid; gap: 26px; }
.step {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  transition: opacity 0.7s ease, transform 0.7s ease;
  opacity: 0;
  transform: translateY(16px);
}
.step.is-revealed { opacity: 1; transform: translateY(0); }
.step:nth-child(2) { transition-delay: 0.08s; }
.step:nth-child(3) { transition-delay: 0.16s; }
.step:nth-child(4) { transition-delay: 0.24s; }

.step__num {
  font-family: 'Stardom', serif;
  font-size: 28px;
  line-height: 1;
  color: var(--heading);
}
.step__title {
  font-family: 'Stardom', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: var(--heading);
  margin-bottom: 8px;
}

/* ------------------------------------------------------------------ */
/* Quote bands                                                        */
/* ------------------------------------------------------------------ */

.quote-band {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.quote-band--dark { min-height: 560px; }

.quote-band__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.quote-band--dark .quote-band__image { object-position: 62% 58%; }

.quote-band__overlay { position: absolute; inset: 0; }
.quote-band__overlay--light {
  background: linear-gradient(180deg, rgba(255,253,250,0.55) 0%, rgba(255,253,250,0.35) 100%);
}
.quote-band__overlay--dark {
  background: linear-gradient(180deg, rgba(63,49,44,0.05) 0%, rgba(63,49,44,0.42) 100%);
}

.quote-band__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 150px 28px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
.quote-band__content { max-width: 720px; text-align: center; }
.quote-band__content--narrow { max-width: 620px; }

.quote {
  margin: 0;
  font-family: 'Stardom', serif;
  font-weight: 400;
  text-wrap: pretty;
  transition: opacity 2.2s ease, transform 2.2s ease;
  opacity: 0;
  transform: translateY(20px);
}
.quote.is-revealed { opacity: 1; transform: translateY(0); }
.quote--dark {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.26;
  color: var(--heading);
}
.quote--light {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.3;
  color: var(--bg);
}

/* ------------------------------------------------------------------ */
/* Pricing                                                             */
/* ------------------------------------------------------------------ */

.section-intro { max-width: 620px; margin-bottom: 52px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.pricing-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  padding: 56px 32px 38px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 260px 260px 8px 8px;
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(16px);
}
.pricing-card.is-revealed { opacity: 1; transform: translateY(0); }
.pricing-card:nth-child(2) { transition-delay: 0.08s; }
.pricing-card:nth-child(3) { transition-delay: 0.16s; }
.pricing-card:hover { box-shadow: 0 20px 40px rgba(63,49,44,0.12); }

.pricing-card__head { text-align: center; }
.pricing-card__icon { width: auto; height: 56px; display: block; margin: 0 auto 14px; object-fit: contain; }
.pricing-card__title {
  font-family: 'Stardom', serif;
  font-size: 28px;
  line-height: 1.1;
  color: var(--heading);
  margin-bottom: 8px;
}
.pricing-card__price {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}
.pricing-card__list {
  margin: 0;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
}

/* ------------------------------------------------------------------ */
/* Wave band                                                           */
/* ------------------------------------------------------------------ */

.wave-band {
  background: var(--bg-pink);
  position: relative;
  padding-top: 20px;
}
.wave-band__svg {
  position: absolute;
  top: -3.83vw;
  left: 0;
  width: 100%;
  aspect-ratio: 1200 / 130;
  overflow: visible;
}
/* Font-size is set in the SVG's own viewBox units, which are scaled by
   width/1200 at render time — so the nominal value here has to be much
   larger than the intended on-screen size, and shrink as viewport grows,
   to land on a readable effective size at every width. */
.wave-band__text { font-size: clamp(28px, 85px - 3.7vw, 75px); }
.wave-band__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 44px;
  align-items: center;
}
.wave-band__heading {
  font-family: 'Stardom', serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.3;
  color: var(--heading);
  max-width: 24ch;
  text-wrap: pretty;
}
.wave-band__copy { margin-bottom: 24px; color: var(--dark); }

/* ------------------------------------------------------------------ */
/* FAQ                                                                 */
/* ------------------------------------------------------------------ */

.faq {
  display: grid;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.faq-item { border-top: 1px solid var(--border); }
.faq-item__question {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-item__question-text {
  font-weight: 600;
  font-size: 17px;
  color: var(--dark);
}
.faq-item__icon {
  font-family: 'Stardom', serif;
  font-size: 22px;
  color: var(--heading);
  flex: none;
}
.faq-item__answer {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  display: none;
}
.faq-item__answer a { color: var(--heading); }
.faq-item.is-open .faq-item__answer { display: block; }

/* ------------------------------------------------------------------ */
/* Contact                                                             */
/* ------------------------------------------------------------------ */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.contact-info__value { font-size: 16px; line-height: 1.6; color: var(--text); }
.contact-info__value a { color: var(--text); }

.contact-form {
  background: #FFFFFF;
  border: 1px solid var(--border);
  padding: 40px 34px;
  display: grid;
  gap: 20px;
}
.field-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.field { display: grid; gap: 8px; }
.field__label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}
.field input, .field textarea {
  background: #FFFFFF;
  border: 1px solid var(--border);
  padding: 13px 14px;
  font-size: 15px;
  color: var(--dark);
}
.field textarea { line-height: 1.6; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--btn);
  outline-offset: 1px;
}

.form-status {
  margin: 0;
  font-size: 14px;
  color: var(--text);
}

/* ------------------------------------------------------------------ */
/* Footer                                                              */
/* ------------------------------------------------------------------ */

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.site-footer__grid {
  padding: 64px 28px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.site-footer__logo { display: block; width: 140px; height: auto; margin-bottom: 16px; }
.site-footer__tag { margin: 0 0 16px; font-size: 14px; line-height: 1.7; color: var(--text); max-width: 26ch; }
.site-footer__copyright { margin: 0; }
.site-footer__links { display: grid; gap: 10px; font-size: 14px; color: var(--text); }
.site-footer__links a { color: var(--text); }

.site-footer__credit {
  padding: 0 28px 28px;
  text-align: center;
}
.site-footer__credit a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heading);
}
.site-footer__credit img { height: 30px; width: auto; display: block; }

