/* =====================================================
   SANIERUNGSEXPERTE BÖHMER — Design System 2026
   ===================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand — Sanierungsrot */
  --primary: #E22B1C;
  --primary-dark: #B92318;
  --primary-soft: #FFECEA;
  --primary-ghost: #FFF5F4;

  /* Ink (Anthrazit) */
  --ink: #222222;
  --ink-700: #333333;
  --ink-500: #666666;
  --ink-300: #888888;

  /* Surfaces */
  --bone: #F9F9F9;
  --paper: #FFFFFF;
  --line: #E8E8E8;
  --line-strong: #D8D8D8;

  /* Semantic */
  --success: #16A34A;
  --warning: #D97706;

  /* Type — Default System-Stack. Google-Fonts werden erst nach Consent injiziert. */
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI Variable", "Segoe UI", system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI Variable", "Segoe UI", system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Spacing scale (8pt grid) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* Shadows — layered, soft */
  --shadow-xs: 0 1px 2px rgba(17, 17, 17, 0.04);
  --shadow-sm: 0 1px 3px rgba(17, 17, 17, 0.06), 0 1px 2px rgba(17, 17, 17, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(17, 17, 17, 0.05), 0 10px 24px -8px rgba(17, 17, 17, 0.10);
  --shadow-lg: 0 20px 50px -12px rgba(17, 17, 17, 0.18);
  --shadow-glow: 0 12px 32px -8px rgba(226, 43, 28, 0.35);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container: 1280px;
  --container-narrow: 960px;
  --header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--primary); color: white; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.h-display {
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.h-1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; letter-spacing: -0.03em; }
.h-2 { font-size: clamp(1.625rem, 3vw, 2.25rem); font-weight: 700; letter-spacing: -0.025em; }
.h-3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; }

.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--ink-500);
  line-height: 1.55;
  max-width: 62ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.container--narrow { max-width: var(--container-narrow); }

.section { padding: clamp(var(--s-8), 10vw, var(--s-10)) 0; }
.section--tight { padding: clamp(var(--s-7), 8vw, var(--s-9)) 0; }
.section--bone { background: var(--bone); }
.section--ink { background: var(--ink); color: white; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: white; }

.section-head {
  max-width: 720px;
  margin-bottom: var(--s-8);
}

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

.section-head .lead { margin-top: var(--s-4); }
.section-head h2 { margin-top: var(--s-4); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(226, 43, 28, 0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn--white {
  background: white;
  color: var(--ink);
}
.btn--white:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn--lg { padding: 18px 32px; font-size: 1rem; }

.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand img {
  height: 44px;
  width: auto;
  transition: transform 0.3s var(--ease);
}

.brand:hover img { transform: scale(1.04); }

.nav {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.nav .nav-link,
.nav a {
  position: relative;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-700);
  border-radius: var(--r-sm);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav a:hover, .nav .nav-link:hover { color: var(--primary); background: var(--primary-ghost); }

.nav a.is-active, .nav .nav-link.is-active {
  color: var(--primary);
  font-weight: 600;
}

/* Dropdown */
.nav-item--has-dropdown {
  position: relative;
}

.nav-item--has-dropdown .nav-link svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s var(--ease);
}

.nav-item--has-dropdown.is-open .nav-link svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: -8px;
  min-width: 320px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-3);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 50;
}

/* Invisible bridge so hover doesn't drop when crossing the gap */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-item--has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  text-align: left;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}

.nav-dropdown a:hover {
  background: var(--primary-ghost);
}

.nav-dropdown .dd-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-dropdown .dd-icon svg { width: 20px; height: 20px; }

.nav-dropdown .dd-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--ink);
  display: block;
  line-height: 1.3;
}

.nav-dropdown .dd-sub {
  font-size: 0.8rem;
  color: var(--ink-500);
  display: block;
  margin-top: 2px;
  line-height: 1.4;
}

.nav-dropdown-foot {
  margin-top: var(--s-2);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: var(--s-4);
  padding-right: var(--s-4);
}

.nav-dropdown-foot a {
  padding: 6px 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: color 0.2s var(--ease);
}

.header-phone:hover { color: var(--primary); }

.header-phone svg { width: 16px; height: 16px; color: var(--primary); }

/* Burger */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.burger span::before, .burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }

.burger.is-open span { background: transparent; }
.burger.is-open span::before { transform: translateY(7px) rotate(45deg); }
.burger.is-open span::after { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
@media (max-width: 960px) {
  .nav, .header-cta { display: none; }
  .burger { display: inline-flex; }

  .mobile-menu {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 99;
    padding: var(--s-6) var(--s-5);
    display: flex;
    flex-direction: column;
    gap: var(--s-2);
    overflow-y: auto;
  }

  .mobile-menu.is-open { transform: translateX(0); }

  .mobile-menu a {
    padding: var(--s-4);
    font-size: 1.25rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu a.is-active { color: var(--primary); }

  .mobile-menu .btn { margin-top: var(--s-5); }
}

@media (min-width: 961px) {
  .mobile-menu { display: none; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: var(--s-9) 0 var(--s-6);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-7);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 48px;
  filter: brightness(0) invert(1);
  margin-bottom: var(--s-4);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  margin-bottom: var(--s-4);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--primary); }

.footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--s-3);
}
.footer-col .contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--primary); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-4);
  padding-top: var(--s-6);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .footer-brand { grid-column: 1 / -1; }
}

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 920px);
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 2200ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 9s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
  will-change: opacity, transform;
}
.hero-video.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Hide iOS Safari's tap-to-play overlay (when autoplay fails) */
.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
.hero-video::-webkit-media-controls {
  display: none !important;
}
.hero-video::-webkit-media-controls-overlay-play-button {
  display: none !important;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 35%, rgba(0, 0, 0, 0.78) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: calc(clamp(620px, 92vh, 920px) - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--s-7);
  padding-bottom: clamp(160px, 22vh, 240px);
}

.hero h1 {
  color: white;
  max-width: 18ch;
  margin-top: var(--s-4);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.85);
  margin-top: var(--s-5);
  max-width: 56ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-6);
}

.hero .eyebrow {
  color: white;
  opacity: 0.95;
}
.hero .eyebrow::before { background: var(--primary); width: 36px; height: 2px; }

.hero-meta {
  position: absolute;
  bottom: var(--s-7);
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s-5);
  /* container class already provides horizontal padding via var(--s-5) */
}

.hero-trust {
  display: flex;
  gap: var(--s-6);
  flex-wrap: wrap;
}

.hero-trust .item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: white;
}

.hero-trust .item strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-trust .item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-dots {
  display: flex;
  gap: var(--s-2);
  align-items: center;
}

.hero-dots button {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
}
.hero-dots button.is-active {
  background: var(--primary);
  width: 56px;
}

@media (max-width: 720px) {
  .hero-meta { flex-direction: column; align-items: flex-start; bottom: var(--s-5); }
  .hero-trust { gap: var(--s-4); }
  .hero-trust .item strong { font-size: 1.15rem; }
}

/* ---------- USP Bar ---------- */
.usp-bar {
  background: var(--primary);
  color: white;
  padding: var(--s-4) 0;
  overflow: hidden;
}
.usp-track {
  display: flex;
  gap: var(--s-7);
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  animation: scroll-x 35s linear infinite;
}
.usp-track span { display: inline-flex; align-items: center; gap: var(--s-3); }
.usp-track span::before { content: "●"; opacity: 0.4; font-size: 0.7rem; }

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

/* ---------- Services Grid (Bento) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-5);
}

.service-card {
  grid-column: span 2;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card--feature {
  grid-column: span 3;
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.service-card--feature h3 { color: white; }
.service-card--feature p { color: rgba(255, 255, 255, 0.78); }

.service-card--accent {
  grid-column: span 3;
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.service-card--accent h3 { color: white; }
.service-card--accent p { color: rgba(255, 255, 255, 0.92); }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card--feature .service-icon { background: rgba(255, 255, 255, 0.1); color: white; }
.service-card--accent .service-icon { background: rgba(255, 255, 255, 0.18); color: white; }

.service-icon svg { width: 26px; height: 26px; }

.service-card h3 { font-size: 1.35rem; }

.service-card p {
  color: var(--ink-500);
  font-size: 0.97rem;
  line-height: 1.6;
}

.service-card .more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  transition: gap 0.25s var(--ease);
}
.service-card--feature .more, .service-card--accent .more { color: white; }
.service-card:hover .more { gap: 12px; }

@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-card--feature, .service-card--accent { grid-column: span 1; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---------- Vorher-Nachher Slider ---------- */
.vn-section { background: var(--bone); }

.vn-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 720px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
}

.vn-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.vn-after-clip {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  will-change: width;
}
.vn-after-clip .vn-img {
  width: 100vw;
  max-width: none;
  /* will be sized by JS via container width; fallback below */
}

.vn-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: white;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.vn-handle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.vn-handle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F2D3D' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='15 18 9 12 15 6'/><polyline points='9 6 15 12 9 18' transform='translate(-3 0)'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.vn-label {
  position: absolute;
  top: var(--s-4);
  padding: 8px 14px;
  background: rgba(34, 34, 34, 0.78);
  backdrop-filter: blur(10px);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  z-index: 2;
  pointer-events: none;
}
.vn-label--before { left: var(--s-4); }
.vn-label--after { right: var(--s-4); background: var(--primary); }

