/* =========================================================
   Yangguofu Malatang Braunschweig
   Design tokens: white stage + signature orange, Inter type,
   Apple-style calm motion.
   ========================================================= */

:root{
  --color-bg:            #FFFFFF;
  --color-bg-alt:        #F5F5F7;
  --color-text:          #1D1D1F;
  --color-text-secondary:#6E6E73;
  --color-border:        #D2D2D7;

  --color-orange:        #E8541E;
  --color-orange-deep:   #B33912;
  --color-orange-light:  #FF7A3D;
  --color-orange-tint:   #FDEDE6;

  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-w: 1160px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 64px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

p{ margin: 0; }

a{ color: inherit; text-decoration: none; }

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

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-orange);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  z-index: 1000;
}
.skip-link:focus{ left: 0; }

:focus-visible{
  outline: 3px solid var(--color-orange);
  outline-offset: 3px;
}

.container{
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border: none;
  cursor: pointer;
}
.btn-primary{
  background: var(--color-orange);
  color: #fff;
  box-shadow: 0 8px 24px rgba(232, 84, 30, 0.28);
}
.btn-primary:hover{ background: var(--color-orange-deep); transform: translateY(-1px) scale(1.015); box-shadow: 0 10px 28px rgba(232, 84, 30, 0.34); }
.btn-ghost{
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-ghost:hover{ border-color: var(--color-text); background: rgba(0,0,0,0.03); }

/* Tactile press feedback — snappier than the hover transition so a tap
   reads as an immediate response rather than gliding into place. */
.btn:active{ transform: scale(0.96); transition-duration: 0.12s; }

/* ---------- Nav ---------- */
.site-nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-nav.is-scrolled{
  border-bottom-color: var(--color-border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

/* Blurred glass nav is a well-known scroll-jank source on mid/low-end
   phones (the backdrop has to be recomposited every scroll frame while
   the whole page moves underneath a fixed element). Swap it for a plain
   translucent fill there — visually close, no per-frame blur cost. */
@media (max-width: 860px){
  .site-nav{
    background: rgba(255,255,255,0.94);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.nav-inner{
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo{
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-logo span{ margin-left: 6px; }

.nav-links{
  display: flex;
  gap: 28px;
  margin-left: 8px;
  flex: 1;
}
.nav-links a{
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.2s var(--ease);
}
.nav-links a:hover{ color: var(--color-text); }

.nav-cta{
  font-size: 14px;
  font-weight: 600;
  background: var(--color-orange);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.nav-cta:hover{ background: var(--color-orange-deep); }

.nav-burger{
  display: none;
  width: 36px; height: 36px;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-burger span{
  width: 20px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-mobile{
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 4px;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.nav-mobile a{
  padding: 12px 0;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--color-bg-alt);
}
.site-nav.nav-open .nav-mobile{ display: flex; }
.site-nav.nav-open .nav-burger span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.site-nav.nav-open .nav-burger span:nth-child(2){ opacity: 0; }
.site-nav.nav-open .nav-burger span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px){
  .nav-links, .nav-cta{ display: none; }
  .nav-burger{ display: flex; }
}

/* ---------- Hero / scroll sequence ---------- */
.hero{
  position: relative;
  height: 400vh; /* scroll runway for the frame sequence */
}
.hero-sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #0b0b0c;
  display: flex;
  align-items: center;
  justify-content: center;
  contain: strict;
}

#sequence-canvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  will-change: contents;
}

.hero-copy{
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.hero-copy .eyebrow{
  color: var(--color-orange-light);
  margin-bottom: 18px;
}
.hero-copy h1{
  font-size: clamp(40px, 8vw, 92px);
  line-height: 1.02;
  color: #fff;
}
.hero-sub{
  margin: 22px auto 32px;
  max-width: 520px;
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.78);
}

/* Keynote-style staggered entrance on first paint. Lives on the direct
   children rather than .hero-copy itself, since scrollSequence.js drives
   that element's own opacity/transform via inline styles as soon as
   scrolling starts — animating the same properties on the same element
   from two places would fight each other. */
@keyframes hero-line-in{
  from{ opacity: 0; transform: translateY(18px); }
  to{ opacity: 1; transform: translateY(0); }
}
.hero-copy > *{ animation: hero-line-in 0.8s var(--ease) both; }
.hero-copy .eyebrow{ animation-delay: 0.05s; }
.hero-copy h1{ animation-delay: 0.15s; }
.hero-copy .hero-sub{ animation-delay: 0.32s; }
.hero-copy .btn{ animation-delay: 0.46s; }

.scroll-cue{
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.3s var(--ease);
}
.scroll-cue-line{
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: cue-flow 1.8s ease-in-out infinite;
}
@keyframes cue-flow{
  0%{ transform: scaleY(0.4); opacity: 0.4; }
  50%{ transform: scaleY(1); opacity: 1; }
  100%{ transform: scaleY(0.4); opacity: 0.4; }
}

/* ---------- Generic section ---------- */
.section{ padding: 120px 0; }
.section-alt{ background: var(--color-bg-alt); }

.eyebrow{
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 14px;
}
.eyebrow-center{ display: block; text-align: center; }
.eyebrow-light{ color: rgba(255,255,255,0.85); }

.section-title{
  font-size: clamp(30px, 4.4vw, 48px);
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.section-title-tight{ text-align: left; margin: 0; }
.section-title-light{ color: #fff; }

.section-sub{
  text-align: center;
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--color-text-secondary);
  font-size: 17px;
}

/* scroll-reveal */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Grouped reveal items cascade in slightly staggered rather than snapping
   into place all at once — small delays, same easing, reads as one
   coordinated motion instead of N independent ones. */
.steps .step:nth-child(2){ transition-delay: 0.08s; }
.steps .step:nth-child(3){ transition-delay: 0.16s; }
.broth-stats .broth-stat:nth-child(2){ transition-delay: 0.08s; }
.broth-stats .broth-stat:nth-child(3){ transition-delay: 0.16s; }
.broth-stats .broth-stat:nth-child(4){ transition-delay: 0.24s; }

/* ---------- Steps ---------- */
.steps{
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step{
  padding: 40px 30px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.step-number{
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-orange);
  background: var(--color-orange-tint);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.step h3{ font-size: 21px; margin-bottom: 10px; }
.step p{ color: var(--color-text-secondary); font-size: 15.5px; }

@media (max-width: 860px){
  .steps{ grid-template-columns: 1fr; }
}

/* ---------- Configurator ---------- */
.configurator{ margin-top: 56px; }

.config-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.config-tab{
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #fff;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.config-tab:hover{ border-color: var(--color-orange); color: var(--color-text); }
.config-tab.is-active{
  background: var(--color-text);
  border-color: var(--color-text);
  color: #fff;
}

.config-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

/* Shared entrance for ingredient-card / config-item grids. Each card sets
   its own animation-delay inline (js/configurator.js, js/builder.js) so
   they cascade in left-to-right/top-to-bottom instead of popping in as one
   block. */
@keyframes grid-item-in{
  from{ opacity: 0; transform: translateY(12px) scale(0.96); }
  to{ opacity: 1; transform: translateY(0) scale(1); }
}

.config-item{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 14px 18px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  animation: grid-item-in 0.5s var(--ease) both;
}
.config-item:hover{ transform: translateY(-4px) scale(1.02); box-shadow: 0 14px 28px rgba(0,0,0,0.08); }
.config-item:active{ transform: translateY(-1px) scale(0.99); }
.config-item.is-locked{
  opacity: 0.45;
  cursor: not-allowed;
}
.config-item.is-locked:hover{ transform: none; box-shadow: none; }
.config-item.is-selected{
  border-color: var(--color-orange);
  box-shadow: 0 0 0 2px var(--color-orange-tint) inset, 0 12px 24px rgba(232,84,30,0.14);
}

.config-item-avatar{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  overflow: hidden;
}
.config-item-avatar img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.config-item:hover .config-item-avatar img{ transform: scale(1.1); }

.config-item-name{ font-size: 13.5px; font-weight: 600; }

.config-item-check{
  position: absolute;
  top: 10px; right: 10px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--color-orange);
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.2s var(--ease);
}
.config-item.is-selected .config-item-check{ opacity: 1; transform: scale(1); }

/* single-select categories (broth / spice) render a radio-style dot instead of a check */
.config-item-check.is-radio{ border-radius: 50%; }

/* ---------- Zutaten-Galerie: reine Ansicht, nicht anklickbar ---------- */
.ingredient-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 14px 18px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  animation: grid-item-in 0.5s var(--ease) both;
}
.ingredient-card:hover{ transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0,0,0,0.06); }
.ingredient-card-avatar{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  overflow: hidden;
}
.ingredient-card-avatar img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.ingredient-card:hover .ingredient-card-avatar img{ transform: scale(1.1); }
.ingredient-card-name{ font-size: 13.5px; font-weight: 600; }

/* ---------- Schüssel-Baukasten (Wizard) ---------- */
.builder{
  margin-top: 88px;
  padding-top: 64px;
  border-top: 1px solid var(--color-border);
}
.builder-header{ text-align: center; margin-bottom: 40px; }
.builder-title{
  font-size: clamp(22px, 3vw, 30px);
  max-width: 600px;
  margin: 10px auto 0;
}

.builder-card{
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.builder-progress{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
}
.builder-dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--color-border);
  transition: all 0.25s var(--ease);
}
.builder-dot.is-active{ background: var(--color-orange); width: 22px; }
.builder-dot.is-done{ background: var(--color-orange-light); }

.builder-bowl{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}
.builder-bowl-shape{
  position: relative;
  width: 180px; height: 180px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  box-shadow: inset 0 6px 18px rgba(0,0,0,0.06);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.builder-bowl-shape.has-broth{
  border-color: transparent;
  box-shadow: inset 0 10px 26px rgba(0,0,0,0.25);
}
.builder-bowl-emojis{ position: absolute; inset: 0; }
.builder-emoji{
  --rot: 0deg;
  position: absolute;
  transform: translate(-50%, -50%) rotate(var(--rot));
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.18));
  animation: emoji-pop 0.35s var(--ease) backwards;
}
@keyframes emoji-pop{
  from{ transform: translate(-50%, -50%) rotate(var(--rot)) scale(0.3); opacity: 0; }
  to{ transform: translate(-50%, -50%) rotate(var(--rot)) scale(1); opacity: 1; }
}
.builder-emoji--icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.builder-emoji--icon svg{ width: 100%; height: 100%; display: block; }
.builder-bowl-caption{
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.builder-bowl--result .builder-bowl-shape{ width: 240px; height: 240px; }

#builder-step-title{
  text-align: center;
  font-size: 19px;
  margin-bottom: 6px;
}
#builder-step-hint{
  text-align: center;
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 26px;
}

.builder-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(126px, 1fr));
  gap: 14px;
  margin-bottom: 34px;
}

.builder-actions{ display: flex; gap: 12px; }
.builder-actions .btn{ flex: 1; }
.builder-actions .btn:disabled{ opacity: 0.4; cursor: not-allowed; }
.builder-actions .btn:disabled:hover{ border-color: var(--color-border); transform: none; }

.builder-result{ max-width: 600px; margin: 0 auto; text-align: center; }
.builder-result-title{
  font-size: clamp(26px, 3vw, 32px);
  margin-bottom: 30px;
}
.builder-result-list{
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.builder-result-list li{
  background: var(--color-bg-alt);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  animation: grid-item-in 0.4s var(--ease) both;
}
.builder-result-list .builder-result-empty{
  background: transparent;
  color: var(--color-text-secondary);
  font-weight: 500;
}
#builder-restart{ margin-top: 34px; }

@media (max-width: 640px){
  .builder-card{ padding: 30px 20px; }
}

/* ---------- Broth story ---------- */
.section-broth{
  background: radial-gradient(120% 140% at 50% 0%, var(--color-orange-light) 0%, var(--color-orange) 45%, var(--color-orange-deep) 100%);
  color: #fff;
  overflow: hidden;
}
.broth-copy{
  max-width: 640px;
  margin: 26px auto 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
}
.broth-stats{
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.broth-stat{
  text-align: center;
  padding: 26px 12px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
}
.broth-stat-value{
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  margin-bottom: 8px;
}
.broth-stat-label{
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
}
@media (max-width: 860px){
  .broth-stats{ grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Location ---------- */
.location-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.location-facts{
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.location-facts dt{
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
}
.location-facts dd{
  margin: 0;
  font-size: 19px;
  font-weight: 500;
}
.location-actions{ margin-top: 34px; }

.location-social{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.location-social a{
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.location-social a:hover{ background: var(--color-orange); border-color: var(--color-orange); color: #fff; }
.location-social svg{ width: 18px; height: 18px; }

.location-map{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 4 / 3;
}
.location-map iframe{ width: 100%; height: 100%; border: 0; }

.map-gate-inner{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 32px;
  background: var(--color-bg-alt);
}
.map-gate-text{
  font-size: 13.5px;
  color: var(--color-text-secondary);
  max-width: 320px;
  line-height: 1.6;
}
.map-gate-text a{ color: var(--color-orange); text-decoration: underline; text-underline-offset: 2px; }
.location-map.is-loaded .map-gate-inner{ display: none; }

@media (max-width: 860px){
  .location-grid{ grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Footer ---------- */
.site-footer{
  background: var(--color-text);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 28px;
}
.footer-inner{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-logo{ color: #fff; font-weight: 700; font-size: 16px; }
.footer-tagline{ margin-top: 8px; font-size: 14px; }
.footer-col h4{
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col p{ font-size: 14.5px; line-height: 1.7; }
.footer-social{ display: flex; flex-direction: column; gap: 10px; }
.footer-social a{ font-size: 14.5px; transition: color 0.2s var(--ease); }
.footer-social a:hover{ color: #fff; }
.footer-social-link{ display: flex; align-items: center; gap: 9px; }
.footer-social-icon{ display: inline-flex; width: 17px; height: 17px; flex-shrink: 0; }
.footer-social-icon svg{ width: 100%; height: 100%; }

.footer-legal{
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-legal-links{ display: flex; gap: 18px; }
.footer-legal-links a{ color: rgba(255,255,255,0.7); transition: color 0.2s var(--ease); }
.footer-legal-links a:hover{ color: #fff; }

@media (max-width: 700px){
  .footer-inner{ grid-template-columns: 1fr 1fr; }
}

/* ---------- Cookie-/Datenschutz-Hinweis ---------- */
.cookie-banner{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  padding: 18px 24px;
  background: rgba(29,29,31,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.12);
  animation: cookie-in 0.4s var(--ease);
}
@keyframes cookie-in{
  from{ transform: translateY(100%); }
  to{ transform: translateY(0); }
}
.cookie-banner-inner{
  max-width: var(--container-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.cookie-banner-inner p{
  flex: 1;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}
.cookie-banner-inner a{ color: var(--color-orange-light); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-inner .btn{ flex-shrink: 0; padding: 11px 22px; font-size: 14px; }

@media (max-width: 640px){
  .cookie-banner-inner{ flex-direction: column; align-items: stretch; gap: 14px; }
  .cookie-banner-inner .btn{ width: 100%; }
}
