/* ==========================================================================
   Gelateria La Porta – Stylesheet
   Lokale Schriften (DSGVO), Mobile-First, Premium-Look
   ========================================================================== */

/* -------- Lokale Schriften (self-hosted, keine externen CDNs) -------- */
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('assets/fonts/karla-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('assets/fonts/karla-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('assets/fonts/playfair-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('assets/fonts/playfair-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('assets/fonts/caveat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* -------- Design-Tokens -------- */
:root {
  /* Farbwelt: Panna-Creme, Espresso, Pistazie, Amarena */
  --panna: #FBF6EC;
  --panna-2: #F4EBDA;
  --card: #FFFFFF;
  --ink: #2E1E15;
  --ink-soft: #6B5647;
  --pistachio: #4C7A34;
  --pistachio-deep: #3C6128;
  --pistachio-soft: #DCE9C9;
  --amarena: #C33C58;
  --amarena-deep: #A62E48;
  --caramel: #D89A4E;
  --slate: #2C2723;
  --line: rgba(46, 30, 21, .12);
  --line-strong: rgba(46, 30, 21, .2);
  --wowobot: #22b8e0;

  /* Typografie */
  --f-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --f-body: 'Karla', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --f-hand: 'Caveat', var(--f-body);

  /* Radius & Schatten */
  --r-xl: 32px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(46, 30, 21, .06);
  --shadow-md: 0 10px 30px -12px rgba(46, 30, 21, .22);
  --shadow-lg: 0 30px 60px -22px rgba(46, 30, 21, .3);

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2rem);
  --header-h: 72px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--panna);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--pistachio); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1200;
  background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* -------- Typografie-Skala -------- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 700; line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 6vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 4.2vw, 2.9rem); }
h3 { font-size: 1.3rem; }
h1 em { font-style: italic; color: var(--pistachio); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--pistachio-deep); margin-bottom: 1rem;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amarena); flex: none; }
.muted { color: var(--ink-soft); font-weight: 400; }

