/* kältezauber — Dingin-inspired system */

@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;500;600;700&family=Hind+Madurai:wght@300;400;500;600&display=swap');

:root {
  /* Dingin palette */
  --navy: #182955;          /* deep navy — primary dark bg, headings */
  --navy-overlay: #153381;  /* navy overlay tints */
  --blue: #2667ff;          /* bright accent blue — top bar */
  --blue-soft: #3F8EFC;     /* lighter blue — dot accent, eyebrow */
  --blue-tint: #EBF3FE;     /* light blue tint — quote box */
  --blue-tint-2: #DAE9FE;
  --orange: #F85E00;        /* primary CTA */
  --orange-hover: #d44e00;

  --ink: #131313;
  --ink-2: #555555;
  --ink-3: #888888;
  --line: #d0d0d0;
  --line-soft: #e7eaf2;
  --bg: #ffffff;
  --bg-alt: #f8f8f8;        /* alternate section */
  --bg-deep: var(--navy);

  --shadow-card: 7px 8px 23px 0 rgba(0,0,0,0.05), 28px 31px 42px 0 rgba(0,0,0,0.04), 63px 69px 56px 0 rgba(0,0,0,0.03);
  --shadow-sm: 0 8px 16px rgba(0,0,0,0.05);
  --radius: 14px;
  --radius-sm: 7px;
  --radius-btn: 12px;

  --font-display: 'Kumbh Sans', system-ui, sans-serif;
  --font-body: 'Hind Madurai', system-ui, sans-serif;

  --maxw: 1312px;
  --pad: clamp(16px, 5vw, 100px);   /* statt min 20 - 4px mehr Content-Breite auf engsten Phones */
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  /* iOS: konsistente Skalierung */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* Mobile: dezenter Tap-Highlight statt knalliger Apple-Default-Blau */
  -webkit-tap-highlight-color: rgba(38,103,255,0.15);
}
/* Mobile-globally: bessere Touch-Erlebnisse */
a, button, [role="button"], input[type="submit"], summary {
  touch-action: manipulation; /* eliminiert 300ms-Click-Delay */
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  font-weight: 500;        /* Kumbh Medium, Dingin signature */
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(28px, 6vw, 72px); line-height: 1.12; }
h2 { font-size: clamp(26px, 4.4vw, 56px); line-height: 1.16; }
h3 { font-size: clamp(20px, 2.2vw, 32px); line-height: 1.25; }
h4 { font-size: 20px; line-height: 1.3; }

/* Mobile-spezifische Headline-Optimierung: lesbar, nicht erschlagend */
@media (max-width: 540px) {
  h1 { font-size: 30px; line-height: 1.18; }
  h2 { font-size: 26px; line-height: 1.2; }
  h3 { font-size: 20px; }
}
@media (max-width: 380px) {
  h1 { font-size: 26px; }
  h2 { font-size: 24px; }
}

