/* =========================================================
   Zahnwerk Charlottenburg — Demo-Website für TEAM Gold LLC
   Gemeinsames Stylesheet für alle 9 Seiten
   ========================================================= */

:root {
  --mint: #21a892;
  --mint-dark: #178272;
  --mint-light: #e6f6f2;
  --mint-lighter: #f3fbf9;
  --petrol: #123c3e;
  --petrol-deep: #0b2628;
  --petrol-soft: #1c4d4f;
  --ink: #16292a;
  --ink-muted: #52696a;
  --ink-faint: #7c8f8f;
  --white: #ffffff;
  --sand: #f7f5ef;
  --border: #dfe9e6;
  --shadow-soft: 0 20px 45px -25px rgba(11, 38, 40, 0.35);
  --shadow-card: 0 10px 30px -18px rgba(11, 38, 40, 0.25);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-head: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--petrol);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--ink-muted); }
a { color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: var(--mint-light);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-muted);
  max-width: 640px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--petrol);
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--petrol-deep); }
.btn-secondary {
  background: var(--white);
  color: var(--petrol);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--mint); color: var(--mint-dark); transform: translateY(-2px); }
.btn-mint {
  background: var(--mint);
  color: var(--white);
}
.btn-mint:hover { background: var(--mint-dark); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--petrol);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.logo .logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.logo .logo-mark svg { width: 24px; height: 24px; }
.logo-text-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.main-nav a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink-muted);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--petrol);
  border-color: var(--mint);
}

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--petrol);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

/* =========================================================
   HERO — zentriert-editorial mit vollbreitem Bildband
   Eigenständige Architektur: ruhiger, zentrierter Textkopf
   über einem randlosen Bildband, auf dessen Oberkante drei
   Statistik-Karten überlappend aufsitzen.
   ========================================================= */
.hero-ed {
  position: relative;
  padding: 0;
  background: var(--white);
}

/* --- Oberer, heller Bereich --- */
.hero-ed-top {
  background: linear-gradient(180deg, var(--mint-lighter) 0%, var(--white) 100%);
  min-height: 44vh;
  display: flex;
  align-items: center;
  padding: 68px 0 104px;
}
.hero-ed-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-ed-eyebrow {
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin: 0 0 22px;
}
.hero-ed-title {
  font-size: clamp(2.6rem, 4.6vw, 4.4rem);
  line-height: 1.08;
  max-width: 16ch;
  margin: 0 auto;
  text-wrap: balance;
  letter-spacing: -0.02em;
}
.hero-ed-accent { color: var(--mint); }
.hero-ed-lede {
  font-size: 1.13rem;
  color: var(--ink-muted);
  max-width: 60ch;
  margin: 26px auto 0;
}
.hero-ed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

/* --- Vollbreites Bildband --- */
.hero-ed-band {
  position: relative;
}
.hero-ed-band-media {
  position: relative;
  width: 100%;
  height: 42vh;            /* Bandhöhe, Motiv wirkt ca. 21:9 */
  min-height: 320px;
  max-height: 540px;
  overflow: hidden;
  background: var(--petrol-deep);
}
.hero-ed-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 0;
  border: 0;
}
.hero-ed-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(11,38,40,0.62) 0%,
    rgba(18,60,62,0.30) 34%,
    rgba(18,60,62,0.06) 62%,
    rgba(18,60,62,0) 100%
  );
}

