/* Feste Darstellung: heller Modus.
   Diese Fassung folgt NICHT der Systemeinstellung des Besuchers. */

/* ==========================================================================
   Tommy's Catering – Design System

   Akzent:  genau eine Akzentfarbe (Glut-Orange) auf allen Seiten.
   Radien:  drei Stufen, fest zugeordnet –
              --r-pill  interaktive Elemente (Buttons, Chips)
              --r-lg    Flächen (Karten, Bilder, Panels)
              --r-sm    Eingaben und kleine Elemente (Felder, Icon-Kacheln)
   Modus:   fest hell (color-scheme: light).
   ========================================================================== */

@import url("fonts.css");

/* --- Design Tokens ------------------------------------------------------ */
:root {
  color-scheme: light;

  /* Marke */
  --brand:        #101830;   /* Navy aus dem Logo */
  --accent:       #B8471A;   /* Glut – einzige Akzentfarbe */
  --accent-hover: #9C3B12;
  --accent-soft:  #FAEBE2;
  --accent-ink:   #FFFFFF;   /* Text auf Akzentflächen */

  /* Flächen */
  --surface:    #FAF7F2;     /* Seitenhintergrund */
  --surface-2:  #F1EBE1;     /* abgesetzte Abschnitte */
  --surface-3:  #FEFCFA;     /* erhöhte Flächen, Karten */
  --dark-panel: #101830;     /* dunkle Panels: Kopfleiste, CTA, Fußzeile */

  /* Text */
  --text:       #141B2E;
  --text-2:     #5D6579;
  --text-3:     #767E92;
  --on-dark:    #F6F3EE;
  --on-dark-2:  rgba(246, 243, 238, .74);
  --on-dark-3:  rgba(246, 243, 238, .55);
  --accent-on-dark: #EE7F45;

  /* Linien & Schatten */
  --line:      rgba(20, 27, 46, .12);
  --line-soft: rgba(20, 27, 46, .07);
  --line-dark: rgba(246, 243, 238, .16);
  --shadow-sm: 0 1px 2px rgba(20, 27, 46, .05), 0 2px 6px rgba(20, 27, 46, .04);
  --shadow-md: 0 4px 12px rgba(20, 27, 46, .06), 0 12px 28px rgba(20, 27, 46, .06);
  --shadow-lg: 0 8px 24px rgba(20, 27, 46, .09), 0 28px 60px rgba(20, 27, 46, .10);

  /* Radien */
  --r-sm: 10px;
  --r-lg: 16px;
  --r-pill: 999px;

  /* Layout */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --header-h: 72px;

  /* Typografie */
  --display: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}



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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--text-2);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Typografie --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--text);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.3rem, 5.4vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.7vw, 2.65rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); letter-spacing: -0.014em; }
h4 { font-size: 1.0625rem; letter-spacing: -0.008em; }

p { text-wrap: pretty; }
strong, b { color: var(--text); font-weight: 600; }

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.58;
  color: var(--text-2);
  max-width: 62ch;
}

