/* =========================================================
   Praxis Aufrecht — Praxis für Physiotherapie Berlin
   Demo-Website, gebaut von TEAM Gold LLC
   Gemeinsames Stylesheet für alle 9 Seiten
   ========================================================= */

:root {
  --sage: #7f9d85;
  --sage-dark: #5c7d65;
  --sage-light: #e8efe7;
  --sage-lighter: #f4f8f2;
  --forest: #22392a;
  --forest-deep: #16261b;
  --forest-soft: #35543d;
  --ink: #1e2a22;
  --ink-muted: #56645a;
  --ink-faint: #8a968d;
  --white: #ffffff;
  --sand: #f5f0e6;
  --sand-deep: #ebe3d3;
  --clay: #b9835c;
  --border: #e0e5db;
  --shadow-soft: 0 22px 50px -28px rgba(22, 38, 27, 0.42);
  --shadow-card: 0 12px 32px -20px rgba(22, 38, 27, 0.3);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --font-head: "Outfit", "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.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--forest);
  line-height: 1.16;
  margin: 0 0 0.6em;
  font-weight: 600;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.15rem, 4vw, 3.3rem); font-weight: 700; }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); }
h3 { font-size: 1.22rem; font-weight: 600; }
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.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: var(--sage-light);
  padding: 7px 16px;
  border-radius: 6px;
  margin-bottom: 18px;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  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, border-color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--forest-deep); }
.btn-secondary {
  background: var(--white);
  color: var(--forest);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--sage); color: var(--sage-dark); transform: translateY(-2px); }
.btn-sage { background: var(--sage-dark); color: var(--white); }
.btn-sage:hover { background: var(--forest-soft); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 18px;
  max-width: 1300px;
  padding-top: 13px;
  padding-bottom: 13px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--forest);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo .logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px 12px 12px 3px;
  background: linear-gradient(150deg, var(--sage) 0%, var(--forest-soft) 100%);
  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.66rem;
  color: var(--ink-faint);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 19px;
  flex-wrap: nowrap;
}
.main-nav a {
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 500;
  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(--forest);
  border-color: var(--sage);
}

.header-cta { flex-shrink: 0; padding: 11px 22px; font-size: 0.94rem; }
.main-nav .nav-cta { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  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(--forest);
  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: Cinematisches Bildband mit überlappender Textkarte ---------- */
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

.hero-cinema {
  position: relative;
  padding: 0 0 64px;
  background: linear-gradient(180deg, var(--sage-lighter) 0%, var(--white) 62%);
}

/* Vollbreites, randloses Bildband */
.hero-cinema-band {
  position: relative;
  width: 100%;
  height: 36vh;
  min-height: 250px;
  max-height: 380px;
  overflow: hidden;
  background: var(--forest-deep);
}
.hero-cinema-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero-cinema-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(34, 57, 42, 0.55) 0%, rgba(34, 57, 42, 0.30) 48%, rgba(34, 57, 42, 0.15) 100%);
}

/* Überlappende weiße Textkarte */
.hero-cinema-card {
  position: relative;
  z-index: 2;
  width: 82%;
  margin-top: -86px;
  background: var(--white);
  border-radius: 20px;
  padding: 40px 48px 0;
  box-shadow: 0 36px 78px -34px rgba(22, 38, 27, 0.44), 0 4px 16px -8px rgba(22, 38, 27, 0.12);
}

.hero-cinema-eyebrow {
  margin: 0 0 20px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.hero-cinema-title {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
  font-weight: 700;
  color: var(--forest);
}
.hero-cinema-title em {
  font-style: normal;
  color: var(--sage);
}

.hero-cinema-lede {
  margin-top: 20px;
  margin-bottom: 0;
  max-width: 62ch;
  font-size: 1.04rem;
}

/* Kennzahlenzeile am unteren Kartenrand */
.hero-cinema-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
  border-top: 1px solid var(--border);
}
.hc-metric {
  padding: 20px 8px 24px;
  text-align: left;
}
.hc-metric + .hc-metric {
  border-left: 1px solid var(--border);
  padding-left: 30px;
}
.hc-metric strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--forest);
}
.hc-metric span {
  display: block;
  margin-top: 7px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--ink-faint);
}

