/* ============================================
   CAMPING HET NATUUR HOF — STYLESHEET
   ============================================ */

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

:root {
  --groen-donker:  #2a3d22;
  --groen-midden:  #4a6e38;
  --groen-zacht:   #7a9e60;
  --groen-licht:   #c8ddb8;
  --groen-bleek:   #eef5e8;
  --zand:          #d4a85a;
  --zand-licht:    #f5e8cc;
  --bruin:         #8b6540;
  --creme:         #faf6ef;
  --wit:           #ffffff;
  --tekst-donker:  #1e2b16;
  --tekst-midden:  #4a5c3c;
  --tekst-licht:   #7a8e6c;
  --schaduw:       0 4px 24px rgba(42,61,34,0.10);
  --radius:        14px;
  --radius-klein:  8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--tekst-donker);
  background: var(--creme);
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.25; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--groen-donker); }
h3 { font-size: 1.15rem; color: var(--groen-donker); }
p { color: var(--tekst-midden); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; border-radius: var(--radius); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }

.sectie-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--groen-midden);
  background: var(--groen-bleek);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.sectie-label.licht { color: var(--zand); background: rgba(212,168,90,0.15); }

.sectie-sub { max-width: 580px; margin: 10px auto 0; text-align: center; color: var(--tekst-licht); font-size: 0.95rem; }

/* KNOPPEN */
.knop {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}
.knop-hoofd { background: var(--groen-midden); color: var(--wit); border-color: var(--groen-midden); }
.knop-hoofd:hover { background: var(--groen-donker); border-color: var(--groen-donker); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,110,56,0.35); }
.knop-rand { background: transparent; color: var(--wit); border-color: rgba(255,255,255,0.7); }
.knop-rand:hover { background: rgba(255,255,255,0.15); border-color: var(--wit); }

/* ============================================
   NAVIGATIE
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 18px 0;
  transition: all 0.3s ease;
}
.navbar.gescrolld {
  background: rgba(42,61,34,0.96);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 11px;
  color: var(--wit);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
}
.logo-svg { width: 40px; height: 40px; flex-shrink: 0; }
.logo-svg.klein { width: 30px; height: 30px; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500;
  transition: color 0.25s; position: relative;
}
.nav-links a:hover { color: var(--wit); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--zand); transform: scaleX(0); transition: transform 0.25s;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-label {
  background: var(--zand) !important; color: var(--groen-donker) !important;
  padding: 5px 14px; border-radius: 99px;
  font-weight: 700 !important; font-size: 0.8rem !important;
}
.nav-label::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--wit); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(165deg, #1e3018 0%, #2a3d22 45%, #3d5c2e 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative;
  padding: 120px 24px 80px; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 75%, rgba(122,158,96,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 25%, rgba(212,168,90,0.1) 0%, transparent 50%);
}
.hero-patroon {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 10 L50 30 L70 30 L55 45 L62 65 L40 52 L18 65 L25 45 L10 30 L30 30Z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.hero-inhoud { position: relative; z-index: 2; max-width: 720px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9); padding: 6px 20px; border-radius: 99px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em;
  margin-bottom: 22px; backdrop-filter: blur(4px);
}
.hero-inhoud h1 {
  font-size: clamp(2.8rem, 7vw, 4.8rem); color: var(--wit);
  margin-bottom: 18px; font-weight: 700;
}
.hero-inhoud h1 em { font-style: italic; color: var(--zand); }
.hero-inhoud p {
  font-size: 1.1rem; color: rgba(255,255,255,0.82);
  max-width: 520px; margin: 0 auto 32px; font-weight: 300;
}
.hero-knoppen { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.45); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.scroll-pijl {
  width: 18px; height: 18px;
  border-right: 2px solid rgba(255,255,255,0.35); border-bottom: 2px solid rgba(255,255,255,0.35);
  transform: rotate(45deg); animation: stuit 1.8s infinite;
}
@keyframes stuit { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(6px)} }

/* ============================================
   INTRO
   ============================================ */
