/* ===================================================
   BAKKER AMMERLAAN — DEMO SITE v2
   Palette: donker #1a1a1a | charcoal #2b2b2b | goud #c8a96e | crème #f5f0eb | wit #fff
   =================================================== */

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  color: #f5f0eb;
  background: #1a1a1a;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Media fill discipline */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card__img, .hero__img, .verhaal__img,
.product-showcase__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, .nav-logo__name, .footer__logo, .mobile-menu__brand {
  font-family: 'Playfair Display', Georgia, serif;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.12; font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.25; font-weight: 600; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 600; }

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5.5rem 0;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c8a96e;
  margin-bottom: 0.65rem;
}

.section__tag--light { color: #c8a96e; }

.section__title {
  color: #2b2b2b;
  margin-bottom: 0.75rem;
}

.section__title--light { color: #f5f0eb; }

.section__sub {
  color: #5a5a5a;
  font-size: 1.05rem;
}

.section__sub--light {
  color: rgba(245, 240, 235, 0.7);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  text-decoration: none;
}

.btn--gold {
  background: #c8a96e;
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(200, 169, 110, 0.45);
  font-size: 1rem;
  padding: 1rem 2.2rem;
}

.btn--gold:hover {
  background: #d4b87a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 169, 110, 0.55);
}

.btn--outline {
  background: transparent;
  color: #f5f0eb;
  border: 2px solid rgba(245, 240, 235, 0.6);
  font-size: 1rem;
  padding: 0.95rem 2.2rem;
}

.btn--outline:hover {
  border-color: #c8a96e;
  color: #c8a96e;
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* ---------- NAVIGATION ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
  transition: box-shadow 0.3s, background 0.3s;
}

.site-header.scrolled {
  background: rgba(26, 26, 26, 0.98);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo__monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #c8a96e;
  color: #1a1a1a;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 2px;
  flex-shrink: 0;
}

.nav-logo__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f5f0eb;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.75);
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #c8a96e;
  transition: width 0.2s;
}

.nav-links a:hover { color: #f5f0eb; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  flex-shrink: 0;
  padding: 0.6rem 1.4rem;
  font-size: 0.88rem;
}

/* ---------- MOBILE MENU TRIGGER ---------- */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #f5f0eb;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #f5f0eb;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Open state */
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- MOBILE MENU OVERLAY ---------- */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  min-height: 100svh;
  background: #1a1a1a;
  z-index: 950;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
}

.mobile-menu__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 940;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu__backdrop.visible {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  padding: 0 0 2rem;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}

.mobile-menu__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f5f0eb;
}

.mobile-menu__brand-monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #c8a96e;
  color: #1a1a1a;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 2px;
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f0eb;
  border-radius: 50%;
  transition: background 0.2s;
}

.mobile-menu__close:hover { background: rgba(245, 240, 235, 0.1); }
.mobile-menu__close svg { width: 22px; height: 22px; }

.mobile-menu__list {
  flex: 1;
  padding: 1rem 0;
}

.mobile-menu__item {
  display: block;
  padding: 1.1rem 1.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: rgba(245, 240, 235, 0.85);
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu__item:hover {
  color: #c8a96e;
  padding-left: 2rem;
}

.mobile-menu__footer {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu__cta:hover { transform: translateY(-2px); opacity: 0.9; }

.mobile-menu__cta--primary {
  background: #c8a96e;
  color: #1a1a1a;
}

.mobile-menu__cta--secondary {
  background: transparent;
  color: #f5f0eb;
  border: 2px solid rgba(200, 169, 110, 0.5);
}

.mobile-menu__cta svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Body lock when menu is open */
body.menu-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.3) 0%,
    rgba(26, 26, 26, 0.55) 60%,
    rgba(26, 26, 26, 0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 0 1.5rem;
  max-width: 800px;
}

.hero__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(200, 169, 110, 0.15);
  border: 2px solid #c8a96e;
  color: #c8a96e;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c8a96e;
  margin-bottom: 1rem;
}

.hero__title {
  color: #ffffff;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2s infinite;
  z-index: 2;
}

.hero__scroll-hint svg { width: 28px; height: 28px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: #2b2b2b;
  border-top: 1px solid rgba(200, 169, 110, 0.15);
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
  padding: 1.25rem 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(245, 240, 235, 0.8);
  letter-spacing: 0.03em;
}

.trust-bar__item svg {
  width: 18px;
  height: 18px;
  color: #c8a96e;
  flex-shrink: 0;
}

.trust-bar__sep {
  width: 1px;
  height: 28px;
  background: rgba(200, 169, 110, 0.25);
}

/* ---------- BROOD SECTIE ---------- */
.brood-section {
  background: #f5f0eb;
}

