/* ============================================================
   Oskar’s Catering & Location: Design System (v1, Skill 50)
   Twin-gespiegelt: twin.brand.tokens; Legacy-Klassen unverändert.
   ============================================================ */

/* --- Custom Properties ------------------------------------ */
:root {
  /*
   * twin.brand.tokens (Skill 30) → CSS Custom Properties (Skill 50).
   * Kanonische Hex-Werte; Legacy-Aliase darunter für v0-Markup.
   */
  --token-white:       #ffffff;
  --token-cream:       #faf7f2;
  --token-cream2:      #f3efe7;
  --token-ink:         #1b1f23;
  --token-muted:       #5c6066;
  --token-forest:      #0f1412;
  --token-text-on-dark: #f7f1e7;
  --token-link-on-dark: #ffd2b9;
  --token-brand:       #c06a3a;
  --token-brand-hover: #a9582e;
  --token-logo-accent: #df4661;

  --space-unit:        8px;
  --radius-card:       20px;

  --font-display-token: 'Fraunces', ui-serif, Georgia, serif;
  --font-body-token:    'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Neutrals (Legacy-Namen = Token wo möglich) */
  --white:            var(--token-white);
  --cream:            var(--token-cream);
  --cream-2:          var(--token-cream2);
  --ink:              #121416;
  --ink-2:            var(--token-ink);
  --muted:            rgba(18, 20, 22, 0.66);
  --border:           rgba(18, 20, 22, 0.10);
  --border-2:         rgba(18, 20, 22, 0.14);

  /* Brand (aus twin; Logo-Akzent nur SVG, s. ADR 0001) */
  --brand:            var(--token-brand);
  --brand-hover:      var(--token-brand-hover);
  --logo-accent:      var(--token-logo-accent);
  --brand-soft:       rgba(192, 106, 58, 0.12);
  --brand-border:     rgba(192, 106, 58, 0.22);
  --forest:           var(--token-forest);

  /* Typography (deliberate pairing; see <head> Google Fonts) */
  --font-display:     var(--font-display-token);
  --font-body:        var(--font-body-token);
  --fs-hero:          clamp(2.35rem, 5.6vw, 4.35rem);
  --fs-h2:            clamp(1.75rem, 3.4vw, 2.8rem);
  --fs-h3:            clamp(1.25rem, 2.1vw, 1.65rem);
  --fs-body:          1.0625rem;
  --fs-small:         0.9375rem;
  --lh-tight:         1.12;
  --lh-body:          1.65;

  /* Layout */
  --wrap-max:         1120px;
  --wrap-px:          clamp(1.25rem, 4vw, 2.5rem);
  --section-py:       clamp(3.5rem, 8vw, 7rem);
  --gap:              clamp(1rem, 2vw, 1.5rem);
  --gap-lg:           clamp(2rem, 4vw, 3.5rem);

  /* Radii (large cards = twin radiusCardPx) */
  --radius:           12px;
  --radius-lg:        var(--radius-card);
  --radius-pill:      999px;

  /* Shadows */
  --shadow-sm:        0 1px 3px rgba(18, 20, 22, 0.06);
  --shadow-md:        0 10px 24px rgba(18, 20, 22, 0.10);
  --shadow-lg:        0 24px 56px rgba(18, 20, 22, 0.14);
  --shadow-xl:        0 32px 64px rgba(18, 20, 22, 0.18);

  /* Motion */
  --ease-out:         cubic-bezier(0.16, 1, 0.3, 1);
  --dur:              0.45s;
  --dur-fast:         0.22s;
  --ring:             0 0 0 3px rgba(192, 106, 58, 0.22);
}