/* ---------- Sections ---------- */
section { padding: 86px 0; }
.section-sand { background: var(--sand); }
.section-sage { background: var(--sage-light); }
.section-forest {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--white);
}
.section-forest h2, .section-forest h3, .section-forest h4 { color: var(--white); }
.section-forest p { color: rgba(255,255,255,0.76); }
.section-forest .eyebrow { color: var(--white); background: rgba(255,255,255,0.14); }

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

/* ---------- 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: 50px;
  height: 50px;
  border-radius: 12px 12px 12px 3px;
  background: var(--sage-light);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 27px; height: 27px; }
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card ul { margin-top: 14px; }
.card ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
  font-size: 0.93rem;
  color: var(--ink-muted);
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--sage);
}
.card--dark { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); }
.card--dark h3 { color: var(--white); }
.card--dark p { color: rgba(255,255,255,0.76); }
.card--dark .card-icon { background: rgba(255,255,255,0.12); color: #b9d3bd; }

/* Leistungs-Kachel mit Kopfzeile */
.service-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  height: 100%;
}
.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; }
.service-tile h3 { margin: 4px 0 0; }
.tile-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.86rem;
  color: var(--sage-dark);
  font-weight: 500;
}

/* ---------- Stats bar ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.stat-item { text-align: center; border-right: 1px solid rgba(255,255,255,0.13); }
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-item span { font-size: 0.85rem; color: rgba(255,255,255,0.72); }

/* ---------- Timeline ---------- */
.timeline { position: relative; margin-top: 22px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; padding-left: 62px; margin-bottom: 42px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--sage);
  border: 4px solid var(--sage-light);
}
.timeline-item .year {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 4px;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

/* ---------- 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%;
}
.testimonial-card .occasion {
  display: inline-block;
  align-self: flex-start;
  background: var(--sand);
  color: var(--forest-soft);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 5px;
  margin-bottom: 14px;
}
.stars { display: flex; gap: 4px; color: var(--clay); 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: 12px 12px 12px 3px;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testimonial-meta strong { display: block; font-size: 0.95rem; color: var(--forest); 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);
  height: 100%;
}
.team-monogram {
  width: 72px;
  height: 72px;
  border-radius: 20px 20px 20px 5px;
  background: linear-gradient(145deg, var(--sage) 0%, var(--forest) 130%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.team-card .role {
  color: var(--sage-dark);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 12px;
  display: block;
}
.team-card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; }
.team-card .tags span {
  background: var(--sage-light);
  color: var(--sage-dark);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 5px;
}
.team-card h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-faint);
  margin: 20px 0 8px;
  font-weight: 600;
}

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  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: 600;
  font-size: 1.05rem;
  color: var(--forest);
  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: 7px;
  background: var(--sage-light);
  color: var(--sage-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: 11px; height: 2px; }
.faq-question .plus::after { width: 2px; height: 11px; }
.faq-item.is-open .faq-question .plus { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 26px 24px; color: var(--ink-muted); }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-item.is-open .faq-answer { max-height: 900px; }

.faq-category {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--forest);
  font-size: 1.12rem;
  margin: 44px 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(--sand);
  border: 1px solid var(--sand-deep);
  border-left: 4px solid var(--clay);
  color: var(--forest);
  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(--clay); margin-top: 2px; }
.form-notice strong { display: block; font-family: var(--font-head); margin-bottom: 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.89rem;
  color: var(--forest);
  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(--sage-lighter);
  transition: border-color 0.15s ease, background 0.15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--white);
}
textarea { resize: vertical; min-height: 130px; }
.radio-row { display: flex; gap: 22px; flex-wrap: wrap; }
.radio-row label { display: flex; align-items: center; gap: 8px; font-weight: 500; color: var(--ink-muted); margin-bottom: 0; }
.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: 5px; }

/* Info list (address / hours) */
.info-list { margin-top: 4px; }
.info-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}
.card ul.info-list li { padding-left: 0; }
.card ul.info-list li::before { content: none; }
.info-list li:last-child { border-bottom: none; }
.info-list .info-icon {
  width: 40px; height: 40px; border-radius: 10px 10px 10px 3px;
  background: var(--sage-light); color: var(--sage-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(--forest); font-family: var(--font-head); font-size: 0.97rem; }
.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: 11px 0; border-bottom: 1px solid var(--border); font-size: 0.94rem; }
.hours-table td:first-child { color: var(--forest); 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 {
  position: relative;
  border-radius: var(--radius-md);
  background:
    repeating-linear-gradient(90deg, rgba(127,157,133,0.18) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(0deg, rgba(127,157,133,0.18) 0 1px, transparent 1px 46px),
    linear-gradient(150deg, var(--sage-light) 0%, var(--sand) 100%);
  border: 1.5px dashed var(--sage);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  color: var(--forest);
  gap: 8px;
  overflow: hidden;
}
.map-placeholder::before {
  content: "";
  position: absolute;
  top: 22%;
  left: -10%;
  width: 130%;
  height: 26px;
  background: var(--sand-deep);
  transform: rotate(-9deg);
}
.map-placeholder::after {
  content: "";
  position: absolute;
  bottom: 18%;
  left: -10%;
  width: 130%;
  height: 16px;
  background: rgba(127,157,133,0.28);
  transform: rotate(6deg);
}
.map-pin {
  position: relative;
  z-index: 2;
  width: 54px; height: 54px;
  border-radius: 50% 50% 50% 6px;
  transform: rotate(-45deg);
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  margin-bottom: 8px;
}
.map-pin svg { width: 24px; height: 24px; color: var(--white); transform: rotate(45deg); }
.map-placeholder strong { font-family: var(--font-head); font-size: 1.1rem; position: relative; z-index: 2; }
.map-placeholder span { font-size: 0.86rem; color: var(--ink-muted); position: relative; z-index: 2; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(150deg, var(--forest-soft) 0%, var(--forest) 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.86); margin-bottom: 0; }
.cta-banner .btn-primary { background: var(--white); color: var(--forest); }
.cta-banner .btn-primary:hover { background: var(--sand); }

/* ---------- Callout / Hinweisbox ---------- */
.callout {
  background: var(--sand);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin: 30px 0;
}
.callout h3 { font-size: 1.05rem; margin-bottom: 8px; }
.callout p:last-child { margin-bottom: 0; }

/* ---------- Preis-/Tabellenliste ---------- */
.price-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.price-table th {
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  font-weight: 600;
}
.price-table td { padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 0.94rem; color: var(--ink-muted); }
.price-table td:first-child { color: var(--forest); font-weight: 500; }
.price-table td:last-child { text-align: right; white-space: nowrap; font-weight: 600; color: var(--forest); }

/* ---------- Legal page ---------- */
.legal-section { max-width: 840px; }
.legal-section h2 { margin-top: 0; }
.legal-section h3 { margin-top: 34px; }
.legal-section p, .legal-section li { font-size: 0.96rem; }
.legal-section ul.bullets { margin: 0 0 1em; }
.legal-section ul.bullets li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 7px;
  color: var(--ink-muted);
}
.legal-section ul.bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--sage);
}
.legal-block { margin-bottom: 64px; scroll-margin-top: 100px; }
.legal-block:last-child { margin-bottom: 0; }
.legal-nav { display: flex; gap: 12px; margin-bottom: 44px; flex-wrap: wrap; }
.legal-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 7px;
  background: var(--sage-light);
  color: var(--sage-dark);
  font-family: var(--font-head);
}
.legal-nav a:hover { background: var(--sage-dark); color: var(--white); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  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: 330px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  font-weight: 600;
}
.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: 10px; }
.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.42);
  margin-top: 18px;
  margin-bottom: 0;
}

