/* ============================================================
   PARQ BISTRO CAFÉ — DEMO STYLESHEET
   Palette: Sage #4a6741 | Terracotta #d4735e | Cream #f5f0e8
            Dark green #2c3e2d | Sand #c8b89a
   Type: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

/* ── RESET & CUSTOM PROPS ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sage:       #4a6741;
  --sage-dark:  #2c3e2d;
  --terra:      #d4735e;
  --terra-dark: #b55a46;
  --cream:      #f5f0e8;
  --cream-dark: #ede5d4;
  --sand:       #c8b89a;
  --sand-light: #e8dece;
  --white:      #ffffff;
  --text:       #2c3e2d;
  --text-muted: #5a6e5b;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:   12px;
  --radius-sm: 6px;
  --shadow:   0 4px 24px rgba(44,62,45,.10);
  --shadow-lg: 0 12px 48px rgba(44,62,45,.16);

  --container: 1180px;
  --topbar-h:  68px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ── GLOBAL IMG FILL SAFETY NET ───────────────────────────── */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img,
.locatie-band__media img, .over-ons__media img,
.cta-band__bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: .9rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}
.btn--primary:hover { background: var(--terra-dark); border-color: var(--terra-dark); box-shadow: 0 6px 20px rgba(212,115,94,.35); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn--ghost:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

/* ── TYPOGRAPHY HELPERS ───────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: .6rem;
}
.section-label--light { color: rgba(255,255,255,.75); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--sage-dark);
  text-align: center;
  margin-bottom: .6rem;
}
.section-title--left { text-align: left; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ══════════════════════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════════════════════ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--topbar-h);
  background: transparent;
  transition: background .35s, box-shadow .35s, border-color .35s;
}
/* On scroll: solid cream bar */
.topbar.scrolled {
  background: rgba(245,240,232,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74,103,65,.1);
  box-shadow: 0 2px 20px rgba(44,62,45,.12);
}
/* Logo/nav colours adapt on transparent vs solid */
.topbar .logo-parq { transition: color .35s; }
.topbar:not(.scrolled) .logo-parq { color: var(--white); }
.topbar:not(.scrolled) .logo-sub { color: rgba(255,255,255,.7); }
.topbar:not(.scrolled) .topbar__nav a { color: var(--white); text-shadow: 0 1px 4px rgba(0,0,0,.45); }
.topbar:not(.scrolled) .topbar__nav a:hover { color: var(--cream); }
.topbar:not(.scrolled) .mobile-menu__trigger { color: var(--white); }
.topbar:not(.scrolled) .logo-parq { text-shadow: 0 1px 6px rgba(0,0,0,.5); }

.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.topbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-parq {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sage-dark);
  letter-spacing: .02em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.topbar__nav {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
}
.topbar__nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
  position: relative;
}
.topbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.topbar__nav a:hover { color: var(--sage); }
.topbar__nav a:hover::after { transform: scaleX(1); }

.topbar__cta { flex-shrink: 0; }

/* Hamburger */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 0;
  flex-shrink: 0;
}
.close-icon { display: none; }
.mobile-menu__trigger[aria-expanded="true"] .hamburger { display: none; }
.mobile-menu__trigger[aria-expanded="true"] .close-icon { display: block; }

/* ══════════════════════════════════════════════════════════
   MOBILE MENU OVERLAY (KIT — 100dvh)
═══════════════════════════════════════════════════════════ */
.mobile-menu__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  width: 100%;
  height: 100dvh;
  background: var(--sage-dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  overflow: hidden;
}
.mobile-menu__overlay.is-open {
  display: flex;
}

.mobile-menu__panel { width: 100%; padding: 2rem 1.5rem; }

.mobile-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: 2.5rem;
}

.mobile-menu__item {
  display: block;
  padding: .9rem 1rem;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color .2s;
}
.mobile-menu__item:hover { color: var(--terra); }

.mobile-menu__cta {
  display: inline-flex;
  margin-top: .5rem;
  font-size: 1rem;
}