/* --- Chapter dark ----------------------------------------- */
.chapter-dark {
  --bg:             var(--token-forest);
  --text:           var(--token-text-on-dark);
  --text-body:      rgba(247, 241, 231, 0.86);
  --text-muted:     rgba(247, 241, 231, 0.66);
  --border:         rgba(247, 241, 231, 0.12);
  background: var(--bg);
  color: var(--text);
}
.chapter-dark a { color: var(--token-link-on-dark); text-underline-offset: 0.16em; }
.chapter-dark a:hover { color: #ffffff; }

/* Buttons in dunklen Sektionen (spezifischer als .chapter-dark a, sonst falsche Linkfarbe auf .btn-primary) */
.chapter-dark a.btn-primary {
  color: #ffffff;
}
.chapter-dark a.btn-primary:hover {
  color: #ffffff;
}
.chapter-dark a.btn-secondary {
  color: var(--token-text-on-dark);
  background: rgba(247, 241, 231, 0.1);
  border-color: rgba(247, 241, 231, 0.28);
}
.chapter-dark a.btn-secondary:hover {
  color: #ffffff;
  background: rgba(247, 241, 231, 0.16);
}
.chapter-dark a.btn-ghost {
  color: var(--token-link-on-dark);
  border-color: rgba(247, 241, 231, 0.35);
}
.chapter-dark a.btn-ghost:hover {
  color: #ffffff;
  background: rgba(247, 241, 231, 0.08);
}

/* --- Reset ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-2);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }

/* --- A11y ------------------------------------------------- */
.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  transform: translateY(-140%);
  transition: transform var(--dur-fast) var(--ease-out);
  z-index: 9999;
}
.skip-link:focus { transform: translateY(0); outline: none; box-shadow: var(--ring); }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 10px; }

/* --- Layout helpers -------------------------------------- */
.wrap { max-width: var(--wrap-max); margin: 0 auto; padding: 0 var(--wrap-px); }
.section { padding: var(--section-py) 0; }
.section-alt { background: var(--cream); }
.text-center { text-align: center; }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 880px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 720px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* --- Header / Navigation (Kahlgrunder-Pattern, Oskar-Tokens) ---- */
.site-header {
  position: fixed;
  top: 0.55rem;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(0.65rem, 3vw, 1.35rem);
  background: transparent;
  border-bottom: none;
  transition: filter var(--dur-fast) var(--ease-out), top var(--dur-fast) var(--ease-out);
}
.site-header.scrolled {
  top: 0.35rem;
  filter: drop-shadow(0 14px 30px rgba(18, 20, 22, 0.14));
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0.45rem clamp(0.35rem, 1.5vw, 0.65rem);
  justify-content: flex-start;
  width: 100%;
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0.48rem var(--wrap-px);
  box-sizing: border-box;
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 242, 0.9)),
    radial-gradient(circle at 100% -40%, rgba(192, 106, 58, 0.1), transparent 48%);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border: 1px solid rgba(192, 106, 58, 0.18);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(18, 20, 22, 0.1);
  position: relative;
  /* overflow:hidden clippte Nav & CTA rechts bei schmalen Desktop-Breiten */
  overflow: visible;
}
.header-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-right: auto;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--ink);
  min-width: 0;
  flex-shrink: 0;
  max-width: min(100%, 22rem);
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
}
.site-logo-text {
  font-size: inherit;
  line-height: 1.2;
  max-width: min(18rem, 42vw);
}
.site-logo-tail {
  font-weight: 600;
  color: rgba(18, 20, 22, 0.72);
}
.site-logo img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--cream-2);
}

.site-logo,
.site-nav,
.hamburger {
  position: relative;
  z-index: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.26rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(192, 106, 58, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}
.nav-list > li {
  flex-shrink: 0;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-small);
  font-weight: 600;
  color: rgba(18, 20, 22, 0.86);
  text-decoration: none;
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(192, 106, 58, 0.2), rgba(192, 106, 58, 0.12));
  transform: translateY(-1px) scale(1.01);
  box-shadow: inset 0 0 0 1px rgba(192, 106, 58, 0.15);
}
.nav-link[aria-current="page"]::after {
  display: none;
}

