/* ============================================================
   Velana – Ruhige Verlässlichkeit
   Palette & Grundwerte
   ============================================================ */
:root {
  --primary: #0E4A5A;
  --secondary: #3E7C8F;
  --accent: #2C6690;        /* Ruhiges Petrolblau – alle Wege zum Anfrageformular */
  --accent-dark: #1E4E72;
  --accent-soft: #E8F0F6;
  --accent-border: #C2D6E6;
  --accent-light: #A6C2DA;
  --bg: #FDFBF6;
  --surface: #F3ECDF;
  --text: #1E2A2E;
  --text-muted: #51646B;
  --success: #3E6B54;
  --error: #AF3E4D;         /* Fehler klar rot – nie grün, nie orange */
  --focus: #2C6690;
  --shadow: 0 8px 24px rgba(14, 74, 90, 0.10);
  --radius: 16px;
  --font-serif: 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

img, svg { display: inline-block; vertical-align: middle; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--primary);
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 1em; max-width: 65ch; }
ul, ol { margin: 0 0 1em; padding-left: 1.4em; }

a { color: var(--primary); }
p a, li a, address a, .faq-body a, .consent a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

address { font-style: normal; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  z-index: 200;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: underline;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; }

/* ============================================================
   Layout-Helfer
   ============================================================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.container-narrow { max-width: 820px; }

.section { padding: 4.5rem 0; scroll-margin-top: 90px; }
.section-surface { background: var(--surface); }

.center { text-align: center; margin-left: auto; margin-right: auto; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.section-intro {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.icon-inline { width: 1.25em; height: 1.25em; flex-shrink: 0; }
.icon-32 { width: 32px; height: 32px; }
.icon-48 { width: 48px; height: 48px; }
.icon-64 { width: 64px; height: 64px; }

/* Rundbogen-Oberkante – Signatur-Element „Berliner Altbau-Fenster" */
.arch-top {
  border-radius: 50% 50% var(--radius) var(--radius) / 64px 64px var(--radius) var(--radius);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  min-height: 48px;
  padding: 0.65rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .btn:hover { transform: translateY(-2px); }
  .btn:active { transform: translateY(0); }
  .btn-primary:hover {
    box-shadow:
      0 10px 24px -2px rgba(44, 102, 144, 0.42),
      inset 2px 2px 6px rgba(255, 255, 255, 0.30),
      inset -3px -3px 7px rgba(20, 70, 110, 0.30);
  }
}
.btn-lg { min-height: 56px; padding: 0.8rem 2rem; font-size: 1.1rem; }
.btn-block { width: 100%; }

/* Shiny-Button – Hellblau des Info-Kastens (--accent).
   Der überdimensionierte Verlauf wandert beim Hover diagonal → dezenter Glanz-Sweep. */
