/* ═══════════════════════════════════════════════
   CHINEES RESTAURANT NIEUWEGEIN — STYLESHEET
   Palette: #CC0000 (accent) | #1A1A1A (dark) | #FAF7F2 (bg)
   Fonts: Playfair Display (headings) + Inter (body)
═══════════════════════════════════════════════ */

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

:root {
  --red:      #CC0000;
  --red-dark: #a00000;
  --dark:     #1A1A1A;
  --dark-80:  rgba(26,26,26,.8);
  --bg:       #FAF7F2;
  --bg-warm:  #F3EDE3;
  --text:     #2D2D2D;
  --text-muted: #6B6560;
  --gold:     #C9A227;
  --white:    #FFFFFF;
  --wa-green: #25D366;
  --radius:   12px;
  --shadow:   0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:0 8px 48px rgba(0,0,0,.14);
  --max-w:    1180px;
  --header-h: 72px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 0;
}

/* vangnet: alle content-beelden vullen hun container */
.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; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--dark);
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-sub {
  max-width: 56ch;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  white-space: nowrap;
  min-height: 44px;
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn--outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn--outline:hover { background: var(--dark); color: var(--white); }

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

.btn--outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn--outline-red:hover { background: var(--red); color: var(--white); }

.btn--outline-sm { padding: .45rem 1rem; font-size: .875rem; min-height: 40px; }

.btn--whatsapp { background: var(--wa-green); color: var(--white); border-color: var(--wa-green); }
.btn--whatsapp:hover { background: #1da851; border-color: #1da851; }

.btn--full { width: 100%; justify-content: center; }
.btn--sm { padding: .5rem 1rem; font-size: .875rem; min-height: 40px; }


/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.logo-circle { display: block; }
.logo-circle svg { display: block; }
.logo-circle--sm svg { width: 48px; height: 48px; }
.logo-circle--md svg { width: 56px; height: 56px; }
.logo-circle svg { width: 44px; height: 44px; }

.logo-text {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.logo-text strong { font-weight: 700; color: var(--dark); font-size: .95rem; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.desktop-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: color .15s;
}
.desktop-nav a:hover { color: var(--red); }

/* ── HAMBURGER ── */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* 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);
}


/* ═══════════════════════════════════════════
   MOBIEL FULLSCREEN MENU
═══════════════════════════════════════════ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  height: 100svh;
  background: var(--bg);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  will-change: transform;
}

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

.mobile-menu__panel { width: 100%; }

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
  height: var(--header-h);
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}
.mobile-menu__close svg { width: 24px; height: 24px; }

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

.mobile-menu__item {
  display: block;
  padding: 1rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: color .15s, padding-left .15s;
  min-height: 44px;
}
.mobile-menu__item:hover { color: var(--red); padding-left: 2rem; }

.mobile-menu__ctas {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  border-top: 1px solid rgba(0,0,0,.08);
  margin-top: auto;
}
.mobile-menu__ctas .btn { justify-content: center; }


/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  height: 100dvh;
  min-height: 600px;
  margin-top: 0;
  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;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.55) 50%,
    rgba(0,0,0,.72) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 2rem;
  max-width: 760px;
  width: 100%;
}

.hero__logo-badge {
  margin: 0 auto 1.25rem;
  width: 80px;
  height: 80px;
}
.hero__logo-badge svg { width: 80px; height: 80px; filter: drop-shadow(0 2px 12px rgba(0,0,0,.5)); }

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

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
  margin-bottom: 1rem;
}

.hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 2rem;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  justify-content: center;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.6);
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll-hint svg { width: 28px; height: 28px; }

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


/* ═══════════════════════════════════════════
   OVER ONS
═══════════════════════════════════════════ */
.over-ons {
  padding: 6rem 0;
  background: var(--bg);
}

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

.over-ons__text h2 { margin-bottom: 1.25rem; }

.over-ons__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 50ch;
}

.over-ons__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1px solid rgba(204,0,0,.15);
  border-radius: 50px;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.badge svg { width: 16px; height: 16px; }

.over-ons__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.over-ons__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.over-ons__quote {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(26,26,26,.85);
  backdrop-filter: blur(8px);
  border-left: 3px solid var(--red);
  padding: .875rem 1rem;
  border-radius: 6px;
}

.over-ons__visual { position: relative; }

.over-ons__quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--white);
  margin: 0;
}


/* ═══════════════════════════════════════════
   MENU / CARD GRID
═══════════════════════════════════════════ */
.menu-section {
  padding: 6rem 0;
  background: var(--bg-warm);
}

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

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