p { margin: 0; line-height: 1.5; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ─── Top utility bar ─── */
.top-bar {
  background: var(--blue);
  color: white;
  padding: 12px 0;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  font-size: 14px;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.top-bar-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar-list .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: white;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.top-bar-item-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}
@media (max-width: 980px) {
  .top-bar-list { display: none; }
  .top-bar-right { gap: 16px; }
}
@media (max-width: 720px) {
  .top-bar { display: none; }
}
.top-bar-item span:last-child { white-space: nowrap; }

/* ─── Main nav ─── */
.nav {
  background: white;
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 94px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: grid; place-items: center;
}
.brand-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-soft);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 12px 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 2px;
  background: var(--orange);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-phone {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-phone .icon {
  width: 16px; height: 16px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 8px;
}
.nav-mobile-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 12px 16px;            /* 44px Tap-Target auf Mobile */
  min-height: 44px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
}
@media (max-width: 1180px) {
  .nav-phone { display: none; }
}
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 94px; left: 0; right: 0;
    background: white;
    padding: 16px 20px 24px;
    align-items: stretch;
    gap: 4px;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-links.open a { padding: 14px 12px; }
}
@media (max-width: 560px) {
  .nav-right .btn-sm { display: none; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 30px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  background: var(--orange);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
}
.btn:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn-navy { background: var(--navy); }
.btn-navy:hover { background: #0e1a3c; }
.btn-blue { background: var(--blue); }
.btn-blue:hover { background: #1d56de; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-alt); color: var(--navy); border-color: var(--navy); }
.btn-white {
  background: white;
  color: var(--navy);
}
.btn-white:hover { background: var(--blue-tint); color: var(--navy); }
.btn-sm { padding: 14px 22px; font-size: 12px; }
@media (max-width: 480px) {
  .btn { padding: 15px 22px; font-size: 12px; letter-spacing: 0.14em; }
  .btn-sm { padding: 12px 16px; font-size: 11px; }
}

/* ─── ContentHeading pattern (the signature) ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blue-soft);
  flex: 0 0 10px;
}
.eyebrow.warm { color: var(--orange); }
.eyebrow.warm::before { background: var(--orange); }
.eyebrow.light { color: white; opacity: 0.9; }
.eyebrow.light::before { background: white; }

.eyebrow-snowflake::before {
  content: "";
  width: 24px; height: 18px;
  background: url('assets/ornament-snowflake.svg') no-repeat center / contain;
  border-radius: 0;
}

.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
}
.section-head.light h2 { color: white; }
.section-head.light p { color: rgba(255,255,255,0.78); }

/* ─── Section padding ─── */
section { padding: 120px 0; }
@media (max-width: 880px) { section { padding: 80px 0; } }
@media (max-width: 540px) { section { padding: 60px 0; } }

/* Booking-Card / Cards auf Mobile etwas weniger padding fuer mehr Inhalt */
@media (max-width: 540px) {
  .booking-card { padding: 28px 22px; }
  .audience-card .body { padding: 24px 20px; }
  .card-service .body { padding: 50px 20px 22px; }
  .card-feature { padding: 22px; }
  .quote-widget { padding: 24px 18px; }
  .quote-widget.duo { padding: 24px 16px; }
  .card-service .cover { aspect-ratio: 16/9; }   /* weniger Hoehe, besser fuer Smartphone-Scroll */
  .audience-card .photo { aspect-ratio: 16/9; }  /* dito */
}
@media (max-width: 380px) {
  .booking-card { padding: 22px 16px; }
  .audience-card .body { padding: 22px 16px; }
  .card-feature { padding: 18px; }
}

/* ─── Footer ─── */
.footer-top {
  background: var(--navy);
  background-image: linear-gradient(rgba(21,51,129,0.1), rgba(21,51,129,0.1));
  color: white;
  padding: 60px 0;
}
.footer-top-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.footer-top-inner h3 {
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-top-inner p { color: var(--line); }
.footer-top-newsletter {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;            /* erlaubt Umbruch auf engsten Screens statt Overflow */
}
.footer-top-newsletter input {
  flex: 1 1 200px;            /* min 200 px breit, kann schrumpfen */
  min-width: 0;               /* erlaubt schrumpfen unter Browser-Default */
  border: none;
  border-radius: var(--radius-btn);
  padding: 16px 22px;
  background: white;
  font: inherit;
  color: var(--ink);
}
.footer-top-newsletter .btn { flex: 0 0 auto; }
@media (max-width: 480px) {
  .footer-top-newsletter { flex-direction: column; gap: 10px; }
  .footer-top-newsletter input { flex: 1 1 auto; }
  .footer-top-newsletter .btn { width: 100%; justify-content: center; }
}
.footer-top-newsletter input:focus { outline: 2px solid var(--orange); }

.footer-bottom {
  background: white;
  padding: 60px 0;
  color: var(--ink-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.footer-grid h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 32px;
}
.footer-grid a:not(.brand) {
  display: block;
  color: var(--ink-2);
  padding: 10px 0;               /* statt 7px - bringt min ~40px Tap-Target */
  font-size: 16px;
  transition: color 0.2s;
  min-height: 44px;              /* iOS Touch-Standard */
  display: flex;                 /* zentrierter Text bei wechselnden Höhen */
  align-items: center;
}
.footer-grid a:not(.brand):hover { color: var(--blue); }
@media (max-width: 720px) {
  .footer-grid a:not(.brand) { padding: 12px 0; min-height: 48px; }
}
.footer-grid p { color: var(--ink-2); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; font-size: 15px; }
.footer-contact-row .icon {
  flex: 0 0 18px; color: var(--blue);
  margin-top: 4px;
}
.footer-socials { display: flex; gap: 16px; margin-top: 24px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue-tint);
  display: grid; place-items: center;
  color: var(--blue) !important;
  padding: 0 !important;
}
.footer-socials a:hover { background: var(--blue); color: white !important; }

.footer-copyright {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--ink-2);
}
.footer-copyright a { color: var(--ink-2); }
.footer-copyright a:hover { color: var(--blue); }
.footer-copyright-right { display: flex; gap: 24px; align-items: center; }
.footer-copyright-right .sep { width: 1px; height: 14px; background: var(--line); }

@media (max-width: 980px) {
  .footer-top-inner { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px; }
  .footer-copyright { flex-direction: column; gap: 16px; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
}

/* ─── Cards ─── */
.card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}

/* Service-style card: image cover + floating icon badge + centered text */
.card-service {
  background: white;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-soft);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card-service:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.card-service .cover {
  position: relative;
  aspect-ratio: 16/11;
  background: var(--bg-alt);
  overflow: hidden;
}
.card-service .cover image-slot {
  position: absolute; inset: 0;
  border-radius: 0; border: none;
  height: 100%;
}
.card-service .cover::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2));
  pointer-events: none;
}
.card-service .icon-badge {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px; height: 72px;
  border-radius: var(--radius);
  background: var(--blue);
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 12px 24px rgba(38,103,255,0.35);
  z-index: 2;
}
.card-service .icon-badge svg { width: 32px; height: 32px; }
.card-service .icon-badge.orange { background: var(--orange); box-shadow: 0 12px 24px rgba(248,94,0,0.35); }
.card-service .body {
  padding: 56px 28px 32px;
  text-align: center;
  flex: 1;
  display: flex; flex-direction: column; gap: 14px;
}
.card-service .body .title-row { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.card-service h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: var(--navy);
  margin: 0;
}
.card-service .subtitle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-soft);
}
.card-service .body p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* Feature card: round icon + title + body */
.card-feature {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.card-feature::after {
  content: "";
  position: absolute;
  top: -54px; right: -54px;
  width: 132px; height: 132px;
  border-radius: 50%;
  background: #f3f6fd;
  z-index: 0;
}
.card-feature > * { position: relative; z-index: 1; }
.card-feature .icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.card-feature .icon.orange { background: var(--orange); }
.card-feature h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 10px;
}
.card-feature p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* ─── Photo slot ─── */
image-slot {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e5e8ef 25%, #f4f6fa 25%, #f4f6fa 50%, #e5e8ef 50%, #e5e8ef 75%, #f4f6fa 75%);
  background-size: 16px 16px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.photo { position: relative; border-radius: var(--radius); overflow: hidden; }
.photo.tall { aspect-ratio: 4/5; }
.photo.square { aspect-ratio: 1/1; }
.photo.wide { aspect-ratio: 16/9; }
.photo.cinema { aspect-ratio: 21/9; }
.photo.hero { aspect-ratio: 3/4; }

/* ─── Form fields ─── */
.field-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
  display: block;
}
.input, .textarea, .select {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--line);
  background: white;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--font-body);
}
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(38,103,255,0.12);
}
.textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.help { font-size: 13px; color: var(--ink-3); margin-top: 6px; }