.intro { background: var(--wit); }
.intro-raster { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.intro-tekst h2 { margin: 12px 0 18px; }
.intro-tekst p { margin-bottom: 14px; }
.intro-cijfers {
  display: flex; gap: 28px; margin-top: 32px;
  padding-top: 28px; border-top: 1px solid var(--groen-bleek);
}
.cijfer strong { display: block; font-size: 1.9rem; font-family: 'Playfair Display', serif; color: var(--groen-midden); line-height: 1; }
.cijfer span { font-size: 0.82rem; color: var(--tekst-licht); }

.foto-raster { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.foto-raster img { height: 200px; object-fit: cover; width: 100%; }
.foto-raster img:first-child { grid-column: 1 / -1; height: 240px; }

/* ============================================
   NIEUW 2027
   ============================================ */
.nieuw {
  background: var(--groen-donker); position: relative;
  overflow: hidden; text-align: center;
}
.nieuw::before {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(122,158,96,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.nieuw h2 { color: var(--wit); margin: 12px 0 8px; }
.nieuw .sectie-sub { color: rgba(255,255,255,0.6); margin-bottom: 50px; }

.nieuw-raster {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  text-align: left;
}
.nieuw-kaart { width: calc(20% - 15px); min-width: 200px; }
.nieuw-kaart {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius); padding: 26px 22px;
  transition: all 0.25s; position: relative; overflow: hidden;
}
.nieuw-kaart:hover { background: rgba(255,255,255,0.10); transform: translateY(-4px); }
.nieuw-kaart.uitgelicht { background: rgba(122,158,96,0.16); border-color: rgba(122,158,96,0.35); }
.nieuw-label {
  position: absolute; top: 14px; right: 14px;
  background: var(--zand); color: var(--groen-donker);
  font-size: 0.68rem; font-weight: 700; padding: 3px 10px;
  border-radius: 99px; letter-spacing: 0.05em; text-transform: uppercase;
}
.nieuw-icoon { font-size: 1.9rem; margin-bottom: 14px; }
.nieuw-kaart h3 { color: var(--wit); font-size: 0.97rem; margin-bottom: 8px; }
.nieuw-kaart p { color: rgba(255,255,255,0.62); font-size: 0.86rem; line-height: 1.6; }

/* ============================================
   PLATTEGROND
   ============================================ */
.plattegrond { background: var(--creme); text-align: center; }
.plattegrond h2 { margin: 12px 0 8px; }
.plattegrond-wrap {
  margin-top: 48px; background: var(--wit);
  border-radius: var(--radius); padding: 32px;
  box-shadow: var(--schaduw); overflow-x: auto;
}
.plattegrond-wrap svg { max-width: 100%; height: auto; }
.legenda {
  display: flex; flex-wrap: wrap; gap: 16px 28px;
  justify-content: center; margin-top: 24px;
}
.legenda-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--tekst-midden); }
.legenda-vak { width: 18px; height: 18px; border-radius: 4px; flex-shrink: 0; }

/* ============================================
   ACCOMMODATIES
   ============================================ */
.accommodaties { background: var(--groen-bleek); text-align: center; }
.accommodaties h2 { margin: 12px 0 8px; }
.accom-raster { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.accom-kaart {
  background: var(--wit); border-radius: var(--radius); padding: 32px 26px;
  border: 1.5px solid transparent; transition: all 0.25s;
  position: relative; overflow: hidden; text-align: left;
}
.accom-kaart:hover { transform: translateY(-5px); box-shadow: var(--schaduw); }
.accom-kaart.uitgelicht { border-color: var(--groen-midden); }
.accom-lint {
  position: absolute; top: 18px; right: 18px;
  background: var(--groen-midden); color: var(--wit);
  font-size: 0.7rem; font-weight: 700; padding: 3px 11px;
  border-radius: 99px; text-transform: uppercase; letter-spacing: 0.05em;
}
.accom-icoon { font-size: 2.2rem; margin-bottom: 18px; }
.accom-kaart h3 { margin-bottom: 10px; }
.accom-kaart p { font-size: 0.88rem; margin-bottom: 14px; }
.accom-kaart ul { list-style: none; }
.accom-kaart li { font-size: 0.86rem; color: var(--tekst-midden); padding: 5px 0; border-bottom: 1px solid var(--groen-bleek); }
.accom-kaart li:last-child { border-bottom: none; }

/* ============================================
   FACILITEITEN
   ============================================ */
.faciliteiten { background: var(--wit); text-align: center; }
.faciliteiten h2 { margin: 12px 0 44px; }
.fac-raster {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.fac-item { width: calc(20% - 12px); min-width: 120px; }
.fac-item {
  background: var(--creme); border-radius: var(--radius-klein);
  padding: 22px 10px; border: 1px solid rgba(74,110,56,0.1);
  transition: all 0.25s;
}
.fac-item:hover { background: var(--groen-bleek); transform: translateY(-3px); }
.fac-item span { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.fac-item p { font-size: 0.78rem; color: var(--tekst-midden); }

/* ============================================
   OMGEVING
   ============================================ */
.omgeving { background: var(--zand-licht); }
.omgeving-raster { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.omgeving-tekst h2 { margin: 12px 0 18px; }
.omgeving-tekst > p { margin-bottom: 26px; }

.partner-blok {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--wit); border-radius: var(--radius); padding: 22px;
  margin-bottom: 26px; border-left: 4px solid var(--zand);
  box-shadow: var(--schaduw);
}
.partner-icoon { font-size: 1.9rem; flex-shrink: 0; margin-top: 2px; }
.partner-blok h3 { color: var(--groen-donker); margin-bottom: 6px; font-size: 1rem; }
.partner-blok p { font-size: 0.88rem; margin-bottom: 8px; }
.partner-tag {
  display: inline-block; background: var(--zand-licht); color: var(--bruin);
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px;
  border-radius: 99px; text-transform: uppercase; letter-spacing: 0.05em;
}
.omgeving-lijst { list-style: none; }
.omgeving-lijst li { padding: 9px 0; font-size: 0.9rem; color: var(--tekst-midden); border-bottom: 1px solid rgba(74,110,56,0.12); }
.omgeving-lijst li:last-child { border-bottom: none; }

.omgeving-foto img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--schaduw); }

/* ============================================
   DUURZAAMHEID
   ============================================ */
.duurzaamheid {
  background: linear-gradient(135deg, #c8971a, var(--zand));
  padding: 60px 0;
}
.duur-binnen { display: flex; gap: 44px; align-items: center; }
.duur-icoon { font-size: 3.5rem; flex-shrink: 0; }
.duur-tekst { flex: 1; }
.duur-tekst h2 { color: var(--groen-donker); margin-bottom: 10px; }
.duur-tekst p { color: rgba(30,43,22,0.82); }
.duur-cijfers { display: flex; flex-direction: column; gap: 14px; flex-shrink: 0; }
.duur-cijfers div strong { display: block; font-size: 1.3rem; font-family: 'Playfair Display', serif; color: var(--groen-donker); }
.duur-cijfers div span { font-size: 0.78rem; color: rgba(30,43,22,0.65); text-transform: uppercase; letter-spacing: 0.06em; }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--wit); text-align: center; }
.contact h2 { margin: 12px 0 8px; }
.contact-raster { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; margin-top: 52px; text-align: left; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 28px; }
.contact-item span { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; color: var(--groen-donker); margin-bottom: 3px; }
.contact-item p { font-size: 0.88rem; }

.contact-formulier { display: flex; flex-direction: column; gap: 18px; }
.form-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-groep { display: flex; flex-direction: column; gap: 6px; }
.form-groep label { font-size: 0.83rem; font-weight: 600; color: var(--tekst-donker); }
.form-groep input, .form-groep select, .form-groep textarea {
  padding: 11px 15px; border: 1.5px solid rgba(74,110,56,0.2);
  border-radius: var(--radius-klein); font-family: 'Inter', sans-serif;
  font-size: 0.88rem; color: var(--tekst-donker); background: var(--creme);
  transition: border-color 0.25s; outline: none;
}
.form-groep input:focus, .form-groep select:focus, .form-groep textarea:focus { border-color: var(--groen-midden); background: var(--wit); }
.form-groep textarea { resize: vertical; min-height: 110px; }
.form-succes { display: none; background: var(--groen-bleek); color: var(--groen-midden); border-radius: var(--radius-klein); padding: 13px; font-weight: 600; text-align: center; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--groen-donker); padding: 56px 0 28px; color: rgba(255,255,255,0.65); }
.footer-raster { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-merk { display: flex; flex-direction: column; gap: 10px; }
.footer-merk span { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--wit); display: flex; align-items: center; gap: 9px; }
.footer-merk p { font-size: 0.86rem; }
.footer-links h4 { color: var(--wit); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.footer-links a { display: block; font-size: 0.86rem; color: rgba(255,255,255,0.55); margin-bottom: 9px; transition: color 0.25s; }
.footer-links a:hover { color: var(--wit); }
.footer-onder { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.38); flex-wrap: wrap; gap: 10px; }
.footer-onder strong { color: rgba(255,255,255,0.65); }