/* Eyebrow – bewusst sparsam eingesetzt (max. 1 pro 3 Abschnitte) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex: none;
}
.eyebrow--light { color: var(--accent-on-dark); }

/* --- Layout-Helfer ------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 800px; }

.section { padding-block: clamp(3.5rem, 7.5vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 4.5vw, 3.75rem); }
.section--base  { background: var(--surface); }
.section--alt   { background: var(--surface-2); }
.section--raised{ background: var(--surface-3); }
.section--dark  { background: var(--dark-panel); color: var(--on-dark-2); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--on-dark); }

.section-head { max-width: 44rem; margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem); }
.section-head p { margin-top: .9rem; }

.stack > * + * { margin-top: 1rem; }
.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;
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: var(--accent-ink);
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.55rem;
  min-height: 50px;
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .96rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .16s cubic-bezier(.2,.8,.3,1), box-shadow .16s ease,
              background-color .16s ease, color .16s ease, border-color .16s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px) scale(.985); }

.btn--primary { box-shadow: 0 6px 18px rgba(184, 71, 26, .24); }
.btn--primary:hover { background: var(--accent-hover); box-shadow: 0 10px 26px rgba(184, 71, 26, .3); }

.btn--dark {
  --btn-bg: var(--brand);
  --btn-fg: var(--on-dark);
  box-shadow: 0 6px 18px rgba(16, 24, 48, .2);
}
.btn--dark:hover { --btn-bg: #1B2745; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-bd: var(--line);
}
.btn--ghost:hover { --btn-bd: var(--text); background: var(--accent-soft); --btn-fg: var(--accent); }

/* Auf dunklem Untergrund: eigener Scrim, damit der Text immer lesbar bleibt */
.btn--onDark {
  --btn-bg: rgba(12, 16, 28, .55);
  --btn-fg: #FFFFFF;
  --btn-bd: rgba(255, 255, 255, .42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--onDark:hover { --btn-bg: rgba(12, 16, 28, .78); --btn-bd: #FFFFFF; }

.btn--sm { min-height: 42px; padding: .55rem 1.1rem; font-size: .89rem; }
.btn--lg { min-height: 56px; padding: 1rem 1.9rem; font-size: 1rem; }
.btn--block { width: 100%; }

/* Reiner Icon-Button (Telefon) – Label nur für Screenreader */
.btn--icon { padding: 0; width: 46px; min-height: 46px; }
.btn--icon svg { width: 19px; height: 19px; }
.btn--icon.btn--sm { width: 42px; min-height: 42px; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

/* Textlink mit Pfeil */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding-block: .35rem;   /* vergroessert die Tippflaeche am Handy */
  font-weight: 600;
  font-size: .93rem;
  color: var(--accent);
  text-decoration: none;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .18s ease; }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ==========================================================================
   Topbar + Header
   ========================================================================== */
.topbar {
  background: var(--brand);
  color: var(--on-dark-2);
  font-size: .82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
  padding-block: .35rem;
}
.topbar a {
  color: var(--on-dark);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding-block: .45rem;   /* vergroessert die Tippflaeche am Handy */
}
.topbar a:hover { color: var(--accent-on-dark); }
.topbar svg { width: 14px; height: 14px; opacity: .85; }
.topbar__contact { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.topbar__region { display: none; }
@media (min-width: 980px) { .topbar__region { display: block; } }
@media (max-width: 979px) { .topbar__inner { justify-content: center; } }
@media (max-width: 720px) {
  .topbar a.topbar__mail { display: none; }
  .topbar__contact { gap: 1rem; }
}
@media (max-width: 400px) {
  .topbar__ig { font-size: 0; gap: 0; }
  .topbar__ig svg { width: 16px; height: 16px; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: saturate(1.5) blur(14px);
  -webkit-backdrop-filter: saturate(1.5) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .22s ease;
}
.site-header.is-stuck { box-shadow: 0 2px 20px rgba(20, 27, 46, .1); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
.brand img { height: 44px; width: auto; }
@media (min-width: 900px) { .brand img { height: 48px; } }


.nav { display: none; }
@media (min-width: 1000px) {
  .nav { display: flex; align-items: center; gap: .2rem; margin-left: auto; }
}
.nav a {
  position: relative;
  padding: .5rem .75rem;
  border-radius: var(--r-sm);
  font-size: .94rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color .16s ease, background-color .16s ease;
}
.nav a:hover { color: var(--accent); background: var(--accent-soft); }
.nav a[aria-current="page"] { color: var(--accent); font-weight: 600; }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: .75rem; right: .75rem; bottom: .16rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: .55rem; }
.header-actions .btn--primary { display: none; }
@media (min-width: 700px) { .header-actions .btn--primary { display: inline-flex; } }

/* Burger */
.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: transparent;
  cursor: pointer;
}
@media (min-width: 1000px) { .burger { display: none; } }
.burger span {
  position: relative;
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: background-color .18s ease;
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .24s cubic-bezier(.2,.8,.3,1);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* Mobile-Menü */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--surface);
  padding: calc(var(--header-h) + 72px) var(--gutter) 2rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
@media (min-width: 1000px) { .mobile-menu { display: none; } }
.mobile-menu__nav { display: grid; }
.mobile-menu__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem .2rem;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu__nav a[aria-current="page"] { color: var(--accent); }
.mobile-menu__nav a svg { width: 18px; height: 18px; opacity: .35; }
.mobile-menu__cta { margin-top: 1.75rem; display: grid; gap: .65rem; }
.mobile-menu__meta {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-soft);
  font-size: .88rem;
  color: var(--text-3);
}
body.is-locked { overflow: hidden; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: min(78vh, 700px);
  min-height: min(78dvh, 700px);
  padding-block: clamp(3.5rem, 9vw, 5.5rem);
  background: var(--brand);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 64% 50%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,11,22,.66) 0%, rgba(8,11,22,.30) 36%, rgba(8,11,22,.62) 78%, rgba(8,11,22,.9) 100%),
    linear-gradient(96deg, rgba(8,11,22,.88) 0%, rgba(8,11,22,.58) 44%, rgba(8,11,22,.1) 80%);
}
/* Breite und Schriftgrad zusammen geplant: Überschrift bleibt zweizeilig */
.hero__inner { position: relative; max-width: 47rem; }

/* Ab Laptop-Breite steht der Hero-Inhalt mittig, waagrecht und senkrecht.
   Am Handy bleibt er linksbündig, dort liest sich das deutlich besser. */
@media (min-width: 1000px) {
  .hero { align-items: center; }
  .hero__inner {
    max-width: 54rem;
    margin-inline: auto;
    text-align: center;
  }
  .hero__lead { margin-inline: auto; }
  .hero .btn-row { justify-content: center; }

  /* Abdunklung mittig statt von links, damit der zentrierte Text
     überall gleich gut lesbar bleibt */
  .hero::after {
    background:
      linear-gradient(180deg, rgba(8,11,22,.60) 0%, rgba(8,11,22,.30) 30%, rgba(8,11,22,.55) 75%, rgba(8,11,22,.88) 100%),
      radial-gradient(58% 62% at 50% 52%, rgba(8,11,22,.72) 0%, rgba(8,11,22,.45) 55%, rgba(8,11,22,.12) 100%);
  }
}
.hero h1 { font-size: clamp(2.15rem, 4.6vw, 3.35rem); text-wrap: pretty; }
.hero h1 { color: #FFFFFF; margin-bottom: 1.1rem; }
/* Hervorhebung in derselben Schriftfamilie, nur über die Akzentfarbe */
.hero h1 em { font-style: normal; color: var(--accent-on-dark); }
.hero__lead {
  font-size: clamp(1.05rem, 1.9vw, 1.24rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, .87);
  max-width: 32rem;
  margin-bottom: 1.9rem;
}

/* Kompakter Seiten-Hero (Unterseiten) */
.page-hero {
  position: relative;
  isolation: isolate;
  background: var(--brand);
  padding-block: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(115% 135% at 10% 0%, rgba(184, 71, 26, .38) 0%, transparent 58%),
    radial-gradient(85% 115% at 92% 100%, rgba(184, 71, 26, .16) 0%, transparent 60%);
}
.page-hero__inner { max-width: 46rem; }
.page-hero h1 { color: #FFFFFF; }
.page-hero p { color: rgba(255,255,255,.8); margin-top: .9rem; font-size: clamp(1.02rem, 1.7vw, 1.16rem); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
  list-style: none;
  padding: 0;
  margin-bottom: 1.1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.breadcrumb a {
  display: inline-block;
  padding-block: .25rem;   /* vergroessert die Tippflaeche am Handy */
  color: rgba(255,255,255,.78);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--accent-on-dark); }
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; opacity: .5; }

/* ==========================================================================
   Vorteile (Icon-Zeile, ohne Kartenrahmen)
   ========================================================================== */
.usp-band { background: var(--surface-3); border-bottom: 1px solid var(--line-soft); }
.usp-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-block: clamp(2.25rem, 4vw, 3rem);
}
@media (min-width: 900px) { .usp-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.usp { display: flex; flex-direction: column; gap: .5rem; }
.usp__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: .35rem;
}
.usp__icon svg { width: 21px; height: 21px; }
.usp h3 { font-size: 1.05rem; }
.usp p { font-size: .92rem; color: var(--text-2); line-height: 1.52; }

/* ==========================================================================
   Raster & Karten
   ========================================================================== */
.grid { display: grid; gap: clamp(1.1rem, 2.2vw, 1.6rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }

/* Bildkarte – Karte nur dort, wo das Bild die Erhöhung trägt */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .22s cubic-bezier(.2,.8,.3,1), box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-2);
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.8,.3,1);
}
.card:hover .card__media img { transform: scale(1.05); }
.card__body { display: flex; flex-direction: column; gap: .55rem; padding: 1.3rem 1.35rem 1.4rem; flex: 1; }
.card__body p { font-size: .94rem; color: var(--text-2); line-height: 1.56; }
.card__body .link-arrow { margin-top: auto; padding-top: .5rem; }
.card__tag {
  position: absolute;
  top: .8rem; left: .8rem;
  padding: .28rem .7rem;
  border-radius: var(--r-pill);
  background: rgba(12, 16, 28, .82);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.card__link::after { content: ""; position: absolute; inset: 0; }

/* Kompakte Bildkachel (Speisekarte) */
.tile {
  display: flex;
  flex-direction: column;
  background: var(--surface-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tile__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-2); }
.tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.tile:hover .tile__media img { transform: scale(1.06); }
.tile__body { padding: .9rem 1rem 1.05rem; }
.tile__body h3 { font-size: .98rem; }
.tile__body p { margin-top: .25rem; font-size: .86rem; color: var(--text-3); line-height: 1.45; }

/* ==========================================================================
   Bausteine – zweispaltig, mit Haarlinien statt Karten
   ========================================================================== */
.modules { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 900px) {
  /* Textspalte mittig zur Liste daneben ausrichten */
  .modules { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: center; }
}

.module-list { display: grid; border-top: 1px solid var(--line); }
.module {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.1rem;
  align-items: center;
  padding: 1.35rem .25rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background-color .18s ease, padding-inline .18s ease;
}
.module:hover { background: var(--accent-soft); padding-inline: .8rem .5rem; }
.module__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--brand);
  color: var(--accent-on-dark);
  flex: none;
}
.module__icon svg { width: 21px; height: 21px; }
.module h3 { font-size: 1.12rem; margin-bottom: .15rem; }
.module p { font-size: .91rem; color: var(--text-2); line-height: 1.5; }
.module__go { width: 18px; height: 18px; color: var(--accent); flex: none; transition: transform .18s ease; }
.module:hover .module__go { transform: translateX(4px); }