.btn-primary {
  color: #fff;
  border: none;
  background-color: var(--accent);
  background-image: linear-gradient(325deg, var(--accent) 0%, #5b9bd0 55%, var(--accent) 90%);
  background-size: 280% auto;
  background-position: 0% 90%;
  text-shadow: 0 1px 2px rgba(10, 45, 75, 0.45);
  box-shadow:
    0 6px 16px -2px rgba(44, 102, 144, 0.35),
    inset 2px 2px 6px rgba(255, 255, 255, 0.28),
    inset -3px -3px 7px rgba(20, 70, 110, 0.30);
  transition:
    background-position 0.7s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}
.btn-primary:hover,
.btn-primary:focus-visible { background-position: 100% 10%; }
.btn-primary:active { background-position: 100% 10%; }

.btn-secondary {
  background: var(--primary);
  color: #fff;
}
.btn-secondary:hover, .btn-secondary:active { background: #0a3844; }

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-ghost:hover, .btn-ghost:active { background: rgba(14, 74, 90, 0.08); }

/* Kompakte Kopfzeilen-Variante: eine Zeile, ausgewogenes Innenmaß */
.btn-header {
  min-height: 46px;
  padding: 0 1.25rem;
  font-size: 1rem;
  white-space: nowrap;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(14, 74, 90, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.01em;
  margin-right: auto;
}

.main-nav { display: flex; }
.nav-list {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 0.8rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  border-radius: 8px;
}
/* Unterstreichung wächst unter dem Menüpunkt, auf dem der Cursor steht */
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 10px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s ease;
}
.nav-list a:hover,
.nav-list a:focus-visible { color: var(--secondary); }
.nav-list a:hover::after,
.nav-list a:focus-visible::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .nav-list a::after { transition: none; }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0 0.6rem;
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  white-space: nowrap;
}
.header-phone:hover { color: var(--secondary); }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  min-width: 48px;
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 12px;
  color: var(--primary);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.nav-toggle-icon { display: inline-flex; flex-direction: column; gap: 4px; }
.nav-toggle-icon span {
  display: block;
  width: 20px; height: 2.5px;
  background: currentColor;
  border-radius: 2px;
}

@media (max-width: 960px) {
  /* Kopfzeile schlank halten: die horizontale Ein-Wort-Navigation bleibt,
     Telefon und CTA übernimmt die fixierte Bottom-Bar – nichts wirkt gedrängt */
  .header-phone { display: none; }
  .header-actions .btn-header { display: none; }
  .nav-list { gap: 0.1rem; }
  .nav-list a { padding: 0 0.5rem; }
}

@media (max-width: 767px) {
  .main-nav { order: 3; }
  .header-actions .btn-header { display: none; } /* Bottom-Bar übernimmt */
  .header-phone { display: none; }

  /* Ohne JavaScript: Menü sichtbar im Fluss, kein Burger-Button */
  .nav-toggle { display: none; }
  .nav-list {
    position: static;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .header-inner { flex-wrap: wrap; }

  /* Mit JavaScript: Burger-Menü mit ausklappbarer Liste */
  .js .nav-toggle { display: inline-flex; }
  .js .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid rgba(14, 74, 90, 0.12);
    box-shadow: var(--shadow);
    padding: 0.5rem 1.25rem 1rem;
  }
  .js .nav-list.open { display: flex; }
  .nav-list a { min-height: 52px; font-size: 1.1rem; }
}

/* ============================================================
   Hero – zentriert, darunter die animierte Velana-Szene
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg);
  padding-top: clamp(2.25rem, 5vw, 4.25rem);
}
/* Ruhiges Raster im Hintergrund – am Rand sanft ausgeblendet (HeroBlock-Motiv,
   in Velana-Petrol statt Grau). Nur transform-Animation, reduced-motion-fest. */
.hero::before {
  content: "";
  position: absolute;
  inset: -40px;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(14, 74, 90, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14, 74, 90, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(ellipse 82% 62% at 50% 32%, #000 38%, transparent 100%);
  mask-image: radial-gradient(ellipse 82% 62% at 50% 32%, #000 38%, transparent 100%);
  pointer-events: none;
}
.hero > .container,
.hero > .wave { position: relative; z-index: 1; }

/* ------------------------------------------------------------
   Schwebende Formen (HeroGeometric) – hell & warm statt dunkel.
   Ebene liegt zwischen Raster (-1) und Inhalt (1).
   ------------------------------------------------------------ */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  /* weiche Farbschleier wie das indigo/rose-Glühen der Vorlage, hier Petrol/Warm */
  background:
    radial-gradient(38% 44% at 12% 18%, rgba(46, 102, 144, 0.10), transparent 70%),
    radial-gradient(40% 42% at 88% 82%, rgba(203, 164, 92, 0.10), transparent 70%);
}
.hero-shape {
  position: absolute;
  opacity: 1;
  transform: rotate(var(--rot, 0deg));
}
.hero-shape-i { width: 100%; height: 100%; }
.hero-shape-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  border: 1px solid rgba(14, 74, 90, 0.10);
  box-shadow: 0 8px 32px rgba(14, 74, 90, 0.07);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
/* Größe · Position · Rotation · Farbe je Form */
.hero-shape-1 {
  --rot: 12deg;
  left: -8%; top: 12%;
  width: min(540px, 58vw); height: 118px;
}
.hero-shape-1 .hero-shape-fill { background: linear-gradient(to right, rgba(46, 102, 144, 0.18), rgba(46, 102, 144, 0)); }
.hero-shape-2 {
  --rot: -14deg;
  right: -6%; top: 30%;
  width: min(440px, 50vw); height: 108px;
}
.hero-shape-2 .hero-shape-fill { background: linear-gradient(to left, rgba(77, 110, 90, 0.16), rgba(77, 110, 90, 0)); }
.hero-shape-3 {
  --rot: -8deg;
  left: 5%; top: 47%;
  width: min(280px, 38vw); height: 76px;
}
.hero-shape-3 .hero-shape-fill { background: linear-gradient(to right, rgba(62, 124, 143, 0.18), rgba(62, 124, 143, 0)); }
.hero-shape-4 {
  --rot: 18deg;
  right: 14%; top: 8%;
  width: 190px; height: 54px;
}
.hero-shape-4 .hero-shape-fill { background: linear-gradient(to left, rgba(203, 164, 92, 0.20), rgba(203, 164, 92, 0)); }
.hero-shape-5 {
  --rot: -22deg;
  left: 19%; top: 4%;
  width: 140px; height: 40px;
}
.hero-shape-5 .hero-shape-fill { background: linear-gradient(to right, rgba(120, 170, 205, 0.22), rgba(120, 170, 205, 0)); }

@media (max-width: 767px) {
  /* auf kleinen Screens luftiger: die zwei kleinsten Formen weglassen */
  .hero-shape-4, .hero-shape-5 { display: none; }
  .hero-shape-1 { height: 92px; }
  .hero-shape-2 { height: 84px; }
}

/* Slogan mit edlem Farbverlauf (HeroGeometric-Titelmotiv), in dunklen,
   gut lesbaren Marken-Tönen – Fallback bleibt volltonig. */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1 {
    background-image: linear-gradient(100deg, var(--primary) 0%, var(--secondary) 52%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

.hero-inner {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* Großzügiger Rhythmus: Eyebrow · Slogan+Subline · Buttons – edel, nicht gedrängt */
.hero .eyebrow { margin-bottom: 1.75rem; }
.hero h1 { margin-bottom: 1rem; }
.hero-subline {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 30em;
  margin-bottom: 0;
}
.hero .cta-row { margin: 2.9rem 0 0; }
.kosten-hinweis {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  text-align: left;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 14px;
  padding: 0.85rem 1.15rem;
  margin: 1.1rem 0 0;
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}
.kosten-hinweis .icon-inline {
  width: 1.5em; height: 1.5em;
  color: var(--accent);
  margin-top: 0.1em;
}
.kosten-hinweis strong { color: var(--accent-dark); }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.6rem 0 0.75rem;
}
.micro-reassurance {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.micro-reassurance.center { text-align: center; max-width: none; margin-top: 0.75rem; }

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--surface);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.chip-check { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; }

.wave { line-height: 0; margin-top: 0; }
.wave svg { width: 100%; height: 52px; display: block; }

/* ------------------------------------------------------------
   HeroBlock-Motive: gestaffelter Auftritt, sanft driftendes Raster
   und ein federnder Scroll-Hinweis. Alles nur opacity/transform,
   respektiert prefers-reduced-motion.
   ------------------------------------------------------------ */
.scroll-cue {
  display: none;
  margin: 2.25rem auto 0;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--secondary);
  background: transparent;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.scroll-cue svg { width: 24px; height: 24px; }
.scroll-cue:hover { background: var(--surface); color: var(--primary); }

@media (prefers-reduced-motion: no-preference) {
  @keyframes hero-rise {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: none; }
  }
  @keyframes grid-drift {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-42px, -42px, 0); }
  }
  /* Formen: fallen leicht gedreht herein und schweben danach endlos sanft */
  @keyframes hero-shape-in {
    from { opacity: 0; transform: translateY(-150px) rotate(calc(var(--rot, 0deg) - 15deg)); }
    to   { opacity: 1; transform: translateY(0) rotate(var(--rot, 0deg)); }
  }
  @keyframes hero-shape-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(15px); }
  }
  @keyframes scroll-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(7px); }
  }
  @keyframes cue-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  .hero::before { animation: grid-drift 28s linear infinite alternate; }

  /* Schwebende Formen: eleganter Eintritt (2.4s) + endloses Schweben (12s) */
  .hero-shape {
    opacity: 0;
    animation: hero-shape-in 2.4s cubic-bezier(0.23, 0.86, 0.39, 0.96) both;
  }
  .hero-shape-i { animation: hero-shape-float 12s ease-in-out infinite; }
  .hero-shape-1 { animation-delay: 0.3s; }
  .hero-shape-2 { animation-delay: 0.5s; }
  .hero-shape-3 { animation-delay: 0.4s; }
  .hero-shape-4 { animation-delay: 0.6s; }
  .hero-shape-5 { animation-delay: 0.7s; }
  .hero-shape-2 .hero-shape-i { animation-duration: 13s; animation-delay: -3s; }
  .hero-shape-3 .hero-shape-i { animation-duration: 11s; animation-delay: -6s; }
  .hero-shape-4 .hero-shape-i { animation-duration: 14s; animation-delay: -2s; }
  .hero-shape-5 .hero-shape-i { animation-duration: 10.5s; animation-delay: -8s; }

  /* Slogan · Infotext · Buttons steigen anmutig herein (HeroGeometric-Timing) */
  .hero-inner > * {
    animation: hero-rise 0.9s cubic-bezier(0.25, 0.4, 0.25, 1) both;
  }
  /* Eyebrow behält den Schimmer UND steigt sanft ein */
  .hero-inner > .shimmer-text {
    animation:
      hero-rise 0.9s cubic-bezier(0.25, 0.4, 0.25, 1) both,
      shimmer-move 6s linear infinite;
  }
  .hero-inner > :nth-child(1) { animation-delay: 0.15s; }
  .hero-inner > :nth-child(2) { animation-delay: 0.32s; }
  .hero-inner > :nth-child(3) { animation-delay: 0.49s; }
  .hero-inner > :nth-child(4) { animation-delay: 0.66s; }
  .hero-inner > :nth-child(5) { animation-delay: 0.83s; }
  .hero-inner > :nth-child(6) { animation-delay: 1s; }
  .hero-inner > :nth-child(7) { animation-delay: 1.17s; }

  .hero-stage { animation: hero-rise 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 1s both; }

  .scroll-cue {
    display: flex;
    animation: cue-in 0.6s ease 1.15s both;
  }
  .scroll-cue svg { animation: scroll-bob 1.6s ease-in-out 1.6s infinite; }
}

