:root {
  --bg: #f7f4ec;
  --bg-alt: #ecf5f2;
  --bg-dark: #142a28;
  --bg-dark-2: #1d3f3a;
  --text: #132a27;
  --text-muted: #46615d;
  --text-on-dark: #f7f4ec;
  --line: rgba(20, 42, 40, 0.12);
  --line-strong: rgba(20, 42, 40, 0.26);
  --accent: #c62a34;
  --accent-hover: #a9242d;
  --teal: #6bb3a8;
  --teal-deep: #2f6f67;
  --card: rgba(255, 255, 255, 0.9);
  --card-dark: rgba(247, 244, 236, 0.08);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 12px 34px rgba(11, 23, 21, 0.12);
  --font-display: "Playfair Display", serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-scale: 1;
}

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

html {
  scroll-behavior: smooth;
  font-size: calc(16px * var(--font-scale));
}

html.font-large {
  --font-scale: 1.1;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.62;
}

a {
  color: var(--teal-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

a:focus-visible {
  outline: 3px solid rgba(8, 145, 178, 0.35);
  outline-offset: 3px;
  border-radius: 4px;
}

h1,
h2,
h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.14;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

p {
  margin: 0;
  color: var(--text-muted);
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 9999;
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 600;
}

html.font-large .eyebrow,
html.font-large .logo-sub,
html.font-large .nav-link,
html.font-large .footer-link,
html.font-large .footer-bottom,
html.font-large .form-label,
html.font-large .form-check {
  font-size: calc(1em + 0.06rem);
}

.lead {
  font-size: clamp(1.03rem, 1.6vw, 1.22rem);
  max-width: 64ch;
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.page-hero {
  padding: clamp(46px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 0% 0%, rgba(107, 179, 168, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(236, 245, 242, 0.9), rgba(236, 245, 242, 0.72));
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
}

.page-hero--compact .lead {
  max-width: 70ch;
}

.page-hero-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--text);
}

.page-hero-meta span {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.74);
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  color: var(--text-on-dark);
  background:
    radial-gradient(circle at 10% 0%, rgba(107, 179, 168, 0.2), transparent 42%),
    linear-gradient(170deg, var(--bg-dark), var(--bg-dark-2));
}

.section-dark p,
.section-dark .lead {
  color: rgba(247, 244, 236, 0.88);
}

.section-dark .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.quote {
  position: relative;
  margin: 12px 0 14px;
  padding: 18px 18px 16px;
  border-left: 3px solid rgba(107, 179, 168, 0.7);
  border-radius: 14px;
  background: rgba(247, 244, 236, 0.08);
}

.quote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: rgba(247, 244, 236, 0.28);
  pointer-events: none;
}

.quote p {
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.quote footer {
  margin-top: 10px;
  color: rgba(247, 244, 236, 0.82);
  font-size: 0.95rem;
}

.quote cite {
  font-style: normal;
}

.section-dark .card a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.section-dark .card a:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

.section-dark .card .btn.btn-secondary {
  color: #132a27;
  background: rgba(247, 244, 236, 0.96);
  border-color: rgba(247, 244, 236, 0.85);
  text-decoration: none;
  text-underline-offset: 0;
  text-decoration-color: transparent;
  font-weight: 600;
}

.section-dark .card .btn.btn-secondary:hover,
.section-dark .card .btn.btn-secondary:focus-visible {
  color: #132a27;
  background: #fff;
  border-color: #fff;
}

.section-line {
  width: 58px;
  height: 2px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--teal), transparent);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card-media {
  display: block;
  margin-top: 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(47, 111, 103, 0.16);
  background: rgba(236, 245, 242, 0.6);
}

.card-media img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.card-media:hover {
  border-color: rgba(47, 111, 103, 0.32);
}

.card-media--verbund img {
  object-position: center 62%;
}

.contact-card-media img {
  height: 190px;
}

.team-strip {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(47, 111, 103, 0.16);
  background: rgba(236, 245, 242, 0.6);
  aspect-ratio: 16 / 7;
}

.team-strip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-strip--inline {
  margin-top: 22px;
  aspect-ratio: 16 / 6;
}

@media (max-width: 720px) {
  .team-strip {
    aspect-ratio: 4 / 3;
  }
}