/* ══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44,62,45,.72) 0%,
    rgba(44,62,45,.45) 50%,
    rgba(44,62,45,.62) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 4rem clamp(1rem, 6vw, 3rem) 5rem;
  max-width: 820px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.2rem;
  padding: .35rem .9rem;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50px;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  opacity: .9;
  margin-bottom: 2.2rem;
  font-weight: 300;
  letter-spacing: .01em;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.7);
  animation: bounce 2s infinite;
  transition: color .2s;
}
.hero__scroll:hover { color: var(--white); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════════════════════
   USP STRIP
═══════════════════════════════════════════════════════════ */
.usp-strip {
  background: var(--sage-dark);
  padding: 1.5rem 0;
}
.usp-strip__list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.usp-strip__item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--cream);
  font-size: .9rem;
  font-weight: 500;
}
.usp-strip__icon {
  color: var(--terra);
  flex-shrink: 0;
  display: flex;
}

/* ══════════════════════════════════════════════════════════
   DIENSTEN / CARDS
═══════════════════════════════════════════════════════════ */
.diensten {
  padding: 6rem 0;
  background: var(--cream);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card--featured {
  border: 2px solid var(--terra);
}
.card--featured .card__icon { color: var(--terra); }

.card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s;
}
.card:hover .card__media img { transform: scale(1.06); }

.card__body {
  padding: 1.6rem 1.6rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__icon {
  color: var(--sage);
  margin-bottom: .8rem;
}
.card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: .6rem;
  line-height: 1.25;
}
.card__text {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.card__tag {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--cream-dark);
  color: var(--sage);
  padding: .3rem .85rem;
  border-radius: 50px;
  align-self: flex-start;
}

/* ══════════════════════════════════════════════════════════
   LOCATIE-BAND
═══════════════════════════════════════════════════════════ */
.locatie-band {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.locatie-band__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.locatie-band__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.locatie-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(44,62,45,.85) 40%, rgba(44,62,45,.4) 100%);
}
.locatie-band__content {
  position: relative;
  z-index: 1;
  padding: 5rem clamp(1rem, 4vw, 2.5rem);
}
.locatie-band__text {
  max-width: 560px;
}
.locatie-band__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.locatie-band__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ══════════════════════════════════════════════════════════
   OVER ONS
═══════════════════════════════════════════════════════════ */
.over-ons {
  padding: 6rem 0;
  background: var(--cream-dark);
}
.over-ons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.over-ons__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}
.over-ons__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.over-ons__tekst .section-title { margin-bottom: 1.2rem; }
.over-ons__tekst p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.over-ons__feiten {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(74,103,65,.15);
}
.feit {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.feit strong {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage);
}
.feit span {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════════════ */
.reviews {
  padding: 6rem 0;
  background: var(--sage-dark);
}
.reviews .section-label { color: var(--terra); }
.reviews .section-title { color: var(--cream); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background .3s;
  min-height: 200px;
}
.review-card:hover { background: rgba(255,255,255,.1); }

.review-card__stars {
  display: flex;
  gap: .25rem;
}
.star {
  width: 18px; height: 18px;
  fill: var(--terra);
}

.review-card__quote {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  color: rgba(245,240,232,.9);
  line-height: 1.65;
  flex: 1;
}
.review-card__author {
  font-size: .85rem;
  font-weight: 600;
  color: var(--sand-light);
}
.review-card__author span {
  display: block;
  font-weight: 400;
  color: rgba(245,240,232,.5);
  font-size: .8rem;
}

/* ══════════════════════════════════════════════════════════
   OPENINGSTIJDEN
═══════════════════════════════════════════════════════════ */
.openingstijden {
  padding: 6rem 0;
  background: var(--cream);
}
.openingstijden__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.openingstijden__info p { color: var(--text-muted); margin-bottom: .5rem; }

.tijden-tabel {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.tijden-tabel td {
  padding: .75rem 1rem;
  border-bottom: 1px solid rgba(74,103,65,.1);
}
.tijden-tabel td:first-child { font-weight: 500; color: var(--sage-dark); }
.tijden-tabel td:last-child { text-align: right; color: var(--text-muted); }
.tijden-tabel tr.gesloten td { color: var(--sand); }
.tijden-tabel tr.gesloten td:last-child { color: var(--terra); font-weight: 500; }
.tijden-tabel tr:last-child td { border-bottom: none; }

/* ══════════════════════════════════════════════════════════
   CTA-BAND
═══════════════════════════════════════════════════════════ */
.cta-band {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-band__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,62,45,.8);
}
.cta-band__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 5rem clamp(1rem, 4vw, 2.5rem);
}
.cta-band__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  margin-top: .5rem;
  line-height: 1.2;
}
.cta-band__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
/* Extra contrast for CTA-band primary btn on dark bg */
.cta-band .btn--primary {
  background: var(--terra);
  border-color: var(--terra);
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
}

