/* ==========================================================================
   Kirstin Schwarz – Physiotherapie | Design System & Styles
   Aesthetic: Praxisschild (Architectural Practice Plaque), Calm Nordic Elegance
   ========================================================================== */

/* ==========================================================================
   Self-hosted Fonts (DSGVO-konform, keine Verbindung zu Google-Servern)
   Variable Fonts, Subset "latin" – enthalten deutsche Umlaute und ß
   ========================================================================== */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/cormorant-garamond-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/cormorant-garamond-variable-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/plus-jakarta-sans-variable.woff2') format('woff2');
}

:root {
  /* Color Palette: Nordic Pine, Warm Brass, Linen & Sage */
  --color-pine-900: #142821;
  --color-pine-800: #1b352c;
  --color-pine-700: #25473b;
  --color-sage-200: #d6e2dc;
  --color-sage-100: #eaf0ec;
  --color-sage-50:  #f4f7f5;

  --color-brass-600: #7d5c25;
  --color-brass-500: #b89146;
  --color-brass-400: #cbab68;
  --color-brass-100: #f5eedf;

  --color-bg-base: #fbf9f6;
  --color-bg-surface: #ffffff;
  --color-bg-alt: #f4efe8;

  --color-text-main: #1d2521;
  --color-text-muted: #53625b;
  --color-text-light: #67766f;

  --color-border-subtle: #e6dfd5;
  --color-border-accent: rgba(184, 145, 70, 0.35);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Elevation / Shadows */
  --shadow-sm: 0 2px 8px rgba(20, 40, 33, 0.04);
  --shadow-md: 0 8px 24px rgba(20, 40, 33, 0.07);
  --shadow-lg: 0 16px 40px rgba(20, 40, 33, 0.09);

  /* Layout */
  --container-max: 1180px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition-smooth: color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset, 130px);
  /* 100% statt fester 16px: respektiert die Schriftgröße des Nutzers */
  font-size: 100%;
  color-scheme: light;
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  line-height: 1.65;
  /* Kein eigener Hintergrund: die Farbfläche von <html> dient als Basis,
     damit das dekorative ::before (z-index: -1) sichtbar bleibt */
  background-color: transparent;
  color: var(--color-text-main);
  overflow-x: hidden;
  position: relative;
}

/* Subtle organic textured ambient glow (pure CSS, no heavy image) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(214, 226, 220, 0.35) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(245, 238, 223, 0.45) 0%, transparent 45%);
  pointer-events: none;
  z-index: -1;
}

/* Typography Defaults */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-pine-900);
  line-height: 1.25;
  letter-spacing: -0.01em;
  /* Lange deutsche Wörter (z. B. Fußreflexzonentherapie) sauber trennen */
  overflow-wrap: anywhere;
  hyphens: auto;
}

p {
  color: var(--color-text-muted);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

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

/* Skip-Link: nur bei Tastaturfokus sichtbar */
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 3000;
  padding: 0.75rem 1.2rem;
  background: var(--color-pine-900);
  color: #ffffff;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--color-brass-500);
  outline-offset: 2px;
}

/* ==========================================================================
   Baustellen-Hinweis (Website im Aufbau)
   ========================================================================== */
.construction-banner {
  background:
    repeating-linear-gradient(
      45deg,
      var(--color-brass-500) 0 18px,
      var(--color-brass-600) 18px 36px
    );
  color: #ffffff;
  border-bottom: 1px solid rgba(20, 40, 33, 0.25);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.25), 0 2px 10px rgba(20, 40, 33, 0.18);
}

.construction-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.55rem 1.5rem;
  text-align: center;
}

.construction-banner-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: #ffffff;
}

.construction-banner-text {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  /* Dunkle Fläche hinter dem Text, damit der Kontrast auf den Streifen jederzeit ausreicht */
  background: rgba(20, 40, 33, 0.88);
  padding: 0.2rem 0.7rem;
  border-radius: 4px;
}

.construction-banner-text strong {
  color: #fff8e6;
}

@media (max-width: 640px) {
  .construction-banner-text {
    font-size: 0.78rem;
    letter-spacing: 0.03em;
  }

  .construction-banner-inner {
    padding: 0.5rem 1rem;
  }
}

/* Auf sehr schmalen Displays bleibt nur die Kernaussage, damit der
   Sticky-Header nicht zu viel Platz einnimmt */
