/* ============================================================
   Der Zahnarzt — Soft & Pastell
   Reines Weiß als Basis + Mint-Pastell + Dusty-Rose-Akzent.
   Bewusst KEIN cream/beige. Tonalität: professionell-seriös.
   Form-Sprache: organisch-rund, viel Whitespace.
   ============================================================ */

:root {
  /* Basis: Weiß / Off-White */
  --bg:           #ffffff;
  --bg-soft:      #f8fbfb;     /* sehr leichter Mint-Hauch */
  --surface:      #ffffff;
  --surface-soft: #f1f7f6;     /* Cards, Surfaces */

  /* Mint primär */
  --mint:         #b8d8d2;     /* helles Mint */
  --mint-mid:     #7eb3a9;     /* Buttons, Hover */
  --mint-deep:    #34766b;     /* Headings, Akzent */
  --mint-deeper:  #1f5249;     /* Buttons hover */
  --mint-soft:    rgba(184, 216, 210, 0.30);
  --mint-glow:    rgba(126, 179, 169, 0.28);

  /* Dusty Rose sekundär (sparsam) */
  --rose:         #f4d8d4;
  --rose-mid:     #d68f8a;
  --rose-deep:    #a85d58;
  --rose-soft:    rgba(244, 216, 212, 0.42);

  /* Tinte (warm-anthrazit Petrol-Stich, kein reines Schwarz) */
  --ink:          #1d2e2d;
  --ink-soft:     #3a4f4e;
  --ink-mid:      #5a6f6e;
  --ink-muted:    #8a9b9a;
  --line:         #dde9e7;
  --line-soft:    #ecf3f1;

  /* Status */
  --danger:       #b85a4a;
  --danger-soft:  rgba(184, 90, 74, 0.08);
  --success:      #34766b;
  --success-soft: rgba(52, 118, 107, 0.08);

  /* Schatten — sehr weich, mintgetönt */
  --shadow-sm: 0 1px 2px rgba(31, 82, 73, 0.04);
  --shadow-md: 0 6px 18px rgba(31, 82, 73, 0.06);
  --shadow-lg: 0 14px 32px rgba(31, 82, 73, 0.08);
  --shadow-xl: 0 24px 56px rgba(31, 82, 73, 0.12);

  /* Radius — bewusst rund (Soft & Pastell) */
  --r-sm: 8px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  --container: 1140px;
  --nav-h: 76px;
  --t-fast: 180ms cubic-bezier(.22,.61,.36,1);
  --t-mid:  280ms cubic-bezier(.22,.61,.36,1);

    --demo-banner-bg: #5b8c87;
    --demo-banner-fg: #fbf7ee;
    --demo-banner-accent: #b8d8d2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); letter-spacing: -0.018em; font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'Inter', sans-serif; letter-spacing: 0; }

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--mint-deep);
}

p { margin: 0 0 1em; color: var(--ink-soft); }
p.lead { font-size: 1.18rem; color: var(--ink-soft); line-height: 1.65; }

::selection { background: var(--mint); color: var(--ink); }

/* ─── LAYOUT ───────────────────────────────────────────────── */

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

.section { padding: clamp(72px, 10vw, 128px) 0; }
.section--white { background: var(--bg); }
.section--soft  { background: var(--bg-soft); }
.section--mint  { background: var(--mint-deep); color: var(--bg); }
.section--mint h1, .section--mint h2, .section--mint h3 { color: var(--bg); }
.section--mint p { color: rgba(255, 255, 255, 0.85); }
.section--rose  { background: var(--rose-soft); }

.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__head--left { margin: 0 0 56px; text-align: left; }

/* ─── EYEBROW ───────────────────────────────────────────────── */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--mint-mid);
}
.section--mint .eyebrow { color: var(--bg); }
.section--mint .eyebrow::before { background: var(--bg); }

