/* ═══════════════════════════════════════════════════════════════
   Brasserie Het Kasteeltje — Demo site stylesheet
   Palette: #3a7d8c (teal), #c8a96e (gold), #1a2e3b (dark), 
            #f5f0e8 (cream), #ffffff (white)
   Fonts: Playfair Display (headings) + DM Sans (body)
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --teal:    #3a7d8c;
  --teal-dk: #2d6270;
  --gold:    #c8a96e;
  --gold-dk: #b0913d;
  --dark:    #1a2e3b;
  --cream:   #f5f0e8;
  --cream-dk:#ede6d8;
  --white:   #ffffff;
  --text:    #2c3e3a;
  --text-lt: #5a6b65;

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

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(26,46,59,.10);
  --shadow:    0 6px 24px rgba(26,46,59,.13);
  --shadow-lg: 0 16px 48px rgba(26,46,59,.16);

  --header-h: 72px;
  --section-gap: 100px;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

address { font-style: normal; }

/* ─── MEDIA/IMAGE FILL GUARD ─────────────────────────────────── */
.media, .img-fill, figure.photo {
  position: relative; overflow: hidden;
}
.media > img, .img-fill > img, figure.photo > img,
.gallery__item img, .card__img, .hero__img,
.verhaal__media img, .cadeaubon__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ─── CONTAINER ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* ─── SECTION ────────────────────────────────────────────────── */
.section { padding-block: var(--section-gap); }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .5rem;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: .75rem;
}

.section-title em {
  font-style: italic;
  color: var(--teal);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-lt);
  max-width: 520px;
  margin-inline: auto;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  text-decoration: none;
  padding: .875rem 1.75rem;
  min-height: 48px;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-dk); border-color: var(--gold-dk); }

.btn--teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--teal:hover { background: var(--teal-dk); border-color: var(--teal-dk); }

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

.btn--lg { font-size: 1.05rem; padding: 1rem 2.25rem; min-height: 54px; }
.btn--sm { font-size: .9rem; padding: .6rem 1.25rem; min-height: 40px; }
.btn--full { width: 100%; }

/* ─── SITE HEADER ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(26,46,59,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,110,.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}

.logo-icon { width: 36px; height: auto; flex-shrink: 0; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}

/* Desktop nav */
.desktop-nav ul {
  display: flex;
  gap: .25rem;
}

.desktop-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}

.desktop-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

/* Hamburger trigger */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 4px;
  flex-shrink: 0;
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

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

/* ─── MOBILE MENU OVERLAY ────────────────────────────────────── */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  width: 100%;
  height: 100svh;
  min-height: 100dvh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}

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

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

.mobile-menu__panel { flex: 1; display: flex; flex-direction: column; }

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

.mobile-menu__brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.mobile-menu__close svg { width: 24px; height: 24px; }

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

.mobile-menu__item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  min-height: 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, background .2s;
}

.mobile-menu__item:hover {
  color: var(--gold);
  background: rgba(255,255,255,.04);
}

.mobile-menu__footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(200,169,110,.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu__tel {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: color .2s;
}

.mobile-menu__tel svg { width: 20px; height: 20px; }
.mobile-menu__tel:hover { color: var(--gold); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: 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 center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,46,59,.72) 0%,
    rgba(58,125,140,.40) 60%,
    rgba(26,46,59,.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  padding-top: var(--header-h);
}

.hero__eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 800px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__hours {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  background: rgba(26,46,59,.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(200,169,110,.25);
  border-radius: var(--radius-sm);
  padding: .6rem 1rem;
  width: fit-content;
}

.hero__hours svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold);
}

/* ─── PROOF STRIP ───────────────────────────────────────────── */
.proof-strip {
  background: var(--dark);
  padding-block: 2rem;
  border-top: 3px solid var(--gold);
}

.proof-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.proof-item__stars {
  display: flex;
  gap: 2px;
}

.proof-item__stars svg { width: 18px; height: 18px; }

.proof-item__label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.proof-item__label strong {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-display);
}

.proof-item__label span {
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.proof-item--quote {
  flex-direction: column;
  align-items: flex-start;
  max-width: 320px;
  position: relative;
  padding: 0 1rem;
}

.proof-quote-icon { width: 24px; height: 24px; margin-bottom: .25rem; }

.proof-item--quote p {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  font-style: italic;
  line-height: 1.5;
}

.proof-item--quote cite {
  font-size: .75rem;
  color: var(--gold);
  font-style: normal;
  margin-top: .25rem;
}

.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

.ta-owl { width: 60px; height: auto; }

/* ─── DIENSTEN / USP CARDS ──────────────────────────────────── */
.diensten { background: var(--cream); }

.card-grid { display: grid; gap: 1.5rem; }
.card-grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card--service {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(58,125,140,.1);
  transition: transform .2s, box-shadow .2s;
}

.card--service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card__icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(58,125,140,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--teal);
}

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

.card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .6rem;
}

.card__text {
  font-size: .9rem;
  color: var(--text-lt);
  line-height: 1.6;
}

/* ─── ONS VERHAAL ──────────────────────────────────────────── */
.verhaal { background: var(--white); overflow: hidden; }

.verhaal__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.verhaal__text {
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 580px;
}

.verhaal__text .section-title { margin-bottom: 1.5rem; }