@media (max-width: 480px) {
  .construction-banner-extra {
    display: none;
  }
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 249, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Mini Praxisschild Brand in Header */
.brand-plaque {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-icon-emblem {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-pine-800), var(--color-pine-900));
  border: 1px solid var(--color-brass-400);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brass-400);
  box-shadow: 0 3px 10px rgba(20, 40, 33, 0.15);
  position: relative;
  flex-shrink: 0;
}

.brand-icon-emblem svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-brass-400);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-pine-900);
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brass-600);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-pine-900);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: var(--color-brass-500);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-brass-600);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Button Variants */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-pine-800);
  color: #ffffff;
  border: 1px solid var(--color-brass-500);
  box-shadow: 0 4px 14px rgba(27, 53, 44, 0.2);
}

.btn-primary:hover {
  background: var(--color-pine-900);
  border-color: var(--color-brass-400);
  box-shadow: 0 6px 18px rgba(27, 53, 44, 0.28);
  transform: translateY(-1px);
}

/* Während des Versands über contact.php */
.btn:disabled,
.btn[disabled] {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-pine-900);
  border: 1px solid var(--color-border-subtle);
}

.btn-secondary:hover {
  border-color: var(--color-brass-500);
  color: var(--color-brass-600);
  background: #ffffff;
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid var(--color-border-subtle);
  padding: 8px;
}

.mobile-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-pine-800);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   Hero Section – The Architectural "Praxisschild" Feature
   ========================================================================== */
.hero-section {
  padding: 4.5rem 0 5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

.hero-badge-container {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  color: var(--color-pine-800);
  background: var(--color-sage-100);
  border: 1px solid var(--color-sage-200);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  color: var(--color-brass-500);
}

.hero-badge-inverse {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: var(--color-border-accent);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-pine-900);
}

.hero-title .highlight-serif {
  font-style: italic;
  font-weight: 400;
  color: var(--color-brass-600);
  display: block;
  margin-top: 0.2rem;
}

.hero-lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-subtle);
  margin-top: 1rem;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-pine-800);
  line-height: 1;
}

.meta-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   PRAXISSCHILD COMPONENT (CSS-Art Architectural Practice Plaque)
   Honors user request: "Am liebsten so ähnlich wie mein Schild - Wiedererkennungswert"
   ========================================================================== */
.plaque-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.praxis-plaque {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: linear-gradient(145deg, #1b352c 0%, #11231c 100%);
  border: 2px solid var(--color-brass-400);
  border-radius: 14px;
  padding: 3.2rem 2.4rem;
  color: #ffffff;
  box-shadow: 
    0 25px 50px -12px rgba(17, 35, 28, 0.4),
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.praxis-plaque:hover {
  transform: translateY(-4px) rotateX(1deg);
  box-shadow: 
    0 30px 60px -12px rgba(17, 35, 28, 0.45),
    0 8px 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

/* Decorative Brass Screws in Corners */
.plaque-screw {
  position: absolute;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 35% 35%, #eedbb0, #a07a34);
  border-radius: 50%;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.8),
    0 1px 3px rgba(0, 0, 0, 0.6);
}

.plaque-screw::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 1px;
  background: rgba(50, 35, 10, 0.8);
  transform: translateY(-50%) rotate(45deg);
}

.screw-tl { top: 16px; left: 16px; }
.screw-tr { top: 16px; right: 16px; }
.screw-bl { bottom: 16px; left: 16px; }
.screw-br { bottom: 16px; right: 16px; }

/* Inner Filigree Border */
.plaque-inner-border {
  border: 1px solid rgba(203, 171, 104, 0.4);
  padding: 1.8rem 1.2rem;
  border-radius: 8px;
  position: relative;
}

.plaque-inner-border::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: var(--color-brass-400);
}

.plaque-inner-border::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: var(--color-brass-400);
}

.plaque-emblem-svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.2rem;
  display: block;
}

.plaque-emblem-svg circle,
.plaque-emblem-svg path {
  stroke: var(--color-brass-400);
}

.plaque-name {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.plaque-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-brass-400), transparent);
  margin: 0.9rem auto;
}

.plaque-discipline {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-brass-400);
  margin-bottom: 1.2rem;
}

.plaque-tagline {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-style: italic;
  color: #e3ebe6;
  line-height: 1.4;
  margin-bottom: 1.4rem;
}

.plaque-location {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(203, 171, 104, 0.2);
  padding-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* ==========================================================================
   Section Common Styles
   ========================================================================== */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brass-600);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--color-pine-900);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Über Mich Section (About Kirstin Schwarz)
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-brass-500), var(--color-pine-700));
}

