:root {
  --bg: #eef3ea;
  --bg-strong: #dfe9dd;
  --surface: rgba(255, 255, 255, 0.28);
  --surface-strong: rgba(255, 255, 255, 0.4);
  --line: rgba(255, 255, 255, 0.42);
  --ink: #112018;
  --muted: rgba(17, 32, 24, 0.72);
  --accent: #7ca081;
  --accent-strong: #4f7456;
  --shadow: 0 20px 80px rgba(68, 91, 70, 0.16);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --max-width: 1220px;
  --header-height: 70px;
  --header-offset: 18px;
  --progress: 0;
  --active-strength: 0;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.72), transparent 20%),
    radial-gradient(circle at 82% 12%, rgba(124, 160, 129, 0.26), transparent 24%),
    radial-gradient(circle at 50% 90%, rgba(180, 206, 183, 0.34), transparent 22%),
    linear-gradient(180deg, #f2f6ef 0%, var(--bg) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  backdrop-filter: blur(2px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 88%);
}

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

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
  animation: ambientDrift 14s ease-in-out infinite alternate;
}

.ambient-one {
  width: 320px;
  height: 320px;
  top: 90px;
  left: -80px;
  background: rgba(255, 255, 255, 0.6);
}

.ambient-two {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 220px;
  background: rgba(124, 160, 129, 0.22);
  animation-duration: 18s;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(79, 116, 86, 0.94), rgba(124, 160, 129, 0.94));
  transform-origin: left center;
  transform: scaleX(var(--progress));
  box-shadow: 0 0 24px rgba(79, 116, 86, 0.4);
}

.site-header,
.section,
.site-footer,
.hero {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: var(--header-offset);
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  height: var(--header-height);
  border-radius: 999px;
}

.glass-panel,
.site-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.18));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.glass-panel {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
  will-change: transform;
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.02) 10%,
    rgba(255, 255, 255, 0.35) 45%,
    rgba(255, 255, 255, 0.03) 80%
  );
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.glass-panel:hover::before {
  animation: glassSweep 900ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 16px;
  object-fit: contain;
  background: transparent;
  padding: 0;
}

.brand-name {
  white-space: nowrap;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  letter-spacing: -0.05em;
  font-size: 1.3rem;
}

.site-nav {
  display: inline-flex;
  gap: 24px;
  color: var(--muted);
}

.mobile-cta {
  display: none;
}

.site-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--accent-strong);
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(17, 32, 24, 0.9);
  color: #fff;
  border: 1px solid transparent;
  font-weight: 700;
  --mx: 0px;
  --my: 0px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
  transform: translate3d(var(--mx), var(--my), 0);
}

.button:hover {
  transform: translate3d(var(--mx), calc(var(--my) - 1px), 0);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.26);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.5);
}

main {
  scroll-snap-type: y mandatory;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 480px) 1fr;
  gap: 28px;
  align-items: center;
  min-height: 100svh;
  padding: calc(var(--header-height) + var(--header-offset) + 22px) 0 30px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: transform 450ms ease;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent-strong);
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.05em;
}

h1 {
  margin-bottom: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
  max-width: 12ch;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.hero-lead,
.service-item p,
.package-card li,
.split-copy li,
.contact-panel p,
.hero-panel-large span,
.media-placeholder span,
.hero-panel-small p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-lead {
  max-width: 38ch;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-panel-large {
  position: absolute;
  inset: 0 40px 40px 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.28), rgba(124, 160, 129, 0.18)),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.56), transparent 22%),
    linear-gradient(180deg, rgba(201, 218, 204, 0.76), rgba(228, 238, 228, 0.42));
}

.hero-panel-large::after,
.media-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(17, 32, 24, 0.08) 100%);
}

.hero-panel-large span,
.media-placeholder span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 1;
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--ink);
}

.hero-panel-small {
  position: absolute;
  width: min(240px, 46%);
  padding: 18px 18px 16px;
  border-radius: var(--radius-lg);
  will-change: transform;
}

.hero-panel-small strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  letter-spacing: -0.03em;
}

.hero-panel-small p {
  margin-bottom: 0;
}

.hero-panel-top {
  top: 28px;
  right: 0;
}

.hero-panel-bottom {
  left: 36px;
  bottom: 0;
}

.section {
  min-height: 100svh;
  padding: calc(var(--header-height) + var(--header-offset) + 10px) 0 80px;
  display: grid;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: transform 300ms ease, opacity 300ms ease, filter 300ms ease;
}

.section.compact {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + var(--header-offset) - 8px);
}

.section-head {
  margin-bottom: 28px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-item,
.package-card,
.media-placeholder,
.contact-panel {
  border-radius: var(--radius-xl);
}

.service-item {
  padding: 26px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.package-card {
  padding: 28px;
}

.package-card.featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(124, 160, 129, 0.18));
}

.package-tag {
  margin: 0 0 10px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
}

.package-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.package-card li,
.split-copy li {
  position: relative;
  padding-left: 18px;
}

.package-card li::before,
.split-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-strong);
}