/* ---------- Page header (interior pages) ---------- */
.page-header {
  padding: 58px 0 62px;
  background: linear-gradient(180deg, var(--sage-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(--sage-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.top { align-items: start; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

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

/* Ablauf-Schritte */
.steps { counter-reset: step; display: grid; gap: 20px; }
.step {
  display: flex;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  box-shadow: var(--shadow-card);
}
.step-num {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px 12px 12px 3px;
  background: var(--sage-light);
  color: var(--sage-dark);
  font-family: var(--font-head);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step p:last-child { margin-bottom: 0; }

/* =========================================================
   FOTO-BAUSTEINE
   ========================================================= */

/* ---------- Seitenkopf mit Foto ---------- */
.page-header--photo {
  position: relative;
  border-bottom: none;
  padding: 80px 0 86px;
  background-color: var(--forest-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 22px rgba(10,20,13,0.45); }
.page-header--photo .lede,
.page-header--photo p { color: rgba(255,255,255,0.91); }
.page-header--photo .breadcrumb { color: rgba(255,255,255,0.7); }
.page-header--photo .breadcrumb a { color: #b9d8bf; }
.page-header--photo .eyebrow { color: var(--white); background: rgba(255,255,255,0.16); }

.ph-behandlungsraum {
  background-image:
    linear-gradient(100deg, rgba(22,38,27,0.96) 0%, rgba(34,57,42,0.90) 45%, rgba(92,125,101,0.70) 100%),
    url("img/behandlungsraum-hell-wide.jpg");
}
.ph-therapieliege {
  background-image:
    linear-gradient(100deg, rgba(22,38,27,0.96) 0%, rgba(34,57,42,0.90) 45%, rgba(92,125,101,0.70) 100%),
    url("img/therapieliege-wide.jpg");
}
.ph-geraetetherapie {
  background-image:
    linear-gradient(100deg, rgba(22,38,27,0.96) 0%, rgba(34,57,42,0.90) 45%, rgba(92,125,101,0.70) 100%),
    url("img/geraetetherapie-wide.jpg");
}

/* ---------- Vollbreite Foto-Band mit Claim ---------- */
.photo-band {
  position: relative;
  padding: 0;
  background-color: var(--forest-deep);
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
}
.pb-behandlungsraum {
  background-image:
    linear-gradient(100deg, rgba(22,38,27,0.92) 0%, rgba(34,57,42,0.78) 42%, rgba(92,125,101,0.46) 100%),
    url("img/behandlungsraum-hell-wide.jpg");
}
.pb-therapieliege {
  background-image:
    linear-gradient(100deg, rgba(22,38,27,0.92) 0%, rgba(34,57,42,0.78) 42%, rgba(92,125,101,0.46) 100%),
    url("img/therapieliege-wide.jpg");
}
.pb-geraetetherapie {
  background-image:
    linear-gradient(100deg, rgba(22,38,27,0.92) 0%, rgba(34,57,42,0.78) 42%, rgba(92,125,101,0.46) 100%),
    url("img/geraetetherapie-wide.jpg");
}
/* Band ohne Foto — typografische Variante im Waldgrün-Verlauf */
.pb--plain {
  background-image:
    linear-gradient(114deg, var(--forest-deep) 0%, var(--forest) 46%, var(--forest-soft) 100%);
}
.pb--plain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 17px 17px;
}
.pb--plain .container { position: relative; z-index: 1; }
.photo-band .container { padding-top: 98px; padding-bottom: 98px; }
.photo-band-inner { max-width: 730px; }
.photo-band h2 { color: var(--white); text-shadow: 0 2px 22px rgba(10,20,13,0.45); }
.photo-band p { color: rgba(255,255,255,0.91); }
.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(--forest); }
.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.13);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 9px 16px;
  border-radius: 7px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---------- Foto in Karten / Kacheln ---------- */
.card-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
}
.cat-photo {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 26px;
  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(--sage-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-Raster (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(--forest);
  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: 48px 22px 20px;
  background: linear-gradient(180deg, rgba(16,26,19,0) 0%, rgba(16,26,19,0.58) 45%, rgba(16,26,19,0.9) 100%);
  color: var(--white);
}
.photo-tour-item figcaption strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 3px;
}
.photo-tour-item figcaption span { font-size: 0.84rem; color: rgba(255,255,255,0.84); 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 {
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  color: var(--white);
}
.photo-tour .type-tile { grid-column: span 2; }
.photo-tour .type-tile.tt--wide { grid-column: span 4; }
.photo-tour .type-tile.tt--full { grid-column: span 6; }
.type-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 16px 16px;
}
.type-tile > * { position: relative; z-index: 1; }
.type-tile .tt-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.82;
  margin-bottom: 12px;
}
.type-tile .tt-big {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.type-tile .tt-quote {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  line-height: 1.34;
  margin-bottom: 10px;
}
.type-tile p { font-size: 0.9rem; margin-bottom: 0; color: inherit; opacity: 0.88; }
.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.26);
}
.type-tile .tt-rows li:last-child { border-bottom: none; }
.tt-forest { background: linear-gradient(150deg, var(--forest-soft), var(--forest-deep)); }
.tt-sage { background: linear-gradient(150deg, #93ae98, var(--sage-dark)); }
.tt-sand {
  background: linear-gradient(150deg, var(--sand), var(--sand-deep));
  color: var(--forest);
}
.tt-sand::after { background-image: radial-gradient(rgba(22,38,27,0.08) 1px, transparent 1px); }
.tt-sand .tt-label { opacity: 0.68; }
.tt-sand .tt-rows li { border-color: rgba(22,38,27,0.2); }
.tt-clay { background: linear-gradient(150deg, #c9976f, #8d5f3c); }

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
  .main-nav ul { gap: 15px; }
  .main-nav a { font-size: 0.85rem; }
  .header-cta { padding: 10px 18px; font-size: 0.88rem; }
  .logo { font-size: 1.08rem; }
}

@media (max-width: 1000px) {
  .header-inner { flex-wrap: wrap; gap: 24px; }
  .main-nav ul { gap: 4px; }
  .main-nav a { font-size: 0.95rem; }
  .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; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px; }

  .site-header .header-inner { flex-wrap: wrap; }
  .main-nav.is-open {
    display: block;
    width: 100%;
    order: 3;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: 12px;
  }
  .main-nav.is-open ul { flex-direction: column; align-items: flex-start; gap: 2px; }
  .main-nav.is-open a { display: block; padding: 10px 0; width: 100%; }
  .nav-cta { display: none; }
  .main-nav.is-open .nav-cta { display: block; margin-top: 14px; }
  .main-nav.is-open .nav-cta a {
    background: var(--forest);
    color: var(--white);
    text-align: center;
    border-radius: 8px;
    padding: 13px 20px;
    font-family: var(--font-head);
    font-weight: 600;
    border-bottom: none;
  }

  .photo-band .container { padding-top: 70px; padding-bottom: 70px; }
  .photo-tour { grid-template-columns: repeat(4, 1fr); }
  .pt--wide { grid-column: span 4; }
  .pt--full { grid-column: span 4; aspect-ratio: 16 / 9; }
  .photo-tour .type-tile.tt--wide,
  .photo-tour .type-tile.tt--full { grid-column: span 4; }
  .cat-photo { aspect-ratio: 16 / 7; }
}

@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; }
  .cta-banner { padding: 32px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-card { padding: 26px; }
  .icon-panel { padding: 28px; }
  .icon-panel-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .page-header--photo { padding: 54px 0 58px; }
  .photo-band .container { padding-top: 54px; padding-bottom: 54px; }
  .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; }
  .photo-tour .type-tile,
  .photo-tour .type-tile.tt--wide,
  .photo-tour .type-tile.tt--full { grid-column: span 1; }
  .cat-photo { aspect-ratio: 16 / 9; }
  .step { flex-direction: column; gap: 14px; }
  .timeline-item { padding-left: 52px; }
}

/* ---------- Hero-Bildband: kompakte Fassung unter 900px ---------- */
@media (max-width: 900px) {
  .hero-cinema { padding-bottom: 64px; }
  .hero-cinema-band { height: 34vh; min-height: 210px; max-height: 340px; }
  .hero-cinema-card {
    width: 92%;
    margin-top: -50px;
    border-radius: 20px;
    padding: 34px 30px 0;
  }
  .hero-cinema-eyebrow { font-size: 0.7rem; letter-spacing: 0.16em; margin-bottom: 14px; }
  .hero-cinema-lede { margin-top: 20px; font-size: 1.03rem; }
  .hero-cinema .hero-actions { margin-top: 26px; }
  .hero-cinema-metrics { margin-top: 30px; }
  .hc-metric { padding: 18px 4px 20px; }
  .hc-metric + .hc-metric { padding-left: 16px; }
  .hc-metric strong { font-size: 1.28rem; }
  .hc-metric span { font-size: 0.62rem; letter-spacing: 0.07em; margin-top: 5px; }
}

@media (max-width: 480px) {
  .hero-cinema-card { padding: 28px 22px 0; }
  .hc-metric strong { font-size: 1.1rem; }
  .hc-metric span {
    font-size: 0.58rem;
    letter-spacing: 0.03em;
    hyphens: auto;
    overflow-wrap: break-word;
  }
  .hc-metric { padding-right: 10px; }
  .hc-metric + .hc-metric { padding-left: 12px; }
  .hero-cinema .hero-actions .btn { width: 100%; }
}