/* ==========================================================================
   Ablauf – Zeitstrahl statt Kartenreihe
   ========================================================================== */
.flow { display: grid; gap: clamp(1.75rem, 3vw, 2.25rem); counter-reset: flow; }
@media (min-width: 820px) { .flow { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(2rem, 4vw, 3rem); } }

.flow-step { position: relative; padding-top: 2.5rem; }
.flow-step::before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  top: 0; left: 0;
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 700;
}
/* Verbindungslinie zwischen den Schritten */
.flow-step::after {
  content: "";
  position: absolute;
  top: 16px; left: 44px; right: -1.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--line) 0%, var(--line) 60%, transparent 100%);
}
.flow-step:last-child::after { display: none; }
@media (max-width: 819px) { .flow-step::after { display: none; } }
.flow-step h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.flow-step p { font-size: .93rem; color: var(--text-2); }

/* ==========================================================================
   Split-Bereich (Text + Bild)
   ========================================================================== */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: -1; }
}
.split__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-2); /* Platzhalterfläche, solange das Bild lädt */
  box-shadow: var(--shadow-lg);
}
.split__media img { width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; }
.split__body > * + * { margin-top: 1.05rem; }

.quote {
  margin-top: 1.6rem;
  padding: 1.25rem 1.4rem;
  border-left: 3px solid var(--accent);
  background: var(--surface-3);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  font-family: var(--display);
  font-size: clamp(1.08rem, 1.9vw, 1.28rem);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.32;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.quote cite {
  display: block;
  margin-top: .5rem;
  font-family: var(--sans);
  font-size: .84rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text-3);
}