.nav-cta {
  margin-left: 0.25rem;
  min-height: 40px;
  padding: 0.66rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  box-shadow: 0 6px 14px rgba(192, 106, 58, 0.22);
}

@media (min-width: 768px) {
  .site-logo-text {
    white-space: nowrap;
  }
  .site-nav {
    overflow: visible;
  }
  .nav-list {
    flex-wrap: nowrap;
    flex-shrink: 0;
  }
  .nav-link,
  .nav-cta {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 1px;
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .site-header {
    top: 0.45rem;
  }
  .header-inner {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
    border-radius: 14px;
    overflow: visible;
  }
  .hamburger {
    display: flex;
  }
  .site-nav {
    position: fixed;
    inset: 1rem;
    top: 4.75rem;
    bottom: auto;
    max-height: min(calc(100dvh - 5.25rem), 32rem);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 247, 242, 0.98) 100%);
    border: 1px solid rgba(192, 106, 58, 0.18);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.65) inset;
    backdrop-filter: blur(20px) saturate(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1rem 1rem 1.15rem;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.4rem);
    pointer-events: none;
    transition:
      opacity var(--dur-fast) var(--ease-out),
      visibility var(--dur-fast),
      transform var(--dur-fast) var(--ease-out);
    z-index: 1002;
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  @media (prefers-reduced-motion: reduce) {
    .site-nav {
      transform: none;
      transition: opacity 0.2s ease, visibility 0.2s;
    }
    .site-nav.is-open {
      transform: none;
    }
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }
  .nav-list > li {
    width: 100%;
  }
  .nav-list > li:not(:last-child) {
    border-bottom: 1px solid rgba(18, 20, 22, 0.08);
  }
  .nav-list > li:last-child {
    margin-top: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(192, 106, 58, 0.2);
  }
  .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: none;
    min-height: 3rem;
    padding: 0.85rem 0.65rem 0.85rem 0.35rem;
    font-size: 1.0625rem;
    font-weight: 600;
    text-align: left;
    color: var(--ink);
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
    transform: none;
    transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
  }
  .nav-link:hover {
    color: var(--ink);
    background: rgba(192, 106, 58, 0.08);
    transform: none;
    box-shadow: none;
  }
  .nav-link:focus-visible {
    outline: none;
    background: rgba(192, 106, 58, 0.1);
    box-shadow: var(--ring);
  }
  .nav-link[aria-current="page"] {
    color: var(--ink);
    background: rgba(192, 106, 58, 0.11);
    box-shadow: inset 3px 0 0 0 var(--brand);
    transform: none;
  }
  .nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    min-height: 3.15rem;
    padding: 0.85rem 1.15rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    border-radius: 14px;
    text-align: center;
    white-space: normal;
    box-shadow: 0 8px 22px rgba(192, 106, 58, 0.28);
  }
  .nav-cta:focus-visible {
    box-shadow: var(--ring), 0 8px 22px rgba(192, 106, 58, 0.28);
  }
  .nav-cta.btn-primary:hover {
    transform: none;
  }
}

