/* =========================================================
   Biodanza met Maudy — stijl
   Warme, levendige oranje/terracotta sfeer op een rustige
   crème basis. Secties wisselen van achtergrond (crème →
   perzik → terracotta → diep terracotta) voor ritme, met
   warme accenten die terugkomen uit de dansers-banner.
   Alle kleuren staan als variabele bovenaan.
   ========================================================= */

:root {
  /* Palet — warm: crème basis + perzik & terracotta */
  --paper:    #fdedd1;  /* warme crème — leesachtergrond           */
  --panel:    #F6E3D7;  /* zachte kaarten en vlakken               */
  --ink:      #4A3B3A;  /* tekst — warm donkerbruin (niet zwart)   */
  --ink-soft: #7A6A64;  /* zachtere tekst                          */
  --dusk:     #4A3B3A;  /* warm donkerbruin                        */

  --clay:     #E8927C;  /* zachte terracotta-roze — accent (vlakken) */
  --clay-dk:  #AA5440;  /* diepe terracotta — knoppen & tekstaccent  */

  /* Kleurbanden */
  --peach:    #F2C79A;  /* warme perzik-band                       */
  --terra:    #E0A075;  /* zachte terracotta-band                  */
  --deep:     #A9562F;  /* diepe terracotta-band (iets dieper dan
                           #C4703F, zodat crème-tekst AA haalt)     */
  --on-deep:  #FDF1E6;  /* crème-tekst op de diepe band            */
  --ochre:    #F0B67F;  /* warm perzik-oranje                      */
  --sage:     #A8B5A2;  /* salie                                   */

  /* Tekstaccent: terracotta op crème, donker op warme band, crème op diep */
  --accent:   var(--clay-dk);
  --line:     color-mix(in srgb, var(--clay-dk) 34%, transparent);  /* warme scheidingslijn */

  --display: "Fraunces", Georgia, serif;
  --body:    "Mulish", system-ui, sans-serif;

  --maxw:   1180px;      /* bredere leeskolom */
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --pad-y:  clamp(3.5rem, 8vw, 6.5rem);
  --radius: 22px;

  --shadow:     0 18px 44px -24px rgba(74, 47, 40, 0.5);
  --shadow-img: 0 22px 50px -28px rgba(74, 47, 40, 0.55);
}

/* ---------- basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.08rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.7rem, 6.4vw, 4.8rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2.6vw, 1.75rem); }

p  { margin: 0 0 1em; }
em { font-style: italic; color: var(--accent); font-family: var(--display); font-weight: 400; }
a  { color: inherit; }
img { display: block; max-width: 100%; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.18s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary, .btn--glow { background: var(--clay-dk); color: #FFF7F0; border-color: var(--clay-dk); }
.btn--primary:hover, .btn--glow:hover { background: #97452F; border-color: #97452F; box-shadow: 0 10px 22px -12px rgba(151, 69, 47, 0.7); }
.btn--ghost, .btn--ghost-light { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover, .btn--ghost-light:hover { background: var(--ink); color: var(--paper); }

/* knoppen op de diepe terracotta band: crème knop met terracotta tekst */
.band-deep .btn--primary, .band-deep .btn--glow,
.plan--accent .btn--primary {
  background: var(--on-deep); color: var(--deep); border-color: var(--on-deep);
}
.band-deep .btn--primary:hover, .band-deep .btn--glow:hover,
.plan--accent .btn--primary:hover { background: #FFFFFF; border-color: #FFFFFF; box-shadow: none; }
.band-deep .btn--ghost, .band-deep .btn--ghost-light {
  border-color: var(--on-deep); color: var(--on-deep);
}
.band-deep .btn--ghost:hover, .band-deep .btn--ghost-light:hover {
  background: var(--on-deep); color: var(--deep);
}

/* ---------- eyebrow / labels ---------- */
.eyebrow, .eyebrow--light {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent);
  margin: 0 0 1rem;
}

/* ---------- kop / navigatie ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.9rem var(--gutter);
  max-width: var(--maxw);
  margin-inline: auto;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(8px);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.wordmark__place { color: var(--clay-dk); }

.nav { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.nav a {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink-soft);
  transition: color 0.15s ease, background 0.15s ease;
}
.nav a:hover { color: var(--ink); background: color-mix(in srgb, var(--clay) 16%, transparent); }
.nav a.is-active { color: var(--clay-dk); background: color-mix(in srgb, var(--clay) 22%, transparent); }
.header-cta { padding-block: 0.55em; }

/* =========================================================
   HERO — dansers-foto onderaan + tekst linksboven
   ========================================================= */
