/* ============== FONTS (self-hosted, DSGVO) ============== */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('assets/fonts/fraunces-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('assets/fonts/fraunces-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url('assets/fonts/fraunces-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url('assets/fonts/fraunces-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('assets/fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('assets/fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ============== TOKENS ============== */
:root {
  --r: #E11D2E;
  --r-deep: #B5121F;
  --g: #2D9D3A;
  --g-deep: #1F7A2A;
  --bg: #FFFFFF;
  --cream: #FAF5EC;
  --ink: #15110E;
  --ink-soft: #4B433D;
  --line: #E8E1D5;
  --shadow: 0 30px 80px -30px rgba(21, 17, 14, 0.25);

  --display: 'Fraunces', Georgia, serif;
  --body: 'Outfit', system-ui, sans-serif;
  --brand-font: Arial, Helvetica, sans-serif;

  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 56px);

  --cookie-bg: #ffffff;
  --cookie-border: var(--line);
  --cookie-text: var(--ink-soft);
  --cookie-accent: var(--r);
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .55;
  mix-blend-mode: multiply;
  z-index: 1;
}
.nav, main, section, footer, .marquee, .cookie-banner { position: relative; z-index: 2; }

/* ============== TYPE ============== */
.h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.h2--light { color: #fff; }
.serif-italic {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 16px;
}
.eyebrow--light { color: rgba(255,255,255,0.75); }
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: currentColor;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--cream);
}
.kicker__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--g);
  box-shadow: 0 0 0 4px rgba(45, 157, 58, 0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 8px rgba(45, 157, 58, 0); }
}

.text-r { color: var(--r); }
.text-g { color: var(--g); }

/* Brand wordmark — Arial like the logo */
.brand {
  font-family: var(--brand-font);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.15em;
}
.brand__r { color: var(--r); }
.brand__g { color: var(--g); }
.brand--xl { font-size: clamp(64px, 9.5vw, 140px); }
.brand--md { font-size: clamp(28px, 3.5vw, 44px); }
.brand--sm { font-size: 22px; gap: 0.12em; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--r);
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(225, 29, 46, 0.55);
}
.btn--primary:hover {
  background: var(--r-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(225, 29, 46, 0.65);
}
.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }

/* ============== NAV ============== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.nav__brand { line-height: 0; flex-shrink: 0; }
.nav__logo {
  height: 56px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex; gap: 36px;
  margin-left: auto;
  font-size: 17px; font-weight: 600;
}
.nav__links a {
  position: relative;
  color: var(--ink);
  transition: color .2s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--r); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav__links a:hover { color: var(--r); }
.nav__links a:hover::after { transform: scaleX(1); }

/* Floating social icon */
.social-fab {
  position: fixed;
  right: clamp(16px, 2.5vw, 28px);
  bottom: clamp(16px, 2.5vw, 28px);
  z-index: 60;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 32px -10px rgba(0,0,0,0.35);
  transition: background .25s ease, transform .25s ease;
}
.social-fab:hover {
  background: var(--r);
  transform: scale(1.08);
}

/* ============== HERO ============== */
.hero {
  padding: clamp(36px, 5vw, 72px) var(--pad) clamp(48px, 6vw, 88px);
  background:
    radial-gradient(1200px 600px at 110% -10%, rgba(225,29,46,0.07), transparent 60%),
    radial-gradient(900px 500px at -10% 120%, rgba(45,157,58,0.08), transparent 60%);
}
.hero__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}
.hero__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.hero__copy .brand { margin: 0; }
.hero__motto {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--r);
  margin: 0;
  letter-spacing: -0.01em;
}
.hero__lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }

.hero__video { position: relative; }
.video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
  transition: transform .5s ease;
  max-width: 360px;
  margin-left: auto;
}
.video-frame:hover { transform: rotate(0deg) scale(1.01); }
.video-frame video {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============== MARQUEE ============== */
.marquee {
  background: var(--r);
  color: #fff;
  overflow: hidden;
  padding: 18px 0;
}
.marquee__track {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  animation: scroll 45s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(24px, 3.5vw, 48px);
  letter-spacing: -0.01em;
}
.marquee__track .dot { color: rgba(255,255,255,0.5); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============== STORY ============== */
.story {
  padding: clamp(48px, 6vw, 90px) var(--pad);
  background: var(--cream);
}
.story__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.story__img { margin: 0; position: relative; }
.story__img img {
  border-radius: 22px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.story__copy p {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 12px;
  max-width: 56ch;
}
.checks {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: grid; gap: 10px;
}
.checks li {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px;
}
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--g);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

/* ============== GESCHICHTE ============== */
.geschichte {
  padding: clamp(48px, 6vw, 90px) var(--pad);
  background: #fff;
}
.geschichte__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.geschichte__copy p {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 12px;
  max-width: 56ch;
}
.geschichte__img { margin: 0; }
.geschichte__img img {
  border-radius: 22px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--r);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__lbl {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 600;
}

/* ============== DÖNER ============== */
.doener {
  background: var(--ink);
  color: #fff;
  padding: clamp(48px, 7vw, 100px) var(--pad);
  position: relative;
  overflow: hidden;
}
.doener::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(225,29,46,0.35), transparent 70%);
  top: -200px; right: -150px;
  filter: blur(40px);
  pointer-events: none;
}
.doener__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  position: relative;
}
.doener__copy .h2 { color: #fff; }
.doener__lede {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  margin: 0 0 18px;
  max-width: 52ch;
}
.doener__lede + .doener__lede { margin-bottom: 26px; }
.ingredients {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
}
.ingredient {
  background: var(--ink);
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 500;
  display: flex; align-items: center; gap: 14px;
  transition: background .25s;
}
.ingredient:hover { background: #1f1a16; }
.ingredient span {
  font-family: var(--display);
  font-style: italic;
  color: var(--r);
  font-weight: 600;
  font-size: 14px;
  min-width: 26px;
}
.doener__hero {
  margin: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
}
.doener__hero video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.addons {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.addons__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  margin-bottom: 14px;
}
.addons__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.addon {
  display: inline-flex; align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 13.5px;
  font-weight: 500;
  color: #fff;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.addon:hover {
  background: var(--r);
  border-color: var(--r);
  color: #fff;
  transform: translateY(-2px);
}

.diet-badges {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 22px;
}
.diet-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.diet-badge--vegan {
  background: rgba(45,157,58,0.18);
  color: #7ee089;
  border: 1px solid rgba(45,157,58,0.4);
}
.diet-badge--veg {
  background: rgba(225,29,46,0.16);
  color: #ffb3ba;
  border: 1px solid rgba(225,29,46,0.4);
}

/* ============== REVIEWS ============== */
.reviews {
  padding: clamp(48px, 6vw, 90px) var(--pad);
  background: var(--cream);
}
.reviews__head {
  max-width: var(--maxw); margin: 0 auto 36px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.reviews__head .h2 { margin: 0 0 8px; }
.reviews__sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.reviews__meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 16px;
  color: var(--ink-soft);
  flex-wrap: wrap; justify-content: center;
}
.reviews__stars {
  color: #F5A623;
  font-size: 22px;
  letter-spacing: 2px;
}
.reviews__score {
  font-weight: 600;
  color: var(--ink);
}
.reviews__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--r);
}
.review__stars {
  color: #F5A623;
  font-size: 18px;
  letter-spacing: 2px;
}
.review__text {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.005em;
  flex: 1;
}
.review__author {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.review__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--g);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.review__author > div { display: flex; flex-direction: column; line-height: 1.3; }
.review__name { font-weight: 600; font-size: 15px; color: var(--ink); }
.review__source { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.04em; }
.review:hover .review__source { color: var(--r); }

.reviews__cta {
  max-width: var(--maxw);
  margin: 32px auto 0;
  text-align: center;
}

/* ============== BESUCH ============== */
.besuch {
  padding: clamp(48px, 6vw, 90px) var(--pad);
}
.besuch__head {
  max-width: var(--maxw); margin: 0 auto 36px;
}
.besuch__head .h2 { margin: 0; }
.besuch__grid {
  max-width: var(--maxw); margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--cream);
  padding: clamp(24px, 3vw, 36px);
  border-radius: 22px;
}
.info-block { display: flex; flex-direction: column; gap: 8px; }
.info-block__label {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
}
.info-block__value {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.3;
}
a.info-block__value { transition: color .2s; }
a.info-block__value:hover { color: var(--r); }
.hours-compact, .services {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14.5px;
  color: var(--ink);
}
.hours-compact li {
  display: flex; justify-content: space-between; gap: 10px;
  font-variant-numeric: tabular-nums;
}
.hours-compact li span:first-child { font-weight: 500; }
.hours-compact li span:last-child { color: var(--ink-soft); }