/* ------------------------------------------------------------
   Animierte Szene: Velana-Auto → Mitarbeiterin → gemeinsamer Weg
   Eine 22s-Masterschleife, nur transform/opacity, Endlosschleife.
   ------------------------------------------------------------ */
.hero-stage {
  width: min(100%, 900px);
  margin: 2.5rem auto 0;
}
.hero-stage svg { width: 100%; height: auto; display: block; }
.scene-static { display: none; }

@keyframes v-bob {
  from { transform: translateY(0); }
  to   { transform: translateY(-2.5px); }
}
.anim-bob   { animation: v-bob 0.55s ease-in-out infinite alternate; }
.anim-bob-b { animation: v-bob 0.55s ease-in-out 0.28s infinite alternate; }

@keyframes v-car {
  0%, 4%    { transform: translateX(470px); animation-timing-function: cubic-bezier(0.30, 0.55, 0.35, 1); }
  16%       { transform: translateX(0); }
  77%       { transform: translateX(0); animation-timing-function: cubic-bezier(0.55, 0.06, 0.75, 0.35); }
  92%, 100% { transform: translateX(-760px); }
}
.anim-car { animation: v-car 22s linear infinite; }

@keyframes v-wheel {
  0%, 4%    { transform: rotate(0deg); animation-timing-function: cubic-bezier(0.30, 0.55, 0.35, 1); }
  16%       { transform: rotate(-900deg); }
  77%       { transform: rotate(-900deg); animation-timing-function: cubic-bezier(0.55, 0.06, 0.75, 0.35); }
  92%, 100% { transform: rotate(-2160deg); }
}
.anim-wheel { animation: v-wheel 22s linear infinite; }

