/* ============================================================
   B60 Catering – Designentwurf
   Dunkles Braun-Gold-Schema nach Kundenvorlage:
   tiefbrauner Hintergrund, Creme-Schrift, Gold-Akzente
   ============================================================ */

:root {
  --bg: #251810;            /* Seitenhintergrund */
  --bg-soft: #2e1e12;       /* alternierende Sektionen */
  --bg-card: #362718;       /* Karten & Formular */
  --bg-deep: #1b110a;       /* Kunden-Sektion & Footer */
  --text: #f2e8d6;          /* Fließtext & Headlines */
  --text-soft: #d3bf9f;     /* Sekundärtext */
  --text-faint: #a68c64;    /* Captions, Rotator-Wort */
  --gold: #c49a63;          /* Akzent: Buttons, Linien, Logo */
  --gold-bright: #d8b078;   /* Hover */
  --ink: #2b1a0d;           /* Schrift auf Gold */
  --line: rgba(196, 154, 99, 0.32);
  --font-display: "Archivo Black", "Archivo", sans-serif;
  --font-body: "Archivo", sans-serif;
  --font-script: "Great Vibes", cursive;
  --radius: 26px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }

a { color: inherit; }

::selection { background: var(--gold); color: var(--ink); }

/* ---------- Subtitle-/Eyebrow-Akzent ---------- */
.script-accent {
  font-family: "Fugaz One", sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: "Fugaz One", sans-serif;
  font-style: italic;
  display: inline-block;
  padding: 1.05rem 2.4rem;
  border-radius: 0;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.btn--solid {
  background: var(--gold);
  color: var(--ink);
}

.btn--solid:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
}

.btn--ghost:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
}

.text-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 2px solid var(--line);
  padding-bottom: 2px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.text-link::after { content: " →"; }

.text-link:hover { border-color: var(--gold); color: var(--gold-bright); }

/* ============================================================
   Header: zentriertes Logo wie Vorlage, scrollt mit der Seite weg
   ============================================================ */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
  pointer-events: none;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  text-decoration: none;
  color: var(--gold);
  pointer-events: auto;
}

.brand-logo {
  width: clamp(150px, 15vw, 250px);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

/* DE + Burger fest oben rechts – wie in der Vorlage */
.header-tools {
  position: fixed;
  top: 1.5rem;
  right: clamp(1.2rem, 3vw, 2.4rem);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  z-index: 102;
}

.lang {
  font-weight: 700;
  font-style: italic;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

/* Vollbild-Overlay-Menü (alle Bildschirmgrößen) */
.main-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.main-nav.is-open { opacity: 1; visibility: visible; }

.main-nav a {
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  letter-spacing: 0.03em;
  color: var(--text);
  transition: color 0.2s ease;
}

.main-nav a:hover { color: var(--gold); }

.nav-cta {
  border: 3px solid var(--gold);
  border-radius: 999px;
  padding: 0.6rem 2rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--ink) !important;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(13rem, 26vh, 16rem) clamp(1.2rem, 5vw, 4rem) 5rem;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.7;
  z-index: 0;
  animation: blobFloat 14s ease-in-out infinite alternate;
}

.hero-blob--1 {
  width: 520px; height: 520px;
  background: #3a2815;
  top: -140px; right: -120px;
}

.hero-blob--2 {
  width: 420px; height: 420px;
  background: #31200f;
  bottom: -160px; left: -140px;
  animation-delay: -7s;
}

@keyframes blobFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-40px, 40px) scale(1.12); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* --- Wort-Rotator (zentriert über dem Claim, wie Vorlage) --- */
.hero-rotator {
  position: relative;
  height: clamp(2.6rem, 5.6vw, 4.6rem);
  width: 100%;
  margin-bottom: 0.4rem;
  perspective: 500px;
  overflow: hidden; /* wechselnde Wörter nicht in den Claim ragen lassen */
  animation: fadeUp 0.9s ease both;
}

.hero-word {
  position: absolute;
  left: 0; right: 0; top: 0;
  text-align: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  color: var(--text-faint);
  opacity: 0;
  transform: translateY(60%) rotateX(-60deg);
  transition: opacity 0.5s ease, transform 0.5s ease;
  white-space: nowrap;
}

