/* =============================================================
   CAFÉ DE EGELANTIER — Stylesheet
   Palet: #c8a96e amber/goud | #2c2c2c donker | #f5f0e8 crème | #b5451b terracotta
   Fonts: Lora (serif koppen) + Lato (sans body)
   ============================================================= */

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

:root {
  --gold:      #c8a96e;
  --gold-dark: #a8893e;
  --gold-light:#e8d4a8;
  --dark:      #2c2c2c;
  --dark-2:    #1a1209;
  --brown:     #3a2a1a;
  --cream:     #f5f0e8;
  --cream-2:   #ece6d8;
  --terra:     #b5451b;
  --white:     #ffffff;
  --text:      #2c2c2c;
  --text-muted:#6b5c47;

  --font-body: 'Lato', sans-serif;
  --font-head: 'Lora', Georgia, serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(44,28,10,0.12);
  --shadow-lg: 0 8px 48px rgba(44,28,10,0.18);

  --container: 1140px;
  --gap:       clamp(1.5rem, 4vw, 2.5rem);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

/* Skip link */
.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;
}

/* Container */
.container {
  width: min(var(--container), 100% - 2rem);
  margin-inline: auto;
}

/* Image fill utility — MANDATORY for all content photos */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img,
.card__img-wrap img, .weekspecial__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
p  { max-width: 68ch; }
a  { color: var(--gold-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
address { font-style: normal; }

/* Section headers */
.section-header { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  max-width: none;
}
.section-title { margin-bottom: 0.75rem; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; margin-inline: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); text-decoration: none; }

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

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

.btn--outline-light { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--outline-light:hover { background: rgba(200,169,110,0.1); }

.btn--lg { font-size: 1.05rem; padding: 0.9rem 2rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---- HEADER ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,18,9,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,110,0.2);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: var(--container);
  margin-inline: auto;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--cream);
}
.logo-badge { width: 38px; height: 38px; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.01em;
}

.site-nav__list { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.site-nav__link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--cream-2);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}
.site-nav__link:hover { color: var(--gold); text-decoration: none; }
.site-nav__link--cta {
  background: var(--gold);
  color: var(--dark-2);
  font-weight: 700;
  margin-left: 0.5rem;
}
.site-nav__link--cta:hover { background: var(--gold-dark); color: var(--dark-2); }

/* ---- MOBILE MENU TRIGGER ---- */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  padding: 0.4rem;
  border-radius: var(--radius);
}
.mobile-menu__trigger svg { width: 26px; height: 26px; display: block; }

/* ---- MOBILE MENU OVERLAY (fullscreen kit) ---- */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;
  background: var(--dark-2);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-menu__overlay[aria-hidden="false"] { transform: translateX(0); }
.mobile-menu__overlay.is-open { transform: translateX(0); }

.mobile-menu__panel { display: flex; flex-direction: column; height: 100%; }
.mobile-menu__panel--root { padding: 1.5rem 2rem 2rem; }

.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  padding: 0.5rem;
  margin-bottom: 1.5rem;
}
.mobile-menu__close svg { width: 28px; height: 28px; display: block; }

.mobile-menu__list { list-style: none; flex: 1; }
.mobile-menu__list li { border-bottom: 1px solid rgba(200,169,110,0.15); }

.mobile-menu__item {
  display: block;
  padding: 1rem 0;
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}
.mobile-menu__item:hover { color: var(--gold); text-decoration: none; }
.mobile-menu__item--cta {
  display: inline-block;
  background: var(--gold);
  color: var(--dark-2);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
}
.mobile-menu__item--cta:hover { background: var(--gold-dark); color: var(--dark-2); }

.mobile-menu__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200,169,110,0.2);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.mobile-menu__footer p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  max-width: none;
}
.mobile-menu__footer svg { width: 16px; height: 16px; flex-shrink: 0; 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;
  z-index: 0;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    170deg,
    rgba(26,18,9,0.62) 0%,
    rgba(26,18,9,0.45) 50%,
    rgba(26,18,9,0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding-top: 5rem;
}

.hero__badge { margin-bottom: 1.5rem; }
.hero-badge-svg { width: 80px; height: 80px; }

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  max-width: none;
}

.hero__title {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
  max-width: 14ch;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(245,240,232,0.88);
  margin-bottom: 2rem;
  max-width: 44ch;
}

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

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  animation: bounce 2.5s ease-in-out infinite;
}
.hero__scroll svg { width: 32px; height: 32px; }
@keyframes bounce { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(8px); } }

/* ---- INTRO STRIP ---- */
.intro-strip {
  background: var(--dark);
  padding: 2rem 0;
  border-bottom: 2px solid rgba(200,169,110,0.3);
}
.intro-strip__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 860px;
  margin-inline: auto;
}
.intro-strip__icon { flex-shrink: 0; }
.intro-strip__icon svg { width: 32px; height: 32px; opacity: 0.6; }
.intro-strip__text {
  color: var(--cream-2);
  font-size: 1.05rem;
  line-height: 1.65;
  text-align: center;
  font-style: italic;
  max-width: none;
}