@keyframes v-helfer {
  0%, 17%   { transform: translateX(0); opacity: 0; }
  19.5%     { transform: translateX(0); opacity: 1; }
  22%       { transform: translateX(0); animation-timing-function: ease-in-out; }
  45%       { transform: translateX(-272px); }
  52%       { transform: translateX(-272px); opacity: 1; }
  55%, 100% { transform: translateX(-272px); opacity: 0; }
}
.anim-helfer { animation: v-helfer 22s linear infinite; }

@keyframes v-dame {
  0%        { opacity: 0; }
  3%, 52%   { opacity: 1; }
  55%, 100% { opacity: 0; }
}
.anim-dame { animation: v-dame 22s linear infinite; }

@keyframes v-paar {
  0%, 52%   { transform: translateX(0); opacity: 0; }
  55%       { transform: translateX(-10px); opacity: 1; animation-timing-function: ease-in; }
  60%       { transform: translateX(-52px); animation-timing-function: linear; }
  82%, 100% { transform: translateX(-470px); opacity: 1; }
}
.anim-paar { animation: v-paar 22s linear infinite; }

@keyframes v-wolke {
  from { transform: translateX(0); }
  to   { transform: translateX(-90px); }
}
.anim-wolke { animation: v-wolke 52s ease-in-out infinite alternate; }