.hero-word.is-active {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.hero-word.is-leaving {
  opacity: 0;
  transform: translateY(-60%) rotateX(60deg);
}

.hero-claim {
  font-size: clamp(3.1rem, 8.6vw, 7.2rem);
  animation: fadeUp 0.9s 0.15s ease both;
}

.hero-sub {
  max-width: 52ch;
  margin-top: 1.6rem;
  font-size: 1.08rem;
  color: var(--text-soft);
  animation: fadeUp 0.9s 0.3s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.2rem;
  animation: fadeUp 0.9s 0.45s ease both;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* --- Scroll-Hinweis --- */
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  width: 28px; height: 46px;
  border: 2px solid var(--text-faint);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 2;
}

.scroll-hint span {
  width: 4px; height: 10px;
  background: var(--text-faint);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  background: var(--gold);
  color: var(--ink);
  overflow: hidden;
  padding: 0.9rem 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee span {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.marquee i {
  font-style: normal;
  color: rgba(43, 26, 13, 0.55);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

/* Goldene Trennlinie unter Sektionsüberschriften – wie Vorlage */
.section-head h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  background: var(--gold);
  margin: 1.1rem auto 0;
}

/* ============================================================
   Leistungen: full-bleed Content-Slides (Foto + zentrierter Text)
   ============================================================ */
.slide {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* leicht dunkel + warm graden, damit der Text sitzt und die Palette passt */
  filter: brightness(0.5) saturate(0.92) sepia(0.18);
  transition: transform 8s ease;
}

.slide:hover .slide-bg { transform: scale(1.06); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(27, 17, 10, 0.10) 0%, rgba(27, 17, 10, 0.52) 100%),
    linear-gradient(180deg, rgba(27, 17, 10, 0.55) 0%, rgba(27, 17, 10, 0) 22%, rgba(27, 17, 10, 0) 78%, rgba(27, 17, 10, 0.55) 100%);
}

.slide-content {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem;
}

.slide-index {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  color: var(--gold);
}

.slide-content h3 {
  font-size: clamp(2.2rem, 5.4vw, 4.4rem);
  margin: 0.8rem 0 1.2rem;
}

.slide-desc {
  font-family: "Fugaz One", sans-serif;
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--text);
  max-width: 46ch;
  margin: 0 auto;
}

.slide-tagline {
  font-family: "Fugaz One", sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  color: var(--gold-bright);
  margin: 1.6rem 0 2rem;
}

/* ============================================================
   Event-Typen
   ============================================================ */
.events {
  background: var(--bg-soft);
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.2rem, 5vw, 4rem);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 1.4rem;
  text-align: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
}

.event-card--cta {
  background: var(--gold);
  border-color: var(--gold);
}

.event-card--cta a {
  color: var(--ink);
  text-decoration: none;
}

/* ============================================================
   Berlin / Sony Center – Vollbild-Banner wie Vorlage:
   Foto als Hintergrund, dunkler Verlauf von links, Text darüber
   ============================================================ */
.berlin {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 5vw, 4rem);
}

.berlin-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  /* leicht warm graden, damit das Foto zur Braun-Gold-Palette passt */
  filter: sepia(0.25) saturate(0.85) brightness(0.9);
}

.berlin-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(27, 17, 10, 0.82) 0%,
      rgba(27, 17, 10, 0.62) 32%,
      rgba(27, 17, 10, 0.15) 62%,
      rgba(27, 17, 10, 0.28) 100%),
    linear-gradient(180deg,
      rgba(37, 24, 16, 0.90) 0%,
      rgba(37, 24, 16, 0.40) 16%,
      rgba(37, 24, 16, 0) 40%,
      rgba(27, 17, 10, 0) 65%,
      rgba(27, 17, 10, 0.45) 100%);
}

/* Bildnachweis (CC-Lizenz) dezent im Banner */
.berlin-credit {
  position: absolute;
  right: 1.1rem;
  bottom: 0.8rem;
  z-index: 1;
  max-width: 86vw;
  text-align: right;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: rgba(242, 232, 214, 0.55);
}

.berlin-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.berlin-content h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  margin-bottom: 1.4rem;
}

.berlin-content .gold { color: var(--gold); }

.berlin-lead {
  font-family: "Fugaz One", sans-serif;
  color: var(--text-soft);
  max-width: 46ch;
}

.berlin-lead + .berlin-lead { margin-top: 0.5rem; }

.berlin-content .btn { margin-top: 2rem; }

/* ============================================================
   Kunden: große Headline + Logowall wie Vorlage
   ============================================================ */
.clients {
  background: var(--bg-deep);
  padding: clamp(4rem, 9vw, 7.5rem) clamp(1.2rem, 5vw, 4rem);
  text-align: center;
}

.clients-head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }

.clients-headline {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
}

.clients-sub {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(0.95rem, 1.8vw, 1.3rem);
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: 1.1rem;
}

