/* ===== CSS VARIABELEN ===== */
:root {
  /* Primary — Blush family */
  --blush: #D09080;
  --blush-deep: #BE7E68;
  --blush-soft: #E4C4B8;
  --blush-light: #F0DED6;
  --blush-whisper: #F8F0EC;

  /* Secondary — Taupe family */
  --taupe: #B8A99A;
  --taupe-dark: #8C7B6B;
  --taupe-deep: #6B5D55;

  /* Neutrals — donkerder voor betere leesbaarheid (WCAG AA) */
  --cream: #F7F3EF;
  --warm-white: #FDFBF9;
  --text-dark: #3D2E27;
  --text-medium: #4a4039;
  --text-light: #6b5f58;
  --border-light: #E8E0D8;
  --brand-dark: #3D3029;

  /* Links — voldoende contrast op lichte achtergrond */
  --link-color: #9a5c4a;
  --link-hover: #7d4a3b;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  /* Responsive breakpoints (voor reference in media queries) */
  --bp-sm: 576px;
  --bp-md: 768px;
  --bp-lg: 992px;
  --bp-xl: 1200px;
  /* Touch target minimum (WCAG / Apple HIG) */
  --touch-min: 44px;
}

/* ===== RESET & BASIS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--warm-white);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw + 1.5rem, 4rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(1.75rem, 4vw + 1rem, 2.5rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw + 0.8rem, 1.8rem);
}

p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--link-hover);
}

/* Focus zichtbaar voor toetsenbord en toegankelijkheid (WCAG) */
a:focus-visible,
.btn:focus-visible,
button:focus-visible,
.hamburger:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid var(--link-color);
  outline-offset: 3px;
}

/* Skip link: direct naar hoofdinhoud voor toetsenbord/screenreader */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--brand-dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: 8px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--blush-soft);
  outline-offset: 2px;
}

/* ===== HEADER / NAVIGATIE ===== */
.header {
  background: var(--warm-white);
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(61, 46, 39, 0.05);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(61, 46, 39, 0.08);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text-dark);
}

.logo-icon {
  width: 50px;
  height: 65px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  flex-wrap: nowrap;
}

/* Dropdown-wrapper: op desktop gewoon links + CTA naast elkaar, altijd één rij */
.nav-dropdown {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-dropdown .nav-cta {
  flex-shrink: 0;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-dark);
}

/* Huidige pagina in navigatie — subtiele active status */
.nav-links a.is-active {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
}
.nav-links a.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--link-color);
  opacity: 0.9;
}

.nav-cta {
  margin-left: 1rem;
}

/* Hamburger menu (mobiel) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  border-radius: 8px;
  transition: background 0.2s ease;
}

.hamburger:hover {
  background: var(--blush-whisper);
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== BUTTONS (CTA) ===== */
.btn {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.875rem, 2vw, 0.9rem);
  letter-spacing: 0.08em;
  padding: 0.875rem 1.75rem;
  min-height: var(--touch-min);
  min-width: var(--touch-min);
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
}

.btn-primary {
  background: var(--blush-deep);
  color: var(--warm-white);
}

.btn-primary:hover {
  background: var(--link-hover);
  color: var(--warm-white);
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--taupe-dark);
}

.btn-secondary:hover {
  background: var(--cream);
  color: var(--text-dark);
}

/* ===== SECTIONS ===== */
.section {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
}

.section--wide {
  max-width: 1400px;
}

.section-alt {
  background: var(--blush-whisper);
}

/* ===== CARDS ===== */
.card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(61, 46, 39, 0.06);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Aanbod: 3 kaarten op één rij op desktop */
@media (min-width: 992px) {
  .card-grid--three {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* ===== CTA BLOCK ===== */
.cta-block {
  background: linear-gradient(170deg, var(--blush-light) 0%, var(--blush-soft) 100%);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 16px;
}

.cta-block h2 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.cta-block p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-medium);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}

.cta-buttons .btn {
  flex: 0 1 auto;
  min-width: 0;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(61, 46, 39, 0.08);
}

/* Portret-placeholders: iets ronder in lijn met huisstijl (rond of zacht afgerond) */
.two-column img.placeholder-portret {
  border-radius: 16px;
}

/* Over Els sectie: desktop = afbeelding links, tekst rechts; mobiel = tekst dan afbeelding */
.section-els .els-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}

.section-els .els-text {
  width: 100%;
}

.section-els .els-portret-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: linear-gradient(145deg, var(--blush-whisper) 0%, var(--blush-light) 50%, var(--cream) 100%);
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(140, 123, 107, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.section-els .els-portret-wrap .els-portret {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 16px;
  display: block;
}

@media (min-width: 769px) {
  .section-els .els-content {
    flex-direction: row;
    align-items: stretch;
    gap: 3rem;
    max-width: 100%;
  }

  .section-els .els-portret-wrap {
    order: -1;
    flex: 0 0 auto;
    width: 320px;
    max-width: none;
    aspect-ratio: 3 / 2;
  }

  .section-els .els-portret-wrap .els-portret {
    object-position: center top;
  }

  .section-els .els-text {
    flex: 1;
    min-width: 0;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brand-dark);
  color: var(--cream);
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 60px;
  height: 78px;
  margin: 0 auto 1rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--cream);
  margin: 2rem 0;
}