/* ══════════════════════════════════════════════════════════
   CONTACT FORMULIER
═══════════════════════════════════════════════════════════ */
.contact-sectie {
  padding: 6rem 0;
  background: var(--cream-dark);
}
.contact-sectie__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-sectie__info p { color: var(--text-muted); margin-bottom: 1.5rem; }

.contact-lijst {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.contact-lijst li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .93rem;
  color: var(--text-muted);
}
.contact-lijst li svg { flex-shrink: 0; color: var(--sage); margin-top: .1rem; }
.contact-lijst a { color: var(--text-muted); transition: color .2s; }
.contact-lijst a:hover { color: var(--sage); }

.contact-sectie__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form { display: flex; flex-direction: column; gap: 1.1rem; }
.form__row--half { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__field { display: flex; flex-direction: column; gap: .4rem; }
.form__field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--sage-dark);
}
.optional { font-weight: 400; color: var(--text-muted); }
.form__field input,
.form__field textarea {
  border: 1.5px solid rgba(74,103,65,.2);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form__field input:focus,
.form__field textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(74,103,65,.12);
}
.form__field textarea { resize: vertical; min-height: 110px; }

/* ══════════════════════════════════════════════════════════
   FOOTER-KIT
═══════════════════════════════════════════════════════════ */
.footer-kit {
  background: var(--sage-dark);
  color: var(--cream);
  padding: 4.5rem 0 0;
}
.footer-kit__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-kit__col--brand { padding-right: 2rem; }

.footer-logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.footer-logo .logo-parq { color: var(--cream); }
.footer-logo .logo-sub { color: rgba(245,240,232,.6); }

.footer-kit__tagline {
  font-size: .88rem;
  color: rgba(245,240,232,.65);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer-kit__socials {
  display: flex;
  gap: .8rem;
}
.footer-kit__socials a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: rgba(245,240,232,.7);
  transition: color .2s, border-color .2s, background .2s;
}
.footer-kit__socials a:hover {
  color: var(--white);
  border-color: var(--terra);
  background: rgba(212,115,94,.2);
}

.footer-kit__heading {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,240,232,.5);
  margin-bottom: 1.2rem;
}

.footer-tijden {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.footer-tijden li {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(245,240,232,.7);
  gap: 1rem;
}
.footer-tijden li.gesloten { color: rgba(245,240,232,.35); }
.footer-tijden li.gesloten span:last-child { color: var(--terra); opacity: .7; }

.footer-kit__adres p {
  font-size: .88rem;
  color: rgba(245,240,232,.65);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer-kit__adres a {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(245,240,232,.65);
  margin-bottom: .7rem;
  transition: color .2s;
}
.footer-kit__adres a:hover { color: var(--terra); }
.footer-kit__adres svg { flex-shrink: 0; color: var(--sage); }

.footer-kit__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  padding: 1.5rem 0;
  font-size: .8rem;
  color: rgba(245,240,232,.4);
}
.footer-kit__credit a { color: var(--terra); }
.footer-kit__credit a:hover { opacity: .8; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .over-ons__feiten { grid-template-columns: 1fr 1fr; }
  .footer-kit__grid { grid-template-columns: 1fr 1fr; }
  .footer-kit__col--brand { grid-column: 1 / -1; padding-right: 0; }
}

@media (max-width: 860px) {
  .topbar__nav { display: none; }
  .topbar__cta { display: none; }
  .mobile-menu__trigger { display: flex; margin-left: auto; }

  .card-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .reviews__grid { grid-template-columns: 1fr; }
  .over-ons__grid { grid-template-columns: 1fr; }
  .over-ons__media { aspect-ratio: 16/9; order: -1; }
  .openingstijden__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-sectie__grid { grid-template-columns: 1fr; }
  .footer-kit__grid { grid-template-columns: 1fr; }
  .footer-kit__col--brand { padding-right: 0; }
}

@media (max-width: 600px) {
  .usp-strip__list { flex-direction: column; align-items: flex-start; padding: 0 1rem; gap: 1rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .cta-band__actions { flex-direction: column; align-items: center; }
  .form__row--half { grid-template-columns: 1fr; }
  .over-ons__feiten { grid-template-columns: 1fr; }
  .footer-kit__bottom { flex-direction: column; text-align: center; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2rem); }
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