.client-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  justify-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.client {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.client img {
  max-width: min(92%, 270px);
  max-height: clamp(70px, 9vw, 116px);
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.client:hover img { opacity: 1; transform: translateY(-3px); }

/* ============================================================
   Kontakt: Formular über Foto wie Vorlage
   ============================================================ */
.contact {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 5vw, 4rem);
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.9) sepia(0.2);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(27, 17, 10, 0.68) 0%, rgba(27, 17, 10, 0.38) 40%, rgba(27, 17, 10, 0.65) 100%);
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.contact-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.contact-head h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-top: 0.3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.1rem;
}

.contact-form label {
  display: block;
  min-width: 0;
}

.contact-form label > span {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.contact-form input,
.contact-form textarea {
  font-family: "Fugaz One", sans-serif;
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: rgba(242, 232, 214, 0.1);
  border: 1.5px solid rgba(242, 232, 214, 0.22);
  border-radius: 10px;
  padding: 1.15rem 1.4rem;
  backdrop-filter: blur(6px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(242, 232, 214, 0.16);
  box-shadow: 0 0 0 3px rgba(196, 154, 99, 0.22);
}

.contact-form ::placeholder {
  font-family: "Fugaz One", sans-serif;
  font-style: italic;
  color: rgba(242, 232, 214, 0.55);
}

.form-foot {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 2px solid var(--line);
  padding-bottom: 3px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.insta-link:hover { border-color: var(--gold); color: var(--gold-bright); }

.insta-link svg { width: 22px; height: 22px; }

.form-success {
  display: none;
  color: var(--gold-bright);
  font-weight: 600;
}

.form-success.is-visible { display: block; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--bg-deep);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 5vw, 4rem) 1.6rem;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

/* Logo-JPG hat weißen Hintergrund – als „Visitenkarte" gerahmt */
.footer-brand img {
  height: 92px;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
}

.footer-brand p {
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.footer-legal-head { margin-top: 1.6rem; }

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.95rem;
  padding: 0.22rem 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-bottom {
  max-width: 1180px;
  margin: 2.8rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-faint);
}

.footer-bottom a { color: inherit; text-decoration: none; }

/* ============================================================
   Reveal-Animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Food Carousel (3 per view)
   ============================================================ */
.food-carousel {
  position: relative;
  width: min(960px, 92vw);
  margin: 2rem auto 2.4rem;
  overflow: hidden;
}

.food-carousel-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.food-carousel-track img {
  flex: 0 0 calc(33.333% - 8px);
  width: calc(33.333% - 8px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.food-carousel-prev,
.food-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(37, 24, 16, 0.72);
  color: var(--text);
  border: 1.5px solid rgba(196, 154, 99, 0.5);
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  z-index: 2;
  border-radius: 0;
}

.food-carousel-prev { left: 0; }
.food-carousel-next { right: 0; }

.food-carousel-prev:hover,
.food-carousel-next:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.food-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 0.9rem;
}

.food-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(196, 154, 99, 0.35);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.food-dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .client-wall { grid-template-columns: repeat(3, 1fr); }
  .berlin { min-height: 64vh; }
  .slide { min-height: 80vh; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .food-carousel-track img { flex: 0 0 calc(50% - 6px); width: calc(50% - 6px); }
}

@media (max-width: 560px) {
  .event-grid { grid-template-columns: 1fr; }
  .client-wall { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .food-carousel-track img { flex: 0 0 100%; width: 100%; }
  .food-carousel-prev, .food-carousel-next { width: 38px; height: 38px; font-size: 1.1rem; }

  /* Hero: auf eine Bildschirmhöhe (100svh) komprimiert */
  .hero {
    padding-top: clamp(7rem, 22vh, 9rem);
    padding-bottom: 2rem;
  }
  .hero-rotator { height: clamp(2rem, 7vw, 3rem); margin-bottom: 0.2rem; }
  .hero-word { font-size: clamp(1.6rem, 6.4vw, 2.6rem); }
  .hero-claim { font-size: clamp(2.4rem, 10.5vw, 3.4rem); }
  .hero-sub { margin-top: 1.1rem; font-size: 0.98rem; }
  .hero-actions { margin-top: 1.6rem; gap: 0.8rem; }
  .hero-actions .btn { padding: 0.85rem 1.8rem; font-size: 0.95rem; }
  .scroll-hint { bottom: 1rem; width: 24px; height: 38px; }
}

@media (max-width: 560px) and (max-height: 720px) {
  .hero { padding-top: clamp(6rem, 18vh, 7.5rem); padding-bottom: 1.2rem; }
  .hero-claim { font-size: clamp(2.1rem, 9.5vw, 3rem); }
  .hero-sub { margin-top: 0.8rem; }
  .hero-actions { margin-top: 1.2rem; }
  .scroll-hint { display: none; }
}