/* Kennzahlen */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: 1.25rem;
  margin-top: 1.9rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-dark);
}
.stats__num {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--accent-on-dark);
}
.stats__label { display: block; margin-top: .3rem; font-size: .84rem; color: var(--on-dark-3); line-height: 1.4; }

/* ==========================================================================
   Anlass-Chips
   ========================================================================== */
.chips { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; padding: 0; }
.chips li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--surface-3);
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
}
.chips svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

/* ==========================================================================
   Kategorie-Navigation (Speisen)
   ========================================================================== */
.catnav {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.catnav__scroller {
  display: flex;
  gap: .45rem;
  padding-block: .75rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x proximity;
}
.catnav__scroller::-webkit-scrollbar { display: none; }
.catnav a {
  flex: none;
  padding: .5rem 1.05rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--surface-3);
  font-size: .89rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  scroll-snap-align: start;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}
.catnav a:hover { border-color: var(--accent); color: var(--accent); }
.catnav a.is-active { background: var(--brand); border-color: var(--brand); color: var(--on-dark); }


.menu-section + .menu-section { margin-top: clamp(2.75rem, 5.5vw, 4rem); }
.menu-section__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--line);
}
.menu-section__head h2 { font-size: clamp(1.55rem, 3vw, 2.05rem); }
.menu-section__head span { font-size: .85rem; color: var(--text-3); margin-left: auto; white-space: nowrap; }