/* ---------- Image Card ---------- */
.image-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--paper);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.image-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ---------- Process Section ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}

.process-step {
  position: relative;
  padding: var(--s-6);
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--line);
}

.process-step .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.04em;
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--s-4);
  display: block;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--s-2);
}

.process-step p { color: var(--ink-500); font-size: 0.95rem; }

@media (max-width: 860px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ---------- Split Section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: var(--s-6); }
  .split--reverse { direction: ltr; }
}

.split-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- USP List (with icons) ---------- */
.usp-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-6);
}
.usp-list li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 0.97rem;
  line-height: 1.5;
}
.usp-list li svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--primary);
  margin-top: 2px;
}

@media (max-width: 560px) { .usp-list { grid-template-columns: 1fr; } }

/* ---------- CTA Section ---------- */
.cta-block {
  background: linear-gradient(135deg, var(--ink) 0%, #2B3F58 100%);
  color: white;
  padding: clamp(var(--s-7), 8vw, var(--s-9));
  border-radius: var(--r-xl);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--s-7);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(226, 43, 28, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.cta-block h2 { color: white; max-width: 16ch; position: relative; z-index: 1; }
.cta-block p { color: rgba(255, 255, 255, 0.78); margin-top: var(--s-4); position: relative; z-index: 1; }

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  position: relative;
  z-index: 1;
}

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

/* ---------- Floating Action Buttons (WhatsApp + Phone) ---------- */
.fab-stack {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
}
.fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 18px 32px rgba(0, 0, 0, 0.25); }

.fab--whatsapp { background: #25D366; }
.fab--phone { background: var(--primary); }

.fab svg { width: 26px; height: 26px; }

.fab::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: pulse-ring 2.4s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- Service Hero (with bg image) ---------- */
.service-hero {
  position: relative;
  min-height: clamp(520px, 70vh, 720px);
  padding: calc(var(--header-h) + var(--s-8)) 0 var(--s-9);
  color: white;
  overflow: hidden;
  background: var(--ink);
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.service-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.18) 100%);
}

.service-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.service-hero h1 {
  color: white;
  margin-top: var(--s-4);
}
.service-hero .lead {
  color: rgba(255, 255, 255, 0.92);
  margin-top: var(--s-5);
}
.service-hero .crumbs {
  color: rgba(255, 255, 255, 0.7);
}
.service-hero .crumbs a:hover { color: white; }

.service-hero .hero-cta { margin-top: var(--s-6); }

.service-hero-badges {
  position: absolute;
  z-index: 1;
  bottom: var(--s-7);
  left: 0;
  right: 0;
  display: flex;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.service-hero-badges .pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 500;
}
.service-hero-badges .pill svg { width: 16px; height: 16px; color: var(--primary); }

@media (max-width: 720px) {
  .service-hero-badges { position: static; padding-top: var(--s-5); }
}

/* ---------- Service FAQ ---------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0 var(--s-5);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.faq details[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-4) 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after {
  content: "−";
}
.faq .answer {
  padding: 0 0 var(--s-5);
  color: var(--ink-500);
  line-height: 1.7;
}

/* ---------- Page Header (sub-pages) ---------- */
.page-hero {
  padding: calc(var(--header-h) + var(--s-9)) 0 var(--s-8);
  background: var(--bone);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(226, 43, 28, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 { max-width: 18ch; position: relative; z-index: 1; }
.page-hero .lead { margin-top: var(--s-4); position: relative; z-index: 1; }

.crumbs {
  display: flex;
  gap: var(--s-2);
  align-items: center;
  font-size: 0.85rem;
  color: var(--ink-500);
  margin-bottom: var(--s-4);
  font-weight: 500;
}
.crumbs a:hover { color: var(--primary); }
.crumbs span { opacity: 0.4; }

/* ---------- Service Detail Card (full list) ---------- */
.service-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: var(--s-5);
  align-items: start;
  padding: var(--s-6);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-row:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }

.service-row .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: var(--primary);
  line-height: 1;
}

.service-row h3 { margin-bottom: var(--s-2); }

.service-row .tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-3);
}
.service-row .tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.service-row .btn {
  align-self: center;
}

@media (max-width: 720px) {
  .service-row { grid-template-columns: 56px 1fr; gap: var(--s-4); padding: var(--s-5); }
  .service-row .num { font-size: 1.5rem; }
  .service-row .btn { grid-column: 1 / -1; justify-self: start; }
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--s-8);
  align-items: start;
}