.card__body {
  padding: 1.25rem;
}

.card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.card__desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: .875rem;
}

.card__tag {
  display: inline-block;
  background: rgba(204,0,0,.08);
  color: var(--red);
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .625rem;
  letter-spacing: .04em;
}

.menu-cta { text-align: center; }


/* ═══════════════════════════════════════════
   BESTELLEN & BEZORGEN
═══════════════════════════════════════════ */
.bestellen-section {
  padding: 6rem 0;
  background: var(--bg);
}

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

.bestellen-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: transform .25s, box-shadow .25s;
}
.bestellen-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.bestellen-card--featured {
  border-color: var(--red);
  border-width: 2px;
  position: relative;
}
.bestellen-card--featured::before {
  content: 'Populair';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .875rem;
  border-radius: 50px;
}

.bestellen-icon {
  width: 64px;
  height: 64px;
  background: rgba(204,0,0,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bestellen-icon svg { width: 28px; height: 28px; color: var(--red); }

.bestellen-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.bestellen-card p {
  font-size: .9rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════ */
.cta-band {
  background: var(--dark);
  padding: 4rem 0;
}

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

.cta-band__text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  margin-bottom: .5rem;
}

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

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


/* ═══════════════════════════════════════════
   CONTACT & OPENINGSTIJDEN
═══════════════════════════════════════════ */
.contact-section {
  padding: 4rem 0 3rem;
  background: var(--bg-warm);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(204,0,0,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; color: var(--red); }

.contact-block strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .2rem;
}
.contact-block p, .contact-block a {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.5;
}
.contact-block a:hover { color: var(--red); }

/* Openingstijden */
.openingstijden {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.openingstijden h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--red);
}

.uren-tabel {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.uren-tabel td {
  padding: .5rem 0;
  font-size: .9rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.uren-tabel td:first-child { color: var(--text-muted); }
.uren-tabel td:last-child { text-align: right; font-weight: 500; }
.uren-tabel .gesloten { color: var(--red); }

.uren-note {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* Formulier */
.reserveer-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.reserveer-form h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--red);
}

.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  margin-bottom: .375rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  background: var(--bg);
  color: var(--dark);
  transition: border-color .15s, box-shadow .15s;
  min-height: 44px;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,0,0,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* Map */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}
.map-wrap iframe { display: block; }


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer-kit {
  background: var(--dark);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,.75);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.footer-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

.footer-kit h4 {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}

.footer-nav ul,
.footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: .625rem; }

.footer-nav a { font-size: .9rem; color: rgba(255,255,255,.7); transition: color .15s; }
.footer-nav a:hover { color: var(--white); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
}
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: rgba(255,255,255,.7); transition: color .15s; }
.footer-contact a:hover { color: var(--white); }

.footer-uren p {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  margin-bottom: .375rem;
}
.gesloten-txt { color: rgba(204,0,0,.8) !important; }

.footer-bottom {
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}


/* ═══════════════════════════════════════════
   STICKY BOTTOM BAR (MOBILE)
═══════════════════════════════════════════ */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.1);
  height: 64px;
  align-items: stretch;
}

.sticky-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: background .15s, color .15s;
  border-right: 1px solid rgba(255,255,255,.08);
  min-height: 44px;
  padding: 4px 8px;
}
.sticky-bar__item:last-child { border-right: none; }
.sticky-bar__item svg { width: 22px; height: 22px; flex-shrink: 0; }
.sticky-bar__item:hover { background: rgba(255,255,255,.07); color: var(--white); }

.sticky-bar__item--whatsapp { color: var(--wa-green); }
.sticky-bar__item--whatsapp:hover { background: rgba(37,211,102,.12); }

.sticky-bar__item--order { background: var(--red); color: var(--white); }
.sticky-bar__item--order:hover { background: var(--red-dark); }


/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

/* ── 1024px ── */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-kit__grid { grid-template-columns: 1fr 1fr; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  body { padding-bottom: 80px; }

  .desktop-nav { display: none; }
  .mobile-menu__trigger { display: flex; }
  .sticky-bar { display: flex; }

  .over-ons__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .over-ons__text p { max-width: 100%; }

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

  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }

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

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

/* ── 480px ── */
@media (max-width: 480px) {
  .hero { height: 100svh; min-height: 550px; }
  .hero__title { font-size: 2rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }

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

  .over-ons__badges { flex-direction: column; align-items: flex-start; }
}

/* No horizontal scroll insurance */
@media (max-width: 375px) {
  .container { padding: 0 16px; }
  .bestellen-card { padding: 2rem 1.25rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