/* ─── Utility ─── */
.grid-2 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 1080px) {
  .grid-2 { grid-template-columns: minmax(0, 1fr); }
  .grid-3 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .grid-4 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}
@media (max-width: 640px) {
  .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
}

.stack > * + * { margin-top: 16px; }
.stack-lg > * + * { margin-top: 28px; }

/* dot label list (re-used) */
.tick-list { list-style: none; padding: 0; margin: 0; }
.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  font-size: 16px;
  color: var(--ink-2);
}
.tick-list li::before {
  content: "✓";
  flex: 0 0 24px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

/* quote widget */
.quote-widget {
  background: var(--blue-tint);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.quote-widget::before {
  content: "";
  position: absolute;
  top: -29px; left: -29px;
  width: 103px; height: 103px;
  background: var(--blue-tint-2);
  border-radius: 50%;
  z-index: 0;
}
.quote-widget::after {
  content: "";
  position: absolute;
  bottom: -34px; right: -34px;
  width: 103px; height: 103px;
  background: var(--blue-tint-2);
  border-radius: 50%;
  z-index: 0;
}
.quote-widget > * { position: relative; z-index: 1; }
.quote-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  flex: 0 0 120px;
  position: relative;
  overflow: visible;
}
.quote-avatar .img {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid white;
}
.quote-avatar .img image-slot { border-radius: 50%; border: none; }
.quote-avatar .quote-mark {
  position: absolute;
  top: -8px; right: -8px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: grid; place-items: center;
  font-family: Georgia, serif;
  font-size: 28px;
  border: 2px solid white;
  padding-top: 4px;
}
.quote-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 12px;
}
.quote-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ─── Quote-Widget: Duo-Variante (zwei Profile) ─── */
.quote-widget.duo {
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  padding: 32px 28px;
  gap: 24px;
}
.quote-widget.duo .duo-avatars {
  display: flex;
  justify-content: center;
  gap: 32px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.quote-widget.duo .duo-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  min-width: 120px;
}
.quote-widget.duo .duo-avatar .img {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  position: relative;
  z-index: 1;
  background: var(--bg-alt);
}
.quote-widget.duo .duo-avatar .img image-slot,
.quote-widget.duo .duo-avatar .img img {
  border-radius: 50%;
  border: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.quote-widget.duo .duo-avatar strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 4px;
}
.quote-widget.duo .duo-avatar span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-soft);
}
.quote-widget.duo .quote-text {
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 1;
}
.quote-widget.duo .quote-name {
  text-align: center;
  display: block;
  position: relative;
  z-index: 1;
}