@media (prefers-reduced-motion: reduce) {
  .anim-car, .anim-wheel, .anim-helfer, .anim-dame,
  .anim-paar, .anim-wolke, .anim-bob, .anim-bob-b { animation: none; }
  .scene-live { display: none; }
  .scene-static { display: inline; }
}

@media (max-width: 860px) {
  .hero-stage { margin-top: 1.75rem; }
  .kosten-hinweis { font-size: 0.95rem; }
}

/* ============================================================
   Vertrauensleiste
   ============================================================ */
.trustbar { padding: 3.25rem 0; }
/* Info-Hinweis als zentrierter Auftakt der Vertrauensleiste */
.kosten-hinweis-center {
  margin: 0 auto 2.75rem;
  max-width: 680px;
}
.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trustbar-grid li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}
/* Chips und Rückversicherung schließen die Leiste luftig ab */
.trustbar .trust-chips { margin-top: 2.5rem; }
.trustbar .micro-reassurance { margin-top: 1.5rem; }
@media (max-width: 860px) {
  .trustbar-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Karten (Leistungen, Für wen, Referenzen)
   ============================================================ */
.cards-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .cards-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 2.25rem 1.75rem 1.75rem;
}
.card-onbg { background: var(--bg); }
.card-icon { margin-bottom: 1rem; }
.card p { color: var(--text); }
.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
}
.card-list li {
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 0.35em;
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 0.85em; height: 0.45em;
  border-left: 2.5px solid var(--success);
  border-bottom: 2.5px solid var(--success);
  transform: rotate(-45deg);
  border-radius: 1px;
}
.card-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.notice-box {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  flex-wrap: wrap;
  background: var(--surface);
  border-left: 4px solid var(--secondary);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 2.5rem auto 0;
  max-width: 46em;
  color: var(--text);
}
.notice-box .icon-inline { color: var(--secondary); margin-top: 0.2em; }

.section-cta {
  text-align: center;
  margin-top: 2.75rem;
}
.cta-alt { margin: 1rem auto 0; color: var(--text-muted); }

/* ============================================================
   Ablauf – 3 Schritte
   ============================================================ */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  list-style: none;
  counter-reset: none;
  margin: 3rem 0 0;
  padding: 0;
}
.steps-line {
  position: absolute;
  top: 28px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 0;
  pointer-events: none;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.5rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--surface);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.step p { margin-inline: auto; color: var(--text-muted); }

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-line { display: none; }
}

/* ============================================================
   Warum Velana
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
  list-style: none;
  margin: 2.75rem 0 0;
  padding: 0;
}
.why-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.why-item .icon-48 { flex-shrink: 0; }
.why-item h3 { margin-bottom: 0.3em; }
.why-item p { color: var(--text-muted); margin: 0; }
@media (max-width: 760px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Mission (dunkle Petrol-Sektion)
   ============================================================ */