.about-initials-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-sage-50);
  border: 2px solid var(--color-brass-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-pine-900);
  margin-bottom: 1.5rem;
}

.about-card-title {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.about-card-role {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-brass-600);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.about-highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.94rem;
  color: var(--color-text-main);
}

.about-highlight-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-pine-700);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.quote-box {
  background: rgba(255, 255, 255, 0.6);
  border-left: 3px solid var(--color-brass-500);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.quote-box p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-pine-900);
  line-height: 1.4;
}

/* ==========================================================================
   Therapien Spektrum (Services & Clear Explanations)
   ========================================================================== */
.therapies-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.8rem;
}

.filter-btn {
  padding: 0.5rem 1.15rem;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: 40px;
  border: 1px solid var(--color-border-subtle);
  background: #ffffff;
  color: var(--color-text-muted);
}

.filter-btn:hover {
  border-color: var(--color-pine-700);
  color: var(--color-pine-900);
}

.filter-btn.active {
  background: var(--color-pine-800);
  color: #ffffff;
  border-color: var(--color-pine-800);
}

.therapies-grid {
  display: grid;
  /* min(320px, 100%) verhindert Überlauf auf sehr schmalen Displays */
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 1.75rem;
}

.therapy-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.therapy-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-brass-400);
  box-shadow: var(--shadow-md);
}

.therapy-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.therapy-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-sage-50);
  border: 1px solid var(--color-sage-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-pine-800);
  flex-shrink: 0;
}

.therapy-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-pine-800);
}

.therapy-category-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  background: var(--color-sage-100);
  color: var(--color-pine-800);
  border-radius: 20px;
}

.therapy-title {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: var(--color-pine-900);
}

.therapy-summary {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.therapy-details {
  border-top: 1px dashed var(--color-border-subtle);
  padding-top: 1rem;
  margin-top: auto;
}

.therapy-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.therapy-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-bg-base);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  border: 1px solid var(--color-border-subtle);
}

.therapy-footer-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
}

.therapy-btn-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-brass-600);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.therapy-btn-link:hover {
  color: var(--color-pine-800);
  transform: translateX(3px);
}

/* ==========================================================================
   Praxis Werte & Philosophie
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 2rem;
}

.value-card {
  background: #ffffff;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-brass-400);
  box-shadow: var(--shadow-sm);
}

.value-icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: var(--color-brass-100);
  color: var(--color-brass-600);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon-wrap svg {
  width: 30px;
  height: 30px;
}

.value-title {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.value-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Kontakt & Terminanfrage (Interactive Form)
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-plaque-card {
  background: var(--color-pine-800);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 2.4rem 2rem;
  border: 1px solid var(--color-brass-400);
  position: relative;
}

.contact-plaque-card h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-plaque-card p {
  color: #d6e2dc;
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brass-400);
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-content {
  display: flex;
  flex-direction: column;
}

.contact-detail-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brass-400);
}

.contact-detail-value {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
}

.contact-detail-value a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: var(--color-brass-400);
}

.contact-detail-value a:hover {
  color: var(--color-brass-400);
}

/* Hinweisbox unter den Kontaktdaten */
.contact-note {
  padding: 1.4rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
}

.contact-note-title {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--color-pine-900);
}

.contact-note-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* Form Container */
.appointment-form-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  padding: 2.8rem 2.4rem;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.form-subtitle {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* Honeypot: im DOM vorhanden, für Menschen und Screenreader aber unsichtbar.
   Wird das Feld ausgefüllt, handelt es sich sehr wahrscheinlich um einen Bot. */
.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-pine-900);
}

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 0.94rem;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  transition: var(--transition-smooth);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-pine-700);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 71, 59, 0.12);
}

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

.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-checkbox-wrap input[type="checkbox"] {
  margin-top: 3px;
  width: 17px;
  height: 17px;
  accent-color: var(--color-pine-800);
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.form-checkbox-label a {
  color: var(--color-pine-800);
  text-decoration: underline;
}

.form-submit-btn {
  width: 100%;
  padding: 0.95rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.form-feedback {
  display: none;
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  margin-top: 1.2rem;
  font-size: 0.92rem;
  text-align: center;
}

.form-feedback.is-error,
.form-feedback.is-success {
  display: block;
}

.form-feedback.is-error {
  background: #fdf2e9;
  color: #a04000;
  border: 1px solid #f5cba7;
}

.form-feedback.is-success {
  background: var(--color-sage-100);
  color: var(--color-pine-900);
  border: 1px solid var(--color-sage-200);
}

.form-feedback-title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--color-pine-900);
}