.map {
  max-width: var(--maxw);
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: clamp(300px, 40vw, 460px);
}
.map iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(40px, 5vw, 70px) var(--pad) 30px;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.footer .brand .brand__r { color: var(--r); }
.footer .brand .brand__g { color: var(--g); }
.footer__tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  margin: 0;
}
.footer__links {
  display: flex; gap: 28px; flex-wrap: wrap; justify-content: center;
  font-weight: 500; font-size: 14px;
}
.footer__links a { transition: color .2s; }
.footer__links a:hover { color: var(--r); }
.footer__legal {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 12px 0 0;
}

/* ============== LEGAL PAGES (Impressum / Datenschutz) ============== */
.legal {
  background: var(--bg);
  padding: clamp(80px, 8vw, 120px) var(--pad) clamp(60px, 6vw, 100px);
}
.legal__inner {
  max-width: 780px;
  margin: 0 auto;
}
.legal__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 12px;
}
.legal__lede {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0 0 40px;
}
.legal h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--ink);
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}
.legal h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin: 24px 0 8px;
}
.legal p, .legal li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}
.legal p { margin: 0 0 14px; }
.legal ul { padding-left: 22px; margin: 0 0 14px; }
.legal a {
  color: var(--r);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal a:hover { color: var(--r-deep); }
.legal__back {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

/* ============== COOKIE BANNER ============== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 1rem 1.5rem;
  background: var(--cookie-bg);
  border-top: 1px solid var(--cookie-border);
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  animation: cookieSlideUp 0.5s ease forwards;
  animation-delay: 1.5s;
  opacity: 0;
  box-shadow: 0 -10px 40px -10px rgba(0,0,0,0.1);
}
@keyframes cookieSlideUp { to { transform: translateY(0); opacity: 1; } }
.cookie-banner--hidden { animation: cookieSlideDown 0.3s ease forwards; }
@keyframes cookieSlideDown { to { transform: translateY(100%); opacity: 0; } }
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--cookie-text);
  flex: 1;
  min-width: 250px;
  margin: 0;
}
.cookie-banner__link {
  color: var(--cookie-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__link:hover { opacity: 0.8; }
.cookie-banner__actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie-banner__btn {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}
.cookie-banner__btn--accept {
  background: var(--cookie-accent);
  color: #fff;
  border: none;
}
.cookie-banner__btn--accept:hover { background: var(--r-deep); }
.cookie-banner__btn--decline {
  background: transparent;
  border: 1px solid var(--cookie-border);
  color: var(--cookie-text);
}
.cookie-banner__btn--decline:hover { color: var(--ink); border-color: var(--ink); }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .nav__links { gap: 24px; font-size: 16px; }
  .besuch__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 12px var(--pad); }
  .nav__logo { height: 44px; }
  .nav__links { display: none; }

  .social-fab {
    width: 44px; height: 44px;
    right: 14px;
    bottom: 90px;
  }

  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__video { order: 2; }
  .hero__copy { order: 1; }
  .video-frame { max-width: 320px; margin: 0 auto; }
  .brand--xl { font-size: clamp(48px, 13vw, 80px); }

  .story__grid { grid-template-columns: 1fr; gap: 36px; }
  .geschichte__grid { grid-template-columns: 1fr; gap: 36px; }
  .doener__inner { grid-template-columns: 1fr; gap: 40px; }
  .doener__hero { max-width: 480px; margin: 0 auto; }
  .reviews__grid { grid-template-columns: 1fr; }

  .besuch__grid { grid-template-columns: 1fr; }

  .cookie-banner__inner { flex-direction: column; text-align: center; }
  .cookie-banner__actions { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .ingredients { grid-template-columns: 1fr; }
  .doener__stamp { width: 110px; height: 110px; font-size: 12px; bottom: -14px; left: -10px; }
  .footer__links { gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track { animation: none; }
}