.mission {
  background: var(--primary);
  color: var(--surface);
}
.mission-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3.5rem;
  align-items: center;
}
.mission-quote { position: relative; }
.big-quote {
  display: block;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 0.35em;
}
.mission blockquote {
  margin: 0;
}
.mission blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  line-height: 1.45;
  color: var(--surface);
  max-width: 30em;
}
.mission-source {
  margin-top: 1.25rem;
  color: rgba(243, 236, 223, 0.75);
  font-size: 1rem;
}
.mission-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mission-info li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(243, 236, 223, 0.25);
  font-weight: 500;
}
.mission-info li:last-child { border-bottom: none; }
.mission-info .icon-inline { margin-top: 0.25em; color: var(--surface); }
@media (max-width: 860px) { .mission-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ============================================================
   Referenzen
   ============================================================ */
.quote-card {
  background: #fff;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.quote-card .big-quote { font-size: 4rem; }
.quote-card blockquote { margin: 0 0 1rem; flex: 1; }
.quote-card blockquote p { margin: 0; }
.quote-card figcaption {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
}
.badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  line-height: 1.35;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top: 2.5rem; }
.faq-item {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-marker {
  position: relative;
  flex-shrink: 0;
  width: 24px; height: 24px;
}
.faq-marker::before, .faq-marker::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--secondary);
  border-radius: 2px;
}
.faq-marker::before { width: 18px; height: 2.5px; }
.faq-marker::after { width: 2.5px; height: 18px; }
.faq-item[open] .faq-marker::after { display: none; }
.faq-body { padding: 0 1.5rem 1.25rem; }
.faq-body p { margin: 0; color: var(--text); }

/* ============================================================
   Formulare
   ============================================================ */
.form-layout, .contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .form-layout, .contact-layout { grid-template-columns: 1fr; }
}

.form-panel {
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 3rem 2rem 2rem;
}
#kontakt .form-panel { background: var(--bg); }
@media (max-width: 640px) { .form-panel { padding: 2.5rem 1.25rem 1.5rem; } }

fieldset {
  border: none;
  margin: 0 0 2rem;
  padding: 0;
}
legend {
  font-weight: 700;
  font-size: 1.15rem;
  font-family: var(--font-serif);
  color: var(--primary);
  padding: 0;
  margin-bottom: 1rem;
}
.req-hint { font-family: var(--font-sans); font-weight: 400; font-size: 0.95rem; color: var(--text-muted); }
.req { color: var(--error); }
.optional { font-weight: 400; font-size: 0.95rem; color: var(--text-muted); }

.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1.5rem;
}
.field-wide { grid-column: 1 / -1; }
@media (max-width: 640px) { .field-grid { grid-template-columns: 1fr; } }

input[type="text"], input[type="tel"], input[type="email"], input[type="date"], input[type="number"],
select, textarea {
  width: 100%;
  font: inherit;
  font-size: 1.125rem;
  color: var(--text);
  background: #fff;
  border: 2px solid rgba(14, 74, 90, 0.30);
  border-radius: 12px;
  min-height: 56px;
  padding: 0.6rem 0.9rem;
}
textarea { min-height: 120px; resize: vertical; }
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.field-error {
  color: var(--error);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0.4rem 0 0;
}

/* Karten-Checkboxen & Radio-Karten */
.check-cards, .radio-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.radio-cards { grid-template-columns: repeat(auto-fill, minmax(172px, 1fr)); }
@media (max-width: 700px) {
  .check-cards { grid-template-columns: 1fr; }
}