.verhaal__text p {
  margin-bottom: 1rem;
  color: var(--text-lt);
  font-size: 1.05rem;
}

.verhaal__text p em {
  color: var(--teal);
  font-style: italic;
}

.verhaal__text .btn { margin-top: 1rem; align-self: flex-start; }

.verhaal__media {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

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

/* ─── MENU SECTION ─────────────────────────────────────────── */
.menu-section { background: var(--cream); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.menu-category {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.menu-cat-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--cream-dk);
}

.menu-list { display: flex; flex-direction: column; gap: .75rem; }

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--cream-dk);
}

.menu-item:last-child { border-bottom: none; padding-bottom: 0; }

.menu-item__info { flex: 1; }

.menu-item__name {
  display: block;
  font-weight: 600;
  color: var(--dark);
  font-size: .95rem;
  line-height: 1.3;
}

.menu-item__desc {
  display: block;
  font-size: .8rem;
  color: var(--text-lt);
  margin-top: .2rem;
}

.menu-item__price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item--featured .menu-item__name {
  color: var(--teal);
}

.menu-item--featured {
  background: rgba(58,125,140,.05);
  border-radius: var(--radius-sm);
  padding: .5rem .6rem;
  margin-inline: -.6rem;
}

/* ─── GALLERY ──────────────────────────────────────────────── */
.gallery { background: var(--white); }
.gallery .section-header { margin-bottom: 2.5rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: .5rem;
  padding-inline: .5rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  height: 300px;
}

/* gallery__item defined above */

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.gallery__item:hover img { transform: scale(1.04); }

.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding: .6rem .85rem;
  background: linear-gradient(to top, rgba(26,46,59,.8) 0%, transparent 100%);
  color: var(--white);
  font-size: .8rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity .3s;
}

.gallery__item:hover figcaption { opacity: 1; }

/* ─── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: var(--teal);
  background-image: linear-gradient(135deg, var(--teal) 0%, var(--teal-dk) 100%);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
  line-height: 1.15;
}

.cta-band__sub {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  line-height: 1.65;
}

/* Reservation form */
.reserveer-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

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

.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-group input,
.form-group select {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-sm);
  padding: .7rem .9rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  min-height: 44px;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder { color: rgba(255,255,255,.5); }

.form-group input:focus,
.form-group select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  background: rgba(255,255,255,.2);
  border-color: var(--gold);
}

.form-group select option { background: var(--dark); color: var(--white); }

.form-alt {
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-top: .25rem;
}

.form-alt a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
}

/* ─── CADEAUBON ────────────────────────────────────────────── */
.cadeaubon { background: var(--cream); }

.cadeaubon__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.cadeaubon__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  min-height: 300px;
  box-shadow: var(--shadow-lg);
  background: var(--cream-dk);
}

.cadeaubon__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cadeaubon__text .section-title { margin-bottom: 1rem; }
.cadeaubon__text p { color: var(--text-lt); margin-bottom: 1.5rem; }
.cadeaubon__text .btn { align-self: flex-start; }
.cadeaubon__text { display: flex; flex-direction: column; }

/* ─── FOOTER ───────────────────────────────────────────────── */
.footer-kit {
  background: var(--dark);
  padding-top: 4rem;
}

.footer-kit__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-col__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo .logo-icon { width: 40px; height: auto; }

.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: .75rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}

.footer-socials a:hover { background: var(--gold); color: var(--dark); }
.footer-socials svg { width: 18px; height: 18px; }

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

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .9rem;
}

.hours-row dt { color: rgba(255,255,255,.7); }
.hours-row dd { color: var(--white); font-weight: 500; }
.hours-row--closed dt,
.hours-row--closed dd { color: rgba(255,255,255,.4); }

/* Contact */
.footer-address { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: .1em;
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-cta-btn { margin-top: .5rem; }

/* Footer bottom */
.footer-bottom {
  padding-block: 1.5rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }

.footer-demo-note a { color: var(--gold); text-decoration: underline; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */

/* Tablets */
@media (max-width: 900px) {
  .desktop-nav, .desktop-cta { display: none; }
  .mobile-menu__trigger { display: flex; }

  .verhaal__inner {
    grid-template-columns: 1fr;
  }

  .verhaal__media {
    min-height: 360px;
    order: -1;
    position: relative;
    height: 360px;
  }

  .verhaal__text {
    max-width: 100%;
    padding: 3rem 1.75rem;
  }

  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .form-row { grid-template-columns: 1fr; }

  .cadeaubon__inner {
    grid-template-columns: 1fr;
  }

  .footer-kit__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col--brand {
    grid-column: span 2;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
  .gallery__item { height: 240px; }

}

/* Mobile */
@media (max-width: 600px) {
  :root { --section-gap: 64px; }

  .hero__title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero__hours { font-size: .75rem; flex-wrap: wrap; }

  .proof-strip__inner { gap: 1.25rem; }
  .proof-divider { display: none; }
  .proof-item--quote { max-width: 100%; padding: 0; }

  .card-grid--4 { grid-template-columns: 1fr 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: .4rem;
    grid-auto-rows: 220px;
  }
  .gallery__item { height: 220px; }

  .footer-kit__inner {
    grid-template-columns: 1fr;
  }

  .footer-col--brand { grid-column: span 1; }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .verhaal__text { padding: 2.5rem 1.25rem; }
}

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