/* tag/chip */
.tag {
  display: inline-flex; gap: 6px; align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--blue-tint);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* dark section */
.section-dark { background: var(--navy); color: white; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: white; }
.section-dark p { color: rgba(255,255,255,0.78); }

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

/* ─── CTA-Strip — wiederverwendbarer Conversion-Hebel zwischen Sektionen ─── */
.cta-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 56px 0;
}
.cta-strip-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 880px) {
  .cta-strip { padding: 44px 0; }
  .cta-strip-inner { grid-template-columns: 1fr; gap: 24px; }
}
.cta-strip-content h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  color: var(--navy);
  margin: 8px 0 10px;
  line-height: 1.25;
}
.cta-strip-content p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 560px;
}
.cta-strip-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 880px) {
  .cta-strip-actions { justify-content: flex-start; }
}
@media (max-width: 540px) {
  .cta-strip-actions { width: 100%; flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-strip-actions .btn { width: 100%; justify-content: center; padding: 16px 18px; font-size: 12px; }
  .cta-strip { padding: 36px 0; }
  .cta-strip-content h3 { font-size: 20px; line-height: 1.25; }
  .cta-strip-content p { font-size: 14px; }
}
.cta-strip .cta-trust {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-top: 12px;
}
.cta-strip .cta-trust::before {
  content: "✓";
  width: 18px; height: 18px;
  background: var(--blue-soft);
  color: white;
  border-radius: 50%;
  display: inline-grid; place-items: center;
  font-size: 10px;
  font-weight: 700;
}

/* Dunkle Variante: Navy-Hintergrund für stärkere Sektion-Boundaries */
.cta-strip.dark {
  background: var(--navy);
  border-color: rgba(255,255,255,0.08);
}
.cta-strip.dark .cta-strip-content h3 { color: white; }
.cta-strip.dark .cta-strip-content p { color: rgba(255,255,255,0.78); }
.cta-strip.dark .cta-trust { color: #ffaa66; }
.cta-strip.dark .cta-trust::before { background: #ffaa66; color: var(--navy); }
.cta-strip.dark .eyebrow { color: #ffaa66; }
.cta-strip.dark .eyebrow::before { background: #ffaa66; }

/* Helle Variante mit weißem Hintergrund — wenn drumherum schon alt-Sektionen sind */
.cta-strip.plain {
  background: white;
}

/* ─── Saison-Banner (boost.js) ─── */
.saison-banner {
  background: linear-gradient(90deg, var(--orange) 0%, #ff7a1f 100%);
  color: white;
  font-size: 13px;
}
.saison-banner-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 11px var(--pad);
  display: flex;
  align-items: center;
  gap: 18px;
}
.saison-banner-text {
  flex: 1;
  line-height: 1.45;
  font-weight: 500;
}
.saison-banner-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.saison-banner-cta:hover { text-decoration: none; }
.saison-banner-close {
  background: transparent;
  border: 0;
  color: white;
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  opacity: 0.85;
  flex: 0 0 auto;
}
.saison-banner-close:hover { opacity: 1; }
@media (max-width: 720px) {
  .saison-banner-text { font-size: 12px; line-height: 1.35; }
  .saison-banner-cta { display: none; }
  .saison-banner-inner { gap: 10px; padding: 8px var(--pad); }
}
@media (max-width: 480px) {
  .saison-banner-text { font-size: 11px; }
  .saison-banner-inner { padding: 7px 14px; gap: 8px; }
  .saison-banner-close { font-size: 20px; padding: 0 2px; }
}

/* ─── WhatsApp Float-Button (boost.js) ─── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  background: #25d366;
  color: white !important;
  padding: 14px 22px 14px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 30px rgba(37,211,102,0.45), 0 4px 12px rgba(0,0,0,0.15);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 38px rgba(37,211,102,0.55), 0 6px 16px rgba(0,0,0,0.2);
}
.wa-float svg { flex: 0 0 26px; }
.wa-label { white-space: nowrap; }
@media (max-width: 540px) {
  .wa-float { padding: 14px; bottom: 18px; right: 18px; }
  .wa-label { display: none; }
}

/* ─── Trust-Bar (index.html, nach Hero) ─── */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--line-soft);
  padding: 28px 0;
}
.trust-bar .container { padding-left: var(--pad); padding-right: var(--pad); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}
@media (max-width: 1080px) { .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (max-width: 640px)  { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px)  { .trust-grid { grid-template-columns: 1fr; } }
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-item .trust-icon {
  flex: 0 0 38px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue);
  display: grid;
  place-items: center;
}
.trust-item .trust-icon svg { width: 18px; height: 18px; }
.trust-item .trust-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.trust-item .trust-text strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.2;
}
.trust-item .trust-text span {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.3;
}

/* ─── Sofort-Preisrechner (index.html) ─── */
.rechner-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1080px) {
  /* minmax(0,1fr) erzwingt, dass die Spalte nicht von min-content (chips/inputs) aufgeblaeht wird */
  .rechner-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
}
.rechner-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line-soft);
  min-width: 0;            /* erlaubt Schrumpfen unter min-content */
}
@media (max-width: 540px) { .rechner-card { padding: 24px 18px; } }
.rechner-intro { min-width: 0; }
.rechner-chips button { min-width: 50px; }   /* statt 64 - mehr Spielraum auf 320 px-Screens */
.rechner-step + .rechner-step { margin-top: 26px; }
.rechner-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.rechner-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rechner-chips button {
  flex: 1 1 auto;
  min-width: 64px;
  appearance: none;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-btn);
  padding: 14px 18px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.18s ease;
}
.rechner-chips button:hover { border-color: var(--navy); }
.rechner-chips button.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.rechner-output {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 2px dashed var(--line-soft);
}
.rechner-output-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.rechner-output-row:last-of-type { border-bottom: 0; }
.rechner-output-row.primary {
  background: var(--blue-tint);
  margin: 0 -8px 8px;
  padding: 18px 16px;
  border-radius: var(--radius-sm);
  border-bottom: 0;
  flex-wrap: wrap;
}
.rechner-output-row.primary .rechner-output-val {
  color: var(--orange);
  font-size: 22px;
}
.rechner-output-label {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
}
.rechner-output-val {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--navy);
  white-space: nowrap;
  text-align: right;
}
@media (max-width: 540px) {
  .rechner-output-val { white-space: normal; }   /* darf umbrechen, sonst Overflow auf 320-375 px */
  .rechner-output-row { gap: 8px; padding: 12px 0; }
  .rechner-output-row.primary .rechner-output-val { font-size: 18px; }
}
.rechner-disclaimer {
  font-size: 13px;
  color: var(--ink-3);
  margin: 18px 0 0;
  line-height: 1.5;
}

/* ─── Testimonial-Grid (privat.html) ─── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line-soft);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -14px; left: 24px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1;
  padding-top: 8px;
  box-shadow: 0 8px 18px rgba(248,94,0,0.35);
}
.testimonial-card .stars {
  color: var(--orange);
  letter-spacing: 2px;
  font-size: 16px;
  margin-top: 4px;
}
.testimonial-card .text {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}
.testimonial-card .meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  margin-top: auto;
}
.testimonial-card .meta strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--navy);
}
.testimonial-card .meta span {
  font-size: 13px;
  color: var(--ink-3);
}
