/* ============================================================
   Praxis Goussanou – Haupt-Stylesheet
   Design: Refined Organic Minimalism
   Autor: Claude Code
   ============================================================ */

/* ============================================================
   0. SELBST-GEHOSTETE SCHRIFTEN (DSGVO-konform, kein Google-Server-Kontakt)
   ============================================================ */

/* Cormorant Garamond – normal 400 */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                 U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Cormorant Garamond – normal 600 */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                 U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Cormorant Garamond – italic 400 */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-italic-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                 U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* DM Sans – 300 / 400 / 500 */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/dm-sans.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                 U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   1. CSS-VARIABLEN (Design Tokens)
   ============================================================ */

:root {
  /* Primärfarben */
  --color-primary:        #3D6B2F;
  --color-primary-light:  #5A8F44;
  --color-primary-pale:   #EDF2E9;

  /* Neutrale Töne */
  --color-bg:             #FAFAF8;
  --color-surface:        #FFFFFF;
  --color-border:         #E8EDE5;

  /* Text */
  --color-text:           #1C2B18;
  --color-text-muted:     #5A6B55;

  /* Akzente */
  --color-accent:         #C8A96E;
  --color-cta:            #3D6B2F;
  --color-cta-hover:      #2D5020;

  /* Schriftgrößen */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.375rem;
  --text-2xl:  1.75rem;
  --text-3xl:  2.25rem;
  --text-4xl:  3rem;
  --text-5xl:  4rem;

  /* Abstände */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: 1.5rem;

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  /* Schatten */
  --shadow-sm: 0 2px 8px rgba(28, 43, 24, 0.06);
  --shadow-md: 0 4px 20px rgba(28, 43, 24, 0.10);
  --shadow-lg: 0 8px 40px rgba(28, 43, 24, 0.14);

  /* Typografie-Familie */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Übergänge */
  --transition: 0.3s ease;
}

/* ============================================================
   2. RESET & BASIS
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ============================================================
   3. LAYOUT-HELFER
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--space-xl);
}

.section--pale {
  background-color: var(--color-primary-pale);
}

.section--surface {
  background-color: var(--color-surface);
}

/* ============================================================
   4. TYPOGRAFIE
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }

p {
  margin-bottom: var(--space-sm);
  max-width: 68ch;
}

p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 60ch;
}

.text-muted {
  color: var(--color-text-muted);
}

.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--color-primary);
  border-left: 3px solid var(--color-accent);
  padding-left: var(--space-md);
  margin-block: var(--space-lg);
  max-width: 52ch;
}

/* Sektion-Überschrift zentriert */
.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  margin-bottom: var(--space-xs);
}

/* ============================================================
   5. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-cta);
  color: #ffffff;
  border: 2px solid var(--color-cta);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-primary);
  border: none;
  padding-inline: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn--ghost:hover {
  color: var(--color-cta-hover);
}

/* ============================================================
   6. HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-surface);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

/* Aktiv-Klasse per JS gesetzt beim Scrollen */
.site-header.scrolled {
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 56px;
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: var(--text-xs);
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* Desktop-Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  background-color: var(--color-primary-pale);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown-toggle svg {
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  padding-top: calc(0.5rem + 8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition),
              transform var(--transition);
  transform: translateX(-50%) translateY(-8px);
  pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-link {
  display: block;
  padding: 0.625rem 1rem;
  font-size: var(--text-sm);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
}

.dropdown-link:hover {
  color: var(--color-primary);
  background-color: var(--color-primary-pale);
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
  aria-label: "Menü öffnen";
}

.hamburger:hover {
  background-color: var(--color-primary-pale);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

/* Hamburger → X */
.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay-Menü */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background-color: var(--color-surface);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  padding-inline: var(--container-pad);
  text-align: center;
}

.mobile-nav-link {
  display: block;
  padding: 0.875rem 2rem;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: color var(--transition), background-color var(--transition);
  width: 100%;
}

.mobile-nav-link:hover {
  color: var(--color-primary);
  background-color: var(--color-primary-pale);
}

.mobile-nav-cta {
  margin-top: var(--space-md);
}

/* ============================================================
   7. FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--color-text);
  color: rgba(250, 250, 248, 0.85);
  padding-block: var(--space-xl);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-lg);
}

.footer-brand .logo-text {
  color: #ffffff;
}

.footer-brand .logo-text span {
  color: rgba(250, 250, 248, 0.6);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(250, 250, 248, 0.6);
  margin-top: var(--space-xs);
}

.footer-locations {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.footer-location h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.footer-location address {
  font-style: normal;
  font-size: var(--text-sm);
  line-height: 1.8;
  color: rgba(250, 250, 248, 0.75);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: rgba(250, 250, 248, 0.75);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: rgba(250, 250, 248, 0.5);
}

.footer-legal {
  display: flex;
  gap: var(--space-sm);
}

.footer-legal a {
  color: rgba(250, 250, 248, 0.5);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: rgba(250, 250, 248, 0.9);
}

/* ============================================================
   8. HERO-SEKTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-primary-pale);
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Eleganter Farbverlauf als Platzhalter für Foto */
  background: linear-gradient(
    135deg,
    #d4e8cb 0%,
    #b8d4ac 35%,
    #a0c494 70%,
    #8db882 100%
  );
  z-index: 0;
}

/* Geometrisches CSS-Dekorationselement */
.hero-bg::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28, 43, 24, 0.55) 0%,
    rgba(28, 43, 24, 0.25) 60%,
    transparent 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-block: var(--space-3xl);
}