@media (max-width: 680px) {
  .site-logo-tail {
    display: none;
  }
  .site-logo-text {
    max-width: 11rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (min-width: 768px) and (max-width: 1040px) {
  .nav-link {
    padding: 0.45rem 0.58rem;
    font-size: 0.875rem;
  }
  .nav-list {
    gap: 0.2rem;
    padding: 0.2rem 0.24rem;
  }
  .nav-cta {
    padding: 0.58rem 0.82rem;
    font-size: 0.8125rem;
    min-height: 2.4rem;
  }
}

/* --- Buttons --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.05rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand-border); }
.btn-primary:hover { background: var(--brand-hover); }
.btn-secondary { background: rgba(18, 20, 22, 0.06); border-color: rgba(18, 20, 22, 0.12); }
.btn-secondary:hover { background: rgba(18, 20, 22, 0.10); }
.btn-ghost { background: transparent; border-color: rgba(18, 20, 22, 0.14); }
.btn-ghost:hover { background: rgba(18, 20, 22, 0.05); }

/* --- Type ------------------------------------------------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--muted);
}
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; }
h1 { font-size: var(--fs-hero); line-height: var(--lh-tight); }
h2 { font-size: var(--fs-h2); line-height: 1.18; }
h3 { font-size: var(--fs-h3); line-height: 1.22; }
.lead { font-size: clamp(1.06rem, 1.2vw, 1.25rem); color: rgba(18, 20, 22, 0.82); margin-top: 0.9rem; }

/* --- Editorial patterns ---------------------------------- */
.max-ch { max-width: 65ch; }
.breakout {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.highlights {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(18, 20, 22, 0.10);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(18, 20, 22, 0.84);
  font-weight: 650;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.chip:hover { background: rgba(18, 20, 22, 0.05); }
.chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(192, 106, 58, 0.16);
}

/* --- Premium motion: sticky scrub + chapter dots ---------- */
.chapter-dots {
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 0.55rem;
  z-index: 1200;
}
.chapter-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(18, 20, 22, 0.22);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 1px 0 rgba(18, 20, 22, 0.06);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.chapter-dot[aria-current="true"] {
  background: var(--brand);
  border-color: rgba(192, 106, 58, 0.35);
  transform: scale(1.25);
}
@media (max-width: 900px) { .chapter-dots { display: none; } }

.scrub {
  min-height: 320vh;
  position: relative;
}
.scrub-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 0;
}
.scrub-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}
@media (max-width: 880px) { .scrub-inner { grid-template-columns: 1fr; } }

.scrub-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: clamp(18px, 3vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(18, 20, 22, 0.10);
  background: radial-gradient(900px 420px at 20% 10%, rgba(192, 106, 58, 0.22), transparent 60%),
              radial-gradient(700px 380px at 85% 20%, rgba(26, 42, 36, 0.18), transparent 55%),
              linear-gradient(180deg, rgba(255,255,255,0.95), rgba(250,247,242,0.92));
  box-shadow: var(--shadow-lg);
}
.scrub-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.scrub-layer.is-active {
  opacity: 1;
  transform: none;
}
.scrub-card {
  max-width: 520px;
  width: 100%;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(18, 20, 22, 0.10);
  border-radius: clamp(16px, 2vw, 22px);
  padding: 1.15rem 1.2rem;
  backdrop-filter: blur(10px);
}
.scrub-kicker { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(18, 20, 22, 0.62); }
.scrub-card h3 { margin-top: 0.4rem; }
.scrub-card p { margin-top: 0.55rem; color: rgba(18, 20, 22, 0.76); }

.scrub-copy h2 { max-width: 20ch; }
.scrub-copy p { margin-top: 0.85rem; max-width: 60ch; color: rgba(18, 20, 22, 0.78); }
.scrub-steps { margin-top: 1.1rem; display: grid; gap: 0.55rem; }
.scrub-step {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(18, 20, 22, 0.10);
  background: rgba(255, 255, 255, 0.72);
}
.scrub-step-badge {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(192, 106, 58, 0.12);
  border: 1px solid rgba(192, 106, 58, 0.20);
  display: grid;
  place-items: center;
  font-weight: 750;
  color: rgba(18, 20, 22, 0.78);
  flex: 0 0 auto;
}
.scrub-step.is-active {
  border-color: rgba(192, 106, 58, 0.22);
  box-shadow: 0 0 0 3px rgba(192, 106, 58, 0.10);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scrub { min-height: auto; }
  .scrub-sticky { position: static; min-height: auto; }
  .scrub-layer { opacity: 1; transform: none; position: static; }
}

/* --- Cards ------------------------------------------------ */
.card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
}
.card h3 { margin-bottom: 0.35rem; }
.card p { color: rgba(18, 20, 22, 0.76); }

/* Dezente Akzentleiste für Angebots-Kacheln (z. B. Essen auf Rädern) */
.card--accent-top {
  border-top: 3px solid rgba(192, 106, 58, 0.55);
  padding-top: calc(1.25rem + 2px);
}