.brood-section .section__title {
  color: #2b2b2b;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.product-showcase__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 12px 50px rgba(43, 43, 43, 0.2);
}

.product-showcase__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-showcase__media:hover .product-showcase__img {
  transform: scale(1.03);
}

.product-showcase__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.product-item__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(200, 169, 110, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8a96e;
  border: 1px solid rgba(200, 169, 110, 0.25);
}

.product-item__icon svg { width: 22px; height: 22px; }

.product-item__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 0.25rem;
}

.product-item__desc {
  font-size: 0.92rem;
  color: #5a5a5a;
  line-height: 1.6;
}

.product-showcase__cta {
  padding-top: 0.5rem;
}

/* ---------- TAARTEN SECTIE ---------- */
.taarten-section {
  background: #1a1a1a;
}

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

.card {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card--dark {
  background: #2b2b2b;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.card__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.card:hover .card__img {
  transform: scale(1.06);
}

.card__body {
  padding: 1.5rem 1.5rem 2rem;
}

.card__icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 169, 110, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #c8a96e;
}

.card__icon svg { width: 22px; height: 22px; }

.card--dark .card__title {
  color: #f5f0eb;
}

.card__title {
  margin-bottom: 0.5rem;
  color: #2b2b2b;
}

.card--dark .card__text {
  color: rgba(245, 240, 235, 0.7);
}

.card__text {
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.65;
}

.taarten-cta {
  text-align: center;
  margin-top: 3rem;
}

.taarten-cta__note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: rgba(245, 240, 235, 0.5);
}

/* ---------- ONS VERHAAL ---------- */
.verhaal {
  background: #f5f0eb;
}

.verhaal .section__title,
.verhaal .section__tag {
  color: #2b2b2b;
}

.verhaal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.verhaal__content .section__tag { display: inline-block; }

.verhaal__lead {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #c8a96e;
  margin: 1rem 0 0.75rem;
}

.verhaal__text {
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.verhaal__feats {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.verhaal__feats li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2b2b2b;
}

.verhaal__feats li svg {
  width: 20px;
  height: 20px;
  color: #c8a96e;
  flex-shrink: 0;
}

.verhaal__media {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 12px 50px rgba(43, 43, 43, 0.2);
  min-height: 360px;
}

.verhaal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.verhaal__badge {
  position: absolute;
  bottom: -1px;
  right: -1px;
  background: #c8a96e;
  color: #1a1a1a;
  padding: 1.2rem 1.5rem;
  border-radius: 6px 0 6px 0;
  text-align: center;
}

.verhaal__badge-line1 {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
}

.verhaal__badge-line2 {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- REVIEWS ---------- */
.reviews-section {
  background: #2b2b2b;
  padding: 5.5rem 0;
}

.reviews-section .section__title {
  color: #f5f0eb;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.review-card {
  background: #1a1a1a;
  border-radius: 6px;
  padding: 2rem;
  border: 1px solid rgba(200, 169, 110, 0.15);
  transition: transform 0.25s, border-color 0.25s;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 169, 110, 0.35);
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.1rem;
}

.review-card__stars svg {
  width: 16px;
  height: 16px;
  color: #c8a96e;
}

.review-card__quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(245, 240, 235, 0.8);
  font-style: italic;
  margin-bottom: 1.25rem;
  quotes: none;
}

.review-card__author {
  font-size: 0.82rem;
  font-weight: 700;
  color: #c8a96e;
  letter-spacing: 0.04em;
}

/* Trust stats */
.trust-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 6px;
  overflow: hidden;
  flex-wrap: wrap;
}

.trust-stat {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 1.75rem 1.5rem;
}

.trust-stat__num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #c8a96e;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.trust-stat__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.5);
}

.trust-stat__divider {
  width: 1px;
  height: 60px;
  background: rgba(200, 169, 110, 0.2);
  flex-shrink: 0;
}

/* ---------- CONTACT SECTIE ---------- */
.contact-section {
  background: #f5f0eb;
}

.contact-section .section__title {
  color: #2b2b2b;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 2rem;
  border: 1px solid rgba(200, 169, 110, 0.2);
  box-shadow: 0 2px 16px rgba(43, 43, 43, 0.06);
}

.contact-card__icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(200, 169, 110, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8a96e;
  margin-bottom: 1.1rem;
}

.contact-card__icon-wrap svg { width: 24px; height: 24px; }

.contact-card__title {
  margin-bottom: 1.25rem;
  color: #2b2b2b;
  font-size: 1.1rem;
}

/* Hours */
.hours-list { display: flex; flex-direction: column; gap: 0.6rem; }

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
}