.hero-content .eyebrow {
  color: rgba(237, 242, 233, 0.9);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 7vw, var(--text-5xl));
  font-weight: 600;
  color: #ffffff;
  margin-bottom: var(--space-sm);
  line-height: 1.1;
}

.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: var(--space-lg);
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.btn--hero-secondary {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: #ffffff;
}

/* ============================================================
   9. STANDORTE-SEKTION (Karten)
   ============================================================ */

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.location-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.location-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.location-icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-primary-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.location-card h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.location-card address {
  font-style: normal;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.location-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}

/* Köln-Sülz: alle Kassen – kräftiges Grün */
.location-badge--green {
  background-color: #14532d;
  color: #f0fdf4;
}

/* Hürth: nur Privat – sanftes Amber */
.location-badge--amber {
  background-color: #fef6e7;
  color: #7c4a00;
  border: 1.5px solid #f6bc6e;
}

.location-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-sm);
}

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  transition: color var(--transition);
}

.location-link:hover {
  color: var(--color-cta-hover);
}

.locations-contact {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.locations-contact p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ============================================================
   10. LEISTUNGS-KARTEN
   ============================================================ */

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.service-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Bild-Platzhalter */
.card-image {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.card-image--green {
  background: linear-gradient(135deg, #b8d4ac 0%, #8db882 100%);
}

.card-image--sage {
  background: linear-gradient(135deg, #c4d4bf 0%, #96b48a 100%);
}

.card-image--moss {
  background: linear-gradient(135deg, #a8c4a0 0%, #6b9e62 100%);
}

.card-image-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(28, 43, 24, 0.55);
  text-align: center;
  padding: var(--space-sm);
  line-height: 1.4;
}

.card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h2,
.card-body h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.card-body p {
  color: var(--color-text-muted);
  flex: 1;
  margin-bottom: var(--space-md);
}

/* ============================================================
   11. THERAPEUT-TEASER (Startseite) + PORTRAIT
   ============================================================ */

.therapeut-section {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 920px;
  margin-inline: auto;
}

.therapeut-portrait-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.therapeut-portrait-caption {
  text-align: center;
  margin-top: 0.75rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.therapeut-portrait-title {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

.therapeut-content blockquote {
  font-family: var(--font-display);
  font-size: clamp(var(--text-lg), 2.5vw, var(--text-2xl));
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.4;
  margin-bottom: var(--space-md);
  quotes: none;
}

.therapeut-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

/* Portrait in content-row (z.B. Philosophie-Seite) */
.content-row-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.content-row-portrait-caption {
  text-align: center;
  padding: 0.75rem 1rem 0;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.content-row-portrait-caption span {
  display: block;
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

@media (max-width: 640px) {
  .therapeut-section {
    grid-template-columns: 1fr;
  }
  .therapeut-portrait-img {
    aspect-ratio: 1 / 1;
    max-width: 200px;
    margin-inline: auto;
  }
}

/* ============================================================
   12. SEITEN-HERO (Unterseiten)
   ============================================================ */

.page-hero {
  background-color: var(--color-primary-pale);
  padding-block: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}

.page-hero .eyebrow {
  margin-bottom: var(--space-xs);
}

.page-hero h1 {
  font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
  margin-bottom: var(--space-xs);
}

.page-hero .lead {
  margin-top: var(--space-xs);
}

/* Vollbreite Bild-Platzhalter */
.page-banner {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #c4d4bf 0%, #8db882 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(28, 43, 24, 0.5);
  font-size: var(--text-sm);
  text-align: center;
  padding: var(--space-sm);
}

.page-banner--tall {
  height: 400px;
}

/* ============================================================
   13. CONTENT-LAYOUT (Fließtext-Seiten)
   ============================================================ */

.content-section {
  padding-block: var(--space-xl);
}

.content-inner {
  max-width: 780px;
}

.content-inner h2 {
  margin-bottom: var(--space-md);
  margin-top: var(--space-xl);
}

.content-inner h2:first-child {
  margin-top: 0;
}

.content-inner p {
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

/* Zweispalten-Layout: Text (Blocksatz) + Foto */
.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: var(--space-lg);
}

.content-row-text {
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
}

.content-row-text h2 {
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.content-row-text p {
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  max-width: none;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

.content-row-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
  box-shadow: var(--shadow-md);
}

/* Volle Breite unterhalb des Zweispalters – bündig mit Text + Bild */
.content-full {
  width: 100%;
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
  margin-bottom: var(--space-lg);
}

.content-full h2 {
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.content-full p {
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  max-width: none;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

@media (max-width: 900px) {
  .content-row {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .content-row-image {
    order: -1;
  }
  .content-row-image img {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .content-row-image img {
    height: 220px;
  }
}

/* Feature-Liste (Bullet-Points mit Stil) */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-block: var(--space-md);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.6;
}

.feature-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* Zweispaltig-Liste bei CMD */
.symptom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-block: var(--space-md);
}

.symptom-group {
  background-color: var(--color-primary-pale);
  border-radius: var(--radius-md);
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
  padding: var(--space-md);
}

.symptom-group h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

/* ============================================================
   14. KONTAKTFORMULAR
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-form-wrap {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--color-text);
}

label .required {
  color: #c0392b;
  margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

input:focus,
textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(61, 107, 47, 0.12);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Radio-Gruppen */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.375rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.375rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.checkbox-group label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 0;
  cursor: pointer;
}

.checkbox-group label a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Honeypot – für Menschen unsichtbar */
.honeypot {
  display: none !important;
  visibility: hidden;
}

/* Formular-Meldungen */
.form-message {
  display: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-top: var(--space-sm);
  animation: slideIn 0.3s ease;
}

.form-message.success {
  display: block;
  background-color: #e8f5e9;
  color: #2d6a2d;
  border: 1px solid #a5d6a7;
}

.form-message.error {
  display: block;
  background-color: #fdecea;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Kontakt-Karten */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-decoration: none;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--color-primary);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 1.25rem;
}

.contact-card-text strong {
  display: block;
  font-weight: 500;
}

.contact-card-text span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================================
   15. PREISE-SEKTION
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.pricing-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.pricing-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-sm);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-block: 0.625rem;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
  gap: var(--space-sm);
}

.price-row:last-child {
  border-bottom: none;
}

/* Einleitungstext in Preiskarte */
.pricing-card-intro {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  max-width: none;
}

/* Label über einer Preisgruppe (z.B. "Selbstzahler*innen") */
.pricing-card-label {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  margin-top: 0;
}

/* Kleine Fußnote unter Preiszeilen */
.pricing-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
  max-none: none;
  line-height: 1.6;
}

/* Kassenhinweis-Box innerhalb einer Preiskarte */
.pricing-kasse {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  background-color: var(--color-primary-pale);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.6;
}

.pricing-kasse svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary);
}

/* ============================================================
   STANDORT-ALERTS – kräftige Info-Kästen (Kassenrezept / Privat)
   ============================================================ */

/* Basis-Alert */
.standort-alert {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.55;
}

.standort-alert-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.standort-alert-text {
  flex: 1;
}

.standort-alert-text strong {
  display: block;
  font-size: var(--text-base);
  margin-bottom: 0.25rem;
}

.standort-alert-text a {
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

/* Grün – Kassenrezept möglich in Köln-Sülz */
.standort-alert--green {
  background-color: #14532d;
  color: #f0fdf4;
  border: none;
}

.standort-alert--green .standort-alert-icon {
  background-color: rgba(255,255,255,0.15);
  color: #bbf7d0;
}

.standort-alert--green a {
  color: #86efac;
}

/* Amber (sanft) – Hürth nur Privat / Selbstzahler */
.standort-alert--amber {
  background-color: #fef6e7;
  color: #7c4a00;
  border: 1.5px solid #f6bc6e;
}

.standort-alert--amber .standort-alert-icon {
  background-color: #fde9bb;
  color: #b45309;
  font-weight: 700;
  font-size: 1.1rem;
}

/* KASSENREZEPT – Badges, Hinweise, Banner
   ============================================================ */

/* Kleines Badge "nur Köln-Sülz" / "Kassenrezept möglich" */
.radio-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 0.15rem 0.55rem;
  border-radius: 100px;
  vertical-align: middle;
  white-space: nowrap;
}

/* Untertext in Radio-Option */
.radio-sub {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* Gestapelte Radio-Gruppe (eine Option pro Zeile) */
.radio-group--stacked {
  flex-direction: column;
  gap: 0.625rem;
}

/* Hervorgehobene Radio-Option (Kassenrezept) */
.radio-option--highlight {
  background-color: var(--color-primary-pale);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  gap: 0.625rem;
}

/* Hinweistext unter Standort-Auswahl (per JS eingeblendet) */
.standort-kasse-hinweis {
  margin-top: 0.625rem;
  padding: 0.625rem 0.875rem;
  background-color: var(--color-primary-pale);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--text-sm);
  color: var(--color-text);
}

/* Kassenrezept-Banner auf der Physiotherapie-Seite (im Hero) */
.kasse-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background-color: var(--color-surface);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.6;
  max-width: 680px;
}

.kasse-banner-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Kassenrezept-Hinweis auf Service-Card (Startseite) */
.card-kasse-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm) !important;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
}

.price-amount {
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
}

/* ============================================================
   16. IMPRESSUM / DATENSCHUTZ
   ============================================================ */

.legal-content {
  padding-block: var(--space-xl);
  max-width: 720px;
}

.legal-content h2 {
  font-size: var(--text-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  max-width: none;
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.legal-content ul li {
  margin-bottom: 0.375rem;
}

.todo-placeholder {
  background-color: #fff3cd;
  border: 1px solid #ffecb5;
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  color: #856404;
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
}

/* ============================================================
   17. SCROLL-ANIMATIONEN
   ============================================================ */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Verzögerungen für gestaffelte Animationen */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ============================================================
   18. HILFSELEMENTE
   ============================================================ */

/* Hinweis-Box */
.notice {
  background-color: var(--color-primary-pale);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-sm) var(--space-md);
  margin-block: var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-text);
}

/* Trennlinie – dezent */
.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin-block: var(--space-lg);
}

/* Brotcrumb-Navigation */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  align-items: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.breadcrumb a {
  color: var(--color-primary);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span::before {
  content: '/';
  margin-right: 0.375rem;
  color: var(--color-border);
}

/* ============================================================
   19. RESPONSIVE – TABLET (≥ 640px)
   ============================================================ */

@media (min-width: 640px) {
  :root {
    --container-pad: 2rem;
  }

  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }

  .locations-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-locations {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .symptom-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   20. RESPONSIVE – DESKTOP (≥ 1024px)
   ============================================================ */

@media (min-width: 1024px) {
  :root {
    --container-pad: 2.5rem;
  }

  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr 380px;
  }

  .footer-top {
    grid-template-columns: 1fr 2fr 1fr;
    align-items: start;
  }

  .footer-locations {
    grid-template-columns: 1fr 1fr;
  }

  .hamburger {
    display: none !important;
  }

  .mobile-nav {
    display: none !important;
  }
}

/* Mobile-Navigation nur unter 1024px */
@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }
}

/* ============================================================
   21. FOKUS-STILE (Barrierefreiheit)
   ============================================================ */

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============================================================
   22. DOCTOLIB-BOX
   ============================================================ */

.doctolib-box {
  border: 1.5px solid #b3ddf5;
  border-radius: var(--radius-md);
  background-color: #f0f8ff;
  padding: 1.25rem 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.doctolib-box-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.doctolib-box-title {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-base);
  color: #0578b0;
}

.doctolib-box-sub {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: #4a8aaa;
  margin-top: 0.1rem;
}

.doctolib-box-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}

.btn-doctolib {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0596DE;
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-sm);
  text-decoration: none;
  padding: 0.6rem 1.375rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease;
  align-self: flex-start;
}

.btn-doctolib:hover,
.btn-doctolib:focus-visible {
  background-color: #0578b0;
  color: #ffffff;
  outline-color: #0596DE;
}

/* ============================================================
   23. PRINT
   ============================================================ */

@media print {
  .site-header,
  .site-footer,
  .mobile-nav,
  .btn { display: none; }

  body { color: #000; background: #fff; }
}
