/* ═══════════════════════════════════════════
   REDDY Keukens Alphen aan den Rijn
   Palet: zwart / rood / wit / lichtgrijs
   ═══════════════════════════════════════════ */

:root {
  --zwart: #111111;
  --zwart-diep: #0a0a0a;
  --rood: #e10b17;
  --rood-donker: #b90913;
  --wit: #ffffff;
  --grijs-licht: #f4f4f4;
  --grijs: #989898;
  --grijs-donker: #4a4a4a;
  --font: "Archivo", -apple-system, "Segoe UI", Roboto, sans-serif;
  --topbar-h: 42px;
  --header-h: 84px;
  --header-total: calc(var(--topbar-h) + var(--header-h));
  --goud: #fbbc05;
  --radius: 4px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-total); }

body {
  font-family: var(--font);
  color: var(--zwart);
  background: var(--wit);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ── Typografie ─────────────────────────── */

h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -.02em; text-wrap: balance; }

h1 { font-size: clamp(2.3rem, 6.4vw, 5rem); font-weight: 900; text-transform: uppercase; }

@media (max-width: 720px) {
  h1 { font-size: clamp(2rem, 9.2vw, 2.6rem); }
}

h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 800; text-transform: uppercase; margin-bottom: .6em; }

.accent { color: var(--rood); }

.kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--rood);
  margin-bottom: 1rem;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--rood);
  vertical-align: middle;
  margin-right: .8em;
}

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-grey { background: var(--grijs-licht); }
.section-intro { max-width: 560px; color: var(--grijs-donker); margin-bottom: 3rem; }

/* ── Knoppen ────────────────────────────── */

.btn {
  display: inline-block;
  padding: 1rem 2.1rem;
  font: inherit;
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-red { background: var(--rood); color: var(--wit); }
.btn-red:hover { background: var(--rood-donker); }

.btn-dark { background: var(--zwart); color: var(--wit); }
.btn-dark:hover { background: var(--rood); }

.btn-ghost { border-color: rgba(255, 255, 255, .55); color: var(--wit); }
.btn-ghost:hover { border-color: var(--wit); background: rgba(255, 255, 255, .1); }

.btn-block { width: 100%; }

/* ── Header ─────────────────────────────── */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(10, 10, 10, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: background .3s ease;
}
.site-header.scrolled { background: rgba(10, 10, 10, .97); }

/* ── Topbar ─────────────────────────────── */

.topbar {
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.topbar-inner {
  width: min(1280px, 94%);
  margin-inline: auto;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-contact { display: flex; align-items: center; gap: 1.6rem; }
.topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--grijs);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.topbar-contact a:hover { color: var(--wit); }
.topbar-contact svg { width: 14px; height: 14px; fill: var(--rood); flex-shrink: 0; }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--wit);
  border-radius: 999px;
  padding: .28rem .8rem;
  text-decoration: none;
  font-size: .82rem;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease;
}
.google-badge:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0, 0, 0, .35); }
.google-badge .g-logo { width: 15px; height: 15px; transform: translateY(1.25px); }
.google-badge strong { color: var(--zwart); font-weight: 800; line-height: 1; }
.badge-stars { color: var(--goud); letter-spacing: .05em; font-size: .8rem; line-height: 1; }

.usp-badge { margin-bottom: 1rem; padding: .4rem .9rem; font-size: .9rem; }
.usp-badge .g-logo { width: 17px; height: 17px; }

.header-inner {
  width: min(1280px, 94%);
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand img { height: 52px; width: auto; transition: height .3s ease; }
.site-header.scrolled .brand img { height: 44px; }

.main-nav { display: flex; align-items: center; gap: 2.2rem; }

.main-nav a {
  color: var(--wit);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  position: relative;
  padding: .4rem 0;
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--rood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--rood);
  padding: .7rem 1.4rem !important;
  border-radius: var(--radius);
  transition: background .2s ease;
}
.nav-cta:hover { background: var(--rood-donker); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--wit);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--zwart);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(75deg, rgba(5, 5, 5, .82) 0%, rgba(5, 5, 5, .55) 45%, rgba(5, 5, 5, .18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1200px, 92%);
  padding-top: var(--header-total);
  color: var(--wit);
}
.hero-kicker {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 1.2rem;
}
.hero-kicker::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 2px;
  background: var(--rood);
  vertical-align: middle;
  margin-right: 1em;
}
.hero-sub {
  max-width: 520px;
  margin-top: 1.4rem;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, .85);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, .5);
  border-radius: 14px;
  z-index: 1;
}
.scroll-hint span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--rood);
  border-radius: 2px;
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
}

/* ── USP's ──────────────────────────────── */