.footer-info {
  margin: 2rem 0;
  color: var(--cream);
  font-size: 0.9rem;
}

.footer-info p {
  margin: 0.5rem 0;
  color: var(--cream);
}

.footer-info a {
  color: var(--blush-soft);
  text-decoration: none;
}

.footer-info a:hover {
  color: var(--blush-light);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-whatsapp-icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  color: var(--blush-soft);
}

.footer-whatsapp-link:hover .footer-whatsapp-icon {
  color: var(--blush-light);
}

.footer-copyright {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 243, 239, 0.3);
  color: var(--cream);
  font-size: 0.85rem;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: min(80vh, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
  background: linear-gradient(170deg, var(--blush-whisper) 0%, var(--blush-light) 40%, var(--blush-soft) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -15%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(212, 171, 155, 0.25) 0%, transparent 65%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-logo {
  width: 110px;
  height: 140px;
  margin: 0 auto 2rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 8vw + 1rem, 5rem);
  font-weight: 300;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-dark);
  margin: 2rem 0 3rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}

.hero-buttons .btn {
  flex: 0 1 auto;
  min-width: 0;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--blush-whisper);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
  text-align: center;
}

.page-header h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3rem);
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-medium);
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(61, 46, 39, 0.05);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--text-dark);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--blush-light);
}

.faq-icon {
  color: var(--link-color);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 2rem 1.5rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ===== STEPS / TIMELINE ===== */
.steps-list {
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--link-color);
  flex-shrink: 0;
  line-height: 1;
}

.step-content {
  flex: 1;
  padding-left: 1rem;
  border-left: 2px solid var(--blush-light);
}

.step-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

/* ===== OFFER CARDS ===== */
.offer-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 2px 16px rgba(61, 46, 39, 0.05);
  min-width: 0; /* gelijke breedte in grid, CTA kan 100% nemen */
}

/* Variabele content groeit, zodat Duur/Locatie op dezelfde hoogte komen in alle cards */
.offer-card-content {
  flex: 1;
  min-height: 0;
}

.offer-card > .offer-details {
  flex: 0 0 auto;
}

/* Card CTA’s:zelfde hoogte als nav-knop; ruimte via wrapper */
.offer-card-cta-wrap {
  margin-top: auto;
  padding-top: 2rem;
  width: 100%;
  min-width: 0; /* nodig in flex/grid zodat kind 100% kan nemen */
}

.offer-card-cta-wrap .btn {
  width: 100% !important;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.offer-card h2 {
  margin-bottom: 1rem;
}

.offer-subtitle {
  color: var(--text-medium);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.offer-features {
  list-style: none;
  margin: 2rem 0 0.75rem 0;
}

.offer-features li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-medium);
}

.offer-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--link-color);
  font-weight: bold;
}

.offer-details {
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.offer-detail {
  margin: 0.75rem 0;
  color: var(--text-medium);
}

.offer-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--link-color);
  font-weight: 500;
  margin: 1rem 0;
}

/* Uitklapbare sessiedata (groepssessie) – direct onder titel, duidelijke CTA */
.session-dates-wrap {
  margin-bottom: 1.5rem;
}

.session-dates-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
}

/* CTA-styling: opvallende knop onder de titel */
.session-dates-toggle.btn-cta-dates {
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--blush-deep, #BE7E68);
  background: var(--blush-whisper);
  border: 2px solid var(--blush-soft);
  border-radius: 10px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.session-dates-toggle.btn-cta-dates:hover {
  background: var(--blush-light);
  border-color: var(--blush);
  color: var(--text-dark);
}

.session-dates-toggle.btn-cta-dates[aria-expanded="true"]::after {
  content: ' ▲';
}

.session-dates-toggle.btn-cta-dates[aria-expanded="false"]::after {
  content: ' ▼';
}

.session-dates-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.session-dates-wrap.is-open .session-dates-content {
  max-height: 22rem;
  margin-top: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--blush-whisper);
  border-radius: 10px;
  border: 1px solid var(--border-light);
}

.session-dates-content[hidden] {
  display: block;
  visibility: hidden;
}

.session-dates-wrap.is-open .session-dates-content[hidden] {
  visibility: visible;
}

.session-dates-title {
  font-weight: 500;
  margin: 0 0 0.75rem;
  color: var(--text-dark);
}