/* ==========================================================================
   Equipment
   ========================================================================== */
.equip-group + .equip-group { margin-top: clamp(2.25rem, 4.5vw, 3.25rem); }
.equip-group__head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.1rem; }
.equip-group__head h2 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); }
.equip-group__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--brand);
  color: var(--accent-on-dark);
  flex: none;
}
.equip-group__icon svg { width: 20px; height: 20px; }

.equip-list {
  display: grid;
  gap: 0 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line);
}
.equip-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: .95rem .1rem;
  border-bottom: 1px solid var(--line-soft);
}
.equip-list svg { width: 19px; height: 19px; color: var(--accent); flex: none; margin-top: .18rem; }
.equip-list strong { display: block; font-size: .97rem; color: var(--text); font-weight: 600; }
.equip-list span { display: block; font-size: .85rem; color: var(--text-3); margin-top: .1rem; line-height: 1.45; }

/* ==========================================================================
   CTA-Bereich
   ========================================================================== */
.cta {
  position: relative;
  isolation: isolate;
  background: var(--brand);
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(75% 115% at 6% 8%, rgba(184, 71, 26, .46) 0%, transparent 56%),
    radial-gradient(65% 95% at 96% 92%, rgba(184, 71, 26, .2) 0%, transparent 58%);
}
.cta__inner {
  display: grid;
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: center;
  padding-block: clamp(3rem, 6.5vw, 5rem);
}
@media (min-width: 940px) { .cta__inner { grid-template-columns: 1.05fr .95fr; } }
.cta h2 { color: #FFFFFF; }
.cta p { color: rgba(255,255,255,.8); margin-top: .9rem; font-size: 1.05rem; max-width: 34rem; }

.cta__card {
  padding: clamp(1.25rem, 2.5vw, 1.9rem);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
}
.contact-list { list-style: none; padding: 0; display: grid; }
.contact-list a, .contact-list .contact-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .8rem .35rem;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: background-color .16s ease;
}
.contact-list a:hover { background: rgba(255,255,255,.1); }
.contact-list li + li { border-top: 1px solid rgba(255,255,255,.13); }
.contact-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.11);
  color: var(--accent-on-dark);
  flex: none;
}
.contact-list__icon svg { width: 19px; height: 19px; }
.contact-list__label { display: block; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.58); }
.contact-list__value { display: block; font-size: 1rem; font-weight: 600; }

/* ==========================================================================
   Formular
   ========================================================================== */
.form-layout { display: grid; gap: clamp(2rem, 4vw, 3rem); align-items: start; }
@media (min-width: 1000px) { .form-layout { grid-template-columns: minmax(0, 1.55fr) minmax(0, .85fr); } }

.form-card {
  background: var(--surface-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.4rem, 3.2vw, 2.5rem);
}
.fieldset { border: 0; padding: 0; margin: 0; }
.fieldset + .fieldset { margin-top: 2.25rem; padding-top: 2rem; border-top: 1px solid var(--line-soft); }
.fieldset > legend {
  display: block;
  width: 100%;
  padding: 0 0 1.15rem;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.018em;
  color: var(--text);
}
.fieldset > legend small {
  display: block;
  margin-top: .28rem;
  font-family: var(--sans);
  font-size: .87rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--text-2);
}

