/* ============================================================
   KHROEWA THAI — Stylesheet
   Palette: Bamboe-bruin #8B4513 | Rood #CC0000 | Crème #F5F0DC
            Orchidee #C47AC0 | Goud #F5C842
   Fonts: Playfair Display (display) + Inter (body)
   ============================================================ */

/* ---- Reset & Custom Properties ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown:      #8B4513;
  --brown-dk:   #6B3410;
  --brown-lt:   #B8651A;
  --red:        #CC0000;
  --red-dk:     #A50000;
  --cream:      #F5F0DC;
  --cream-dk:   #EDE7C8;
  --orchid:     #C47AC0;
  --gold:       #F5C842;
  --dark:       #1E1209;
  --text:       #3D2010;
  --text-light: #7A5C3E;
  --white:      #FFFFFF;

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

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

  --shadow-sm:  0 2px 8px rgba(62,32,16,0.08);
  --shadow-md:  0 6px 24px rgba(62,32,16,0.12);
  --shadow-lg:  0 16px 48px rgba(62,32,16,0.16);

  --max-w: 1200px;
  --gutter: clamp(16px, 4vw, 48px);
}

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

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

body.menu-open { overflow: hidden; }

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

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

ul { list-style: none; }

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

/* ---- Container ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---- Section shared ---- */
.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.section__eyebrow svg { opacity: 0.7; }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__title em {
  font-style: italic;
  color: var(--brown);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.925rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--brown-dk);
  border-color: var(--brown-dk);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--secondary:hover, .btn--secondary:focus-visible {
  background: var(--red-dk);
  border-color: var(--red-dk);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: var(--brown);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--brown-dk);
  border-color: var(--white);
  font-weight: 700;
}
.btn--light:hover, .btn--light:focus-visible {
  background: var(--cream);
  transform: translateY(-1px);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline-light:hover, .btn--outline-light:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
}

.navbar--scrolled {
  background: rgba(245,240,220,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.9rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar__logo-mark {
  flex-shrink: 0;
}

.navbar__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1;
  white-space: nowrap;
}

.navbar--scrolled .navbar__logo-text { color: var(--dark); }

/* Top of page: logo white on hero image */
.navbar:not(.navbar--scrolled) .navbar__logo-text { color: var(--white); }
.navbar:not(.navbar--scrolled) .navbar__logo-mark svg path[stroke="#CC0000"] { stroke: #FF9999; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.navbar__links a:hover { color: var(--brown); }

.navbar:not(.navbar--scrolled) .navbar__links a { color: rgba(255,255,255,0.85); }
.navbar:not(.navbar--scrolled) .navbar__links a:hover { color: var(--white); }

.navbar__cta-link {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
}
.navbar:not(.navbar--scrolled) .navbar__cta-link { background: rgba(204,0,0,0.85); }
.navbar__cta-link:hover { background: var(--red-dk) !important; }

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

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar--scrolled .hamburger span { background: var(--dark); }

/* Hamburger 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: 100vw;
  height: 100svh;
  height: 100dvh;
  background: var(--cream);
  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);
}

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

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0 var(--gutter);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--cream-dk);
}

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

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.mobile-menu__close:hover { background: var(--cream-dk); }

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

.mobile-menu__item {
  display: block;
  padding: 1rem 0;
  font-size: 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(139,69,19,0.1);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu__item:hover, .mobile-menu__item:focus-visible {
  color: var(--red);
  padding-left: 0.5rem;
}

.mobile-menu__footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--cream-dk);
  margin-top: auto;
}

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

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,18,9,0.65) 0%,
    rgba(139,69,19,0.35) 60%,
    rgba(30,18,9,0.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 7rem var(--gutter) 4rem;
  max-width: 820px;
  margin: 0 auto;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

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

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero__actions {
  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.6);
  animation: bounceDown 2s infinite;
  z-index: 2;
}

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

/* ============================================================
   OVER ONS
   ============================================================ */
.over-ons {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--cream);
}

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

.over-ons__lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brown);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-style: italic;
}