.session-dates-content p {
  margin: 0 0 0.75rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.session-dates-content p:last-child {
  margin-bottom: 0;
}

.session-dates-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.session-dates-list li {
  padding: 0.35rem 0;
  color: var(--text-medium);
}

/* ===== CONTACT INFO ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-card {
  background: var(--blush-whisper);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-info-card h3 {
  margin-bottom: 1.5rem;
}

.contact-detail {
  margin: 1.5rem 0;
  color: var(--text-medium);
}

.contact-detail strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.5rem;
}

.contact-detail a {
  color: var(--link-color);
}

.contact-link-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-underline-offset: 0.2em;
}

.contact-link-with-icon:hover {
  color: var(--link-hover);
}

.contact-icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  vertical-align: middle;
}

.contact-icon-whatsapp {
  color: var(--link-color);
}

.contact-link-with-icon:hover .contact-icon-whatsapp {
  color: var(--link-hover);
}

/* ===== RESPONSIVE — Marktstandaarden (mobile-first breakpoints) ===== */

/* Extra small (phones portret) — tot 575px */
@media (max-width: 575px) {
  .header {
    padding: 0.875rem 1rem;
  }

  .header-container {
    gap: 0.75rem;
    min-height: 0;
  }

  .logo-link {
    min-width: 0;
    flex: 1 1 auto;
  }

  .logo-text {
    font-size: 1.35rem;
    letter-spacing: 0.03em;
  }

  .logo-icon {
    width: 38px;
    height: 50px;
    flex-shrink: 0;
  }

  .nav {
    flex-shrink: 0;
  }

  .cta-block,
  .hero-content {
    padding-left: 0;
    padding-right: 0;
  }

  .cta-buttons,
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .cta-buttons .btn,
  .hero-buttons .btn {
    width: 100%;
    min-width: 0;
    padding: 1rem 1.5rem;
    white-space: normal;
  }

  .card {
    padding: 1.5rem;
  }

  .cta-block {
    padding: 2.5rem 1rem;
    margin: 2.5rem 0;
  }

  .offer-card {
    padding: 1.5rem;
  }

  .offer-card-cta-wrap .btn {
    width: 100%;
    display: flex;
  }

  .faq-question {
    padding: 1.25rem 1rem;
    font-size: 1.05rem;
  }

  .faq-answer-content {
    padding: 0 1rem 1.25rem;
  }

  .step-item {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .step-content {
    padding-left: 0;
    border-left: none;
    border-top: 2px solid var(--blush-light);
    padding-top: 0.75rem;
    margin-left: 0;
  }

  .step-number {
    font-size: 2.25rem;
  }

  .footer {
    padding: 2.5rem 1rem 1.5rem;
  }

  .footer-brand {
    font-size: 1.5rem;
  }

  .footer-logo-icon {
    width: 48px;
    height: 62px;
  }
}

/* Small (phones landscape / grote phones) — 576px–767px */
@media (min-width: 576px) and (max-width: 767px) {
  .cta-buttons .btn,
  .hero-buttons .btn {
    min-width: 160px;
  }
}

/* Medium (tablets) — tot 768px: navigatie en layout */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
    position: static; /* dropdown positioneert t.o.v. .header */
  }

  /* Hele dropdown (links + CTA) verborgen in header; alleen hamburger zichtbaar */
  .nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(61, 46, 39, 0.1);
    margin-top: 0.5rem;
    border-radius: 0 0 12px 12px;
    gap: 0;
  }

  .nav-dropdown.active {
    display: flex;
  }

  .nav-dropdown .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: static;
    padding: 0;
    box-shadow: none;
    margin: 0;
  }

  .nav-dropdown .nav-links li {
    border-bottom: 1px solid var(--border-light);
  }

  .nav-dropdown .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-dropdown .nav-links a {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    min-height: var(--touch-min);
  }

  .nav-dropdown .nav-cta {
    margin: 0;
    margin-top: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    width: 100%;
  }

  .nav-dropdown .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-column > div:first-child {
    order: 1;
  }

  .two-column > div:last-child {
    order: 2;
  }

  .two-column img {
    max-height: 280px;
    object-fit: cover;
  }

  .section-els .els-content {
    gap: 2rem;
  }

  .section-els .els-portret-wrap {
    padding: 0;
    /* Hogere crop op mobiel: meer ruimte rond gezicht, mooier portretkader */
    aspect-ratio: 3 / 4;
  }

  .section-els .els-portret-wrap .els-portret {
    /* Focus op gezicht met wat headroom; voorkomt te strakke afsnijding */
    object-position: center 38%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card-grid,
  .card-grid--three {
    grid-template-columns: 1fr;
  }
}

/* Tablet tot 991px */
@media (max-width: 991px) {
  .hero-logo {
    width: 90px;
    height: 117px;
  }
}

/* Large (desktop): dropdown toont links + CTA in één rij */
@media (min-width: 769px) {
  .nav-dropdown {
    display: flex;
  }
}
