/* Studio VitaNova — gedeelde stylesheet */

:root {
  --creme: #F7F3EB;
  --creme-alt: #FBF8F2;
  --petrol: #2F4E4C;
  --petrol-tint: #4b5f5d;
  --lichtblauwgroen: #DCE9E7;
  --eucalyptus: #79AFA3;
  --perzik: #E7B7A3;
  --taupe: #C8B9A7;

  --max-width: 1120px;
  --max-width-text: 640px;
}

/* Zelf gehoste lettertypen (i.p.v. Google Fonts CDN) — geen data meer naar Google */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-MediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--creme);
  color: var(--petrol);
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--petrol);
  line-height: 1.2;
}

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

.site-header {
  padding: 36px 0;
  background: var(--creme-alt);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  line-height: 1.1;
}

.wordmark .studio {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--petrol);
}

.wordmark .name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 29px;
  letter-spacing: 0.02em;
  margin-top: 1px;
}

.wordmark .tagline {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 6px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--petrol);
}

.main-nav a.current {
  color: var(--eucalyptus);
}

.main-nav a:hover {
  color: var(--eucalyptus);
}

.has-dropdown {
  position: relative;
}

.main-nav ul.dropdown {
  display: block;
}

.dropdown {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 4px);
  min-width: 200px;
  background: var(--creme-alt);
  border: 1px solid var(--taupe);
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(47, 78, 76, 0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 20;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 8px);
}

.dropdown li {
  display: block;
}

.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
}

.dropdown a:hover {
  background: var(--lichtblauwgroen);
}

.nav-cta {
  display: inline-block;
  border: 1px solid var(--petrol);
  border-radius: 3px;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--petrol);
  color: var(--creme);
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--petrol);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 3px;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--perzik);
  color: var(--petrol);
}

.btn-primary:hover {
  background: #dda88f;
}

.btn-outline {
  border-color: var(--petrol);
  color: var(--petrol);
}

.btn-outline:hover {
  background: var(--petrol);
  color: var(--creme);
}

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

.hero {
  padding: 40px 0 96px;
  background: var(--creme-alt);
}

.pijlers {
  background: var(--creme);
}

.hero h1 {
  font-size: 46px;
  margin-bottom: 24px;
}

.hero .bleed-text p {
  font-size: 18px;
  color: var(--petrol-tint);
}

.pijlers-cta {
  text-align: center;
  margin-top: 64px;
}

/* ---------- Hero: gecentreerde tekst-variant (zonder beeld, bv. Contact) ---------- */

.hero-center {
  text-align: center;
}

.hero-center .container {
  max-width: var(--max-width-text);
  margin: 0 auto;
}

.hero-center p {
  font-size: 18px;
  color: var(--petrol-tint);
  margin-top: 8px;
}

/* ---------- Bleed-rij: tekst-naast-beeld, foto loopt door tot de rand ---------- */

/* De tekstkolom is verhoudingsgewijs, niet gemaximeerd op 460px. Dat was de
   oorspronkelijke opzet en die liep boven ongeveer 1500px viewport vast: de
   padding-left groeit mee met het scherm, en zodra die groter werd dan de
   kolom van 460px bleef er nul contentbreedte over. De kop brak dan per woord
   af en liep bij 2560px 228px over de foto heen. De padding blijft staan — die
   houdt de tekst uitgelijnd met de container van 1120px op de rest van de
   pagina — maar de kolom kan nu meegroeien en de tekst zelf is gemaximeerd. */
.bleed-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 64px;
  width: 100%;
}

.bleed-text {
  padding-left: max(32px, calc((100vw - 1120px) / 2 + 32px));
  padding-right: 32px;
}

.bleed-text > * {
  max-width: 460px;
}

.bleed-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

@media (max-width: 900px) {
  .bleed-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bleed-text {
    padding-left: 32px;
    padding-right: 32px;
  }

  .bleed-image {
    order: -1;
  }
}

/* ---------- Generic section spacing ---------- */

section {
  padding: 96px 0;
}

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

.verhaal {
  background: var(--creme);
}

.kwalificaties {
  background: var(--creme-alt);
}

.werkwijze {
  background: var(--creme);
}

.section-title {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--petrol-tint);
  margin-bottom: 64px;
}

/* ---------- Pijlers / tegels ---------- */

.tegels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.tegel {
  text-align: center;
}

.tegel-badge {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--lichtblauwgroen);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.tegel-badge svg {
  width: 56px;
  height: 56px;
}