.field-grid { display: grid; gap: 1.05rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.5rem), 1fr)); }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label, .field .label { font-size: .87rem; font-weight: 600; color: var(--text); }
.field .req { color: var(--accent); margin-left: .1rem; }
.field .hint { font-size: .8rem; color: var(--text-2); font-weight: 400; }

.input, .select, .textarea {
  width: 100%;
  min-height: 50px;
  padding: .75rem .95rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--text);
  font-size: 1rem;
  transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
  -webkit-appearance: none;
  appearance: none;
}
.textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
/* Platzhalter erfüllt WCAG AA gegen die Feldfläche */
.input::placeholder, .textarea::placeholder { color: var(--text-2); opacity: 1; }
.input:hover, .select:hover, .textarea:hover { border-color: var(--text-3); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  background: var(--surface-3);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235D6579' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 2.8rem;
}

.input:user-invalid, .select:user-invalid, .textarea:user-invalid {
  border-color: #C0392B;
  box-shadow: 0 0 0 4px rgba(192,57,43,.1);
}

/* Auswahl-Kacheln */
.choice-grid { display: grid; gap: .65rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr)); }
.choice { position: relative; }
.choice input {
  position: absolute;
  opacity: 0;
  width: 100%; height: 100%;
  margin: 0;
  cursor: pointer;
}
.choice span {
  display: flex;
  align-items: center;
  gap: .6rem;
  height: 100%;
  min-height: 54px;
  padding: .75rem .95rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  font-size: .93rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color .16s ease, background-color .16s ease, color .16s ease, box-shadow .16s ease;
}
.choice span::before {
  content: "";
  width: 18px; height: 18px;
  border: 2px solid var(--text-3);
  border-radius: var(--r-pill);
  flex: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.choice input:hover + span { border-color: var(--text-3); }
.choice input:focus-visible + span { box-shadow: 0 0 0 4px var(--accent-soft); border-color: var(--accent); }
.choice input:checked + span {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}
.choice input:checked + span::before {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 3px var(--surface), inset 0 0 0 12px var(--accent);
}

/* Checkbox */
.check { display: flex; align-items: flex-start; gap: .7rem; font-size: .89rem; color: var(--text-2); line-height: 1.5; }
.check input { width: 24px; height: 24px; margin: .08rem 0 0; flex: none; accent-color: var(--accent); cursor: pointer; }
.check a { color: var(--accent); text-underline-offset: 3px; }

.form-footer { margin-top: 1.75rem; display: grid; gap: 1rem; }
.form-note { font-size: .85rem; color: var(--text-2); }
.form-note a { color: var(--accent); font-weight: 600; }

.form-status {
  display: none;
  gap: .65rem;
  align-items: flex-start;
  padding: .95rem 1.1rem;
  border-radius: var(--r-sm);
  font-size: .92rem;
  line-height: 1.5;
}
.form-status.is-visible { display: flex; }
.form-status svg { width: 20px; height: 20px; flex: none; margin-top: .1rem; }
.form-status--ok { background: #E7F4EC; color: #1B5231; border: 1px solid #B9DEC7; }
.form-status--info { background: var(--accent-soft); color: var(--accent-hover); border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent); }
.form-status a { color: inherit; font-weight: 600; }


/* Seitenspalte */
.aside-card {
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  background: var(--brand);
  color: var(--on-dark-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.aside-card h3 { color: #FFFFFF; font-size: 1.2rem; margin-bottom: .5rem; }
.aside-card p { font-size: .93rem; }
.aside-card .contact-list { margin-top: 1.1rem; }
.aside-card + .aside-card { margin-top: 1.1rem; }
.aside-card--light {
  background: var(--surface-3);
  color: var(--text-2);
  border: 1px solid var(--line-soft);
}
.aside-card--light h3 { color: var(--text); }
.aside-card--light a { color: var(--accent); font-weight: 600; }
.checklist { list-style: none; padding: 0; margin-top: .9rem; display: grid; gap: .6rem; }
.checklist li { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; }
.checklist svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: .18rem; }

/* ==========================================================================
   Rechtstexte
   ========================================================================== */
.prose { max-width: 44rem; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); margin-top: 2.5rem; }
.prose h3 { font-size: 1.12rem; margin-top: 1.6rem; }
.prose ul, .prose ol { padding-left: 1.25rem; display: grid; gap: .45rem; }
.prose a { color: var(--accent); text-underline-offset: 3px; }
.prose .info-box {
  padding: 1.15rem 1.3rem;
  background: var(--surface-3);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  box-shadow: var(--shadow-sm);
}
.data-list { display: grid; margin: 0; border-top: 1px solid var(--line-soft); }
.data-list div {
  display: grid;
  /* Spalte breit genug für lange Begriffe wie "Unternehmensgegenstand" */
  grid-template-columns: minmax(13.5rem, .38fr) 1fr;
  gap: 1.75rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 560px) { .data-list div { grid-template-columns: 1fr; gap: .1rem; } }
.data-list dt {
  font-size: .8rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
  /* Sehr lange Wörter umbrechen, statt in die Nachbarspalte zu ragen */
  hyphens: auto;
  overflow-wrap: anywhere;
}
.data-list dd { margin: 0; color: var(--text); font-weight: 500; }
.data-list a { color: var(--accent); text-decoration: none; }
.data-list a:hover { text-decoration: underline; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--brand); color: var(--on-dark-2); padding-block: clamp(2.75rem, 5.5vw, 4rem) 0; font-size: .92rem; }
.footer-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.site-footer h4 {
  color: #FFFFFF;
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .2rem; }
.site-footer a {
  display: inline-block;
  padding-block: .35rem;   /* vergroessert die Tippflaeche am Handy */
  color: var(--on-dark-2);
  text-decoration: none;
  transition: color .16s ease;
}
.site-footer a:hover { color: var(--accent-on-dark); }
.footer-brand img { height: 54px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { max-width: 22rem; line-height: 1.58; }
.footer-contact li { display: flex; gap: .55rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--accent-on-dark); flex: none; margin-top: .26rem; }
.footer-bottom {
  margin-top: clamp(2.25rem, 4.5vw, 3rem);
  padding-block: 1.4rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: .84rem;
  color: var(--on-dark-3);
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 1.2rem; }

/* ==========================================================================
   Feste Aktionsleiste (mobil)
   ========================================================================== */
.action-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .6rem;
  padding: .65rem var(--gutter) calc(.65rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(20, 27, 46, .09);
  transform: translateY(110%);
  transition: transform .28s cubic-bezier(.2,.8,.3,1);
}
.action-bar.is-visible { transform: none; }
@media (min-width: 1000px) { .action-bar { display: none; } }
@media (max-width: 999px) { body.has-action-bar { padding-bottom: 80px; } }

/* --- Einblenden beim Scrollen (nur mit aktivem JavaScript) --------------- */
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s cubic-bezier(.2,.8,.3,1); }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* --- Druck -------------------------------------------------------------- */
@media print {
  .site-header, .topbar, .action-bar, .cta, .catnav, .mobile-menu { display: none !important; }
  body { background: #fff; color: #000; }
  .card, .tile, .form-card { box-shadow: none; border: 1px solid #ccc; }
}

/* ==========================================================================
   Einwilligungsbanner (Google Ads)
   Erscheint nur, solange keine Entscheidung getroffen wurde.
   ========================================================================== */
.consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  background: var(--surface-3);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 28px rgba(20, 27, 46, .14);
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.2,.8,.3,1);
}
.consent.is-in { transform: none; }

.consent__inner {
  display: grid;
  gap: 1rem;
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.1rem var(--gutter) calc(1.1rem + env(safe-area-inset-bottom));
}
@media (min-width: 860px) {
  .consent__inner { grid-template-columns: 1fr auto; gap: 2rem; }
}

.consent__text strong { display: block; font-size: 1rem; color: var(--text); margin-bottom: .3rem; }
.consent__text p { font-size: .9rem; line-height: 1.5; color: var(--text-2); max-width: 62ch; }
.consent__text a { color: var(--accent); font-weight: 600; }

/* Beide Schaltflächen gleich gewichtet, wie es die DSGVO verlangt */
.consent__actions { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
@media (min-width: 560px) { .consent__actions { grid-template-columns: auto auto; } }
.consent__actions .btn { min-width: 8.5rem; }

/* Solange das Banner sichtbar ist, die mobile Aktionsleiste nicht überdecken */
@media (max-width: 999px) {
  body:has(.consent) .action-bar { display: none; }
}
