/* =========================================================
   KANO — Kebap · Pizza · Burger
   Schriften lokal eingebunden (keine Google-Verbindung).
   Farben für Barrierefreiheit kontraststark (WCAG AA).
   ========================================================= */

/* ---------- Lokale Schriften (kein Google) ---------- */
@font-face {
  font-family: "Archivo"; font-style: normal; font-weight: 700;
  font-display: swap; src: url("fonts/archivo-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Archivo"; font-style: normal; font-weight: 800;
  font-display: swap; src: url("fonts/archivo-latin-800-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("fonts/hanken-grotesk-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("fonts/hanken-grotesk-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk"; font-style: normal; font-weight: 600;
  font-display: swap; src: url("fonts/hanken-grotesk-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk"; font-style: normal; font-weight: 700;
  font-display: swap; src: url("fonts/hanken-grotesk-latin-700-normal.woff2") format("woff2");
}

:root {
  --navy:       #16213d;
  --navy-deep:  #0e1830;
  --ember:      #b8551f;   /* Buttons + große Akzente (weißer Text = 4.8:1) */
  --ember-ink:  #9c4716;   /* kleiner Text auf hellem Grund (5.7:1) */
  --ember-dark: #8f3f12;   /* Hover */
  --bg:         #f5f1ea;
  --card:       #fffdf8;
  --cloud:      #ece6db;
  --ink:        #1f2333;
  --muted:      #5c6373;   /* gedämpfter Text, ~4.9:1 auf Bone */
  --gold:       #e0b25a;
  --line:       rgba(22, 33, 61, 0.14);
  --line-soft:  rgba(22, 33, 61, 0.08);

  --container: 1180px;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 18px 44px -28px rgba(22, 33, 61, 0.4);

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font-body); font-size: 18px; line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display); font-weight: 700;
  line-height: 1.06; letter-spacing: -0.02em; margin: 0;
}
p { margin: 0; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 26px; }

/* Hilfsklassen Barrierefreiheit */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ember); color: #fff; padding: 12px 20px; border-radius: 8px;
  font-weight: 700; text-decoration: none; transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ember-ink); margin: 0 0 16px;
}
.eyebrow.on-dark { color: #e8b58c; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  text-decoration: none; padding: 14px 26px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .16s ease, background .16s ease, color .16s ease, border-color .16s ease;
}
.btn-flame { background: var(--ember); color: #fff; }
.btn-flame:hover { background: var(--ember-dark); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-blue { background: var(--navy); color: #fff; }
.btn-blue:hover { background: var(--navy-deep); transform: translateY(-2px); }

/* ---------- Status-Chip ---------- */
.status {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 500; padding: 8px 16px 8px 13px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.06); color: #fff;
}
.status .dot { width: 8px; height: 8px; border-radius: 50%; background: #aeb6c7; flex: none; }
.status.is-open .dot { background: #5ed18a; animation: pulse 2.6s infinite; }
.status.is-closed .dot { background: #e0916f; }
.status.on-light { color: var(--navy); border-color: var(--line); background: #fff; }
.status.on-light .dot { background: #7e879b; }
.status.on-light.is-open .dot { background: #2e9e5b; }
.status.on-light.is-closed .dot { background: var(--ember-ink); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(94,209,138,0.45); }
  70% { box-shadow: 0 0 0 7px rgba(94,209,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(94,209,138,0); }
}

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--navy); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 17px; }
.brand { display: inline-flex; align-items: baseline; gap: 9px; text-decoration: none; color: #fff; }
.brand .word { font-family: var(--font-display); font-weight: 800; font-size: 24px; letter-spacing: 0.14em; }
.brand .word .dot { color: #e8884a; }
.brand .sub { font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.62); }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: rgba(255,255,255,0.88); text-decoration: none; font-size: 16px; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: #fff; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #1b294a 0%, var(--navy) 55%, var(--navy-deep) 100%);
  color: #fff; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 80% -10%, rgba(184,85,31,0.16), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; padding-block: 78px 90px; max-width: 860px; }
.hero .rating {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px; padding: 7px 17px 7px 15px;
  font-size: 14px; font-weight: 500; margin-bottom: 28px; color: rgba(255,255,255,0.95);
}
.hero .rating .stars { color: var(--gold); letter-spacing: 1px; }
.hero h1 { font-size: clamp(2.9rem, 9vw, 6rem); font-weight: 800; letter-spacing: -0.035em; line-height: 0.96; color: #f4f0e8; }
.hero h1 .flame { color: #e8884a; }
.hero-lede { margin-top: 24px; font-size: clamp(1.08rem, 2.2vw, 1.32rem); color: rgba(255,255,255,0.82); max-width: 42ch; line-height: 1.55; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-status { margin-top: 26px; }

/* ---------- Highlights ---------- */
.highlights { background: var(--bg); border-bottom: 1px solid var(--line-soft); }
.highlights .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.highlight { padding: 26px 18px; display: flex; align-items: center; justify-content: center; gap: 12px; font-weight: 600; font-size: 1.02rem; color: var(--navy); }
.highlight + .highlight { border-left: 1px solid var(--line-soft); }
.highlight svg { width: 22px; height: 22px; flex: none; color: var(--ember-ink); }

/* ---------- Sektionen ---------- */
.section { padding-block: 94px; }
.section-paper { background: var(--bg); }
.section-cloud { background: var(--cloud); }
.section-blue { background: var(--navy); color: #fff; }

.section-head { max-width: 60ch; margin-bottom: 14px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 1.1rem; }
.section-blue .section-head p { color: rgba(255,255,255,0.78); }

/* ---------- Galerie ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-tile {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 13px; text-align: center; padding: 20px; border: 1px solid var(--line-soft);
}
.gallery-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.gallery-tile .ph-icon { width: 42px; height: 42px; }
.gallery-tile .ph-name { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; letter-spacing: -0.01em; }
.gallery-tile .ph-chip { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; }
.t-dark { background: linear-gradient(155deg, #23314f, var(--navy)); color: #ece7dc; }
.t-dark .ph-icon { color: #e8a878; }
.t-dark .ph-chip { background: rgba(255,255,255,0.12); color: #ece7dc; }
.t-stone { background: linear-gradient(155deg, #efe9dd, #e3dccd); color: var(--navy); }
.t-stone .ph-icon { color: var(--ember-ink); }
.t-stone .ph-chip { background: #fff; color: var(--ember-ink); }

/* ---------- Speisekarte ---------- */
.menu-meta { text-align: center; color: var(--muted); font-size: 0.96rem; margin: 0 auto 56px; max-width: 60ch; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px 72px; }
.menu-cat > h3 {
  font-size: 1.4rem; color: var(--navy); font-weight: 700;
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px; margin-bottom: 8px; border-bottom: 2px solid var(--ember);
}
.menu-cat > h3 .ico { width: 24px; height: 24px; color: var(--ember-ink); flex: none; }
.menu-row { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.menu-row:last-child { border-bottom: none; }
.menu-row .name { font-weight: 600; }
.menu-row .tag-veg {
  display: inline-block; margin-left: 7px; font-size: 10.5px; font-weight: 700;
  color: #41663f; border: 1px solid #8fb191; border-radius: 5px; padding: 1px 6px;
  vertical-align: middle; letter-spacing: 0.05em; text-transform: uppercase;
}
.menu-row .tag-hot { color: var(--ember-ink); border-color: #d8a888; }
.menu-row .desc { display: block; font-size: 0.9rem; color: var(--muted); margin-top: 3px; font-weight: 400; }
.menu-row .price { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--navy); white-space: nowrap; }
.menu-foot { margin-top: 54px; text-align: center; }
.menu-legend { margin: 46px auto 0; padding-top: 24px; border-top: 1px solid var(--line-soft); color: var(--muted); font-size: 0.85rem; line-height: 1.65; max-width: 84ch; text-align: center; }
.menu-legend strong { color: var(--ink); }
.menu-promo {
  margin: 0 auto 44px; max-width: 60ch; text-align: center;
  background: #fff2e6; border: 1px solid #e6b48f; color: var(--ember-ink);
  border-radius: var(--radius); padding: 14px 20px; font-weight: 600; font-size: 0.98rem;
}

/* Info-Chips ("Gut zu wissen") */
.info-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.info-chips li { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.info-chips li svg { width: 17px; height: 17px; color: var(--ember-ink); flex: none; }

/* ---------- Über uns ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.about-copy h2 { font-size: clamp(2rem, 4.4vw, 2.9rem); margin-bottom: 22px; }
.about-copy p { color: rgba(255,255,255,0.82); margin-bottom: 16px; }
.about-copy p.lede { font-size: 1.16rem; color: #fff; }
.about-stats { display: grid; gap: 13px; }
.about-stat { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); padding: 22px 26px; display: flex; align-items: baseline; gap: 16px; }
.about-stat .fig { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: #e8a878; line-height: 1; }
.about-stat .lab { color: rgba(255,255,255,0.82); font-size: 0.98rem; }

/* ---------- Kontakt ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 1rem; }
.hours-table th { font-weight: 600; }
.hours-table td { text-align: right; color: var(--muted); }
.hours-table tr.today th { color: var(--ember-ink); font-weight: 700; }
.hours-table tr.today td { color: var(--ember-ink); font-weight: 700; }

.contact-block { margin-top: 26px; display: grid; gap: 15px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row .ico { width: 22px; height: 22px; flex: none; color: var(--ember-ink); margin-top: 3px; }
.contact-row a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
.contact-row a:hover { color: var(--ember-ink); }

/* Karte mit Einwilligung (Klick-zum-Laden) */
.map-card { background: var(--cloud); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; min-height: 360px; position: relative; }
.map-frame { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.map-consent {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 28px;
  background-color: var(--cloud);
  background-image:
    linear-gradient(transparent 0 49.5%, var(--line-soft) 49.5% 50.5%, transparent 50.5%),
    linear-gradient(90deg, transparent 0 49.5%, var(--line-soft) 49.5% 50.5%, transparent 50.5%);
  background-size: 64px 64px, 64px 64px;
}
.map-consent.hidden { display: none; }
.map-consent .pin svg { width: 40px; height: 40px; color: var(--ember-ink); }
.map-consent p { color: var(--muted); font-size: 0.9rem; max-width: 38ch; }
.map-consent .addr { font-weight: 700; color: var(--navy); font-size: 1rem; }

/* ---------- Bestell-Band ---------- */
.order-band { background: var(--navy-deep); color: #fff; }
.order-band .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-block: 56px; flex-wrap: wrap; }
.order-band h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); max-width: 24ch; color: #f4f0e8; }
.order-band p { margin-top: 8px; color: rgba(255,255,255,0.78); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.72); padding-block: 56px 32px; font-size: 0.95rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-top .brand { margin-bottom: 14px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: #e8b58c; margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a, .footer-col button.linklike {
  color: rgba(255,255,255,0.78); text-decoration: none; background: none; border: 0;
  font: inherit; padding: 0; cursor: pointer; text-align: left;
}
.footer-col a:hover, .footer-col button.linklike:hover { color: #fff; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 26px; font-size: 0.86rem; }
.footer-bottom a { color: rgba(255,255,255,0.78); }
.credit { color: rgba(255,255,255,0.5); }
.credit a { color: #e8b58c; text-decoration: none; }

/* ---------- Schwebender Button ---------- */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ember); color: #fff; text-decoration: none;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 14px 22px; border-radius: 999px; box-shadow: 0 12px 30px -8px rgba(22, 33, 61, 0.5);
  opacity: 0; transform: translateY(18px); pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .16s ease;
}
.fab.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fab:hover { background: var(--ember-dark); }
.fab svg { width: 19px; height: 19px; }
body.banner-open .fab { display: none; }
@media (max-width: 520px) { .fab { right: 16px; bottom: 16px; padding: 13px 20px; } }

/* ---------- Cookie-Banner ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--navy); color: #fff; box-shadow: 0 -12px 34px -14px rgba(0,0,0,0.5);
  transform: translateY(110%); transition: transform .3s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; gap: 26px; justify-content: space-between; flex-wrap: wrap; padding-block: 20px; }
.cookie-text { font-size: 0.93rem; color: rgba(255,255,255,0.85); max-width: 62ch; line-height: 1.55; }
.cookie-text strong { color: #fff; }
.cookie-text a { color: #e8b58c; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 12px 22px; font-size: 15px; }
@media (max-width: 640px) {
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

/* ---------- Scroll-Fortschritt (Balken oben, v. a. mobil) ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--ember), #e8a878);
  z-index: 80; pointer-events: none;
}

/* ---------- Scroll-Leiste (Desktop): zeichnet sich + Kapitel-Navigation ---------- */
.scroll-rail { position: fixed; left: 18px; top: 96px; height: calc(100vh - 140px); width: 40px; z-index: 40; display: none; }
@media (min-width: 1200px) { .scroll-rail { display: block; } }
.scroll-rail svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.scroll-rail .track { fill: none; stroke: rgba(184, 85, 31, 0.16); stroke-width: 2; }
.scroll-rail .draw  { fill: none; stroke: var(--ember); stroke-width: 2.5; stroke-linecap: round; }
.rail-dot {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--ember); transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(184, 85, 31, 0.16); pointer-events: none;
}
.rail-station {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  transform: translate(-50%, -50%); background: var(--bg);
  border: 2px solid var(--ember); transition: background .2s ease;
}
.rail-station:hover { background: #f0cdb2; }
.rail-station.passed { background: var(--ember); }
.rail-station::after {
  content: attr(data-label);
  position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: #fff; border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-body); font-size: 13px; font-weight: 600; line-height: 1;
  padding: 7px 13px; border-radius: 999px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .15s ease;
}
.rail-station:hover::after, .rail-station:focus-visible::after { opacity: 1; }

/* Anker landen unter dem festen Header */
section[id] { scroll-margin-top: 88px; }

/* ---------- Sanftes Einblenden beim Scrollen ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }
@media print { .reveal { opacity: 1 !important; transform: none !important; }
  .scroll-rail, .scroll-progress, .fab, .cookie-banner { display: none !important; } }

/* ---------- Rechtsseiten ---------- */
.legal { background: var(--bg); padding-block: 70px 90px; }
.legal .container { max-width: 780px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.7rem); margin-bottom: 12px; }
.legal .back { display: inline-block; margin-bottom: 28px; color: var(--ember-ink); text-decoration: none; font-weight: 700; font-size: 0.95rem; }
.legal .back:hover { text-decoration: underline; }
.legal h2 { font-size: 1.28rem; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--ink); font-size: 1rem; margin-bottom: 12px; font-family: var(--font-body); }
.legal a { color: var(--ember-ink); }
.legal ul { padding-left: 20px; }
.demo-banner { background: #f6e7da; border: 1px solid var(--ember); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 32px; font-size: 0.95rem; color: var(--ink); }
.demo-banner strong { font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .visit-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .highlights .container { grid-template-columns: 1fr; }
  .highlight + .highlight { border-left: none; border-top: 1px solid var(--line-soft); }

  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 2px;
    background: var(--navy); padding: 12px 26px 24px;
    border-top: 1px solid rgba(255,255,255,0.1); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 0; width: 100%; }
  .nav-links .btn { margin-top: 8px; }
}
@media (max-width: 520px) {
  body { font-size: 17px; }
  .section { padding-block: 64px; }
  .order-band .container { padding-block: 42px; }
}

/* ---------- Zugänglichkeit ---------- */
a:focus-visible, .btn:focus-visible, button:focus-visible, .nav-toggle:focus-visible {
  outline: 3px solid var(--ember); outline-offset: 3px; border-radius: 6px;
}
.section-blue a:focus-visible, .hero a:focus-visible, .cookie-banner *:focus-visible, .site-footer *:focus-visible {
  outline-color: #f0a565;
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