/* -------- Buttons -------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--btn-bg); color: var(--btn-fg);
  padding: .8rem 1.5rem; border: 2px solid transparent; border-radius: 999px;
  font-weight: 600; font-size: 1rem; min-height: 48px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-primary { --btn-bg: var(--amarena); }
.btn-primary:hover { background: var(--amarena-deep); }
.btn-ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: var(--line-strong); box-shadow: none;
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(46,30,21,.04); }
.btn-lg { padding: 1rem 1.9rem; min-height: 56px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn .ico { width: 20px; height: 20px; fill: currentColor; }

/* -------- Header -------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: color-mix(in srgb, var(--panna) 82%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand-mark svg { width: 40px; height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--f-display); font-weight: 700; font-size: 1.18rem; color: var(--ink); }
.brand-sub { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }

.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav-list { display: flex; gap: 1.6rem; }
.nav-list a {
  font-weight: 500; color: var(--ink); position: relative; padding: .35rem 0;
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--amarena); transition: width .25s var(--ease);
}
.nav-list a:hover::after, .nav-list a:focus-visible::after { width: 100%; }
.nav-cta .ico { width: 18px; height: 18px; }

.burger {
  display: none; width: 48px; height: 48px; border: 0; background: transparent;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-scrim {
  position: fixed; inset: 0; z-index: 900; background: rgba(44, 30, 21, .5);
  opacity: 0; transition: opacity .3s var(--ease);
}
.nav-scrim.show { opacity: 1; }

/* -------- Hero -------- */
.hero { padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem); position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 82% 12%, rgba(220, 233, 201, .55), transparent 70%),
    radial-gradient(50% 50% at 8% 88%, rgba(243, 198, 210, .4), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-copy { max-width: 40ch; }
.hero-lead { font-size: 1.15rem; color: var(--ink-soft); margin-top: 1.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-trust { display: flex; align-items: center; gap: .8rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero-trust p { font-size: .98rem; color: var(--ink-soft); }
.stars { color: var(--caramel); letter-spacing: 2px; font-size: 1.1rem; }

/* Hero-Visual */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 340px; }
.scoop-card {
  width: min(340px, 78%); aspect-ratio: 4 / 5; background: var(--card);
  border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
  display: grid; place-items: center; padding: 2rem;
  border: 1px solid var(--line);
  background-image: radial-gradient(circle at 30% 20%, rgba(220,233,201,.5), transparent 60%);
}
.gelato { width: 62%; filter: drop-shadow(0 14px 18px rgba(46,30,21,.14)); }
.chip {
  position: absolute; font-family: var(--f-hand); font-size: 1.35rem; font-weight: 700;
  background: var(--card); color: var(--ink); padding: .35rem 1rem; border-radius: 999px;
  box-shadow: var(--shadow-md); border-left: 10px solid var(--c);
}
.chip-1 { top: 6%; left: -2%; }
.chip-2 { bottom: 16%; right: -4%; }
.chip-3 { bottom: -2%; left: 12%; }

/* -------- Trustbar -------- */
.trustbar { background: var(--ink); color: var(--panna); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.6rem 0; }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: .4rem; }
.trust-item + .trust-item { border-left: 1px solid rgba(251, 246, 236, .16); }
.t-num { font-family: var(--f-display); font-size: 1.5rem; font-weight: 700; color: var(--pistachio-soft); }
.t-lab { font-size: .86rem; opacity: .82; }

/* -------- Sektionen allgemein -------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-alt { background: var(--panna-2); }
.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-intro { font-size: 1.12rem; color: var(--ink-soft); margin-top: .9rem; }

/* -------- Angebot-Karten -------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.9rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-ico {
  display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  background: var(--pistachio-soft); margin-bottom: 1.1rem;
}
.card-ico svg { width: 30px; height: 30px; fill: none; stroke: var(--pistachio-deep); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* -------- Sorten (Signature: Schiefertafeln) -------- */
.flavors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.flavor {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.1rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.flavor:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.slate {
  position: relative; border-radius: var(--r-md); background: var(--slate);
  aspect-ratio: 16 / 10; display: grid; place-items: center; overflow: hidden;
  border: 6px solid #7a5a3c;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.06);
}
.slate::before {
  /* Gelato-Farbtupfer als Bezug zur Sorte */
  content: ""; position: absolute; left: -14%; bottom: -30%; width: 70%; height: 90%;
  background: var(--gelato); border-radius: 50%; opacity: .9; filter: blur(2px);
}
.slate::after {
  content: ""; position: absolute; right: -10%; top: -34%; width: 55%; height: 80%;
  background: var(--gelato); border-radius: 50%; opacity: .5;
}
.flavor-name {
  position: relative; z-index: 1; font-family: var(--f-hand); font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.1rem); color: #fdfbf5; letter-spacing: .01em;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}
.flavor-desc { color: var(--ink-soft); font-size: .96rem; padding: .9rem .5rem .3rem; }
.slider-hint { display: none; text-align: center; color: var(--ink-soft); font-size: .9rem; margin-top: 1.2rem; }

/* -------- Über uns -------- */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-copy p { color: var(--ink-soft); margin-top: 1rem; }
.about-copy p:first-of-type { margin-top: 1.4rem; }
.ticks { margin-top: 1.5rem; display: grid; gap: .7rem; }
.ticks li { position: relative; padding-left: 2rem; font-weight: 500; color: var(--ink); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px;
  border-radius: 50%; background: var(--pistachio-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12l4 4 10-10' fill='none' stroke='%233C6128' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 16px; background-repeat: no-repeat; background-position: center;
}

/* Storefront-Illustration */
.about-visual { display: grid; place-items: center; }
.storefront {
  width: min(420px, 100%); aspect-ratio: 1 / 1; border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(180deg, #EAF2E1, #F6ECDA); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); display: flex; flex-direction: column;
}
.awning { display: flex; height: 26%; }
.awning span { flex: 1; }
.awning span:nth-child(odd) { background: var(--amarena); }
.awning span:nth-child(even) { background: #f7f1e6; }
.window {
  flex: 1; margin: 8%; border-radius: var(--r-lg); background: rgba(201, 227, 234, .5);
  border: 3px solid rgba(46,30,21,.14); display: grid; place-content: center; text-align: center; gap: .2rem;
  box-shadow: inset 0 0 30px rgba(255,255,255,.5);
}
.shop-script { font-family: var(--f-hand); font-weight: 700; font-size: clamp(2.4rem, 8vw, 3.4rem); color: #2f93b6; line-height: 1; }
.shop-tag { font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }

/* -------- Vorteile -------- */
.perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.perk { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem 1.5rem; box-shadow: var(--shadow-sm); }
.perk-ico { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--amarena); margin-bottom: 1rem; }
.perk-ico svg { width: 28px; height: 28px; fill: #fff; }
.perk h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.perk p { color: var(--ink-soft); font-size: .95rem; }

/* -------- Bewertungen -------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.quote {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); position: relative;
}
.quote::before {
  content: "\201C"; position: absolute; top: .3rem; right: 1.2rem;
  font-family: var(--f-display); font-size: 4.5rem; color: var(--pistachio-soft); line-height: 1;
}
.quote blockquote { font-size: 1.08rem; margin: .8rem 0 1rem; }
.quote figcaption { font-weight: 600; color: var(--pistachio-deep); }

/* -------- Standort -------- */
.standort-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.info-block { margin-top: 1.6rem; }
.info-block h3 { font-family: var(--f-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--pistachio-deep); margin-bottom: .35rem; }
.info-block p { color: var(--ink); }
.hours { width: 100%; border-collapse: collapse; margin-top: .3rem; }
.hours th, .hours td { text-align: left; padding: .55rem .2rem; border-bottom: 1px solid var(--line); font-weight: 500; }
.hours th { color: var(--ink-soft); font-weight: 500; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours .tbd { color: var(--ink-soft); font-style: italic; }
.hours .is-open th, .hours .is-open td { color: var(--pistachio-deep); font-weight: 700; }
.hours-note { font-size: .88rem; color: var(--ink-soft); margin-top: .7rem; }
.standort-info .btn { margin-top: 1.7rem; }

.map-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.map-svg { width: 100%; height: 100%; display: block; }
.map-pin-label {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem;
  background: color-mix(in srgb, var(--card) 92%, transparent);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-radius: var(--r-md); padding: .8rem 1.1rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.map-pin-label strong { color: var(--ink); }
.map-pin-label span { font-size: .9rem; color: var(--ink-soft); }

/* -------- Kontakt -------- */
.kontakt-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.kontakt-intro p { color: var(--ink-soft); margin-top: 1rem; }
.contact-list { margin-top: 1.6rem; display: grid; gap: 1rem; }
.contact-list li { display: flex; align-items: center; gap: .9rem; font-weight: 500; }
.c-ico { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--pistachio-soft); flex: none; }
.c-ico svg { width: 22px; height: 22px; fill: none; stroke: var(--pistachio-deep); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-list a:hover { color: var(--amarena); }

.kontakt-form {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: .4rem; }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink); background: var(--panna);
  border: 1.5px solid var(--line-strong); border-radius: var(--r-sm);
  padding: .8rem .95rem; min-height: 48px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--pistachio); box-shadow: 0 0 0 3px rgba(76, 122, 52, .18);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--amarena); }
.req { color: var(--amarena); }
.err { display: block; color: var(--amarena-deep); font-size: .85rem; min-height: 1em; margin-top: .3rem; }
.err[data-for="consent"] { margin-top: -.4rem; margin-bottom: .8rem; }

.field-check { display: flex; align-items: flex-start; gap: .7rem; }
.field-check input { width: 22px; height: 22px; min-height: 22px; flex: none; margin-top: 2px; accent-color: var(--pistachio); }
.field-check label { font-weight: 400; font-size: .92rem; color: var(--ink-soft); margin-bottom: 0; }
.field-check a { color: var(--pistachio-deep); text-decoration: underline; }

.form-status { margin-top: 1rem; font-weight: 600; min-height: 1.4em; }
.form-status.ok { color: var(--pistachio-deep); }
.form-status.bad { color: var(--amarena-deep); }
.form-hint { font-size: .84rem; color: var(--ink-soft); margin-top: .8rem; }

/* -------- Footer -------- */
.site-footer { background: var(--ink); color: var(--panna); margin-top: clamp(2rem, 6vw, 4rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding: clamp(2.5rem, 5vw, 4rem) var(--gutter); }
.footer-brand .brand-name { color: var(--panna); font-size: 1.3rem; }
.footer-brand p { color: rgba(251, 246, 236, .7); margin-top: .8rem; font-size: .96rem; max-width: 34ch; }
.socials { display: flex; gap: .7rem; margin-top: 1.2rem; }
.social {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(251, 246, 236, .1); color: var(--panna); transition: background .2s var(--ease), transform .2s var(--ease);
}
.social:hover { background: var(--amarena); transform: translateY(-2px); }
.social svg { width: 22px; height: 22px; fill: currentColor; }
.footer-nav h4, .footer-contact h4 { font-family: var(--f-body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--caramel); margin-bottom: 1rem; }
.footer-nav ul { display: grid; gap: .6rem; }
.footer-nav a { color: rgba(251, 246, 236, .82); }
.footer-nav a:hover { color: var(--panna); }
.footer-contact address { font-style: normal; color: rgba(251, 246, 236, .82); line-height: 1.9; }
.footer-contact a:hover { color: var(--panna); }

.footer-bottom { border-top: 1px solid rgba(251, 246, 236, .16); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.3rem var(--gutter); flex-wrap: wrap; }
.copyright { font-size: .88rem; color: rgba(251, 246, 236, .6); }
.powered { font-size: .9rem; color: rgba(251, 246, 236, .7); }
.powered a { color: var(--wowobot); font-weight: 700; }
.powered a:hover { text-decoration: underline; }

/* -------- Rechtliche Seiten -------- */
.legal { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem); }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .6rem; }
.legal .lead { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 2.4rem; }
.legal h2 { font-size: 1.5rem; margin: 2.4rem 0 .8rem; }
.legal h3 { font-size: 1.1rem; margin: 1.6rem 0 .4rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal p { margin-bottom: .9rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; display: grid; gap: .4rem; }
.legal a { color: var(--pistachio-deep); text-decoration: underline; }
.legal .note {
  background: var(--panna-2); border: 1px dashed var(--line-strong); border-radius: var(--r-md);
  padding: 1rem 1.2rem; color: var(--ink); margin: 1rem 0 2rem;
}
.legal .note strong { color: var(--amarena-deep); }
.legal .placeholder { color: var(--amarena-deep); font-weight: 600; }
.back-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 2.5rem; font-weight: 600; color: var(--ink); }
.back-link:hover { color: var(--amarena); }

/* -------- Scroll-Reveal -------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .cards, .perks { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 1rem; }
  .trust-item:nth-child(2) { border-left: 0; }
  .flavors { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  /* Mobile Navigation */
  .nav {
    /* Hinweis: .site-header nutzt backdrop-filter und bildet damit den
       Containing-Block für dieses fixed-Element – daher explizite dvh-Höhe
       statt inset:bottom, damit das Panel die volle Viewporthöhe füllt. */
    position: fixed; top: 0; right: 0; left: auto; bottom: auto;
    width: min(320px, 84vw); height: 100vh; height: 100dvh; z-index: 1000;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    background: var(--panna); padding: calc(var(--header-h) + 1.2rem) 1.6rem 2rem;
    box-shadow: var(--shadow-lg); transform: translateX(100%);
    transition: transform .32s var(--ease); overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-list li { border-bottom: 1px solid var(--line); }
  .nav-list a { display: block; padding: 1rem 0; font-size: 1.1rem; }
  .nav-list a::after { display: none; }
  .nav-cta { margin-top: 1.4rem; }
  .burger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .hero-visual { min-height: 300px; order: -1; }
  .about-grid, .standort-grid, .kontakt-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .cards, .perks, .quotes { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  /* Sorten als horizontaler Slider – kein endloses Scrollen */
  .flavors {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 78%;
    gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 1rem; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
    scrollbar-width: none;
  }
  .flavors::-webkit-scrollbar { display: none; }
  .flavor { scroll-snap-align: center; }
  .slider-hint { display: block; }

  .hero-actions .btn { flex: 1 1 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .chip { font-size: 1.15rem; }
  .chip-2 { right: 0; }
}

/* -------- Reduced Motion -------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