.tegel h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tegel p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--petrol-tint);
  max-width: 210px;
  margin: 0 auto;
}

/* ---------- Tekst-naast-beeld ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.split-text .rule {
  width: 40px;
  height: 1px;
  background: var(--perzik);
  margin-bottom: 28px;
}

.split-text h2 {
  font-size: 38px;
  margin-bottom: 32px;
}

.split-text h2 em {
  font-style: italic;
  color: var(--eucalyptus);
}

.split-image img {
  border-radius: 4px;
  width: 100%;
  height: auto;
}

/* Zachte uitloop naar boven/links, zoals Premium & Refined moodboard */
.img-fade {
  -webkit-mask-image: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 1) 28%);
  mask-image: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 1) 28%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* ---------- Testimonial ---------- */

.testimonial {
  background: var(--petrol);
  color: var(--creme);
}

.testimonial .container {
  max-width: 920px;
  text-align: center;
}

.testimonial-label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 30px;
  color: var(--creme);
  margin-bottom: 32px;
}

.testimonial .kicker {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  margin-bottom: 40px;
  color: var(--eucalyptus);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  text-align: left;
}

.testimonial p.quote {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--lichtblauwgroen);
  margin-bottom: 24px;
}

.testimonial span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eucalyptus);
}

/* ---------- Over Rhani ---------- */

.portret-split {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
}

.portret-image {
  display: flex;
  justify-content: center;
}

.portret-image img {
  max-width: 320px;
  width: 100%;
  border-radius: 6px;
}

.verhaal .container,
.werkwijze .container {
  max-width: var(--max-width-text);
}

.verhaal .rule,
.werkwijze .rule {
  width: 40px;
  height: 1px;
  background: var(--perzik);
  margin-bottom: 28px;
}

.verhaal h2,
.werkwijze h2 {
  font-size: 32px;
  margin-bottom: 28px;
}

.verhaal p,
.werkwijze p {
  margin-bottom: 20px;
}

.verhaal p:last-child,
.werkwijze p:last-child {
  margin-bottom: 0;
}

.naam-banner {
  background: var(--petrol);
  color: var(--creme);
}

.naam-banner .container {
  max-width: var(--max-width-text);
  text-align: center;
}

.naam-banner .eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 24px;
}

.naam-banner p.quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.5;
  color: var(--creme);
}

.kwalificaties .container {
  max-width: var(--max-width-text);
}

.kwalificaties h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.kwalificaties ul {
  list-style: none;
}

.kwalificaties li {
  border-left: 2px solid var(--taupe);
  padding: 4px 0 4px 24px;
  margin-bottom: 24px;
  font-size: 17px;
  color: var(--petrol-tint);
}

.kwalificaties li:last-child {
  margin-bottom: 0;
}

.over-cta {
  text-align: center;
}

/* ---------- Aanbod ---------- */

.aanbod-sectie h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 24px;
}

.aanbod-intro {
  max-width: var(--max-width-text);
  margin: 0 auto 56px;
  text-align: center;
  color: var(--petrol-tint);
}

.aanbod-image {
  max-width: 380px;
  margin: 0 auto 56px;
}

.aanbod-image img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.aanbod-subkop {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--petrol-tint);
  margin-bottom: 40px;
}

.masterclass-lijst {
  max-width: 940px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

.masterclass-item {
  border: 1px solid var(--taupe);
  border-radius: 8px;
  background: var(--creme-alt);
  padding: 36px 32px;
  box-shadow: 0 1px 3px rgba(47, 78, 76, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.masterclass-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(47, 78, 76, 0.1);
}

.masterclass-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 14px);
  margin: 0 auto;
}

.masterclass-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eucalyptus);
  margin-bottom: 10px;
}

.masterclass-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--petrol);
  margin-bottom: 12px;
}

.masterclass-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.masterclass-meta .duur {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--petrol-tint);
}

.masterclass-meta .masterclass-prijs {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--petrol);
  background: var(--perzik);
  border-radius: 20px;
  padding: 5px 14px;
}

.masterclass-item .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--eucalyptus);
  margin-bottom: 14px;
}

.masterclass-item p.beschrijving,
.prijs-card p.beschrijving {
  font-size: 15px;
  color: var(--petrol-tint);
  margin-bottom: 10px;
}

.masterclass-item p.beschrijving:last-child,
.prijs-card p.beschrijving:last-child {
  margin-bottom: 0;
}

.masterclass-item p.beschrijving strong,
.prijs-card p.beschrijving strong {
  color: var(--petrol);
}