.over-ons__body {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.over-ons__badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.over-ons__image-wrap {
  position: relative;
}

.over-ons__img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-lg);
}

.over-ons__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.over-ons__img-deco {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--orchid);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
  position: relative;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brown), var(--red), var(--orchid));
}

.menu-section__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.menu-section__head .section__eyebrow {
  justify-content: center;
}

.menu-section__intro {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 0.5rem;
}

/* Card grid — always 4 columns on desktop so no orphan */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(139,69,19,0.08);
}

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

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

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

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

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

.card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(204,0,0,0.08);
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 0.6rem;
}

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

.card__desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.card__ingredients {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--brown);
  font-weight: 500;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(139,69,19,0.12);
}

.card__ingredients svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--orchid);
}

.menu-section__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--cream-dk);
}

/* ============================================================
   RESERVEREN
   ============================================================ */
.reserveren {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--cream);
}

.reserveren__head {
  text-align: center;
  margin-bottom: 3rem;
}

.reserveren__head .section__eyebrow {
  justify-content: center;
}

.reserveren__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.reserveren__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139,69,19,0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reserveren__icon {
  width: 64px;
  height: 64px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reserveren__card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

.reserveren__card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.reserveren__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.reserveren__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text);
}

.reserveren__list svg { color: var(--brown); flex-shrink: 0; }

/* Phone band */
.phone-band {
  background: var(--brown);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 1rem;
  font-weight: 500;
}

.phone-band__number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}
.phone-band__number:hover { text-decoration: underline; }

.phone-band__divider { opacity: 0.4; }

.phone-band__email {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.phone-band__email:hover { color: var(--white); text-decoration: underline; }

/* ============================================================
   OPENINGSTIJDEN & LOCATIE
   ============================================================ */
.openingstijden {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}

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

/* Hours table */
.hours-table {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  background: var(--cream);
}

.hours-row:nth-child(odd) { background: var(--cream-dk); }

.hours-day { font-weight: 500; color: var(--text); }

.hours-time {
  font-weight: 600;
  color: var(--brown);
}

.hours-time--closed {
  color: var(--text-light);
  font-style: italic;
  font-weight: 400;
}

.openingstijden__note {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.5rem;
}

/* Locatie card */
.locatie-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.locatie-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.locatie-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.locatie-row svg { flex-shrink: 0; margin-top: 2px; }

.locatie-row div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.locatie-row strong {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.locatie-row span {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.locatie-row a {
  color: var(--brown);
  text-decoration: none;
}
.locatie-row a:hover { text-decoration: underline; }

.locatie-map {
  line-height: 0;
}

.locatie-map iframe {
  display: block;
  width: 100%;
  min-height: 260px;
  border: none;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--brown-dk) 0%, var(--brown) 50%, var(--red-dk) 100%);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.cta-band__text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}

.cta-band__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-kit {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

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

.footer-kit__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.6rem;
}

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

.footer-kit__tagline {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.footer-kit__desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer-kit__col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-kit__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-kit__col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-kit__col ul li a:hover { color: var(--gold); }

/* Contact list in footer */
.footer-kit__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.footer-kit__contact-list svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.footer-kit__contact-list a { color: rgba(255,255,255,0.7); }
.footer-kit__contact-list a:hover { color: var(--gold); }

/* Hours in footer */
.footer-kit__hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 1rem;
}

.footer-kit__hours .closed {
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

.footer-kit__bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-kit__bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-kit__bottom a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-kit__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .navbar__links { display: none; }
  .mobile-menu__trigger { display: flex; }

  .over-ons__grid,
  .openingstijden__grid {
    grid-template-columns: 1fr;
  }

  .over-ons__image-wrap {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

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

  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-band__actions {
    justify-content: center;
  }

  .footer-kit__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .phone-band {
    flex-direction: column;
    text-align: center;
  }

  .phone-band__divider { display: none; }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }

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

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

/* Tablet: 2x2 card grid */
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