.card-check { position: relative; display: block; }
.card-check input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
}
.cc-inner {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 56px;
  padding: 0.6rem 1rem;
  background: #fff;
  border: 2px solid rgba(14, 74, 90, 0.30);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.cc-inner .icon-32 { color: var(--secondary); flex-shrink: 0; }
.cc-compact { justify-content: center; text-align: center; white-space: nowrap; }
.card-check:hover .cc-inner { border-color: var(--secondary); }
.card-check input:checked + .cc-inner {
  border-color: var(--primary);
  background: rgba(14, 74, 90, 0.07);
  font-weight: 700;
  color: var(--primary);
}
.card-check input:checked + .cc-inner .icon-32 { color: var(--primary); }
.card-check input:focus-visible + .cc-inner {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* Datenschutz-Checkbox */
.consent-field { margin: 1.5rem 0; }
.consent {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  cursor: pointer;
}
.consent input {
  width: 26px; height: 26px;
  margin-top: 0.2em;
  flex-shrink: 0;
  accent-color: var(--primary);
}
.consent span { font-size: 1rem; }

/* Live-Zusammenfassung */
.live-summary {
  background: #fff;
  border-radius: var(--radius);
  border: 2px dashed rgba(62, 124, 143, 0.5);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.live-summary h3 { margin-bottom: 0.4em; font-size: 1.1rem; }
.live-summary p { margin: 0; color: var(--text-muted); font-size: 1rem; }

/* ============================================================
   Preisrechner (Selbstzahler)
   ============================================================ */
.section-cost { background: var(--accent-soft); }
.section-cost .form-panel { background: var(--bg); }
.calc-panel { max-width: 620px; margin-inline: auto; }
.field-hint { margin: 0.35rem 0 0; font-size: 0.9rem; color: var(--text-muted); line-height: 1.45; }

.calc-result {
  border-top: 1px solid var(--accent-border);
  margin-top: 0.5rem;
  padding-top: 1rem;
}
.calc-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 1.05rem;
}
.calc-line > span:last-child { font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 600; }
.calc-total {
  border-top: 1px solid var(--accent-border);
  margin-top: 0.35rem;
  padding-top: 0.85rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}
.calc-month {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.1rem;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 14px;
  padding: 1rem 1.25rem;
}
.calc-month > span { font-weight: 600; color: var(--text); }
.calc-month strong {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--accent-dark);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.calc-disclaimer { margin: 1.1rem 0 0; font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.calc-cta { margin-top: 1.5rem; margin-bottom: 0; }
#pr-berechnen { margin-top: 0.25rem; }
.pr-consent { margin-top: 0.6rem; }
.calc-status {
  margin: 1rem 0 0;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  background: var(--accent-soft);
  color: var(--text);
}
.calc-status.is-error {
  background: #FBEAEC;
  color: var(--error);
}
.calc-distance span:last-child { color: var(--secondary); }
.card-link { margin: 0.6rem 0 0; font-weight: 600; }
.card-link a { color: var(--accent); text-decoration: none; }
.card-link a:hover { text-decoration: underline; }
@media (max-width: 480px) {
  .calc-month { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
}

/* Erfolgsmeldung */
.form-success { text-align: center; padding: 1.5rem 0; }
.form-success .icon-64 { margin-bottom: 1rem; }
.form-success p { margin-inline: auto; }
.success-summary {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.25rem auto;
  text-align: left;
  max-width: 34em;
}
#kontakt .success-summary { background: var(--surface); }
.success-summary p { margin: 0 0 0.4em; font-size: 1rem; }
.success-summary p:last-child { margin-bottom: 0; }
.success-summary strong { color: var(--primary); }

/* Formular-Aside */
.form-aside { display: flex; flex-direction: column; gap: 1.5rem; }
.phone-card {
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 2.5rem 1.75rem 1.75rem;
  text-align: center;
}
.phone-card-label {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.phone-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  min-height: 56px;
  padding: 0.4rem 1rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  width: 100%;
}
.phone-card-number:hover { background: rgba(14, 74, 90, 0.08); }
.phone-card-hours { color: var(--text-muted); font-size: 0.95rem; margin: 0.75rem 0 0; }
.trust-chips-stack { flex-direction: column; align-items: stretch; }
.trust-chips-stack .chip { background: var(--bg); border: 1px solid rgba(14, 74, 90, 0.15); }
#buchung .trust-chips-stack .chip { background: var(--surface); border: none; }

/* Kontaktblock */
.contact-block {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}
.contact-block h3 { font-size: 1.5rem; }
.contact-block p {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.contact-block .icon-inline { color: var(--secondary); margin-top: 0.25em; }
.contact-hours { color: var(--text-muted); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--primary);
  color: var(--surface);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--surface);
  margin-bottom: 0.5rem;
}
.footer-brand p { color: rgba(243, 236, 223, 0.85); }
.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(243, 236, 223, 0.7);
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.35rem; }
.site-footer a { color: var(--surface); text-decoration: underline; text-underline-offset: 2px; }
.site-footer a.btn { text-decoration: none; margin-top: 0.5rem; }
.site-footer address { color: rgba(243, 236, 223, 0.85); line-height: 1.8; }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(243, 236, 223, 0.25);
  font-size: 0.95rem;
  color: rgba(243, 236, 223, 0.75);
}
.footer-bottom p { max-width: none; }

/* ============================================================
   Mobile Bottom-Bar
   ============================================================ */
.bottom-bar { display: none; }
@media (max-width: 960px) {
  .bottom-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    padding: 0.6rem 0.9rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
    background: var(--bg);
    border-top: 1px solid rgba(14, 74, 90, 0.15);
    box-shadow: 0 -8px 24px rgba(14, 74, 90, 0.12);
  }
  .bottom-bar .btn { min-height: 56px; }
  body { padding-bottom: 88px; } /* Platz für die Bottom-Bar */
}