.hero {
  position: relative;
  color: var(--ink);
  overflow: hidden;
  background-color: var(--paper);
  background-image: url("Afbeeldingen/dansers.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}
.hero__grid {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(3.25rem, 8vw, 6rem) var(--gutter) clamp(230px, 36vh, 400px);
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  min-height: clamp(640px, 88vh, 900px);
  background: radial-gradient(58% 44% at 27% 30%,
    rgba(251, 240, 217, 0.92) 0%,
    rgba(251, 240, 217, 0.60) 30%,
    rgba(251, 240, 217, 0) 60%) no-repeat;
}
.hero__content { min-width: 0; max-width: 38rem; }
.hero__eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--clay-dk);
  margin: 0 0 1rem;
}
.hero__title {
  font-size: clamp(2.5rem, 7.5vw, 5.4rem);
  color: var(--ink);
  margin-bottom: 0.55em;
}
.hero__title em { color: var(--clay-dk); }
.hero__sub {
  font-size: 1.18rem;
  max-width: 36ch;
  color: var(--ink);
  margin-bottom: 1.9rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* =========================================================
   BANDEN — volle breedte, inhoud gecentreerd op --maxw
   ========================================================= */
.section, .welkom, .page-hero, .feature-image {
  padding-block: var(--pad-y);
  padding-inline: max(var(--gutter), calc((100% - var(--maxw)) / 2));
}
/* kleuraccenten per band (afwisselend ritme) */
.band-peach { background: var(--peach); }
.band-terra { background: var(--terra); }
.band-peach, .band-terra { --ink-soft: var(--ink); --accent: var(--ink); }
.band-deep {
  background: var(--deep);
  color: var(--on-deep);
  --ink-soft: var(--on-deep);
  --accent: var(--on-deep);
  --line: rgba(253, 241, 230, 0.30);
}
.band-deep h1, .band-deep h2, .band-deep h3, .band-deep .closer__text { color: var(--on-deep); }

/* kaarten houden hun eigen crème-vlak, dus daarbinnen terracotta accenten */
.card, .plan, .contact-card { --accent: var(--clay-dk); }

/* =========================================================
   WELKOM (index)
   ========================================================= */
.welkom__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}
.welkom__photo {
  width: 60%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-img);
}
.welkom__hi {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--accent);
  margin: 0 0 0.4rem;
}
.welkom__lead { font-size: 1.15rem; }
.welkom__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }

/* =========================================================
   SECTIES — algemeen
   ========================================================= */
/* split: stil label in de kantlijn + tekst */
.section--split {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.section__label {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--accent);
  padding-top: 0.35rem;
}
.section__label span {
  font-size: 0;
  width: 0.75rem; height: 0.75rem;
  border-radius: 50%;
  border: 2px solid var(--accent);
  flex: 0 0 auto;
  align-self: center;
}
.section__body { max-width: 65ch; }
.section__body > p { font-size: 1.1rem; }

/* tekst + beeld naast elkaar */
.section--media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.section__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-img);
}
.section__copy { max-width: 42ch; }

/* grote beeld-band */
.feature-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-img);
}

/* waar & wanneer */
.whenwhere__item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.whenwhere__icon {
  width: 26px; height: 26px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 0.2rem;
}
.whenwhere__item strong { display: block; font-size: 1.1rem; }
.whenwhere__item span { color: var(--ink-soft); }
.section--split .btn, .section--media .btn { margin-top: 1.6rem; }

/* kaarten: wat het je brengt */
.section--cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  border: 1px solid color-mix(in srgb, var(--clay-dk) 22%, transparent);
  box-shadow: var(--shadow);
}
.card h3 { color: var(--accent); margin-bottom: 0.3em; }
.card p { margin: 0; }

/* afsluiter */
.section--closer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.closer__text {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  line-height: 1.2;
  max-width: 24ch;
  margin: 0;
}

/* =========================================================
   PAGINA-HERO (binnenpagina's)
   ========================================================= */
.page-hero { padding-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.page-hero h1 { max-width: 16ch; }
.page-hero__lead {
  font-size: 1.28rem;
  max-width: 52ch;
  color: var(--ink-soft);
  margin-top: 0.6rem;
}

/* =========================================================
   OVER MIJ
   ========================================================= */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
}
.portrait {
  width: 70%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-img);
  border: 6px solid var(--paper);
  outline: 1px solid var(--line);
  position: sticky;
  top: 6rem;
}
.about__intro { font-size: 1.28rem; font-family: var(--display); line-height: 1.4; }
.about__text .btn { margin-top: 1rem; }