.hours-row:last-child { border-bottom: none; }

.hours-row dt { color: #5a5a5a; font-weight: 400; }
.hours-row dd { font-weight: 700; color: #2b2b2b; }
.hours-row--closed dd { color: #aaa; font-weight: 400; }

/* Address */
.contact-addr { display: flex; flex-direction: column; gap: 1rem; }
.contact-addr p { color: #5a5a5a; line-height: 1.6; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2b2b2b;
  transition: color 0.2s;
}

.contact-link:hover { color: #c8a96e; }
.contact-link svg { width: 18px; height: 18px; color: #c8a96e; }

/* Form */
.contact-card--form {
  background: #2b2b2b;
  border-color: transparent;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.contact-card--form .contact-card__icon-wrap { background: rgba(200, 169, 110, 0.2); }
.contact-card--form .contact-card__title { color: #f5f0eb; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.65);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  color: #f5f0eb;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 240, 235, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c8a96e;
  background: rgba(255, 255, 255, 0.09);
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* ---------- VESTIGINGEN STRIP ---------- */
.vestigingen {
  background: #c8a96e;
  padding: 2.5rem 0;
}

.vestigingen__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.6);
  margin-bottom: 1.25rem;
}

.vestigingen__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.vestigingen__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(26, 26, 26, 0.75);
  font-weight: 700;
  font-size: 1rem;
}

.vestigingen__item svg { width: 18px; height: 18px; flex-shrink: 0; }

.vestigingen__item--active {
  color: #1a1a1a;
  font-size: 1.05rem;
}

.vestigingen__divider {
  width: 1px;
  height: 24px;
  background: rgba(26, 26, 26, 0.25);
}

/* ---------- FOOTER ---------- */
.footer-kit {
  background: #1a1a1a;
  color: rgba(245, 240, 235, 0.65);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(200, 169, 110, 0.12);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #c8a96e;
  margin-bottom: 0.75rem;
}

.footer__logo-monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #c8a96e;
  color: #1a1a1a;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 2px;
  flex-shrink: 0;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(245, 240, 235, 0.5);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.footer__addr {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(245, 240, 235, 0.55);
}

.footer__addr a { color: rgba(245, 240, 235, 0.55); transition: color 0.2s; }
.footer__addr a:hover { color: #c8a96e; }

.footer__nav-title {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #c8a96e;
  margin-bottom: 1rem;
}

.footer__nav ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav a,
.footer__contact a {
  font-size: 0.9rem;
  color: rgba(245, 240, 235, 0.55);
  transition: color 0.2s;
}

.footer__nav a:hover,
.footer__contact a:hover { color: #c8a96e; }

.footer__openingstijden p {
  font-size: 0.88rem;
  color: rgba(245, 240, 235, 0.5);
  line-height: 1.7;
}

.footer__bottom {
  border-top: 1px solid rgba(200, 169, 110, 0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(245, 240, 235, 0.35);
}

.footer__demo-note a { color: #c8a96e; }

/* ---------- SCREEN READER ONLY ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===================================================
   RESPONSIVE
   =================================================== */

/* Large tablet */
@media (max-width: 1024px) {
  .product-showcase { gap: 3rem; }
}

/* Tablet */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .card-grid .card:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
  .verhaal__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-card--form { grid-column: 1 / -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; gap: 1.5rem; max-width: 560px; margin: 0 auto 3rem; }
  .trust-stats { flex-wrap: wrap; }
  .trust-stat { min-width: 45%; }
  .trust-stat__divider { display: none; }
  .product-showcase { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-showcase__media { max-width: 600px; margin: 0 auto; width: 100%; }
  .nav-cta { display: none; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu__trigger { display: flex; }
  .nav-cta { display: none; }

  .section { padding: 3.5rem 0; }

  .card-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .card-grid .card:last-child { grid-column: auto; max-width: 100%; }

  .verhaal__grid { grid-template-columns: 1fr; gap: 2rem; }
  .verhaal__media { order: -1; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-card--form { grid-column: auto; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .vestigingen__row { flex-direction: column; gap: 1rem; }
  .vestigingen__divider { width: 40px; height: 1px; }

  .trust-bar__inner { gap: 0; }
  .trust-bar__item { padding: 0.5rem 1rem; }
  .trust-bar__sep { display: none; }

  .trust-stats { flex-direction: column; }
  .trust-stat__divider { width: 100%; height: 1px; }
  .trust-stat { min-width: 100%; }

  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; max-width: 300px; justify-content: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.9rem; }
  .btn { padding: 0.8rem 1.5rem; }
  .hero__logo-mark { width: 56px; height: 56px; font-size: 1.2rem; }
}