/* --- Statistik-Karten, überlappend auf der Bildoberkante --- */
.hero-ed-stats-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 3;
}
.hero-ed-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-ed-stat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  text-align: center;
  box-shadow: 0 22px 48px -22px rgba(11,38,40,0.42), 0 2px 8px -4px rgba(11,38,40,0.16);
}
.hero-ed-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--petrol);
}
.hero-ed-stat span {
  display: block;
  margin-top: 7px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

@media (max-width: 900px) {
  .hero-ed-top {
    min-height: 0;
    padding: 52px 0 44px;
  }
  .hero-ed-inner { text-align: center; }
  .hero-ed-band-media {
    height: 30vh;
    min-height: 200px;
    max-height: 320px;
  }
  .hero-ed-stats-wrap {
    position: static;
    transform: none;
    padding: 26px 0 8px;
    background: var(--white);
  }
  .hero-ed-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 460px;
  }
  .hero-ed-stat {
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
  }
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-sand { background: var(--sand); }
.section-mint { background: var(--mint-light); }
.section-petrol {
  background: linear-gradient(160deg, var(--petrol) 0%, var(--petrol-deep) 100%);
  color: var(--white);
}
.section-petrol h2, .section-petrol h3 { color: var(--white); }
.section-petrol p { color: rgba(255,255,255,0.75); }

.section-head {
  max-width: 720px;
  margin: 0 0 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  height: 100%;
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--mint-light);
  color: var(--mint-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card ul { margin-top: 12px; }
.card ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
  font-size: 0.94rem;
  color: var(--ink-muted);
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.card--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}
.card--dark h3 { color: var(--white); }

/* Service tile with number */
.service-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.service-tile .tile-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}
.service-tile .card-icon { margin-bottom: 0; flex-shrink: 0; }

/* ---------- Stats bar ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--petrol);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.stat-item { text-align: center; border-right: 1px solid rgba(255,255,255,0.12); }
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--white);
}
.stat-item span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ---------- Timeline ---------- */
.timeline { position: relative; margin-top: 20px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 42px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mint);
  border: 4px solid var(--mint-light);
}
.timeline-item .year {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--mint-dark);
  margin-bottom: 6px;
  font-size: 1.05rem;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.stars { display: flex; gap: 4px; color: var(--mint); margin-bottom: 14px; }
.stars svg { width: 18px; height: 18px; }
.testimonial-quote {
  font-size: 1rem;
  color: var(--ink);
  flex-grow: 1;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.avatar-mono {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--petrol);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testimonial-meta strong { display: block; font-size: 0.95rem; color: var(--petrol); font-family: var(--font-head); }
.testimonial-meta span { font-size: 0.82rem; color: var(--ink-faint); }

/* ---------- Team ---------- */
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px;
  box-shadow: var(--shadow-card);
  text-align: left;
}
.team-monogram {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--mint) 0%, var(--petrol) 130%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.team-card .role {
  color: var(--mint-dark);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 12px;
  display: block;
}
.team-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}
.team-card .tags span {
  background: var(--mint-light);
  color: var(--mint-dark);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
}

/* ---------- Practice tour tiles ---------- */
.tour-tile {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  background: var(--white);
}
.tour-visual {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.tour-visual svg { width: 76px; height: 76px; position: relative; z-index: 1; }
.tour-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(circle, rgba(255,255,255,0.35) 1px, transparent 1px);
  background-size: 18px 18px;
}
.tour-visual--a { background: linear-gradient(150deg, var(--mint) 0%, var(--mint-dark) 100%); color: var(--white); }
.tour-visual--b { background: linear-gradient(150deg, var(--petrol-soft) 0%, var(--petrol) 100%); color: var(--white); }
.tour-visual--c { background: linear-gradient(150deg, #cdeee6 0%, var(--mint) 100%); color: var(--petrol); }
.tour-visual--d { background: linear-gradient(150deg, var(--petrol-deep) 0%, var(--petrol-soft) 100%); color: var(--white); }
.tour-body { padding: 26px 28px 30px; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--petrol);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.faq-question .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--mint-light);
  color: var(--mint-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.2s ease;
}
.faq-question .plus::before, .faq-question .plus::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.faq-question .plus::before { width: 10px; height: 2px; }
.faq-question .plus::after { width: 2px; height: 10px; }
.faq-item.is-open .faq-question .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faq-answer-inner {
  padding: 0 26px 24px;
  color: var(--ink-muted);
}
.faq-item.is-open .faq-answer { max-height: 600px; }

.faq-category {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--petrol);
  font-size: 1.1rem;
  margin: 42px 0 18px;
}
.faq-category:first-child { margin-top: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.form-notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--mint-light);
  border: 1px solid var(--mint);
  color: var(--petrol);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 30px;
  font-size: 0.92rem;
}
.form-notice svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--mint-dark); margin-top: 2px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }
label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--petrol);
  margin-bottom: 8px;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], select, textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--sand);
  transition: border-color 0.15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--mint);
  background: var(--white);
}
textarea { resize: vertical; min-height: 120px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--ink-muted); margin-bottom: 24px; }
.checkbox-row input { margin-top: 4px; }