/* ─── BUTTONS ───────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.97rem;
  font-family: inherit;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  text-align: center;
  white-space: nowrap;
}
.btn--primary {
  background: var(--mint-deep);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--mint-deeper);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--mint-mid);
}
.btn--ghost:hover {
  border-color: var(--mint-deep);
  color: var(--mint-deep);
  background: var(--mint-soft);
}
.btn--light {
  background: var(--bg);
  color: var(--mint-deep);
}
.btn--light:hover {
  background: var(--surface-soft);
}
.btn--rose {
  background: var(--rose-deep);
  color: var(--bg);
}
.btn--rose:hover {
  background: #8c4d49;
}
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ─── NAV ───────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink);
  line-height: 1.05;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav__brand small {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  font-weight: 600;
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}
.nav__links a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color var(--t-fast);
  position: relative;
  white-space: nowrap;
}
.nav__links a:hover, .nav__links a[aria-current="page"] {
  color: var(--mint-deep);
}
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: -8px; left: 0; right: 0;
  height: 2px;
  background: var(--mint-mid);
  border-radius: 1px;
}
.nav__lang {
  display: inline-flex;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
.nav__lang a { padding: 4px 6px; border-radius: var(--r-sm); }
.nav__lang a[aria-current="page"] { color: var(--mint-deep); background: var(--mint-soft); }

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--mint-deep);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--mint-soft);
  transition: all var(--t-fast);
}
.nav__phone:hover { background: var(--mint); }
.nav__phone svg { width: 16px; height: 16px; flex-shrink: 0; }

.nav__burger {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .nav__phone { display: none; }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform var(--t-mid);
    overflow-y: auto;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a {
    padding: 14px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__links a[aria-current="page"]::after { display: none; }
  .nav__lang { padding-left: 0; border-left: 0; padding-top: 16px; margin-top: 8px; border-top: 1px solid var(--line); }
  .nav__burger { display: inline-flex; }
}

/* ─── HERO ──────────────────────────────────────────────────── */

.hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(80px, 10vw, 128px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 540px; height: 540px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.32;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -240px; left: -160px;
  width: 480px; height: 480px;
  background: var(--rose);
  border-radius: 50%;
  opacity: 0.45;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) { .hero__inner { grid-template-columns: 1fr; } }

.hero__text { max-width: 560px; }
.hero__sub {
  font-size: 1.18rem;
  color: var(--ink-soft);
  margin: 22px 0 32px;
  line-height: 1.65;
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 36px;
}
.hero__phone-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  padding: 14px 28px;
  border-radius: var(--r-pill);
  background: var(--bg);
  border: 2px solid var(--mint-mid);
  box-shadow: var(--shadow-md);
  transition: all var(--t-fast);
}
.hero__phone-big:hover {
  border-color: var(--mint-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.hero__phone-big svg { width: 22px; height: 22px; color: var(--mint-deep); }
.hero__phone-big strong { color: var(--mint-deep); letter-spacing: 0.01em; }

.hero__assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.92rem;
  color: var(--ink-mid);
}
.hero__assurance-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__assurance-item svg {
  width: 18px;
  height: 18px;
  color: var(--mint-deep);
  flex-shrink: 0;
}

.hero__visual {
  position: relative;
  aspect-ratio: 5/6;
  max-width: 520px;
  margin-left: auto;
  width: 100%;
}
.hero__image {
  position: absolute;
  inset: 0;
  border-radius: 50% / 42%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--surface-soft);
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  left: -22px; bottom: 24px;
  background: var(--bg);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}
.hero__overlay-num {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--mint-deep);
  line-height: 1;
}
.hero__overlay-text { display: flex; flex-direction: column; }
.hero__overlay-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.hero__overlay-value {
  font-size: 0.94rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 600px) {
  .hero__overlay { left: 14px; bottom: 14px; }
  .hero__image { border-radius: var(--r-lg); }
}

/* ─── TRUST-BALKEN ──────────────────────────────────────────── */

.trustbar {
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trustbar__item {
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-right: 1px solid var(--line);
}
.trustbar__item:last-child { border-right: 0; }
.trustbar__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--mint-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.trustbar__icon svg { width: 20px; height: 20px; }
.trustbar__title {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.trustbar__desc {
  font-size: 0.86rem;
  color: var(--ink-mid);
  line-height: 1.5;
}

@media (max-width: 880px) {
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar__item:nth-child(2) { border-right: 0; }
  .trustbar__item:nth-child(1), .trustbar__item:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .trustbar__grid { grid-template-columns: 1fr; }
  .trustbar__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trustbar__item:last-child { border-bottom: 0; }
}

/* ─── SERVICE-GRID ──────────────────────────────────────────── */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .service-grid { grid-template-columns: 1fr; } }

.service {
  background: var(--bg);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.service__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-soft);
}
.service__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-mid);
}
.service:hover .service__media img { transform: scale(1.04); }

.service__body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.service__title {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--ink);
}
.service__desc {
  color: var(--ink-mid);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 18px;
  flex: 1;
}
.service__more {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--mint-deep);
  align-self: flex-start;
  display: inline-flex;
  gap: 4px;
  transition: gap var(--t-fast);
}
.service__more:hover { gap: 8px; }