.split-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.media-placeholder {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.26), rgba(124, 160, 129, 0.16)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.54), transparent 22%),
    linear-gradient(180deg, rgba(210, 224, 212, 0.76), rgba(229, 237, 229, 0.4));
}

.split-copy ol {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.contact-section {
  min-height: 100svh;
  padding: 0;
}

.contact-stage {
  min-height: 100svh;
  padding: calc(var(--header-height) + var(--header-offset) + 10px) 0 24px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 24px;
  align-items: end;
}

.contact-panel {
  padding: 34px;
  align-self: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  color: var(--muted);
}

.is-active-snap {
  filter: saturate(1.02);
}

.is-active-snap .section-head,
.is-active-snap .split-copy,
.is-active-snap .contact-panel {
  transform: translateY(-2px);
}

.footer-links {
  display: inline-flex;
  gap: 18px;
}

.contact-stage > .site-footer {
  width: 100%;
  margin: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ambientDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -14px, 0) scale(1.04);
  }
  100% {
    transform: translate3d(-16px, 10px, 0) scale(0.98);
  }
}

@keyframes glassSweep {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }
  15% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ambient,
  .glass-panel::before {
    animation: none !important;
  }

}

/* ═══════════════════════════════════════════════
   TABLET & MOBILE — max-width: 1080px
   ═══════════════════════════════════════════════ */
@media (max-width: 1080px) {

  /* ── Scroll-Snap: entspannter auf Touch ── */
  html {
    scroll-snap-type: y proximity;
  }

  /* ── Hamburger Button ── */
  .hamburger {
    display: flex;
  }

  .button-small {
    display: none;
  }

  /* ── Mobile Navigation — Dropdown unter Header ──
     backdrop-filter braucht KEIN overflow:hidden ── */
  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + var(--header-offset) + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 32px), var(--max-width));
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    z-index: 85;
    padding: 8px;

    /* ── Glassmorphism wie .site-header ── */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.18));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);

    /* Animation — visibility statt overflow:hidden */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 280ms ease, visibility 280ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    display: block;
    padding: 14px 18px;
    min-height: 48px;
    text-align: center;
    font-size: 1.05rem;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 250ms ease, transform 250ms ease, background 150ms ease;
    border-radius: var(--radius-md);
  }

  .site-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered animation delays */
  .site-nav.is-open a:nth-child(1) { transition-delay: 60ms; }
  .site-nav.is-open a:nth-child(2) { transition-delay: 110ms; }
  .site-nav.is-open a:nth-child(3) { transition-delay: 160ms; }
  .site-nav.is-open a:nth-child(4) { transition-delay: 210ms; }

  .site-nav a:active {
    background: rgba(124, 160, 129, 0.12);
  }

  .mobile-cta {
    display: block;
    margin-top: 4px;
    font-size: 1.05rem;
    color: var(--accent-strong);
    background: rgba(124, 160, 129, 0.1);
    border-radius: 999px;
    padding: 14px 18px;
    text-decoration: none;
    font-weight: 800;
    text-align: center;
    min-height: 48px;
  }

  .mobile-cta:active {
    background: rgba(124, 160, 129, 0.2);
  }

  /* ── Layout: Single Column ── */
  .hero,
  .split-section,
  .package-grid,
  .service-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + var(--header-offset) + 16px);
    gap: 20px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .section {
    min-height: auto;
    padding-bottom: 60px;
  }

  .section.compact {
    min-height: auto;
  }

  /* ── Contact Section ── */
  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .button {
    width: 100%;
  }

  /* ── Hero Actions ── */
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════
   SMALL MOBILE — max-width: 720px
   ═══════════════════════════════════════════════ */