/* Info list (address / hours) */
.info-list { margin-top: 4px; }
.info-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.info-list li:last-child { border-bottom: none; }
.info-list .info-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--mint-light); color: var(--mint-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-list .info-icon svg { width: 20px; height: 20px; }
.info-list strong { display: block; color: var(--petrol); font-family: var(--font-head); font-size: 0.95rem; }
.info-list span { color: var(--ink-muted); font-size: 0.92rem; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.94rem; }
.hours-table td:first-child { color: var(--petrol); font-weight: 600; }
.hours-table td:last-child { text-align: right; color: var(--ink-muted); }
.hours-table tr:last-child td { border-bottom: none; }

.map-placeholder {
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, var(--mint-light) 0%, var(--white) 100%);
  border: 1.5px dashed var(--mint);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  color: var(--petrol);
  gap: 10px;
}
.map-placeholder svg { width: 44px; height: 44px; color: var(--mint-dark); }
.map-placeholder strong { font-family: var(--font-head); }
.map-placeholder span { font-size: 0.85rem; color: var(--ink-faint); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(150deg, var(--mint) 0%, var(--mint-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.cta-banner h2, .cta-banner p { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.9); }
.cta-banner .btn-primary { background: var(--white); color: var(--petrol); }
.cta-banner .btn-primary:hover { background: var(--sand); }

/* ---------- Legal page ---------- */
.legal-section { max-width: 820px; }
.legal-section h2 { margin-top: 0; }
.legal-section h3 { margin-top: 32px; }
.legal-block { margin-bottom: 60px; }
.legal-block:last-child { margin-bottom: 0; }
.legal-nav {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.legal-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--mint-light);
  color: var(--mint-dark);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--petrol-deep);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo { color: var(--white); }
.footer-brand p { margin-top: 16px; color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 320px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,0.68); font-size: 0.92rem; }
.footer-col a:hover { color: var(--white); }
.footer-col p { color: rgba(255,255,255,0.68); font-size: 0.92rem; margin-bottom: 8px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.footer-demo-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 18px;
}

/* ---------- Page header (interior pages) ---------- */
.page-header {
  padding: 56px 0 60px;
  background: linear-gradient(180deg, var(--mint-lighter) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--mint-dark); text-decoration: none; font-weight: 600; }