/* IBFed-regel */
/* IBFed-logo staat nu in de footer (zie .footer-logo) */

/* =========================================================
   PROGRAMMA — kaarten & locatie
   ========================================================= */
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: start;
}
.plan {
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(1.7rem, 3vw, 2.4rem);
  border: 1px solid color-mix(in srgb, var(--clay-dk) 22%, transparent);
  box-shadow: var(--shadow);
}
.plan--accent {
  background: var(--deep);
  color: var(--on-deep);
  --accent: var(--on-deep);
  --ink-soft: var(--on-deep);
  --line: rgba(253, 241, 230, 0.28);
  border-color: transparent;
}
.plan--accent h2, .plan--accent .plan__tag, .plan--accent .price strong { color: var(--on-deep); }
.plan__tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
  margin: 0 0 0.2rem;
}
.plan h2 { margin-bottom: 0.8rem; }
.plan__meta { margin: 0 0 1.3rem; display: grid; gap: 0.7rem; }
.plan__meta div { display: grid; grid-template-columns: 8.5rem 1fr; gap: 0.5rem; }
.plan__meta dt { color: var(--ink-soft); font-size: 0.98rem; }
.plan__meta dd { margin: 0; font-weight: 600; }
.plan__prices { display: grid; gap: 0; margin-bottom: 1.6rem; }
.price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--line);
}
.price span { color: inherit; opacity: 0.9; }
.price strong { font-family: var(--display); font-size: 1.35rem; color: var(--accent); }

/* locatie */
.location {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.location__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-img);
}
.location__address { font-size: 1.2rem; font-weight: 600; }
.facts__note { color: var(--ink-soft); }
.location__info a { color: var(--accent); text-underline-offset: 3px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.8rem;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, var(--clay-dk) 22%, transparent);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-img); }
.contact-card__label {
  font-family: var(--display);
  font-style: italic;
  color: var(--accent);
  font-size: 1.1rem;
}
.contact-card__value { font-weight: 700; word-break: break-word; }

/* uitnodiging (diepe band) */
.section--contact { text-align: center; }
.contact__inner {
  max-width: 46ch;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__inner h2 { color: var(--on-deep); }
.contact__lead { max-width: 42ch; color: var(--on-deep); opacity: 0.92; font-size: 1.15rem; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 0.8rem 0 1.6rem; }
.contact__by { font-style: italic; font-family: var(--display); color: var(--on-deep); margin: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 2.2rem var(--gutter) 2.6rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.6rem 1rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
  border-top: 1px solid var(--line);
}
.site-footer > span:first-of-type { text-align: left; }
.site-footer > span:last-of-type { text-align: right; }
.footer-logo { width: 52px; height: auto; justify-self: center; }

/* =========================================================
   RESPONSIEF
   ========================================================= */
@media (max-width: 860px) {
  .hero__grid {
    padding-bottom: clamp(190px, 48vw, 340px);
    min-height: auto;   /* was: clamp(560px, 90vh, 780px) */
    background: radial-gradient(74% 40% at 50% 26%,
      rgba(251, 240, 217, 0.94) 0%,
      rgba(251, 240, 217, 0.60) 32%,
      rgba(251, 240, 217, 0) 64%) no-repeat;
  }

  @media (max-width: 860px) {
  .site-header {
    position: static;
  }
  .nav {
    display: contents;
  }
  .header-cta {
    flex: 0 0 auto;
  }
}
  .hero__content { max-width: none; }

  .welkom__inner,
  .about,
  .location,
  .section--media { grid-template-columns: 1fr; }
  .welkom__photo, .portrait { max-width: 360px; }
  .portrait { position: static; order: -1; margin-inline: 0; }

  .section--split { grid-template-columns: 1fr; }
  .section__label { padding-top: 0; }

  .section--cards { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .location__media, .section__media { order: -1; }
}

@media (max-width: 560px) {
  .site-header { gap: 0.5rem 0.75rem; }
  .header-cta { order: 3; }
  .plan__meta div { grid-template-columns: 1fr; gap: 0.1rem; }

  /* footer gestapeld en gecentreerd */
  .site-footer { grid-template-columns: 1fr; justify-items: center; gap: 0.7rem; }
  .site-footer > span:first-of-type,
  .site-footer > span:last-of-type { text-align: center; }
}

/* toegankelijkheid: rustige beweging respecteren */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; }
}