.usps { background: var(--zwart); color: var(--wit); padding: clamp(3.5rem, 7vw, 5.5rem) 0; }

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.5rem;
}
.usp svg { width: 34px; height: 34px; fill: var(--rood); margin-bottom: 1rem; }
.usp h3 { font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; margin-bottom: .5rem; }
.usp p { font-size: .93rem; color: var(--grijs); }

/* ── Showroom / split ───────────────────── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.split-text p { color: var(--grijs-donker); margin-bottom: 1.1rem; max-width: 52ch; }
.split-text .btn { margin-top: 1.4rem; }

.check-list { list-style: none; margin: 1.6rem 0 .4rem; }
.check-list li { padding-left: 2rem; position: relative; margin-bottom: .7rem; font-weight: 500; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .34em;
  width: 16px;
  height: 8px;
  border-left: 3px solid var(--rood);
  border-bottom: 3px solid var(--rood);
  transform: rotate(-45deg);
}

.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split-media .stacked {
  position: absolute;
  right: -8%;
  bottom: -14%;
  width: 55%;
  border: 6px solid var(--wit);
}

/* ── Gallery ────────────────────────────── */

.gallery {
  columns: 3;
  column-gap: 1.2rem;
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  break-inside: avoid;
  margin-bottom: 1.2rem;
}
.g-tall { aspect-ratio: 3 / 4; }
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.g-item:hover img { transform: scale(1.05); }
.g-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.2rem 1.3rem 1.1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, .72));
  color: var(--wit);
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Lightbox ───────────────────────────── */

.gallery .g-item { cursor: zoom-in; }
.gallery .g-item:focus-visible { outline: 3px solid var(--rood); outline-offset: 3px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 5, 5, .93);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }

.lightbox figure {
  max-width: min(1100px, 90vw);
  text-align: center;
}
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  margin-inline: auto;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.lightbox figcaption {
  color: var(--wit);
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 1.1rem;
}

.lb-close,
.lb-nav {
  position: fixed;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--wit);
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease;
}
.lb-close:hover,
.lb-nav:hover { background: var(--rood); border-color: var(--rood); }

.lb-close {
  top: 1.2rem;
  right: 1.2rem;
  width: 48px;
  height: 48px;
  font-size: 1.9rem;
  line-height: 1;
}
.lb-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
  line-height: 1;
}
.lb-prev { left: 1.2rem; }
.lb-next { right: 1.2rem; }

@media (max-width: 720px) {
  .lb-nav { width: 44px; height: 44px; top: auto; bottom: 1.2rem; transform: none; }
  .lb-prev { left: 25%; }
  .lb-next { right: 25%; }
}

/* ── Merken marquee ─────────────────────── */

.brands {
  overflow: hidden;
  background: var(--zwart);
  margin: clamp(3rem, 6vw, 5rem) 0;
  padding: 1.4rem 0;
}
.brands-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  color: var(--wit);
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
}
.brands-group { display: flex; gap: 2.5rem; padding-right: 2.5rem; }
.brands-group span:nth-child(even) { color: var(--rood); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Werkwijze ──────────────────────────── */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.step {
  padding: 2rem 1.8rem;
  background: var(--grijs-licht);
  border-radius: var(--radius);
  border-top: 4px solid var(--zwart);
  transition: border-color .25s ease, transform .25s ease;
}
.step:hover { border-top-color: var(--rood); transform: translateY(-4px); }
.step-nr {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--rood);
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.1rem; text-transform: uppercase; margin-bottom: .6rem; }
.step p { font-size: .93rem; color: var(--grijs-donker); }

/* ── Quote band ─────────────────────────── */