/* ============================================================
   Cookie-/Datenschutz-Hinweis
   ============================================================ */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: var(--bg);
  border-top: 1px solid rgba(14, 74, 90, 0.15);
  box-shadow: 0 -10px 30px rgba(14, 74, 90, 0.16);
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom, 0px));
}
.cookie-inner {
  max-width: 1160px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.cookie-text { flex: 1 1 380px; }
.cookie-title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.15rem;
  margin: 0 0 0.3rem;
}
.cookie-text p:last-child {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 78ch;
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex: 0 0 auto;
}
.cookie-actions .btn { min-height: 48px; }
@media (max-width: 620px) {
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1 1 0; }
}

/* ============================================================
   Schimmer – dezenter Premium-Glanz
   Fallback-Farbe zuerst, transparenter Glanz nur wenn background-clip:text
   unterstützt wird (sonst bliebe Text unsichtbar). Respektiert reduced-motion.
   ============================================================ */
@keyframes shimmer-move {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Auf hellem Grund: dunkle, gut lesbare Basis, sanft wandernder Salbei-Glanz */
.shimmer-text { color: var(--primary); }
/* Auf dunklem Grund: helle Basis, heller Glanz */
.shimmer-text-light { color: var(--surface); }

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  @media (prefers-reduced-motion: no-preference) {
    .shimmer-text,
    .shimmer-text-light {
      background-size: 200% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      animation: shimmer-move 6s linear infinite;
    }
    .shimmer-text {
      background-image: linear-gradient(110deg,
        var(--primary) 0%, var(--primary) 42%,
        var(--secondary) 50%,
        var(--primary) 58%, var(--primary) 100%);
    }
    .shimmer-text-light {
      background-image: linear-gradient(110deg,
        var(--surface) 0%, var(--surface) 42%,
        #ffffff 50%,
        var(--surface) 58%, var(--surface) 100%);
      animation-duration: 5.5s;
    }
  }
}

/* Der Glanz entsteht jetzt aus dem wandernden Verlauf des Shiny-Buttons
   (siehe .btn-primary oben) – kein zusätzlicher Sheen-Overlay nötig. */

/* ============================================================
   Scroll-Reveal (dezent, respektiert reduced motion)
   ============================================================ */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .js .reveal.revealed {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Unterseiten (Impressum, Datenschutz)
   ============================================================ */
.legal-page .section { padding-top: 3rem; }
.legal-page h2 { font-size: 1.5rem; margin-top: 2em; }
.legal-page h3 { margin-top: 1.5em; }
.placeholder-mark {
  background: var(--surface);
  border-radius: 6px;
  padding: 0.1em 0.4em;
  font-weight: 600;
  color: var(--accent-dark);
}

/* ============================================================
   Druck
   ============================================================ */
@media print {
  .site-header, .bottom-bar, .btn, .wave, .cookie-consent { display: none !important; }
  body { padding-bottom: 0; }
}