.aanbod-cta {
  text-align: center;
  margin-bottom: 72px;
}

.aanbod-cta:last-child {
  margin-bottom: 0;
}

.prijs-rijen {
  max-width: var(--max-width-text);
  margin: 0 auto;
}

.prijs-rij {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--taupe);
}

.prijs-rij:first-child {
  border-top: none;
}

.prijs-rij .naam {
  font-weight: 700;
  font-size: 15px;
}

.prijs-rij .details {
  font-size: 13px;
  color: var(--petrol-tint);
  margin-top: 4px;
}

.prijs-rij .bedrag {
  text-align: right;
  white-space: nowrap;
  font-weight: 700;
  font-size: 15px;
}

.prijs-rij .bedrag small {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: var(--petrol-tint);
  margin-top: 4px;
}

.kennismaking-callout {
  max-width: var(--max-width-text);
  margin: 0 auto 48px;
  text-align: center;
}

.kennismaking-callout .prijs-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--eucalyptus);
  margin-bottom: 10px;
}

.kennismaking-callout h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--petrol);
  margin-bottom: 10px;
}

.kennismaking-callout p {
  font-size: 15px;
  color: var(--petrol-tint);
}

.prijs-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.prijs-card {
  border: 1px solid var(--taupe);
  border-radius: 8px;
  background: var(--creme-alt);
  padding: 32px 28px;
  box-shadow: 0 1px 3px rgba(47, 78, 76, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prijs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(47, 78, 76, 0.1);
}

.prijs-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--petrol);
  margin-bottom: 12px;
}

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

.contact-section {
  background: var(--creme);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: 26px;
  margin-bottom: 28px;
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  margin-bottom: 24px;
}

.contact-info li strong {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--petrol-tint);
  margin-bottom: 6px;
}

.contact-info li span,
.contact-info li a {
  font-size: 16px;
  color: var(--petrol);
}

.contact-info li a:hover {
  color: var(--eucalyptus);
}

.contact-form {
  display: grid;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--petrol-tint);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--taupe);
  border-radius: 3px;
  background: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--petrol);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--taupe);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  border: none;
  cursor: pointer;
  margin-top: 8px;
}

.contact-form button[disabled] {
  opacity: 0.6;
  cursor: default;
}

/* Antispam-veld: onzichtbaar voor bezoekers, wel vindbaar voor bots. */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 0;
  padding: 14px 16px;
  border-radius: 3px;
  border: 1px solid var(--taupe);
  background: var(--creme-alt);
  font-size: 15px;
  line-height: 1.6;
  color: var(--petrol);
}

.form-status-ok {
  border-color: var(--eucalyptus);
  background: var(--lichtblauwgroen);
}

.form-status-fout {
  border-color: var(--perzik);
  background: #FBEDE7;
}

/* ---------- Nieuwsbrief ---------- */

.newsletter .container {
  max-width: var(--max-width-text);
  text-align: center;
}

.newsletter h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.newsletter p {
  color: var(--petrol-tint);
  margin-bottom: 36px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 15px 18px;
  border: 1px solid var(--taupe);
  border-radius: 3px;
  background: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--petrol);
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--taupe);
}

.newsletter-form button {
  cursor: pointer;
}

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

.site-footer {
  background: var(--petrol);
  color: var(--lichtblauwgroen);
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-grid .wordmark .studio {
  color: var(--eucalyptus);
}

.footer-grid .wordmark .name {
  color: var(--creme);
}

.footer-grid p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--lichtblauwgroen);
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--creme);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--perzik);
}

.footer-bottom {
  border-top: 1px solid rgba(220, 233, 231, 0.2);
  padding-top: 28px;
  font-size: 12px;
  color: var(--taupe);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .tegels {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-image {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .prijs-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .masterclass-lijst {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .masterclass-item {
    padding: 28px 24px;
  }

  .masterclass-item:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 42px;
  }

  section {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  .site-header .container {
    position: relative;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 20px;
    background: var(--creme-alt);
    border-top: 1px solid var(--taupe);
    box-shadow: 0 12px 24px rgba(47, 78, 76, 0.12);
    padding: 8px 32px 28px;
    z-index: 100;
  }

  .main-nav.nav-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: block;
    padding: 14px 0;
  }

  .has-dropdown {
    width: 100%;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: block;
    width: 100%;
    max-width: none;
    min-width: 0;
    border: none;
    box-shadow: none;
    background: none;
    padding: 0 0 4px 16px;
  }

  .dropdown a {
    padding: 10px 0;
  }

  .tegels {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 34px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