/* Image-Left/Right für leistungen.html */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) 0;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 0; }
.service-row--reverse .service-row__media { order: 2; }
@media (max-width: 880px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row--reverse .service-row__media { order: 0; }
}
.service-row__media {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--surface-soft);
}
.service-row__media img { width: 100%; height: 100%; object-fit: cover; }
.service-row__title {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  margin-bottom: 18px;
}
.service-row__list { padding: 0; margin: 18px 0 0; list-style: none; }
.service-row__list li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--ink-soft);
  font-size: 0.97rem;
  border-bottom: 1px dashed var(--line);
}
.service-row__list li:last-child { border-bottom: 0; }
.service-row__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 16px; height: 2px;
  background: var(--mint-mid);
}

/* ─── ABOUT-SPLIT ───────────────────────────────────────────── */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
@media (max-width: 880px) { .about-split { grid-template-columns: 1fr; } }

.about-split__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 48% / 38%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--surface-soft);
}
@media (max-width: 600px) { .about-split__media { border-radius: var(--r-lg); } }
.about-split__media img { width: 100%; height: 100%; object-fit: cover; }
.about-split__quote {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  background: rgba(29, 46, 45, 0.92);
  backdrop-filter: blur(8px);
  color: var(--bg);
  padding: 18px 22px;
  border-left: 3px solid var(--rose-mid);
  border-radius: var(--r-sm);
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
}
.about-split__quote-cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.03em;
  margin-top: 10px;
  font-weight: 500;
}

.about-split__features {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.about-split__features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.about-split__features li:last-child { border-bottom: 0; }
.about-split__features svg {
  width: 22px; height: 22px;
  color: var(--mint-deep);
  flex-shrink: 0;
  margin-top: 1px;
}
.about-split__features strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }

/* ─── TEAM ──────────────────────────────────────────────────── */

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
@media (max-width: 1000px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }

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

.team-card { text-align: left; }
.team-card__photo {
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-soft);
  box-shadow: var(--shadow-md);
  margin-bottom: 14px;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.2;
}
.team-card__role {
  font-size: 0.85rem;
  color: var(--mint-deep);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ─── PRAXIS-GALERIE ────────────────────────────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  aspect-ratio: 16/9;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}
.gallery-grid img:nth-child(1) { grid-row: 1/3; }
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; aspect-ratio: auto; }
  .gallery-grid img { aspect-ratio: 4/3; }
  .gallery-grid img:nth-child(1) { grid-row: auto; grid-column: 1/3; }
}

/* ─── USP "Keine Wartezeiten" ───────────────────────────────── */

.usp-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 64px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
@media (max-width: 880px) { .usp-block { grid-template-columns: 1fr; padding: 36px 28px; } }
.usp-block__visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--mint-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 280px;
  margin: 0 auto;
}
.usp-block__visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: var(--mint);
  opacity: 0.5;
}
.usp-block__num {
  position: relative;
  z-index: 1;
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 500;
  color: var(--mint-deeper);
  line-height: 1;
  text-align: center;
}
.usp-block__num small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-top: 8px;
  font-weight: 600;
}

/* ─── FORMS ─────────────────────────────────────────────────── */

.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.form__label--required::after { content: " *"; color: var(--rose-deep); }
.form__input, .form__textarea, .form__select {
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.97rem;
  width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none;
  border-color: var(--mint-mid);
  box-shadow: 0 0 0 3px var(--mint-soft);
}
.form__textarea { resize: vertical; min-height: 110px; }
.form__hint { font-size: 0.83rem; color: var(--ink-muted); }
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}
.form__check input { margin-top: 3px; accent-color: var(--mint-deep); }
.form__check a { color: var(--mint-deep); text-decoration: underline; }

.form__success {
  display: none;
  background: var(--success-soft);
  border-left: 3px solid var(--success);
  padding: 18px 22px;
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.6;
}
.form__success small { color: var(--ink-mid); font-size: 0.85rem; display: block; margin-top: 8px; }
.form__success.is-visible { display: block; }