/* Two column layout helper */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.icon-panel {
  background: linear-gradient(155deg, var(--petrol) 0%, var(--petrol-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 46px;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.icon-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.icon-panel-item { text-align: center; }
.icon-panel-item svg { width: 34px; height: 34px; color: var(--mint); margin: 0 auto 10px; }
.icon-panel-item strong { display: block; font-family: var(--font-head); font-size: 0.92rem; }

/* Divider dots */
.dot-divider { display: flex; gap: 6px; justify-content: center; margin: 8px 0 30px; }
.dot-divider span { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px; }
  .icon-panel-grid { grid-template-columns: 1fr 1fr; }

  .site-header .header-inner {
    flex-wrap: wrap;
  }
  .main-nav.is-open {
    display: block;
    width: 100%;
    order: 3;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    margin-top: 14px;
  }
  .main-nav.is-open ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .main-nav.is-open a { display: block; padding: 10px 0; width: 100%; }
  .main-nav.is-open::after {
    content: "";
  }
}

@media (max-width: 640px) {
  section { padding: 56px 0; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; padding: 32px 24px; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 18px; }
  .cta-banner { padding: 32px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-card { padding: 26px; }
  .icon-panel { padding: 28px; }
}

/* =========================================================
   FOTO-ERWEITERUNGEN
   Echte Fotos mit Marken-Overlays (Petrol/Mint).
   Farbschema und Typografie bleiben unverändert.
   ========================================================= */

/* ---------- Seitenkopf mit Foto ---------- */
.page-header--photo {
  position: relative;
  border-bottom: none;
  padding: 78px 0 84px;
  background-color: var(--petrol-deep);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-header--photo .container { position: relative; z-index: 1; }
.page-header--photo h1 { color: var(--white); text-shadow: 0 2px 20px rgba(6,24,26,0.4); }
.page-header--photo .lede,
.page-header--photo p { color: rgba(255,255,255,0.90); }
.page-header--photo .breadcrumb { color: rgba(255,255,255,0.70); }
.page-header--photo .breadcrumb a { color: #8fe6d4; }
.page-header--photo .eyebrow {
  color: var(--white);
  background: rgba(255,255,255,0.16);
}
/* Seitenkopf-Motive: je ein Motiv pro Unterseite, kraeftiger Petrol-Overlay bleibt */
.ph-hell {
  background-image:
    linear-gradient(100deg, rgba(11,38,40,0.95) 0%, rgba(18,60,62,0.88) 45%, rgba(23,130,114,0.74) 100%),
    url("img/behandlung-hell-wide.jpg");
}
.ph-gross {
  background-image:
    linear-gradient(100deg, rgba(11,38,40,0.96) 0%, rgba(18,60,62,0.90) 45%, rgba(23,130,114,0.78) 100%),
    url("img/behandlung-gross-wide.jpg");
}
.ph-mint {
  background-image:
    linear-gradient(100deg, rgba(11,38,40,0.96) 0%, rgba(18,60,62,0.90) 45%, rgba(23,130,114,0.78) 100%),
    url("img/behandlung-mint-wide.jpg");
}
.ph-blau {
  background-image:
    linear-gradient(100deg, rgba(11,38,40,0.95) 0%, rgba(18,60,62,0.88) 45%, rgba(23,130,114,0.74) 100%),
    url("img/behandlung-blau-wide.jpg");
}
.ph-weiss {
  background-image:
    linear-gradient(100deg, rgba(11,38,40,0.96) 0%, rgba(18,60,62,0.90) 45%, rgba(23,130,114,0.78) 100%),
    url("img/behandlung-weiss-wide.jpg");
}
.ph-technik {
  background-image:
    linear-gradient(100deg, rgba(11,38,40,0.97) 0%, rgba(18,60,62,0.92) 45%, rgba(23,130,114,0.80) 100%),
    url("img/behandlung-technik-wide.jpg");
}
.ph-wartebereich {
  background-image:
    linear-gradient(100deg, rgba(11,38,40,0.96) 0%, rgba(18,60,62,0.90) 45%, rgba(23,130,114,0.78) 100%),
    url("img/wartebereich-wide.jpg");
}

/* ---------- Vollbreite Farb-Band mit Claim ---------- */
.photo-band {
  position: relative;
  padding: 0;
  background-color: var(--petrol-deep);
  background-image:
    radial-gradient(circle at 82% 18%, rgba(33,168,146,0.55) 0%, rgba(33,168,146,0) 58%),
    linear-gradient(100deg, var(--petrol-deep) 0%, var(--petrol) 48%, var(--mint-dark) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.photo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}
.photo-band .container { position: relative; z-index: 1; }
.photo-band .container {
  padding-top: 96px;
  padding-bottom: 96px;
}
.photo-band-inner { max-width: 720px; }
.photo-band h2 { color: var(--white); text-shadow: 0 2px 20px rgba(6,24,26,0.4); }
.photo-band p { color: rgba(255,255,255,0.90); }
.photo-band .eyebrow { color: var(--white); background: rgba(255,255,255,0.16); }
.photo-band .btn-secondary {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.photo-band .btn-secondary:hover { background: var(--white); color: var(--petrol); }
.photo-band-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.photo-band-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--white);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- Foto in Karten / Kacheln ---------- */
.card-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.card--photo { padding-top: 0; overflow: hidden; }

/* Akzentbild in Leistungs-Kategorien */
.cat-photo {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}

/* ---------- Zweispaltige Foto-Sektion ---------- */
.media-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--mint-light);
}
.media-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.media-figure figcaption {
  padding: 16px 22px 18px;
  font-size: 0.86rem;
  color: var(--ink-muted);
  background: var(--white);
  border-top: 1px solid var(--border);
}

/* ---------- Foto-Rundgang (Galerie) ---------- */
.photo-tour {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.photo-tour-item {
  position: relative;
  margin: 0;
  grid-column: span 2;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--petrol);
  box-shadow: var(--shadow-card);
}
.photo-tour-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-tour-item:hover img { transform: scale(1.04); }
.photo-tour-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 44px 22px 20px;
  background: linear-gradient(180deg, rgba(11,38,40,0) 0%, rgba(11,38,40,0.55) 45%, rgba(11,38,40,0.88) 100%);
  color: var(--white);
}
.photo-tour-item figcaption strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.photo-tour-item figcaption span {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
}
.pt--sq { aspect-ratio: 1 / 1; }
.pt--tile { aspect-ratio: 4 / 3; }
.pt--wide { grid-column: span 4; aspect-ratio: 16 / 9; }
.pt--full { grid-column: span 6; aspect-ratio: 21 / 8; }

/* ---------- Typografische Farbkacheln ---------- */
.type-tile {
  position: relative;
  grid-column: span 2;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.type-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 15px 15px;
  pointer-events: none;
}
.type-tile > * { position: relative; z-index: 1; }
.type-tile .tt-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 12px;
}
.type-tile .tt-big {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.type-tile .tt-quote {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.33;
  margin-bottom: 10px;
  color: inherit;
}
.type-tile p { font-size: 0.9rem; margin-bottom: 0; color: inherit; opacity: 0.86; }
.type-tile h2, .type-tile h3 { color: inherit; }
.type-tile .tt-rows { margin-top: 8px; }
.type-tile .tt-rows li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.88rem;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.24);
}
.type-tile .tt-rows li:last-child { border-bottom: none; }
.tt-petrol { background: linear-gradient(150deg, var(--petrol-soft), var(--petrol-deep)); }
.tt-mint { background: linear-gradient(150deg, #2fc1a8, var(--mint-dark)); }
.tt-sand {
  background: linear-gradient(150deg, var(--mint-light), #cdeae2);
  color: var(--petrol);
}
.tt-sand::after { background-image: radial-gradient(rgba(18,60,62,0.09) 1px, transparent 1px); }
.tt-sand .tt-rows li { border-color: rgba(18,60,62,0.2); }
.tt--span3 { grid-column: span 3; }
.tt--span4 { grid-column: span 4; }
.tt--span6 { grid-column: span 6; min-height: 0; }
.tt--row {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 34px 30px;
}
.tt-figure { text-align: left; }
.tt-figure .tt-big { margin-bottom: 4px; }
.tt-figure span {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.8;
}

/* Typo-Band als Ersatz für ein Kategoriefoto */
.cat-typeband {
  margin-bottom: 24px;
  min-height: 0;
  padding: 34px 30px;
}

/* ---------- Responsive Foto-Anpassungen ---------- */
@media (max-width: 980px) {
  .photo-band .container { padding-top: 68px; padding-bottom: 68px; }
  .photo-tour { grid-template-columns: repeat(4, 1fr); }
  .pt--wide { grid-column: span 4; }
  .pt--full { grid-column: span 4; aspect-ratio: 16 / 9; }
  .tt--span4, .tt--span6 { grid-column: span 4; }
  .tt--span3 { grid-column: span 2; }
  .cat-photo { aspect-ratio: 16 / 7; }
}

@media (max-width: 640px) {
  .page-header--photo { padding: 52px 0 56px; }
  .photo-band .container { padding-top: 52px; padding-bottom: 52px; }
  .photo-tour { grid-template-columns: 1fr; gap: 16px; }
  .photo-tour-item,
  .pt--sq, .pt--tile, .pt--wide, .pt--full {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }
  .type-tile,
  .tt--span3, .tt--span4, .tt--span6 { grid-column: span 1; }
  .tt--row { flex-direction: column; align-items: flex-start; gap: 18px; }
  .cat-photo { aspect-ratio: 16 / 9; }
  .photo-band-facts span { font-size: 0.8rem; }
}

/* ---------- Sprachumschalter DE/EN ---------- */
.lang-toggle {
  flex-shrink: 0;
  min-width: 46px;
  padding: 9px 13px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--petrol);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.lang-toggle:hover {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--white);
}
.lang-toggle:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}
.main-nav .nav-lang { display: none; }

@media (max-width: 980px) {
  .main-nav.is-open .nav-lang { display: block; padding-top: 12px; }
}