details.card > summary {
  list-style: none;
}
details.card > summary::-webkit-details-marker {
  display: none;
}

/* --- Hero (optional Foto über CSS-Variablen pro Seite) ---- */
.hero {
  position: relative;
  padding: clamp(6.75rem, 14vw, 9.5rem) 0 clamp(3.25rem, 7vw, 5.5rem);
  overflow: hidden;
  --hero-photo: url("assets/live/photos/hero-buffet.jpg");
  --hero-focal: center 42%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: var(--cream);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 247, 242, 0.72) 40%, rgba(250, 247, 242, 0.92) 100%),
    radial-gradient(900px 520px at 50% 100%, rgba(18, 20, 22, 0.12), transparent 60%),
    var(--hero-photo);
  background-size: cover, cover, cover;
  background-position: center, center, var(--hero-focal);
  background-repeat: no-repeat;
}

.hero.hero--plain .hero-bg {
  background-image:
    radial-gradient(1200px 600px at 20% 10%, rgba(192, 106, 58, 0.16), transparent 60%),
    radial-gradient(900px 520px at 80% 0%, rgba(26, 42, 36, 0.12), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  background-size: auto, auto, auto;
  background-position: 20% 10%, 80% 0%, center;
}

@media (prefers-reduced-data: reduce) {
  .hero:not(.hero--plain) .hero-bg {
    background-image:
      radial-gradient(1200px 600px at 20% 10%, rgba(192, 106, 58, 0.16), transparent 60%),
      radial-gradient(900px 520px at 80% 0%, rgba(26, 42, 36, 0.12), transparent 55%),
      linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
    background-size: auto, auto, auto;
    background-position: 20% 10%, 80% 0%, center;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.75), 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hero-actions { margin-top: 1.35rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Buttons sit on solid fills — inherited hero glow makes label edges look blurry/muddy */
.hero-content .hero-actions .btn {
  text-shadow: none;
}

.hero .chip {
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.78);
}

@media (prefers-reduced-motion: reduce) {
  .hero .chip { backdrop-filter: none; }
}

/* --- Reveal ---------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* --- FAQ -------------------------------------------------- */
.faq { display: grid; gap: 0.75rem; margin-top: 1.25rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
}
.faq-question {
  list-style: none; /* natives <details>-Dreieck aus, wir nutzen .faq-icon */
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-weight: 650;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-icon {
  --faq-plus-size: 0.5rem;
  --faq-plus-stroke: max(1.5px, 0.09rem);
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  position: relative;
  flex: 0 0 auto;
  color: rgba(18, 20, 22, 0.5);
  transition: transform var(--dur-fast) var(--ease-out);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}
.faq-icon::before {
  width: var(--faq-plus-size);
  height: var(--faq-plus-stroke);
}
.faq-icon::after {
  width: var(--faq-plus-stroke);
  height: var(--faq-plus-size);
}
@media (prefers-reduced-motion: reduce) {
  .faq-icon {
    transition: none;
  }
}
.faq-answer { padding: 0 1.1rem 1rem; color: rgba(18, 20, 22, 0.78); display: none; }
.faq-item[open] .faq-answer { display: block; }

/* --- Forms ------------------------------------------------ */
.contact-form { margin-top: 1.25rem; display: grid; gap: 1rem; }

/* Honeypot: für Besucher unsichtbar, nicht fokussierbar */
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-group { display: grid; gap: 0.45rem; }
.form-label { font-weight: 600; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
}
.form-textarea { resize: vertical; min-height: 120px; }
.required { color: var(--brand); }
.form-submit-error {
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(192, 106, 58, 0.35);
  background: rgba(192, 106, 58, 0.10);
  border-radius: 14px;
  color: rgba(18, 20, 22, 0.84);
}
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 42, 36, 0.18);
  background: rgba(26, 42, 36, 0.08);
}
.form-success.is-visible { display: block; }

/* --- Footer ---------------------------------------------- */
.site-footer { padding: 3rem 0; border-top: 1px solid rgba(18, 20, 22, 0.08); background: var(--cream); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--gap-lg); }
.footer-brand { font-weight: 750; letter-spacing: -0.01em; margin-bottom: 0.35rem; }
.footer-desc { color: rgba(18, 20, 22, 0.72); }
.footer-heading { font-weight: 700; margin-bottom: 0.5rem; }
.footer-links { display: grid; gap: 0.35rem; }
.footer-link { color: rgba(18, 20, 22, 0.78); text-decoration: none; }
.footer-link:hover { text-decoration: underline; text-underline-offset: 0.18em; }
.footer-bottom { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid rgba(18, 20, 22, 0.08); display: flex; gap: 1rem; flex-wrap: wrap; justify-content: space-between; color: rgba(18, 20, 22, 0.7); }
.footer-legal { display: flex; gap: 0.9rem; flex-wrap: wrap; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr; } }