.contact-info {
  background: var(--ink);
  color: white;
  border-radius: var(--r-lg);
  padding: var(--s-7);
  position: sticky;
  top: calc(var(--header-h) + var(--s-5));
}
.contact-info h3 { color: white; margin-bottom: var(--s-4); }
.contact-info .lead { color: rgba(255, 255, 255, 0.78); }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  margin-top: var(--s-6);
}
.contact-list .row {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
}
.contact-list svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-list .label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
}
.contact-list .value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: white;
}
.contact-list a.value:hover { color: var(--primary); }

/* Form */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  box-shadow: var(--shadow-sm);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--s-4);
}
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-700);
}
.field label .req { color: var(--primary); }

.field input,
.field textarea,
.field select {
  font: inherit;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--bone);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(226, 43, 28, 0.12);
}

.field textarea { resize: vertical; min-height: 140px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 0.9rem;
  color: var(--ink-500);
  line-height: 1.5;
  margin: var(--s-5) 0;
}
.checkbox-field input { margin-top: 4px; accent-color: var(--primary); }
.checkbox-field a { color: var(--primary); text-decoration: underline; }

.form-success {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-md);
  margin-bottom: var(--s-5);
  display: none;
  font-weight: 500;
}
.form-success.is-visible { display: block; }

.form-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-md);
  margin-bottom: var(--s-5);
  display: none;
  font-weight: 500;
}
.form-error.is-visible { display: block; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
}

/* ---------- Gallery ---------- */
.gallery-grid {
  columns: 3;
  column-gap: var(--s-5);
}
.gallery-grid .image-card { break-inside: avoid; margin-bottom: var(--s-5); }

@media (max-width: 860px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }

/* ---------- Legal Pages ---------- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h2 {
  margin-top: var(--s-7);
  margin-bottom: var(--s-3);
  font-size: 1.5rem;
}
.legal-content h3 {
  margin-top: var(--s-5);
  margin-bottom: var(--s-2);
  font-size: 1.15rem;
}
.legal-content p, .legal-content ul {
  margin-bottom: var(--s-3);
  color: var(--ink-700);
  line-height: 1.7;
}
.legal-content ul { padding-left: var(--s-5); }
.legal-content strong { color: var(--ink); }

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

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

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: var(--s-2); }
.mt-4 { margin-top: var(--s-4); }
.mt-6 { margin-top: var(--s-6); }
.hidden { display: none; }

/* =====================================================
   MOBILE OPTIMIZATIONS (≤ 600px)
   ===================================================== */
