/* ==========================================================================
   agrarbüro24 — Landing Page Styles
   ========================================================================== */

:root {
  --ab-green:        #7DB94B;
  --ab-green-dark:   #5d9a32;
  --ab-green-darker: #3f6d20;
  --ab-green-tint:   #d6e4c4;
  --ab-green-50:     #eef3e3;
  --ab-ink:          #1d1d1b;
  --ab-ink-2:        #3a3a37;
  --ab-ink-3:        #6b6b66;
  --ab-white:        #ffffff;
  --ab-cream-deeper: #f5f7ee;
  --ab-line:         #2222200f;
  --ab-line-2:       #2222201f;
  --ab-line-3:       #2222203a;

  --font-sans: "Helvetica Neue", Helvetica, Arial, system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;

  --shadow-sm: 0 1px 0 rgba(29,29,27,.04), 0 1px 2px rgba(29,29,27,.06);
  --shadow-md: 0 1px 0 rgba(29,29,27,.04), 0 6px 16px -4px rgba(29,29,27,.10);

  --ease: cubic-bezier(.2,0,0,1);
  --container: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Anker-Sprünge landen sonst unter der fixen Navigation */
section[id] { scroll-margin-top: 88px; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ab-ink);
  background: var(--ab-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--font-sans); text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
a { color: var(--ab-green-darker); text-decoration: none; transition: color .14s var(--ease); }
a:hover { color: var(--ab-green-dark); }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--ab-green); color: var(--ab-white); }

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

.eyebrow {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ab-green-darker);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav__logo img {
  height: 32px;
  width: auto;
  transition: opacity .14s var(--ease);
}
.nav__logo img:hover { opacity: .8; }
.nav__logo .logo-dark { display: none; }
.nav.scrolled .nav__logo .logo-light { display: none; }
.nav.scrolled .nav__logo .logo-dark { display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ab-white);
  text-decoration: none;
  transition: opacity .14s var(--ease);
}
.nav__links a:hover { opacity: .75; }
.nav.scrolled .nav__links a { color: var(--ab-ink); }
.nav.scrolled .nav__links a:hover { color: var(--ab-green); }

/* Scroll-Spy: aktive Sektion in der Navigation markieren */
.nav__links a.active {
  color: var(--ab-green);
  opacity: 1;
}
.nav.scrolled .nav__links a.active { color: var(--ab-green); }

.nav__mobile {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__mobile svg { display: block; }
.nav__mobile .bar {
  fill: var(--ab-white);
  transition: fill .14s var(--ease);
}
.nav.scrolled .nav__mobile .bar { fill: var(--ab-ink); }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__mobile { display: block; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--ab-white);
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
  }
  .nav__links.open a { color: var(--ab-ink); }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Poster sofort sichtbar, bis Video/WebGL bereit sind */
  background: url("/img/hero-poster.jpg") center / cover no-repeat #111;
}
.hero__canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.hero__fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.65);
}
.hero__content {
  position: relative;
  z-index: 2;
  /* Volle Containerbreite, damit die Headline buendig
     mit dem Logo in der Navigation beginnt (width noetig,
     da das Flex-Item sonst auf Inhaltsbreite schrumpft) */
  width: 100%;
  max-width: var(--container);
  padding: 160px 24px 80px;
}
.hero__content h2 {
  max-width: 680px;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: .98;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ab-white);
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hero h2 {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.3;
  font-weight: 300;
  color: var(--ab-white);
  margin-bottom: 40px;
  text-shadow: 0 1px 12px rgba(0,0,0,.3);
}
.hero__cta {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--ab-white);
  border: 2px solid var(--ab-white);
  border-radius: var(--r-md);
  padding: 12px 28px;
  transition: background .22s var(--ease), color .22s var(--ease);
}
.hero__cta:hover {
  background: var(--ab-white);
  color: var(--ab-ink);
}
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--ab-white);
  opacity: .6;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Kinder erscheinen zeitversetzt (Delay wird per JS gesetzt) */
.reveal .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.revealed .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Intro section
   ========================================================================== */

