/* =============================================
   EXITO DAKWERKEN – stylesheet
   Kleuren gebaseerd op logo
   ============================================= */

:root {
  --red:        #B5370A;
  --red-dark:   #8C2807;
  --red-light:  #D44010;
  --navy:       #2D3548;
  --navy-dark:  #1E2435;
  --navy-light: #3D4A60;
  --white:      #FFFFFF;
  --gray-50:    #F8F7F5;
  --gray-100:   #EFEFED;
  --gray-300:   #C8C8C4;
  --gray-600:   #6B6B6B;
  --text:       #1A1F2E;
  --text-light: #5A6070;

  --radius:     10px;
  --radius-lg:  18px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.14);
  --transition: .25s ease;

  --font: 'Barlow', system-ui, sans-serif;
  --font-condensed: 'Barlow Condensed', 'Barlow', sans-serif;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  border-radius: var(--radius);
  padding: 12px 26px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 6px 20px rgba(181,55,10,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-nav {
  background: var(--red);
  color: var(--white);
  padding: 9px 20px;
  font-size: .88rem;
}
.btn-nav:hover { background: var(--red-dark); }

.btn-large { padding: 15px 34px; font-size: 1.05rem; }
.btn-sm    { padding: 8px 18px; font-size: .85rem; margin-top: 12px; }

/* ─── HEADER / NAV ─── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: box-shadow var(--transition);
}
#header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo img { display: block; transition: opacity var(--transition); }
.nav-logo:hover img { opacity: .8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--navy);
  font-weight: 600;
  font-size: .93rem;
  padding: 8px 13px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--red); background: rgba(181,55,10,.06); }
.nav-links .btn-nav { margin-left: 10px; }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('IMG-20260326-WA0007.jpg') center 40% / cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,23,42,.88) 0%,
    rgba(15,23,42,.72) 50%,
    rgba(42,20,10,.80) 100%
  );
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(181,55,10,.22) 0%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(181,55,10,.25);
  border: 1px solid rgba(181,55,10,.4);
  color: #F4997A;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-condensed);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.hero h1 .accent { color: var(--red-light); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.72);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-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,.4);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.35);
  border-bottom: 2px solid rgba(255,255,255,.35);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* ─── USP STRIP ─── */
.usp-strip {
  background: var(--navy);
  padding: 20px 0;
}
.usp-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.88);
  font-weight: 600;
  font-size: .92rem;
}
.usp-icon {
  width: 22px; height: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
}

/* ─── SECTIONS ─── */
.section {
  padding: 96px 0;
}
.section--dark {
  background: var(--navy-dark);
  color: var(--white);
}
.section--gray {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.section-header--light .section-tag,
.section-header--light h2,
.section-header--light p {
  color: rgba(255,255,255,.9);
}
.section-header--light p { color: rgba(255,255,255,.6); }

.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-condensed);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--red);
  border-radius: 0 0 4px 0;
  transition: height .35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { height: 60px; }

.service-card--accent {
  background: linear-gradient(135deg, #fff5f2 0%, #fff 100%);
  border-color: rgba(181,55,10,.15);
}
.service-card--spoed {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-color: transparent;
  color: var(--white);
}
.service-card--spoed .service-link { color: var(--red-light); }
.service-card--spoed h3 { color: var(--white); }
.service-card--spoed p { color: rgba(255,255,255,.7); }
.service-card--spoed .service-icon { color: var(--red-light); }

.spoed-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 100px;
}

.service-icon {
  width: 52px; height: 52px;
  color: var(--red);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-condensed);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-light);
  font-size: .93rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-link {
  font-weight: 700;
  font-size: .88rem;
  color: var(--red);
  letter-spacing: .02em;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { color: var(--red-dark); }

/* ─── STEPS / WERKWIJZE ─── */
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.step {
  flex: 1 1 180px;
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition), transform var(--transition);
}
.step:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.step-number {
  font-family: var(--font-condensed);
  font-size: 3rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
  opacity: .9;
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step p {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}
.step-arrow {
  font-size: 1.6rem;
  color: rgba(255,255,255,.25);
  padding-top: 40px;
  flex-shrink: 0;
}

/* ─── OVER ONS ─── */
.over-ons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.over-ons-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ov-photo-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ov-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform .5s ease;
}
.ov-photo-main:hover img { transform: scale(1.03); }
.ov-card {
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}
.ov-card--primary { background: var(--red); color: var(--white); }
.ov-card--secondary { background: var(--navy); color: var(--white); }
.ov-card--dark { background: var(--navy-dark); color: var(--white); }
.ov-card--outline { background: var(--white); color: var(--navy); border: 2px solid var(--gray-100); box-shadow: var(--shadow-sm); }
.ov-stat {
  font-family: var(--font-condensed);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.ov-label { font-size: .85rem; font-weight: 600; opacity: .85; }

.over-ons-tekst .section-tag { display: block; margin-bottom: 12px; }
.over-ons-tekst h2 {
  font-family: var(--font-condensed);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}
.over-ons-tekst p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
}