/* ---- WEEKSPECIAL ---- */
.weekspecial {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.weekspecial__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.weekspecial__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(26,18,9,0.88) 0%,
    rgba(26,18,9,0.72) 55%,
    rgba(26,18,9,0.4) 100%
  );
}
.weekspecial__content {
  position: relative;
  z-index: 2;
  padding-block: 5rem;
  max-width: 600px;
}
.weekspecial__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--dark-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.weekspecial__badge svg { width: 14px; height: 14px; fill: var(--dark-2); stroke: none; }
.weekspecial__title {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.weekspecial__desc {
  color: rgba(245,240,232,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 48ch;
}
.weekspecial__extras {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.weekspecial__extra-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 500;
}
.weekspecial__extra-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- GERECHTEN / CARD GRID ---- */
.gerechten {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: var(--cream);
}

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

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(200,169,110,0.15);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card--featured {
  border-color: var(--gold);
  box-shadow: 0 6px 36px rgba(200,169,110,0.25);
}

.card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.card:hover .card__img-wrap img { transform: scale(1.04); }

.card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.card__icon { color: var(--gold); }
.card__icon svg { width: 22px; height: 22px; }
.card__title { font-size: 1.3rem; color: var(--dark); margin: 0; }
.card__desc { color: var(--text-muted); font-size: 0.95rem; flex: 1; }
.card__items {
  list-style: none;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 1px solid var(--cream-2);
  padding-top: 0.75rem;
}
.card__items li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.card__items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---- INFO BAND ---- */
.info-band {
  background: var(--dark);
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.info-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.info-band__block {
  background: rgba(200,169,110,0.06);
  border: 1px solid rgba(200,169,110,0.18);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.info-band__icon svg { width: 28px; height: 28px; }
.info-band__title {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.hours-list { list-style: none; }
.hours-list__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(200,169,110,0.1);
  font-size: 0.92rem;
  color: var(--cream-2);
}
.hours-list__row:last-child { border-bottom: none; }
.hours-list__row dt { color: rgba(245,240,232,0.65); }
.hours-list__row--closed dt, .hours-list__row--closed dd { color: var(--text-muted); }
.hours-list__row--highlight dd { color: var(--gold); font-weight: 600; }

.info-band__address {
  color: var(--cream-2);
  font-size: 0.95rem;
  line-height: 1.6;
}
.info-band__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.15s;
}
.info-band__link:hover { gap: 0.65rem; text-decoration: none; }
.info-band__link svg { width: 14px; height: 14px; }
.info-band__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: none;
}
.info-band__contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream-2);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0;
}
.info-band__contact-link svg { width: 18px; height: 18px; }
.info-band__contact-link:hover { color: var(--gold); text-decoration: none; }

/* ---- REVIEWS ---- */
.reviews {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: var(--cream-2);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200,169,110,0.15);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s;
  position: relative;
}
.review-card:hover { transform: translateY(-4px); }
.review-card--featured {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(200,169,110,0.22);
}
.review-card--featured::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-head);
  font-size: 5rem;
  color: rgba(200,169,110,0.12);
  line-height: 1;
}

.review-card__stars {
  display: flex;
  gap: 3px;
}
.review-card__stars svg { width: 18px; height: 18px; }

.review-card__text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  max-width: none;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark-2);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--dark);
}
.review-card__source {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--brown);
  padding: clamp(3rem, 7vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(200,169,110,0.04) 40px,
    rgba(200,169,110,0.04) 80px
  );
}
.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.cta-band__title {
  color: var(--gold-light);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  max-width: 20ch;
}
.cta-band__sub {
  color: rgba(245,240,232,0.7);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}
.cta-band__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Reservation Form */
.reservation-form {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 720px;
}
.reservation-form__title {
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.form-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.15s;
}
.form-input::placeholder { color: rgba(245,240,232,0.35); }
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(200,169,110,0.08);
}

/* ---- FOOTER ---- */
.footer-kit {
  background: var(--dark-2);
  padding: clamp(3rem, 7vw, 5rem) 0 1.5rem;
  border-top: 2px solid rgba(200,169,110,0.25);
}
.footer-kit__grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-kit__logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-logo-badge { width: 44px; height: 44px; }
.footer-kit__brand-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.footer-kit__tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  max-width: 36ch;
}
.footer-kit__col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-hours { list-style: none; }
.footer-hours > div {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--cream-2);
}
.footer-hours > div:last-child { border-bottom: none; }
.footer-hours dt { color: rgba(245,240,232,0.55); }
.footer-kit__address { color: var(--cream-2); }
.footer-kit__address p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 0.5rem; max-width: none; }
.footer-kit__address a { color: var(--cream-2); transition: color 0.15s; }
.footer-kit__address a:hover { color: var(--gold); text-decoration: none; }
.footer-kit__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-kit__bottom p { max-width: none; }
.footer-kit__credit a { color: var(--gold); }

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

@media (max-width: 900px) {
  .card-grid--3 { grid-template-columns: 1fr 1fr; }
  .info-band__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .footer-kit__grid { grid-template-columns: 1fr 1fr; }
  .footer-kit__brand { grid-column: 1 / -1; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  /* Show mobile trigger, hide desktop nav */
  .mobile-menu__trigger { display: flex; }
  .site-nav { display: none; }

  /* Card grid: single column on mobile */
  .card-grid--3 { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer-kit__grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Form: single column */
  .form-row { grid-template-columns: 1fr; }

  /* Intro strip: vertical */
  .intro-strip__inner { flex-direction: column; gap: 1rem; text-align: center; }
  .intro-strip__icon { display: none; }

  /* Weekspecial text */
  .weekspecial__content { padding-inline: 1rem; }

  /* CTA */
  .cta-band__actions { flex-direction: column; width: 100%; }
  .reservation-form { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero__title { max-width: 100%; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .weekspecial__extras { gap: 0.5rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}