.intro {
  padding: 96px 0;
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.intro h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 16px;
}
.intro h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ab-ink);
  margin-bottom: 16px;
}
.intro p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ab-ink-2);
  margin-bottom: 24px;
}
.intro__img {
  border-radius: var(--r-xl);
  overflow: hidden;
}

@media (max-width: 768px) {
  .intro__grid { grid-template-columns: 1fr; }
  .intro__img { order: -1; }
}

/* ==========================================================================
   Services
   ========================================================================== */

.services {
  padding: 96px 0;
  background: var(--ab-cream-deeper);
}
.services h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 8px;
}
.services__lead {
  font-size: 18px;
  color: var(--ab-ink-2);
  margin-bottom: 48px;
  max-width: 640px;
}

.service-block {
  margin-bottom: 40px;
}
.service-block__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.service-block__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ab-green);
  color: var(--ab-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-block__icon svg { width: 22px; height: 22px; }
.service-block h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.service-block p {
  font-size: 16px;
  color: var(--ab-ink-2);
  margin-bottom: 12px;
  max-width: 640px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ab-green-darker);
  background: var(--ab-green-tint);
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ==========================================================================
   About
   ========================================================================== */

.about {
  padding: 96px 0;
}
.about__inner {
  max-width: 720px;
}
.about h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 24px;
}
.about p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ab-ink-2);
  margin-bottom: 16px;
}
.about em { font-style: italic; color: var(--ab-ink); font-weight: 500; }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  padding: 96px 0;
  background: var(--ab-cream-deeper);
}
.contact h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 32px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact__social {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.contact__social a {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--ab-white);
  border: 1px solid var(--ab-line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ab-ink);
  transition: background .14s var(--ease), color .14s var(--ease), border-color .14s var(--ease);
}
.contact__social a:hover {
  background: var(--ab-green);
  color: var(--ab-white);
  border-color: var(--ab-green);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact__item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ab-green);
  color: var(--ab-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__item-icon svg { width: 18px; height: 18px; }
.contact__item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact__item p, .contact__item a {
  font-size: 15px;
  color: var(--ab-ink-2);
}
.contact__item a:hover { color: var(--ab-green); }

.contact__buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__buttons { flex-direction: column; }
}

/* ==========================================================================
   Form + Steps
   ========================================================================== */

.steps {
  padding: 96px 0;
}
.steps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.steps__form h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.form-group--full {
  grid-column: 1 / -1;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ab-ink-2);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  border: 1px solid var(--ab-line-3);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  color: var(--ab-ink);
  background: var(--ab-white);
  transition: border-color .14s var(--ease), box-shadow .14s var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--ab-green);
  box-shadow: 0 0 0 3px rgba(125,185,75,.2);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group--honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.step {
  margin-bottom: 36px;
}
.step__number {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: var(--ab-ink);
  margin-bottom: 4px;
}
.step h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  font-size: 15px;
  color: var(--ab-ink-2);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .steps__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: var(--ab-green);
  padding: 64px 0;
}
.cta-band__inner {
  max-width: 640px;
}
.cta-band h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--ab-white);
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  margin-bottom: 24px;
}
.cta-band a {
  font-size: 16px;
  font-weight: 700;
  color: var(--ab-white);
  text-decoration: none;
  letter-spacing: .01em;
  transition: opacity .14s var(--ease);
}
.cta-band a:hover { opacity: .8; color: var(--ab-white); }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--ab-ink);
  color: var(--ab-white);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 32px;
}
.footer__logo img {
  height: 28px;
  width: auto;
}
.footer__center {
  text-align: center;
}
.footer__center h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ab-white);
  margin-bottom: 4px;
}
.footer__center p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
}
.footer__phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--ab-white);
}
.footer__phone:hover { color: var(--ab-green); }
.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.footer__links a:hover { color: var(--ab-white); }

.footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
.footer__social a {
  color: rgba(255,255,255,.7);
  transition: color .14s var(--ease);
}
.footer__social a:hover { color: var(--ab-white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__social { justify-content: center; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-md);
  padding: 12px 24px;
  cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
  text-decoration: none;
  border: none;
  line-height: 1.3;
}
.btn--primary {
  background: var(--ab-green);
  color: var(--ab-white);
}
.btn--primary:hover {
  background: var(--ab-green-dark);
  color: var(--ab-white);
}
.btn--outline {
  background: transparent;
  color: var(--ab-ink);
  border: 1px solid var(--ab-line-3);
}
.btn--outline:hover {
  border-color: var(--ab-green);
  color: var(--ab-green);
}
.btn--full { width: 100%; text-align: center; }

.form-status {
  margin-top: 12px;
  font-size: 14px;
  min-height: 20px;
}
.form-status.success { color: var(--ab-green-darker); }
.form-status.error { color: #b91c1c; }

/* ==========================================================================
   Legal pages
   ========================================================================== */

.legal {
  padding: 120px 0 80px;
}
.legal__back {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 24px;
  color: var(--ab-ink-3);
}
.legal__back:hover { color: var(--ab-green); }
.legal h1 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  margin-bottom: 32px;
}
.legal h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal p, .legal li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ab-ink-2);
  margin-bottom: 12px;
}
.legal ul { padding-left: 24px; }
.legal a { color: var(--ab-green-darker); text-decoration: underline; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
  padding: 96px 0;
  background: var(--ab-cream-deeper);
}
.faq h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 32px;
}
.faq__list {
  max-width: 760px;
}
.faq__item {
  background: var(--ab-white);
  border: 1px solid var(--ab-line-2);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 600;
  padding: 18px 22px;
  transition: color .14s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--ab-green);
  flex-shrink: 0;
  transition: transform .25s var(--ease);
}
.faq__item[open] summary { color: var(--ab-green-darker); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--ab-green-dark); }
.faq__item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ab-ink-2);
  padding: 0 22px 18px;
}

/* ==========================================================================
   Sticky CTA (mobil)
   ========================================================================== */

.sticky-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--ab-white);
  background: var(--ab-green);
  border-radius: var(--r-md);
  padding: 14px 24px;
  box-shadow: 0 8px 24px -6px rgba(29,29,27,.35);
  opacity: 0;
  transform: translateY(80px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.sticky-cta:hover { color: var(--ab-white); background: var(--ab-green-dark); }
@media (max-width: 768px) {
  .sticky-cta { display: block; }
  .sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ==========================================================================
   Form: Inline-Fehler + Erfolgsansicht
   ========================================================================== */

.form-group--error input,
.form-group--error textarea {
  border-color: #b91c1c;
}
.form-group--error input:focus,
.form-group--error textarea:focus {
  border-color: #b91c1c;
  box-shadow: 0 0 0 3px rgba(185,28,28,.15);
}
.form-error {
  font-size: 13px;
  color: #b91c1c;
  margin-top: 6px;
}

.form-success {
  background: var(--ab-green-50);
  border: 1px solid var(--ab-green-tint);
  border-radius: var(--r-lg);
  padding: 32px;
}
.form-success__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ab-green);
  color: var(--ab-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.form-success__icon svg { width: 24px; height: 24px; }
.form-success h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.form-success p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ab-ink-2);
  margin-bottom: 8px;
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__scroll-hint { animation: none; }
  .sticky-cta { transition: opacity .3s var(--ease); transform: none; }
}

/* ==========================================================================
   Datenschutz-Checkbox im Formular
   ========================================================================== */

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ab-ink-2);
  font-weight: 400;
  letter-spacing: 0;
}
.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--ab-green);
  cursor: pointer;
}
.consent-label a { text-decoration: underline; }

/* ==========================================================================
   Cookie-/Consent-Banner
   ========================================================================== */

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 860px;
  background: var(--ab-white);
  border: 1px solid var(--ab-line-2);
  border-radius: var(--r-lg);
  box-shadow: 0 12px 40px -8px rgba(29,29,27,.25);
  padding: 20px 24px;
}
.cookie-banner__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ab-ink-2);
}
.cookie-banner__text a {
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-banner__actions .btn {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .cookie-banner__actions {
    flex-direction: row;
  }
  .cookie-banner__actions .btn { flex: 1; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: opacity .3s var(--ease); transform: none; }
}

.label-optional {
  font-weight: 400;
  color: var(--ab-ink-3);
  text-transform: none;
}