.quote-media {
  margin: 0 0 18px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(247, 244, 236, 0.18);
  aspect-ratio: 16 / 9;
}

.quote-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img[src*="/team/team-"] {
  object-position: center top;
}

.card-media--team-zahlen img {
  height: 200px;
  object-position: center 34%;
}

.contact-meta {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.contact-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(236, 245, 242, 0.55);
  font-size: 0.93rem;
}

.contact-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

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

.contact-flow {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.contact-flow h3 {
  margin-bottom: 4px;
}

.card.is-interactive {
  cursor: pointer;
}

.card.is-interactive:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(11, 23, 21, 0.14);
  border-color: rgba(47, 111, 103, 0.34);
}

.card--review h3 {
  margin: 0;
}

.review-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.review-source {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.review-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0b1720;
  background: linear-gradient(135deg, rgba(107, 179, 168, 0.55), rgba(8, 145, 178, 0.35));
  border: 1px solid rgba(47, 111, 103, 0.22);
  flex: 0 0 auto;
}

.review-sub {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.review-rating {
  text-align: right;
  flex: 0 0 auto;
}

.review-stars {
  display: inline-flex;
  gap: 1px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.1;
}

.review-stars .star {
  position: relative;
  display: inline-block;
  color: rgba(11, 23, 32, 0.28);
}

.review-stars .star-full {
  color: #f2b01e;
}

.review-stars .star-half::before {
  content: "★";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: #f2b01e;
}

.review-meta {
  margin-top: 4px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.review-body {
  margin-top: 14px;
}

.review-quotes {
  margin-top: 14px;
}

.review-quote {
  margin: 0;
  padding: 12px 12px 10px;
  border-radius: 14px;
  border: 1px solid rgba(47, 111, 103, 0.16);
  background: rgba(236, 245, 242, 0.6);
  display: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.review-quotes:not(.is-initialized) .review-quote:first-child {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.review-quote.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.review-quote p {
  margin: 0;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.45;
  text-wrap: pretty;
}

.review-quote footer {
  margin-top: 8px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.review-quote cite {
  font-style: normal;
}

.review-cta {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.review-note {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.section-dark .card {
  border-color: rgba(247, 244, 236, 0.2);
  background: var(--card-dark);
  box-shadow: none;
}

.accordion-panel {
  margin-top: 12px;
}

.accordion-panel .list-clean {
  margin-top: 10px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
}

.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:disabled {
  cursor: not-allowed;
}

.btn:focus-visible {
  outline: 3px solid rgba(8, 145, 178, 0.4);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: var(--line-strong);
  color: var(--text);
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--teal-deep);
  color: var(--teal-deep);
}

/* Header + nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.site-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
}

.logo-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
}

.logo-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav[hidden] {
  display: none !important;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  padding-bottom: 4px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--teal-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.6);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--text);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 42, 40, 0.82), rgba(20, 42, 40, 0.76)),
    radial-gradient(circle at top right, rgba(107, 179, 168, 0.3), transparent 45%);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 6px;
}

.hero-box {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(247, 244, 236, 0.35);
  background: rgba(247, 244, 236, 0.09);
  align-self: center;
}

.hero-box strong {
  color: #fff;
}

/* Lists + cards */
.list-clean {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-clean li + li {
  margin-top: 8px;
}

.list-dots li {
  position: relative;
  padding-left: 16px;
}

.list-dots li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--teal-deep);
}

ol {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
}

ol li + li {
  margin-top: 8px;
}

/* Forms */
.contact-form {
  display: grid;
  gap: 12px;
}

.form-field {
  display: grid;
  gap: 5px;
}

.form-label {
  font-size: 0.86rem;
  color: var(--text);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--text);
  font: inherit;
  padding: 10px 12px;
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--teal-deep);
  box-shadow: 0 0 0 2px rgba(107, 179, 168, 0.22);
}

.form-check {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.form-check input {
  margin-top: 2px;
}

.form-success {
  display: none;
  border: 1px solid rgba(47, 111, 103, 0.3);
  background: rgba(107, 179, 168, 0.12);
  color: var(--text);
  border-radius: 12px;
  padding: 14px;
}

.form-success.is-visible {
  display: block;
}

.form-success.form-success--error {
  border-color: rgba(198, 42, 52, 0.35);
  background: rgba(198, 42, 52, 0.08);
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: rgba(247, 244, 236, 0.82);
  padding: 48px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}

.footer-head {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-link {
  color: rgba(247, 244, 236, 0.82);
  font-size: 0.9rem;
}

.footer-link:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(247, 244, 236, 0.15);
  font-size: 0.82rem;
}

/* Reveal motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

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

[data-hero-anim] {
  opacity: 0;
  transform: translateY(18px);
}

.hero-animated [data-hero-anim] {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-animated [data-hero-anim]:nth-child(1) { animation-delay: 0.08s; }
.hero-animated [data-hero-anim]:nth-child(2) { animation-delay: 0.2s; }
.hero-animated [data-hero-anim]:nth-child(3) { animation-delay: 0.32s; }
.hero-animated [data-hero-anim]:nth-child(4) { animation-delay: 0.46s; }
.hero-animated [data-hero-anim]:nth-child(5) { animation-delay: 0.58s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .grid-2,
  .grid-3,
  .hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card--review {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .site-header {
    z-index: 220;
    background: #f7f4ec;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header-inner {
    position: relative;
    z-index: 221;
  }

  .site-logo {
    max-width: calc(100% - 64px);
  }

  .logo-title {
    font-size: 0.82rem;
  }

  .logo-sub {
    font-size: 0.72rem;
  }

  .hamburger {
    display: inline-block;
    position: relative;
    z-index: 223;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 222;
    padding: 92px 20px 28px;
    background-color: rgba(247, 244, 236, 0.99);
    display: none;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .site-nav.is-open {
    display: flex;
    background-color: rgba(247, 244, 236, 0.99);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: min(420px, 100%);
    max-height: calc(100dvh - 130px);
    overflow: auto;
    padding: 8px 6px 24px;
  }

  .nav-list li {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    display: inline-block;
    font-size: 1.08rem;
    padding: 4px 0;
  }

  .nav-list .btn-primary,
  .nav-list .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 36px 0;
  }

  .card--review {
    display: none !important;
  }

  .review-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-rating {
    text-align: left;
  }

  .review-quotes {
    min-height: 0;
  }

  .review-quote p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal],
  [data-hero-anim] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Force-hide reviews card on small screens (mobile Safari/iPhone simulator) */
@media (max-width: 980px) {
  aside.card.card--review {
    display: none !important;
  }
}

/* Cookie consent + Microsoft Clarity (loaded only after consent in site.js) */
body.has-cookie-banner {
  padding-bottom: 5.5rem;
}

@media (min-width: 641px) {
  body.has-cookie-banner {
    padding-bottom: 6.5rem;
  }
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0));
  background: var(--bg-dark);
  color: var(--text-on-dark);
  box-shadow: 0 -8px 28px rgba(11, 23, 21, 0.22);
  border-top: 1px solid rgba(247, 244, 236, 0.12);
}

.cookie-banner__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  min-height: 0;
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(247, 244, 236, 0.92);
  flex: 1 1 240px;
  min-width: 0;
}

.cookie-banner__text--mobile {
  display: none;
}

.cookie-banner__text--desktop {
  display: block;
}

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

.cookie-banner .cookie-banner__link:hover {
  color: #fff;
}

.cookie-banner__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
}

.cookie-banner__btn {
  padding: 8px 14px;
  font-size: 0.88rem;
  white-space: nowrap;
}

/* Mobil: strikt eine Zeile (Text + Buttons, kein Umbruch) */
@media (max-width: 640px) {
  body.has-cookie-banner {
    padding-bottom: 3rem;
  }

  .cookie-banner {
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0));
  }

  .cookie-banner__inner {
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    max-width: 100%;
  }

  .cookie-banner__text--desktop {
    display: none;
  }

  .cookie-banner__text--mobile {
    display: flex;
    flex: 1 1 0;
    align-items: center;
    min-width: 0;
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cookie-banner__actions {
    flex: 0 0 auto;
    gap: 4px;
  }

  .cookie-banner__btn {
    padding: 5px 8px;
    font-size: 0.7rem;
    min-width: 0;
  }
}