/* Kontakt-Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.info-block {
  background: var(--surface-soft);
  border-radius: var(--r-lg);
  padding: 30px 32px;
  border: 1px solid var(--line);
}
.info-block h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.info-block dl {
  margin: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 16px;
  font-size: 0.95rem;
}
.info-block dt { color: var(--ink-muted); font-weight: 500; }
.info-block dd { margin: 0; color: var(--ink); }
.info-block a { color: var(--mint-deep); }

/* Notdienst */
.notdienst {
  margin-top: 28px;
  padding: 18px 22px;
  border-radius: var(--r-sm);
  background: var(--rose-soft);
  border-left: 3px solid var(--rose-mid);
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.notdienst strong { color: var(--ink); display: block; margin-bottom: 4px; font-size: 0.98rem; }

/* ─── PHONE-CALL HIGHLIGHT ──────────────────────────────────── */

.phone-cta {
  text-align: center;
  background: var(--mint-deep);
  color: var(--bg);
  border-radius: var(--r-lg);
  padding: clamp(56px, 8vw, 88px) clamp(28px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.phone-cta::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.phone-cta::after {
  content: "";
  position: absolute;
  bottom: -160px; left: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.phone-cta h2 { color: var(--bg); margin-bottom: 14px; position: relative; z-index: 1; }
.phone-cta p { color: rgba(255, 255, 255, 0.86); margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.phone-cta__number {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 500;
  color: var(--bg);
  position: relative;
  z-index: 1;
  letter-spacing: 0.01em;
}
.phone-cta__number svg {
  width: 36px;
  height: 36px;
  color: var(--mint);
  flex-shrink: 0;
}
.phone-cta__sub {
  margin-top: 14px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

/* ─── KONTAKT-CARD AUF INDEX ────────────────────────────────── */

.contact-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(48px, 7vw, 80px);
  background: var(--surface-soft);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
@media (max-width: 880px) { .contact-cta { grid-template-columns: 1fr; padding: 32px 28px; } }
.contact-cta__map {
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-soft);
  position: relative;
}
.contact-cta__map img { width: 100%; height: 100%; object-fit: cover; }
.contact-cta__maplink {
  position: absolute;
  right: 14px; bottom: 14px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--mint-deep);
  box-shadow: var(--shadow-sm);
}

/* ─── FOOTER ────────────────────────────────────────────────── */

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 12px;
}
.footer__tagline { font-size: 0.92rem; line-height: 1.6; color: rgba(255, 255, 255, 0.62); max-width: 280px; }
.footer__col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  margin: 0 0 16px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 8px; }
.footer__col a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  transition: color var(--t-fast);
}
.footer__col a:hover { color: var(--bg); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── LEGAL PAGES ───────────────────────────────────────────── */

.legal { max-width: 760px; margin: 0 auto; padding: clamp(56px, 8vw, 96px) 0; }
.legal h1 { margin-bottom: 32px; }
.legal h2 { margin-top: 40px; font-size: 1.55rem; }
.legal h3 { margin-top: 28px; font-size: 1.2rem; }
.legal p, .legal li { color: var(--ink-soft); font-size: 0.97rem; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--mint-deep); text-decoration: underline; }
.legal__note {
  margin-top: 48px;
  padding: 18px 22px;
  background: var(--rose-soft);
  border-left: 3px solid var(--rose-mid);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* 404 */
.error-page { text-align: center; padding: clamp(80px, 14vw, 160px) 0; }
.error-page__code {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 14vw, 9rem);
  color: var(--mint);
  line-height: 1;
  margin: 0 0 12px;
}

/* ─── COOKIE-BANNER ─────────────────────────────────────────── */

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 480px;
  margin-left: auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-xl);
  z-index: 60;
  flex-direction: column;
  gap: 14px;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner__title {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.cookie-banner__body {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
.cookie-banner__body a { color: var(--mint-deep); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner__actions .btn {
  flex: 1;
  min-width: 140px;
  padding: 10px 18px;
  font-size: 0.9rem;
}
@media (max-width: 600px) {
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; padding: 18px 20px; }
}

/* ─── REVEAL ────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms cubic-bezier(.22,.61,.36,1), transform 600ms cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

/* ─── SUB-HERO ──────────────────────────────────────────────── */

.subhero {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: clamp(60px, 8vw, 110px) 0 clamp(48px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.subhero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 380px; height: 380px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.22;
  filter: blur(40px);
}
.subhero__inner { max-width: 720px; position: relative; z-index: 1; }
.subhero h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 14px; }
.subhero p { font-size: 1.1rem; color: var(--ink-soft); margin: 0; }

/* ─── FOCUS ─────────────────────────────────────────────────── */

a:focus-visible, button:focus-visible,
.form__input:focus-visible, .form__select:focus-visible, .form__textarea:focus-visible {
  outline: 2px solid var(--mint-mid);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