/* --- Skill 50: horizontale Galerie (scroll-snap) ------------ */
.gallery-scroll {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 0.35rem;
  -webkit-overflow-scrolling: touch;
}
.gallery-scroll > * {
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.gallery-scroll.is-centered {
  justify-content: center;
}

/* --- Cookie banner (Cookie-Hinweis + Microsoft Clarity) --- */
body.cookie-banner-on {
  padding-bottom: clamp(5.5rem, 19vw, 7.75rem);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 0 max(0.65rem, env(safe-area-inset-right))
    max(0.55rem, env(safe-area-inset-bottom))
    max(0.65rem, env(safe-area-inset-left));
  pointer-events: none;
}
.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__panel {
  pointer-events: auto;
  max-width: min(var(--wrap-max), 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  padding: 0.82rem clamp(1rem, 3vw, 1.35rem);
  border-radius: 18px;
  border: 1px solid rgba(18, 20, 22, 0.08);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow:
    0 -4px 24px rgba(18, 20, 22, 0.06),
    0 8px 32px rgba(18, 20, 22, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  line-height: 1.48;
  color: rgba(18, 20, 22, 0.76);
}

@media (prefers-reduced-motion: no-preference) {
  .cookie-banner:not([hidden]) .cookie-banner__panel {
    animation: cookie-banner-in var(--dur) var(--ease-out) forwards;
  }
}

@keyframes cookie-banner-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner__text {
  flex: 1 1 260px;
  min-width: 0;
}

.cookie-banner__title {
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(18, 20, 22, 0.45);
  margin-bottom: 0.32rem;
}

.cookie-banner__copy {
  margin: 0;
  line-height: 1.55;
  text-wrap: pretty;
  overflow-wrap: break-word;
}

.cookie-banner__copy--meta {
  margin-top: 0.4rem;
  font-size: 0.8125rem;
  line-height: 1.52;
  color: rgba(18, 20, 22, 0.62);
}

.cookie-banner__actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
}

.cookie-banner__link {
  color: rgba(18, 20, 22, 0.55);
  font-size: 0.8125rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0.35rem 0;
  font-family: inherit;
}
.cookie-banner__link:hover {
  color: var(--brand-hover);
}

.cookie-banner__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.52rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(192, 106, 58, 0.28);
  background: rgba(192, 106, 58, 0.12);
  color: rgba(18, 20, 22, 0.88);
  font-weight: 650;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  font-family: inherit;
}
.cookie-banner__btn-primary:hover {
  background: rgba(192, 106, 58, 0.2);
  border-color: rgba(192, 106, 58, 0.38);
}
.cookie-banner__btn-primary:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

@media (max-width: 520px) {
  body.cookie-banner-on {
    padding-bottom: clamp(8.25rem, 36vw, 11rem);
  }
  .cookie-banner__panel {
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
  }
  .cookie-banner__actions {
    justify-content: flex-end;
    width: 100%;
  }
}