/* ============================================
   PRIJS & VOETNOOT (accommodaties)
   ============================================ */
.accom-prijs {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--groen-midden);
  margin: 6px 0 14px;
  line-height: 1;
}
.accom-prijs span {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--tekst-licht);
}
.accom-voetnoot {
  font-size: 0.75rem !important;
  color: var(--tekst-licht) !important;
  margin-top: 10px !important;
  font-style: italic;
  border-top: 1px solid var(--groen-bleek);
  padding-top: 8px;
}
.foto-knop {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 16px;
  background: var(--groen-bleek);
  color: var(--groen-donker);
  border: 1.5px solid var(--groen-midden);
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.foto-knop:hover { background: var(--groen-midden); color: var(--wit); }

/* ============================================
   SAFARI FOTO MODAL
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.75);
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.actief { display: flex; }
.modal-inhoud {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-inhoud h3 { margin-bottom: 20px; color: var(--groen-donker); }
.modal-sluiten {
  position: absolute; top: 16px; right: 16px;
  background: var(--groen-bleek); border: none;
  width: 34px; height: 34px; border-radius: 50%;
  font-size: 1rem; cursor: pointer; color: var(--groen-donker);
  display: flex; align-items: center; justify-content: center;
}
.modal-sluiten:hover { background: var(--groen-midden); color: var(--wit); }
.modal-fotos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.modal-fotos img { height: 220px; object-fit: cover; border-radius: var(--radius-klein); width: 100%; }

/* ============================================
   WELLNESS SECTIE
   ============================================ */
.wellness { background: var(--wit); }
.wellness h2 { margin: 12px 0 8px; }

.wellness-intro {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  margin: 44px 0 36px;
}
.wellness-tekst p { margin-bottom: 14px; }

.wellness-fotos-zij {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wellness-fotos-zij img { width: 100%; height: 190px; object-fit: cover; border-radius: var(--radius-klein); }

.wellness-fotos-breed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 44px;
}
.wellness-fotos-breed img { height: 200px; object-fit: cover; border-radius: var(--radius-klein); width: 100%; }

.wellness-raster {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.wellness-blok {
  background: var(--groen-bleek);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.wellness-blok h3 { font-size: 1rem; margin-bottom: 12px; color: var(--groen-donker); }
.wellness-blok ul { list-style: none; }
.wellness-blok li { font-size: 0.85rem; color: var(--tekst-midden); padding: 5px 0; border-bottom: 1px solid rgba(74,110,56,0.12); }
.wellness-blok li:last-child { border-bottom: none; }
.wellness-blok p { font-size: 0.85rem; color: var(--tekst-midden); }
.wellness-korting {
  background: var(--zand-licht);
  border-radius: 6px;
  padding: 8px 10px !important;
  margin-top: 6px;
  border-bottom: none !important;
  font-weight: 500;
}

.wellness-bouw-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--zand-licht);
  border: 2px dashed var(--zand);
  border-radius: var(--radius);
  padding: 22px 28px;
}
.wellness-bouw-banner span { font-size: 2rem; flex-shrink: 0; }
.wellness-bouw-banner strong { display: block; color: var(--groen-donker); margin-bottom: 4px; }
.wellness-bouw-banner p { font-size: 0.88rem; margin: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nieuw-raster { grid-template-columns: repeat(2, 1fr); }
  .fac-item { width: calc(25% - 11px); }
  .footer-raster { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: min(300px, 100vw); height: 100vh;
    background: var(--groen-donker); flex-direction: column;
    align-items: flex-start; padding: 90px 28px 40px;
    gap: 22px; transition: right 0.3s; z-index: 99;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }
  .intro-raster, .omgeving-raster, .contact-raster, .duur-binnen { grid-template-columns: 1fr; gap: 36px; }
  .foto-raster { grid-template-columns: 1fr; }
  .foto-raster img:first-child { height: 220px; }
  .accom-raster { grid-template-columns: 1fr; }
  .nieuw-raster { grid-template-columns: 1fr; }
  .fac-item { width: calc(33.33% - 10px); }
  .form-rij { grid-template-columns: 1fr; }
  .footer-raster { grid-template-columns: 1fr; gap: 28px; }
  .footer-onder { flex-direction: column; text-align: center; }
  .hero-knoppen { flex-direction: column; align-items: center; }
  .intro-cijfers { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .fac-item { width: calc(50% - 8px); }
  .duur-binnen { flex-direction: column; text-align: center; }
  .duur-cijfers { flex-direction: row; gap: 20px; justify-content: center; }
}