.check-list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: .95rem;
}
.check-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── OFFERTE FORM ─── */
.form-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 52px 52px;
  border: 1px solid var(--gray-100);
}

.offerte-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group--full { grid-column: 1 / -1; }

label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
}

input, select, textarea {
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(181,55,10,.12);
}
input::placeholder, textarea::placeholder { color: var(--gray-300); }
textarea { resize: vertical; min-height: 130px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%232D3548' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

.form-check { margin-top: 4px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: .88rem;
  color: var(--text-light);
  font-weight: 400;
}
.checkbox-label input[type=checkbox] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--red);
  cursor: pointer;
}
.checkbox-label a { color: var(--red); font-weight: 600; }

.form-submit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 8px;
}
.btn-icon { font-size: 1.1rem; }
.form-note { font-size: .82rem; color: var(--text-light); }

/* Success state */
.form-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 16px;
}
.success-icon {
  width: 72px; height: 72px;
  background: #22c55e;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-success h3 { font-size: 1.5rem; font-weight: 700; }
.form-success p { color: var(--text-light); max-width: 380px; }

/* ─── GALERIJ ─── */
.galerij-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
}
.galerij-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
}
.galerij-item--tall { grid-row: span 2; }
.galerij-item--wide { grid-column: span 2; }
.galerij-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.galerij-item:hover img { transform: scale(1.06); }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.contact-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.contact-card h3 {
  font-family: var(--font-condensed);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-card p {
  color: var(--text-light);
  font-size: .9rem;
  margin-bottom: 14px;
}
.contact-link {
  display: block;
  font-weight: 700;
  color: var(--red);
  font-size: 1rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--red-dark); }
.contact-note {
  display: block;
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.footer-logo { filter: brightness(0) invert(1); opacity: .9; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }

.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a, .footer-contact p, .footer-contact a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links li a:hover, .footer-contact a:hover { color: var(--white); }
.footer-contact p { margin-bottom: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

/* ─── STICKY SPOED BUTTON ─── */
.sticky-spoed {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--red);
  color: var(--white);
  border-radius: 100px;
  padding: 13px 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 6px 24px rgba(181,55,10,.45);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  animation: pulse-ring 3s ease infinite;
}
.sticky-spoed:hover {
  background: var(--red-dark);
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(181,55,10,.55);
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 6px 24px rgba(181,55,10,.45); }
  50%       { box-shadow: 0 6px 32px rgba(181,55,10,.65), 0 0 0 8px rgba(181,55,10,.1); }
}

/* ─── FADE-IN ANIMATION ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .over-ons-grid { grid-template-columns: 1fr; gap: 48px; }
  .over-ons-visuals { max-width: 480px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .galerij-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .galerij-item--wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,.08);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 20px;
    gap: 2px;
    box-shadow: 0 12px 32px rgba(0,0,0,.10);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; font-size: 1rem; color: var(--navy); }
  .nav-links a:hover { color: var(--red); background: rgba(181,55,10,.06); }
  .nav-links .btn-nav { margin-left: 0; margin-top: 8px; text-align: center; justify-content: center; }

  .hero h1 { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .usp-grid { flex-direction: column; gap: 10px; }

  .services-grid { grid-template-columns: 1fr; }

  .steps-grid { flex-direction: column; gap: 12px; }
  .step-arrow { transform: rotate(90deg); align-self: center; padding-top: 0; }

  .form-wrapper { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .over-ons-visuals { max-width: 100%; }

  .galerij-grid { grid-auto-rows: 170px; }
  .galerij-item--tall { grid-row: span 1; }

  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .form-wrapper { padding: 24px 16px; }
  .sticky-spoed span { display: none; }
  .sticky-spoed { border-radius: 50%; padding: 15px; }
}