.form-feedback.is-success p {
  margin-bottom: 0.6rem;
}

.form-feedback-small {
  font-size: 0.84rem;
  color: var(--color-text-muted);
}

.form-feedback a {
  color: var(--color-pine-800);
  text-decoration: underline;
}

/* ==========================================================================
   Modals (Therapie Detail Modal & Legal Impressum/Datenschutz)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 35, 28, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* visibility erst nach dem Ausblenden umschalten (0s-Delay), damit der Fade sichtbar bleibt */
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  /* beim Öffnen sofort sichtbar/fokussierbar */
  transition: opacity 0.3s ease;
}

.modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-content:focus {
  outline: none;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-pine-900);
  border: 1px solid var(--color-border-subtle);
}

.modal-close-btn:hover {
  background: var(--color-sage-100);
  transform: rotate(90deg);
}

.modal-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 1.2rem;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.modal-body h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: var(--color-pine-900);
}

.modal-body p {
  margin-bottom: 1rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

.modal-body ul {
  padding-left: 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--color-text-muted);
}

.modal-body li {
  margin-bottom: 0.4rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-pine-900);
  color: #ffffff;
  padding: 4.5rem 0 2rem;
  border-top: 2px solid var(--color-brass-500);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand h4 {
  font-size: 1.6rem;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.footer-brand .brand-sub {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-brass-400);
  margin-bottom: 1.2rem;
}

.footer-brand p {
  color: #c0cfc8;
  font-size: 0.92rem;
  max-width: 380px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a {
  display: inline-block;
  color: #c0cfc8;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--color-brass-400);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #8c9e96;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

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

.nordic-greeting-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-style: italic;
  color: var(--color-brass-400);
  margin-top: 1.2rem;
}

.footer-strong {
  color: #ffffff;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
    gap: 2.5rem;
  }

  .hero-content {
    align-items: center;
  }

  .hero-meta-row {
    justify-content: center;
    width: 100%;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

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

@media (max-width: 768px) {
  /* Blur beim Scrollen kostet auf schwachen Geräten spürbar Leistung */
  .site-header {
    background: var(--color-bg-base);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--color-border-subtle);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0s linear 0.3s;
  }

  .nav-menu.open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.3s ease;
  }

  /* Nur mit JavaScript: ohne JS ist das Menü nicht bedienbar */
  .js .mobile-nav-toggle {
    display: flex;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .hero-meta-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .praxis-plaque {
    padding: 2.4rem 1.5rem;
  }

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

  /* 16px verhindert den automatischen Zoom von iOS Safari beim Fokussieren */
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 1rem;
  }

  .appointment-form-wrapper {
    padding: 2rem 1.4rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}

/* ==========================================================================
   Animationen & Bewegungsreduktion
   ========================================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Hilfsklassen & progressive Erweiterungen
   ========================================================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-hint {
  font-weight: 400;
  color: var(--color-text-muted);
}

/* Fehlerhafte Felder markieren (Rahmen + Hintergrund, nicht nur Farbe) */
.form-input[aria-invalid="true"] {
  border-color: #c0392b;
  background-color: #fdf2e9;
}

.form-checkbox-wrap input[type="checkbox"][aria-invalid="true"] {
  outline: 2px solid #c0392b;
  outline-offset: 2px;
}

/* Rechtstexte: ohne JavaScript über #impressum / #datenschutz erreichbar */
.legal-fallback {
  display: none;
  padding: 3rem 0;
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-subtle);
}

.legal-fallback:target {
  display: block;
}

.legal-fallback-title {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.legal-text p {
  margin-bottom: 1rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal-text a,
.modal-body a {
  color: var(--color-pine-800);
  text-decoration: underline;
}

/* Hoher Kontrast: aktiver Filter muss auch ohne Hintergrundfarbe erkennbar sein */
@media (forced-colors: active) {
  .filter-btn.active {
    border-color: Highlight;
    outline: 2px solid Highlight;
    outline-offset: -2px;
  }

  .therapy-card,
  .value-card {
    border: 1px solid CanvasText;
  }

  /* box-shadow wird im Kontrastmodus entfernt -> Outline als Fokusindikator */
  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
    outline: 3px solid Highlight;
    outline-offset: 2px;
  }
}

/* "Details ansehen" ist ohne JavaScript funktionslos -> nur mit JS anzeigen */
.therapy-btn-link.read-more-trigger {
  display: none;
}

.js .therapy-btn-link.read-more-trigger {
  display: inline-flex;
}