@media (max-width: 600px) {
  /* Tighter container padding */
  .container { padding: 0 var(--s-4); }

  /* Typography — reduce, allow hyphenation */
  .h-display {
    font-size: clamp(1.85rem, 9.2vw, 2.5rem);
    letter-spacing: -0.025em;
    line-height: 1.05;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  .h-1 {
    font-size: clamp(1.6rem, 7vw, 2rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  .h-2 { font-size: clamp(1.35rem, 5.5vw, 1.75rem); line-height: 1.15; }
  .lead { font-size: 1rem; line-height: 1.55; }

  /* Section padding */
  .section { padding: var(--s-7) 0; }
  .section--tight { padding: var(--s-6) 0; }
  .section-head { margin-bottom: var(--s-6); }

  /* CTA buttons — stack & shrink */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-3);
  }
  .hero-cta .btn { width: 100%; }
  .btn--lg { padding: 14px 24px; font-size: 0.95rem; }
  .btn { padding: 12px 22px; font-size: 0.9rem; }

  /* HERO — flow layout on mobile (no absolute meta overlap) */
  .hero {
    min-height: 0;
  }
  .hero-content {
    min-height: 0;
    padding-top: calc(var(--header-h) + var(--s-5));
    padding-bottom: var(--s-7);
    justify-content: flex-start;
  }
  .hero h1 { max-width: none; }
  .hero .lead { max-width: none; margin-top: var(--s-4); }
  .hero-cta { margin-top: var(--s-5); }

  /* Hero trust meta — moved into flow on mobile */
  .hero-meta {
    position: static;
    padding-top: 0;
    padding-bottom: var(--s-6);
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-4);
  }
  .hero-trust {
    gap: var(--s-3);
    justify-content: space-between;
  }
  .hero-trust .item { min-width: 0; flex: 1; }
  .hero-trust .item strong { font-size: 1rem; letter-spacing: -0.01em; }
  .hero-trust .item span { font-size: 0.72rem; line-height: 1.3; }
  .hero-dots { justify-content: center; padding-top: var(--s-2); }
  .hero-dots button { width: 22px; }
  .hero-dots button.is-active { width: 44px; }

  /* Service hero (sub pages) */
  .service-hero {
    min-height: 0;
    padding: calc(var(--header-h) + var(--s-6)) 0 var(--s-7);
  }
  .service-hero-content .crumbs { font-size: 0.78rem; flex-wrap: wrap; }
  .service-hero-badges {
    padding-top: var(--s-5);
    gap: var(--s-2);
    flex-wrap: wrap;
  }
  .service-hero-badges .pill {
    padding: 7px 12px;
    font-size: 0.8rem;
  }
  .service-hero-badges .pill svg { width: 13px; height: 13px; }

  /* USP ticker — smaller text */
  .usp-track { font-size: 0.85rem; gap: var(--s-5); }
  .usp-bar { padding: var(--s-3) 0; }

  /* Service cards */
  .service-card { padding: var(--s-5); }
  .service-card h3 { font-size: 1.15rem; }
  .service-card p { font-size: 0.92rem; }

  /* Split sections — tighter */
  .split { gap: var(--s-5); }
  .split-img { aspect-ratio: 4/3; }
  .usp-list { gap: var(--s-3); }
  .usp-list li { font-size: 0.92rem; }

  /* Process steps */
  .process-step { padding: var(--s-5); }
  .process-step .num { font-size: 2rem; }
  .process-step h4 { font-size: 1rem; }
  .process-step p { font-size: 0.88rem; }

  /* Vorher-Nachher slider — smaller handle */
  .vn-handle::before { width: 44px; height: 44px; }
  .vn-handle::after { width: 18px; height: 18px; }
  .vn-label { font-size: 0.72rem; padding: 6px 10px; top: var(--s-3); }
  .vn-label--before { left: var(--s-3); }
  .vn-label--after { right: var(--s-3); }

  /* CTA block */
  .cta-block { padding: var(--s-6) var(--s-5); }
  .cta-block h2 { max-width: none; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { width: 100%; }

  /* Service row (Leistungen overview) */
  .service-row { padding: var(--s-4); gap: var(--s-3); }
  .service-row .num { font-size: 1.25rem; }
  .service-row h3 { font-size: 1.05rem; }
  .service-row p { font-size: 0.92rem; }

  /* Floating Action Buttons — slightly smaller */
  .fab-stack { bottom: 16px; right: 16px; gap: 10px; }
  .fab { width: 50px; height: 50px; }
  .fab svg { width: 22px; height: 22px; }

  /* Form */
  .form-card { padding: var(--s-5); }
  .contact-info { padding: var(--s-5); }

  /* FAQ */
  .faq summary { font-size: 0.97rem; padding: var(--s-4) 0; }
  .faq details { padding: 0 var(--s-4); }

  /* Footer */
  .site-footer { padding: var(--s-7) 0 var(--s-5); }
  .footer-grid { gap: var(--s-5); padding-bottom: var(--s-5); }
  .footer-brand img { height: 40px; }

  /* Eyebrow smaller on mobile */
  .eyebrow { font-size: 0.7rem; letter-spacing: 0.12em; }
  .eyebrow::before { width: 20px; }

  /* Image rounded corners less dramatic */
  .split-img, .image-card { border-radius: var(--r-md); }

  /* Service-hero-content – allow full width */
  .service-hero-content { max-width: 100%; }
}

/* Extra-tight phones (≤ 380px) */
@media (max-width: 380px) {
  .container { padding: 0 var(--s-3); }
  .h-display { font-size: 1.7rem; }
  .hero-trust .item strong { font-size: 0.9rem; }
}

/* =====================================================
   COOKIE / CONSENT BANNER
   ===================================================== */

/* Sobald Google-Fonts nach Consent geladen wurden */
html.fonts-loaded {
  --font-display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-5) var(--s-4);
  box-shadow: 0 24px 60px -12px rgba(17, 17, 17, 0.2), 0 0 0 1px rgba(17, 17, 17, 0.04);
  z-index: 200;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  will-change: transform, opacity;
}

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

.cookie-banner h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.cookie-banner p {
  color: var(--ink-500);
  margin-bottom: var(--s-4);
}

.cookie-banner a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
  flex: 1;
  min-width: 130px;
}

.cookie-btn--primary {
  background: var(--primary);
  color: white;
}
.cookie-btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.cookie-btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.cookie-btn--ghost:hover {
  background: var(--bone);
  border-color: var(--ink-300);
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: var(--s-4);
    font-size: 14px;
  }
  .cookie-actions { flex-direction: column; }
  .cookie-btn { width: 100%; flex: none; }
}