@media (max-width: 720px) {

  :root {
    --header-height: 56px;
    --header-offset: 10px;
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 18px;
  }

  /* ── Safe Area Support (iPhone Notch) ── */
  .site-header {
    top: max(var(--header-offset), env(safe-area-inset-top, 10px));
  }

  .cookie-banner {
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
  }

  .site-footer {
    padding-bottom: max(16px, env(safe-area-inset-bottom, 16px));
  }

  /* ── Header ── */
  .site-header {
    width: min(calc(100% - 32px), var(--max-width));
    padding: 0 14px;
    height: 56px;
    gap: 12px;
  }

  .brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .brand-name {
    display: none;
  }

  .hamburger {
    width: 48px;
    height: 48px;
  }

  .hamburger span {
    width: 22px;
    height: 2px;
  }

  /* ── Page Width ── */
  .site-header,
  .section,
  .site-footer,
  .hero {
    width: min(calc(100% - 32px), var(--max-width));
  }

  /* ── Progress Bar ── */
  .scroll-progress {
    height: 3px;
  }

  /* ── Hero ── */
  .hero {
    padding-top: calc(var(--header-height) + var(--header-offset) + 10px);
    padding-bottom: 24px;
    gap: 16px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-panel-large {
    inset: 0 12px 16px 0;
    border-radius: var(--radius-lg);
  }

  .hero-panel-large span {
    left: 16px;
    bottom: 16px;
    font-size: 0.78rem;
    padding: 8px 12px;
  }

  .hero-panel-small {
    width: 55%;
    padding: 12px 14px;
    border-radius: var(--radius-md);
  }

  .hero-panel-small strong {
    font-size: 0.82rem;
    margin-bottom: 4px;
  }

  .hero-panel-small p {
    font-size: 0.78rem;
  }

  .hero-panel-top {
    top: 16px;
    right: 0;
  }

  .hero-panel-bottom {
    left: 12px;
    bottom: 0;
  }

  /* ── Typography ── */
  h1 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
    line-height: 0.92;
    margin-bottom: 12px;
  }

  h2 {
    max-width: none;
    font-size: clamp(1.7rem, 7vw, 2.6rem);
    line-height: 1;
  }

  h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }

  .eyebrow {
    font-size: 0.7rem;
    margin-bottom: 10px;
  }

  .hero-lead,
  .service-item p,
  .package-card li,
  .split-copy li,
  .contact-panel p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  /* ── Sections ── */
  .section {
    padding-top: calc(var(--header-height) + var(--header-offset) + 6px);
    padding-bottom: 48px;
    min-height: auto;
  }

  .section.compact {
    padding-top: calc(var(--header-height) + var(--header-offset) - 12px);
  }

  .section-head {
    margin-bottom: 20px;
  }

  /* ── Service Strip ── */
  .service-strip {
    gap: 12px;
  }

  .service-item {
    padding: 20px;
  }

  /* ── Package Cards ── */
  .package-grid {
    gap: 14px;
  }

  .package-card {
    padding: 22px;
  }

  .package-card ul {
    gap: 10px;
    margin-top: 18px;
  }

  .package-tag {
    font-size: 0.7rem;
    margin-bottom: 8px;
  }

  /* ── Split Section ── */
  .split-section {
    gap: 20px;
  }

  .media-placeholder {
    min-height: 260px;
  }

  .split-copy ol {
    gap: 10px;
    margin-top: 18px;
  }

  /* ── Contact ── */
  .contact-panel {
    padding: 24px 20px;
  }

  .contact-stage {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--header-offset) + 6px);
    padding-bottom: 20px;
    gap: 20px;
  }

  .contact-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .contact-actions .button {
    min-height: 52px;
    font-size: 0.9rem;
  }

  /* ── Footer ── */
  .site-footer {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 20px 0 max(16px, env(safe-area-inset-bottom, 16px));
    text-align: center;
    font-size: 0.85rem;
  }

  .footer-links {
    gap: 16px;
  }

  .footer-links a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
  }

  /* ── Buttons ── */
  .button {
    min-height: 52px;
    padding: 0 24px;
    font-size: 0.95rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  /* ── Cookie Banner ── */
  .cookie-banner {
    width: min(calc(100% - 24px), 580px);
    padding: 20px 18px;
    gap: 14px;
    font-size: 0.85rem;
    border-radius: var(--radius-lg);
  }

  .cookie-banner p {
    line-height: 1.5;
  }

  .cookie-actions {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-actions .button,
  .cookie-actions .button-small {
    display: inline-flex !important;
    width: 100%;
    min-height: 50px;
    font-size: 0.9rem;
  }

  /* ── Ambient: reduce on mobile ── */
  .ambient {
    opacity: 0.3;
    filter: blur(60px);
  }

  .ambient-one {
    width: 200px;
    height: 200px;
  }

  .ambient-two {
    width: 260px;
    height: 260px;
  }

  /* ── Glass Panel: reduce 3D effects ── */
  .glass-panel {
    transform: none !important;
    box-shadow: var(--shadow) !important;
  }

  .glass-panel::before {
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════
   VERY SMALL SCREENS — max-width: 380px
   ═══════════════════════════════════════════════ */
@media (max-width: 380px) {

  :root {
    --header-height: 50px;
    --header-offset: 8px;
  }

  .site-header {
    width: calc(100% - 24px);
    height: 50px;
    gap: 8px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .hamburger {
    width: 44px;
    height: 44px;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  h2 {
    font-size: clamp(1.5rem, 6.5vw, 2.2rem);
  }

  .hero-visual {
    min-height: 260px;
  }

  .hero-panel-small {
    width: 60%;
    padding: 10px 12px;
  }

  .hero-panel-small strong {
    font-size: 0.75rem;
  }

  .hero-panel-small p {
    font-size: 0.72rem;
  }

  .service-item,
  .package-card,
  .contact-panel {
    padding: 18px;
  }

  .cookie-banner {
    padding: 16px 14px;
    font-size: 0.82rem;
  }

  .cookie-actions .button,
  .cookie-actions .button-small {
    display: inline-flex !important;
    min-height: 48px;
  }
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), 580px);
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  animation: slideUp 0.5s ease forwards 0.3s;
  font-size: 0.9rem;
  color: var(--ink);
}

.cookie-banner.hidden {
  display: none !important;
}

.cookie-banner p {
  margin: 0;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

@keyframes slideUp {
  from {
    transform: translate(-50%, 20px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}