.quote-band {
  background: var(--zwart-diep);
  color: var(--wit);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.quote-band .container {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.quote-portrait {
  width: clamp(140px, 16vw, 190px);
  height: clamp(140px, 16vw, 190px);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 12%;
  border: 3px solid var(--rood);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
}
.quote-band p {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.quote-band cite {
  display: block;
  margin-top: 1.4rem;
  font-style: normal;
  color: var(--grijs);
  font-size: .95rem;
}

/* ── Reviews ────────────────────────────── */

.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.reviews-head h2 { margin-bottom: 0; }

.google-summary {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: var(--wit);
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  padding: .9rem 1.3rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
}
.google-summary .g-logo { width: 34px; height: 34px; transform: translateY(1px); }
.google-summary > div { display: flex; flex-direction: column; }
.summary-score { display: flex; align-items: center; gap: .5rem; }
.summary-score strong { font-size: 1.35rem; font-weight: 800; line-height: 1; }
.summary-count { font-size: .8rem; color: var(--grijs); margin-top: .2rem; }

.stars { color: var(--goud); letter-spacing: .1em; font-size: 1rem; }
.star-off { color: #d8d8d8; }

.slider-wrap {
  display: flex;
  align-items: stretch;
  gap: .8rem;
}
.reviews-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  flex: 1;
  padding: .5rem .1rem 1rem;
}
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 calc((100% - 2.4rem) / 3);
  scroll-snap-align: start;
  background: var(--wit);
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
  display: flex;
  flex-direction: column;
}
.review-head { display: flex; align-items: center; gap: .8rem; margin-bottom: .8rem; }
.review-head strong { display: block; font-size: .95rem; line-height: 1.25; }
.review-head time { font-size: .78rem; color: var(--grijs); }
.review-card .stars { margin-bottom: .7rem; }
.review-card p { font-size: .92rem; color: var(--grijs-donker); line-height: 1.6; }

.slider-btn {
  align-self: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: var(--wit);
  color: var(--zwart);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.slider-btn:hover { background: var(--rood); color: var(--wit); transform: scale(1.06); }

/* ── Contact ────────────────────────────── */

.contact-info h2 { max-width: 16ch; }
.contact-info > p { color: var(--grijs-donker); max-width: 46ch; }

.info-block { margin-top: 2.2rem; }
.info-block h3 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--rood);
  margin-bottom: .6rem;
}
.info-block address { font-style: normal; }
.info-link { font-size: 1.25rem; font-weight: 700; text-decoration: none; line-height: 1.9; }
.info-link:hover { color: var(--rood); }

.hours { border-collapse: collapse; width: 100%; max-width: 420px; }
.hours td { padding: .45rem 0; border-bottom: 1px solid #e2e2e2; font-size: .95rem; }
.hours td:last-child { text-align: right; font-weight: 600; }

.contact-form-wrap form {
  background: var(--wit);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--rood);
}
.contact-form-wrap h3 { font-size: 1.3rem; text-transform: uppercase; margin-bottom: 1.6rem; }

.field { margin-bottom: 1.2rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  font: inherit;
  font-size: .95rem;
  border: 1.5px solid #d8d8d8;
  border-radius: var(--radius);
  background: var(--grijs-licht);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rood);
  background: var(--wit);
}
.field textarea { resize: vertical; }

.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-status { margin-top: 1rem; font-weight: 600; font-size: .95rem; min-height: 1.4em; }
.form-status.ok { color: #1a7f37; }
.form-status.error { color: var(--rood); }

.form-note { margin-top: .6rem; font-size: .8rem; color: var(--grijs); }

/* ── Footer ─────────────────────────────── */

.site-footer { background: var(--zwart-diep); color: var(--grijs); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
}
.footer-grid h4 {
  color: var(--wit);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 1rem;
}
.footer-grid p { font-size: .92rem; line-height: 2; }
.footer-grid a { color: var(--grijs); text-decoration: none; }
.footer-grid a:hover { color: var(--wit); }
.footer-tagline { margin-top: 1.2rem; max-width: 30ch; }

.footer-bar { border-top: 1px solid rgba(255, 255, 255, .08); padding: 1.2rem 0; font-size: .85rem; }
.footer-bar .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: .5rem;
}
.footer-bar .footer-mid { text-align: center; }
.footer-bar .footer-credit { text-align: right; }
.footer-bar a { color: var(--grijs); text-decoration: none; }
.footer-bar a:hover { color: var(--wit); }

@media (max-width: 720px) {
  .footer-bar .container { grid-template-columns: 1fr; text-align: center; }
  .footer-bar .footer-mid, .footer-bar .footer-credit { text-align: center; }
}

/* ── Reveal animaties ───────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
  .brands-track { animation: none; }
}

/* ── Responsive ─────────────────────────── */

@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; }
  .split-media .stacked { right: 0; bottom: -12%; }
  .showroom .split-media { margin-bottom: 3rem; }
  .gallery { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-card { flex-basis: calc((100% - 1.2rem) / 2); }
}

@media (max-width: 720px) {
  :root { --header-h: 72px; --topbar-h: 38px; }
  .brand img { height: 44px; }

  .topbar-mail { display: none; }
  .topbar-contact a { font-size: .78rem; }
  .google-badge { font-size: .78rem; padding: .24rem .65rem; }
  .review-card { flex-basis: 100%; }
  .slider-btn { display: none; }
  .reviews-head { flex-direction: column; align-items: flex-start; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: var(--header-total);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--zwart-diep);
    padding: 1rem 4%;
    transform: translateY(-130%);
    transition: transform .3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 1rem 0; border-bottom: 1px solid rgba(255, 255, 255, .07); }
  .main-nav .nav-cta { margin-top: 1rem; text-align: center; border-bottom: 0; }

  .hero-actions .btn { width: 100%; text-align: center; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .gallery { columns: 1; }
  .g-tall { aspect-ratio: auto; }
  .quote-band .container { grid-template-columns: 1fr; text-align: center; }
  .quote-portrait { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
