/* =========================================================================
   Mega Box Menu — Hähnchen-Menü & Catering
   Warm & Bold theme. Vanilla CSS, no external dependencies.
   All brand colors live in :root — change them in one place.
   ========================================================================= */

:root {
  /* ---- Theme: Mega Box Menu (gold + red on black, matches the logo) -- */
  --bg:        #16140f;   /* deep warm black (like the logo box) */
  --bg-2:      #1d1a13;   /* alternating section bg */
  --bg-card:   #221e16;   /* cards / panels */
  --bg-elev:   #2b261b;   /* elevated hover */
  --accent:    #f5b81e;   /* primary accent — gold (logo "MEGA") */
  --accent-2:  #ffd45e;   /* lighter gold for gradients */
  --accent-ink:#1a1508;   /* near-black text on gold buttons */
  --red:       #e11d2a;   /* logo red — secondary accent */
  --red-2:     #ff4b57;   /* lighter red */
  --text:      #f7f1e4;   /* main text (warm off-white) */
  --muted:     #b6ab93;   /* secondary text */
  --line:      rgba(255, 255, 255, 0.10);
  --line-2:    rgba(255, 255, 255, 0.18);

  /* ---- Layout ------------------------------------------------------- */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --header-h: 72px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);

  /* ---- Type --------------------------------------------------------- */
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* ---- Reset --------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Helpers ------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(64px, 9vw, 120px);
  scroll-margin-top: calc(var(--header-h) + 12px);
  position: relative;
}
.section--alt { background: var(--bg-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.section-title span { color: var(--accent); }

.section-lead {
  color: var(--muted);
  max-width: 60ch;
  margin-top: 18px;
  font-size: 1.08rem;
}

.section-head { margin-bottom: clamp(36px, 5vw, 60px); max-width: 760px; }

/* ---- Buttons ------------------------------------------------------- */
.btn {
  --pad-y: 14px;
  --pad-x: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.2s ease,
              box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-ink);
  box-shadow: 0 10px 26px rgba(245, 184, 30, 0.32);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(245, 184, 30, 0.42);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--sm { --pad-y: 10px; --pad-x: 18px; font-size: 0.9rem; }
.btn--lg { --pad-y: 17px; --pad-x: 32px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, height 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(20, 20, 20, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.05rem;
}
/* Brand logo image (assets/logo.png). Falls back to the chicken mark + wordmark. */
.brand__logo { height: 52px; width: auto; display: block; }
.brand__fallback { display: none; align-items: center; gap: 10px; }
.brand--nologo .brand__fallback { display: inline-flex; }
.brand__mark {
  display: inline-flex;
  line-height: 1;
  filter: drop-shadow(0 4px 10px rgba(245, 184, 30, 0.4));
}
.brand__mark img { width: 30px; height: 30px; display: block; }
.brand__name span { color: var(--accent); }
.footer__brand .brand__logo { height: 64px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__links a {
  position: relative;
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 8px;
  transition: color 0.2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--text); }
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav__toggle span::before { transform: translate(-50%, -8px); }
.nav__toggle span::after  { transform: translate(-50%, 6px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translate(-50%, 0) rotate(-45deg); }

/* =========================================================================
   HERO  — layered, animated, all CSS (no external assets required)
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 24px);
  padding-bottom: 96px;            /* room for the bottom marquee */
  isolation: isolate;
  overflow: hidden;
  background: var(--bg);
}

/* ---- Background layers -------------------------------------------- */
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }

/* Optional photo — OFF by default (so there is no 404 request).
   To enable: add a file at assets/hero.jpg AND give the section the
   extra class:  <section class="hero hero--photo" ...>  */
.hero__photo {
  position: absolute; inset: 0;
  opacity: 0.22;
  -webkit-mask-image: linear-gradient(180deg, #000 25%, transparent 95%);
  mask-image: linear-gradient(180deg, #000 25%, transparent 95%);
}
.hero--photo .hero__photo {
  background: url("../assets/hero.jpg") center / cover no-repeat;
}

.hero__aurora,
.hero__beam { position: absolute; border-radius: 50%; filter: blur(28px); }
.hero__aurora {
  top: -32%; right: -16%;
  width: 78vw; height: 78vw; max-width: 1100px; max-height: 1100px;
  background: radial-gradient(circle at 50% 50%,
              rgba(245,184,30,0.5), rgba(245,184,30,0.12) 45%, transparent 70%);
  animation: aurora 15s ease-in-out infinite alternate;
}
.hero__beam {
  bottom: -28%; left: -12%;
  width: 62vw; height: 62vw; max-width: 880px; max-height: 880px;
  background: radial-gradient(circle at 50% 50%,
              rgba(225,29,42,0.30), transparent 64%);
  animation: aurora 19s ease-in-out infinite alternate-reverse;
}
@keyframes aurora {
  0%   { transform: translate3d(0, 0, 0) scale(1);      opacity: 0.85; }
  100% { transform: translate3d(-5%, 4%, 0) scale(1.14); opacity: 1; }
}

.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 95% at 50% 28%, #000 32%, transparent 78%);
  mask-image: radial-gradient(120% 95% at 50% 28%, #000 32%, transparent 78%);
}

.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
}

/* soft fade into the page below */
.hero::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 200px;
  background: linear-gradient(transparent, var(--bg));
  z-index: -1; pointer-events: none;
}

/* ---- Floating glass food tiles ----------------------------------- */
.hero__orbits { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.orbit {
  position: absolute;
  display: grid; place-items: center;
  width: clamp(56px, 6vw, 86px);
  height: clamp(56px, 6vw, 86px);
  border-radius: 22px;
  background: rgba(40, 38, 36, 0.55);
  border: 1px solid var(--line-2);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  animation: floaty 7s ease-in-out infinite;
}
.orbit--1 { top: 22%; right: 13%; animation-delay: 0s; }
.orbit--2 { top: 52%; right: 24%; animation-delay: 1.1s; }
.orbit--3 { top: 36%; right: 33%; animation-delay: 2.3s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-16px) rotate(5deg); }
}

/* ---- Content ----------------------------------------------------- */
.hero__inner { max-width: 820px; position: relative; }
.hero__inner > * { animation: heroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero__badge   { animation-delay: 0.05s; }
.hero__title   { animation-delay: 0.16s; }
.hero__lead    { animation-delay: 0.30s; }
.hero__actions { animation-delay: 0.42s; }
.hero__trust   { animation-delay: 0.54s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  margin-bottom: 28px;
}
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(245, 184, 30, 0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(245, 184, 30, 0.28); }
  50%      { box-shadow: 0 0 0 7px rgba(245, 184, 30, 0.05); }
}

.hero__title {
  font-size: clamp(2.5rem, 6.4vw, 5rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  max-width: 16ch;
}
.hero__word { position: relative; display: inline-block; }
.hero__word-inner {
  background: linear-gradient(115deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__word::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0.04em;
  height: 0.1em; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left;
  animation: underline 0.9s 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes underline { to { transform: scaleX(1); } }

.hero__lead {
  margin-top: 26px;
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
  color: var(--muted);
  max-width: 54ch;
}
.hero__actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn__arrow { transition: transform 0.2s ease; }
.btn--primary:hover .btn__arrow { transform: translateX(5px); }

.hero__trust {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}
.hero__rating { display: flex; align-items: center; gap: 10px; }
.hero__rating .stars { color: var(--accent); letter-spacing: 2px; font-size: 1rem; }
.hero__rating b, .hero__since b { color: var(--text); }
.hero__trust-sep { width: 1px; height: 28px; background: var(--line-2); }

/* ---- Bottom marquee (replaces the old scroll cue) ---------------- */
.hero__marquee {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  background: rgba(18, 18, 18, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  opacity: 0.85;
}
.marquee__track i { color: var(--red); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .hero__aurora, .hero__beam, .orbit, .marquee__track,
  .hero__inner > *, .hero__word::after, .hero__badge .dot {
    animation: none !important;
  }
  .hero__word::after { transform: scaleX(1); }
}

/* =========================================================================
   FEATURE STRIP
   ========================================================================= */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.feature {
  background: var(--bg);
  padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature__icon { font-size: 1.7rem; }
.feature h3 {
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.feature p { color: var(--muted); font-size: 0.95rem; }

/* =========================================================================
   ABOUT
   ========================================================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.about__body p + p { margin-top: 18px; }
.about__body p { color: var(--muted); font-size: 1.05rem; }
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.stat {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.stat:hover { transform: translateY(-4px); border-color: var(--accent); }
.stat b {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat span { color: var(--muted); font-size: 0.95rem; margin-top: 8px; display: block; }

/* =========================================================================
   MENU
   ========================================================================= */
.menu__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.menu__copy h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.menu__copy p { color: var(--muted); }
.menu__list { margin-top: 26px; display: grid; gap: 14px; }
.menu__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.menu__list li:last-child { border-bottom: 0; }
.menu__list .tick {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 184, 30, 0.14);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 1px;
}
.menu__list strong { display: block; }
.menu__list small { color: var(--muted); }

.menu__figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  background: var(--bg-card);
}
.menu__figure img { width: 100%; height: auto; display: block; }
.menu__figure::after {
  content: "🔍  Vergrößern";
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--text);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.menu__figure:hover::after { opacity: 1; }
/* Fallback if menu.jpeg is not yet added */
.menu__figure img[alt]:after { color: var(--muted); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 30px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-width: min(1000px, 92vw);
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.lightbox__close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(0, 0, 0, 0.5);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox__close:hover { border-color: var(--accent); color: var(--accent); }

/* Keyboard focus for clickable images */
.menu__figure:focus-visible,
.gallery__media:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* =========================================================================
   GALLERY  (food-truck photo)
   ========================================================================= */
.gallery {
  margin-top: clamp(40px, 6vw, 70px);
  padding-top: clamp(40px, 6vw, 70px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.gallery__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  aspect-ratio: 5 / 4;
  background: var(--bg-card);
}
.gallery__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery__media:hover img,
.gallery__media:focus-visible img { transform: scale(1.06); }
.gallery__cap {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gallery__media:hover .gallery__cap,
.gallery__media:focus-visible .gallery__cap { opacity: 1; transform: none; }
.gallery__info h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 14px;
}
.gallery__info h3 span { color: var(--accent); }
.gallery__info p { color: var(--muted); margin-bottom: 26px; }
.gallery__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* =========================================================================
   CATERING
   ========================================================================= */
.cat__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: clamp(40px, 6vw, 68px);
}
.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.cat-card:hover { transform: translateY(-6px); border-color: var(--line-2); background: var(--bg-elev); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.cat-card h3 { font-size: 1.2rem; text-transform: uppercase; margin-bottom: 10px; }
.cat-card p { color: var(--muted); font-size: 0.97rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step { position: relative; padding-left: 8px; }
.step__num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  opacity: 0.85;
}
.step h4 { margin: 12px 0 8px; text-transform: uppercase; font-size: 1.02rem; }
.step p { color: var(--muted); font-size: 0.94rem; }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
}
.contact__lead p { color: var(--muted); font-size: 1.08rem; margin-top: 18px; }
.contact__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }

.contact__cards { display: grid; gap: 16px; }
.contact-card {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-card:hover { border-color: var(--accent); transform: translateX(4px); }
.contact-card__icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(245, 184, 30, 0.12);
  font-size: 1.4rem;
}
.contact-card .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.contact-card .value { font-weight: 700; font-size: 1.08rem; word-break: break-word; }
.contact-card .value:hover { color: var(--accent); }
.contact-card small { color: var(--muted); display: block; }

.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}
.socials a:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); transform: translateY(-3px); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: #141414;
  border-top: 1px solid var(--line);
  padding-block: clamp(48px, 7vw, 72px) 28px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer__brand .brand { font-size: 1.2rem; margin-bottom: 16px; }
.footer__brand p { color: var(--muted); max-width: 38ch; font-size: 0.96rem; }
.footer__col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer__col ul { display: grid; gap: 11px; }
.footer__col a { color: var(--text); font-size: 0.96rem; opacity: 0.85; transition: color 0.2s, opacity 0.2s; }
.footer__col a:hover { color: var(--accent); opacity: 1; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 26px;
  color: var(--muted);
  font-size: 0.88rem;
}
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--accent); }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* =========================================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ========================================================================= */
.legal {
  padding-top: calc(var(--header-h) + clamp(48px, 8vw, 96px));
  padding-bottom: clamp(60px, 9vw, 110px);
}
.legal__head { margin-bottom: 44px; }
.legal__head .back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 22px;
  transition: color 0.2s ease;
}
.legal__head .back:hover { color: var(--accent); }
.legal__head h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.prose { max-width: 760px; }
.prose h2 {
  font-size: 1.3rem;
  text-transform: uppercase;
  margin: 40px 0 14px;
  color: var(--text);
}
.prose h3 { font-size: 1.05rem; margin: 24px 0 8px; color: var(--accent); }
.prose p, .prose li { color: var(--muted); }
.prose p { margin-bottom: 14px; }
.prose ul { padding-left: 20px; list-style: disc; margin-bottom: 14px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); }
.prose mark.todo {
  background: rgba(245, 184, 30, 0.16);
  color: var(--accent);
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 6px;
  border: 1px dashed rgba(245, 184, 30, 0.5);
  white-space: nowrap;
}
.legal-note {
  margin-top: 40px;
  padding: 18px 22px;
  border-left: 3px solid var(--accent);
  background: var(--bg-card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; }
  .menu__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .cat__cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .hero__orbits { display: none; }   /* keep the hero clean on tablets/phones */
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 22px;
    /* Hidden above the header. visibility:hidden guarantees it (and its
       shadow) never peek through, regardless of how many links it has. */
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.32s;
    box-shadow: var(--shadow);
  }
  .nav__links.is-open { transform: translateY(0); visibility: visible; }
  .nav__links a { padding: 14px 6px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .nav__links a:last-child { border-bottom: 0; }

  .nav__toggle { display: block; order: 3; }
  .nav__cta .btn--phone-text { display: none; }
  .nav__cta { gap: 8px; }

  .hero { padding-bottom: 110px; }
  .hero__badge { text-align: left; }
  .hero__badge-loc { display: none; }   /* keep the badge on one line */
  .hero__trust { gap: 14px; }
  .hero__trust-sep { display: none; }
  .hero__trust-sep + .hero__since { flex-basis: 100%; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .cat__cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .hero__actions .btn { flex: 1 1 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
