/* ==========================================================================
   Naturheilpraxis Deja-Lausmann · naturheilpraxis-deja.de
   Statisches Premium-Design · Tokens siehe DESIGN.md
   ========================================================================== */

/* ---------- Fonts (selbst gehostet, DSGVO-konform) ---------- */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/figtree-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/figtree-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/notosans-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/notosans-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}

/* ---------- Design-Tokens ---------- */
:root {
  --blau:        #2E9EC3;
  --blau-tief:   #1B6E8C;
  --blau-dunkel: #134D62;
  --gruen:       #96D574;
  --gruen-tief:  #4C8A2E;
  --gruen-dunkel:#3A691F;
  --ink:         #2E3A40;
  --ink-soft:    #54646C;
  --papier:      #FDFDFB;
  --nebel:       #F2F6F4;
  --salbei:      #E8F1E2;
  --wasser:      #E7F2F7;
  --linie:       #D8E2DD;
  --weiss:       #FFFFFF;

  --font-head: 'Figtree', 'Avenir Next', 'Segoe UI', sans-serif;
  --font-body: 'Noto Sans', 'Helvetica Neue', Arial, sans-serif;

  --fs-0: 1rem;        /* 16px  Kleingedrucktes — nie darunter (Zielgruppe!) */
  --fs-1: 1.0625rem;   /* 17px  Meta, Nav             */
  --fs-2: 1.125rem;    /* 18px  Fließtext (Basis)     */
  --fs-3: 1.25rem;     /* 20px  Lead-Absätze          */
  --fs-4: clamp(1.3rem, 1.1rem + 0.8vw, 1.5rem);
  --fs-5: clamp(1.55rem, 1.3rem + 1vw, 1.85rem);
  --fs-6: clamp(1.85rem, 1.5rem + 1.6vw, 2.35rem);
  --fs-7: clamp(2.25rem, 1.7rem + 2.6vw, 3.35rem);

  --w-site: 75rem;      /* 1200px */
  --w-text: 47.5rem;    /* 760px  */
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
  --sec-y: clamp(4rem, 9vw, 7rem);

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-1: 0 1px 3px rgba(19, 77, 98, 0.07), 0 6px 22px rgba(19, 77, 98, 0.06);
  --shadow-2: 0 4px 10px rgba(19, 77, 98, 0.08), 0 18px 44px rgba(19, 77, 98, 0.11);

  --ease: cubic-bezier(0.33, 1, 0.68, 1);
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-2);
  line-height: 1.65;
  color: var(--ink);
  background: var(--papier);
  overflow-wrap: break-word;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.18;
  color: var(--blau-dunkel);
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-7); letter-spacing: -0.015em; }
h2 { font-size: var(--fs-6); letter-spacing: -0.01em; }
h3 { font-size: var(--fs-4); }

p { margin: 0 0 1.15em; max-width: 68ch; }
ul, ol { margin: 0 0 1.25em; padding-left: 1.35em; }
li { margin-bottom: 0.45em; }
li::marker { color: var(--gruen-tief); }

a {
  color: var(--blau-tief);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 160ms var(--ease);
}
a:hover { color: var(--blau-dunkel); }

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

strong { font-weight: 600; }

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

::selection { background: var(--gruen); color: var(--blau-dunkel); }

/* ---------- Nur für Screenreader ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Skip-Link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--blau-dunkel);
  color: #fff;
  padding: 0.9rem 1.4rem;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
  color: #fff;
}

/* ---------- Layout-Helfer ---------- */
.wrap {
  max-width: var(--w-site);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.wrap--text { max-width: var(--w-text); }

.section { padding-block: var(--sec-y); }
.section--nebel  { background: var(--nebel); }
.section--salbei { background: var(--salbei); }
.section--wasser { background: var(--wasser); }
.section--dunkel { background: var(--blau-dunkel); color: #fff; }
.section--dunkel h2, .section--dunkel h3 { color: #fff; }

/* Signatur: kleiner Logo-Bogen über Abschnittstiteln */
.kicker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gruen-tief);
  margin-bottom: 1.1rem;
}
.kicker::before {
  content: '';
  flex: none;
  width: 26px;
  height: 26px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26'%3E%3Cpath d='M22.4 8.2A10.4 10.4 0 1 0 24 13' fill='none' stroke='%234C8A2E' stroke-width='2.6' stroke-linecap='round'/%3E%3Ccircle cx='13' cy='13' r='4.6' fill='%232E9EC3'/%3E%3C/svg%3E") no-repeat center / contain;
}
.section--dunkel .kicker { color: var(--gruen); }
/* Auf grün getönten Flächen dunkler für sicheren AA-Kontrast */
.section--salbei .kicker, .page-head--salbei .kicker { color: var(--gruen-dunkel); }

.lead { font-size: var(--fs-3); line-height: 1.6; color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* kein backdrop-filter: er würde das Fixed-Overlay der mobilen Navigation einfangen */
  background: rgba(253, 253, 251, 0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--linie);
  box-shadow: 0 2px 18px rgba(19, 77, 98, 0.06);
}
.site-header::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--gruen) 0%, var(--blau) 100%);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
}
.brand img { width: 54px; height: 54px; flex: none; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.22rem;
  line-height: 1.2;
  color: var(--blau-dunkel);
  white-space: nowrap;
}
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.015em;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 10px;
  border: 1.5px solid var(--linie);
  border-radius: 10px;
  background: var(--weiss);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--blau-dunkel);
  transition: transform 240ms var(--ease), opacity 200ms;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1.6vw, 1.6rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  display: inline-block;
  padding: 0.55rem 0.35rem;
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-1);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}
.site-nav a:hover { color: var(--blau-tief); }
.site-nav a[aria-current="page"] {
  color: var(--blau-dunkel);
  border-bottom-color: var(--gruen);
}
.site-nav .nav-cta a {
  background: var(--gruen-tief);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.62rem 1.35rem;
  transition: background 160ms var(--ease);
}
.site-nav .nav-cta a:hover { background: var(--gruen-dunkel); color: #fff; }
/* Direktwahl-Link: nur im mobilen Menü sichtbar */
.site-nav .nav-tel { display: none; }

@media (max-width: 64rem) {
  .nav-toggle { display: flex; }
  /* Logo und Toggle über dem Menü-Overlay halten */
  .brand, .nav-toggle { position: relative; z-index: 95; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: var(--papier);
    padding: 7rem var(--pad-x) 3rem;
    overflow-y: auto;
    display: none;
  }
  .site-nav.is-open { display: block; }
  body.nav-open { overflow: hidden; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav li { border-bottom: 1px solid var(--linie); margin: 0; }
  .site-nav a {
    display: block;
    padding: 1.1rem 0.25rem;
    font-size: 1.35rem;
    border-bottom: none;
  }
  .site-nav a[aria-current="page"] {
    color: var(--gruen-dunkel);
  }
  .site-nav .nav-cta { border-bottom: none; margin-top: 1.5rem; }
  .site-nav .nav-cta a { text-align: center; padding: 1rem 1.5rem; }
  .site-nav .nav-tel { display: block; border-bottom: none; margin-top: 0.75rem; }
  .site-nav .nav-tel a {
    text-align: center;
    font-size: 1.15rem;
    color: var(--blau-dunkel);
    border-radius: 999px;
    box-shadow: inset 0 0 0 2px var(--blau-tief);
    padding: 1rem 1.5rem;
  }
  .brand-name { font-size: 1.05rem; }
  .brand-sub { font-size: 0.72rem; white-space: normal; }
}
@media (max-width: 40rem) {
  .hero-note { display: none; }
}
@media (max-width: 26rem) {
  .brand-sub { display: none; }
  .brand img { width: 42px; height: 42px; }
  .brand-name { font-size: 0.95rem; }
  .brand { gap: 0.6rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-2);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
}
.btn svg { flex: none; }
.btn--primary {
  background: var(--gruen-tief);
  color: #fff;
  box-shadow: 0 2px 10px rgba(76, 138, 46, 0.28);
}
.btn--primary:hover {
  background: var(--gruen-dunkel);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(76, 138, 46, 0.32);
}
.btn--ghost {
  background: transparent;
  color: var(--blau-dunkel);
  box-shadow: inset 0 0 0 2px var(--blau-tief);
}
.btn--ghost:hover { background: var(--wasser); color: var(--blau-dunkel); transform: translateY(-2px); }
.btn--hell {
  background: #fff;
  color: var(--blau-dunkel);
}
.btn--hell:hover { background: var(--salbei); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* ---------- Hero (Startseite) ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--nebel);
  overflow: hidden;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 4vw, 4rem) clamp(3rem, 7vw, 6rem) max(var(--pad-x), calc((100vw - var(--w-site)) / 2 + var(--pad-x)));
}
.hero-text h1 { max-width: 15ch; }
.hero-text .lead { max-width: 52ch; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}
.hero-media {
  position: relative;
  min-height: clamp(20rem, 46vw, 44rem);
  clip-path: ellipse(145% 120% at 100% 50%);
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 24s var(--ease) forwards;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.hero-note {
  position: absolute;
  left: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2.5rem);
  background: rgba(253, 253, 251, 0.95);
  border-radius: var(--radius);
  padding: 0.7rem 1.15rem;
  font-size: var(--fs-0);
  color: var(--ink-soft);
  box-shadow: var(--shadow-1);
}
@media (max-width: 56rem) {
  .hero { grid-template-columns: 1fr; }
  .hero-media {
    order: -1;
    min-height: clamp(14rem, 52vw, 22rem);
    clip-path: none;
  }
  .hero-text { padding: 2.5rem var(--pad-x) 3rem; }
}

/* ---------- Unterseiten-Hero (ruhig, ohne Foto) ---------- */
.page-head {
  position: relative;
  background: linear-gradient(180deg, var(--wasser) 0%, var(--papier) 100%);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.page-head--salbei { background: linear-gradient(180deg, var(--salbei) 0%, var(--papier) 100%); }
.page-head::after {
  content: '';
  position: absolute;
  right: -12rem;
  top: -14rem;
  width: 38rem;
  height: 38rem;
  border: 3.5rem solid rgba(150, 213, 116, 0.22);
  border-radius: 50%;
  pointer-events: none;
}
.page-head h1 { max-width: 22ch; position: relative; }
.page-head .lead { position: relative; }

/* ---------- Karten (Drei Kacheln) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: 2.5rem;
}
/* Schwerpunkte-Kacheln (Startseite): feste 1 / 2 statt auto-fit,
   damit keine Kachel allein in einer eigenen Zeile landet.
   min-width:0 verhindert, dass einzelne Karten durch lange Wörter
   breiter werden als die anderen (Grid-Spalten sonst ungleich).
   Bewusst kein 4-spaltiges Layout: der Seiteninhalt ist auf max.
   75rem (1200px) begrenzt (siehe --w-site) — vier Spalten wären
   darin immer schmal und die Karten unangenehm hoch/text-lastig. */
#schwerpunkte .card-grid { grid-template-columns: 1fr; }
#schwerpunkte .card-grid > .card { min-width: 0; }
@media (min-width: 40rem) {
  #schwerpunkte .card-grid { grid-template-columns: repeat(2, 1fr); }
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-1);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.card-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--salbei);
  color: var(--gruen-tief);
  margin-bottom: 1.4rem;
}
.card:nth-child(2) .card-icon { background: var(--wasser); color: var(--blau-tief); }
.card h3 { font-size: var(--fs-5); overflow-wrap: normal; word-break: normal; hyphens: auto; }
.card p { flex-grow: 1; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  text-decoration: none;
  color: var(--gruen-dunkel);
  margin-top: 0.5rem;
}
.card-link svg { transition: transform 200ms var(--ease); }
.card:hover .card-link svg, .card-link:hover svg { transform: translateX(5px); }
/* Ganze Karte klickbar */
.card-link::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); }

/* ---------- Media-Split (Bild + Text) ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(22rem, 100%), 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  width: 100%;
  object-fit: cover;
}
.split-media--stack { position: relative; }
.split-media--stack::before {
  content: '';
  position: absolute;
  inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--salbei);
  z-index: -1;
}

/* ---------- Zitat / Erstgespräch ---------- */
.quote-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  max-width: 56rem;
  margin-inline: auto;
}
.quote-portrait {
  width: clamp(7rem, 14vw, 10.5rem);
  height: clamp(7rem, 14vw, 10.5rem);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-2);
  background: #fff;
}
.quote-block blockquote {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-5);
  line-height: 1.42;
  color: var(--blau-dunkel);
}
.quote-block figcaption {
  margin-top: 0.9rem;
  font-size: var(--fs-1);
  color: var(--ink-soft);
}
@media (max-width: 40rem) {
  .quote-block { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

/* ---------- Info-Leisten & Boxen ---------- */
.note {
  background: var(--wasser);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  margin-block: 2rem;
  font-size: var(--fs-1);
  color: var(--ink);
}
.note--hwg {
  background: var(--weiss);
}
.note--hwg h2, .note--hwg h3 {
  font-size: var(--fs-1);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}
.note p:last-child { margin-bottom: 0; }

/* ---------- Listen mit Häkchen ---------- */
.check-list { list-style: none; padding: 0; }
.check-list li {
  position: relative;
  padding-left: 2.3rem;
  margin-bottom: 0.85rem;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: var(--salbei) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233A691F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / 0.85rem;
}

/* ---------- Säulen / nummerierte Bausteine ---------- */
.pillars { counter-reset: pillar; list-style: none; padding: 0; display: grid; gap: 1.25rem; margin-top: 2rem; }
.pillar {
  counter-increment: pillar;
  position: relative;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.75rem 5.4rem;
  box-shadow: var(--shadow-1);
}
.pillar::before {
  content: counter(pillar);
  position: absolute;
  left: 1.5rem;
  top: 1.6rem;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wasser);
  color: var(--blau-dunkel);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
}
.pillar h3 { margin-bottom: 0.35em; }
.pillar p { margin-bottom: 0; }

/* ---------- Zeitleiste Behandlungsablauf ---------- */
.timeline { list-style: none; padding: 0; margin: 2.25rem 0 0; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 1.28rem;
  top: 0.6rem;
  bottom: 0.6rem;
  width: 3px;
  border-radius: 2px;
  background: var(--gruen);
}
.timeline li {
  position: relative;
  padding: 0 0 2rem 4rem;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: '';
  position: absolute;
  left: 0.62rem;
  top: 0.32em;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--weiss);
  border: 4px solid var(--gruen-tief);
}
.timeline h3 { margin-bottom: 0.3em; font-size: var(--fs-4); }
.timeline p:last-child { margin-bottom: 0; }

/* ---------- Methoden-Liste (Akupunktur & TCM) ---------- */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(21rem, 100%), 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.method {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-1);
}
.method h3 { font-size: var(--fs-3); margin-bottom: 0.4em; }
.method p { margin-bottom: 0; font-size: var(--fs-1); }
.method a { font-weight: 600; }

/* ---------- Formulare ---------- */
.form-grid { display: grid; gap: 1.35rem; margin-top: 1.75rem; }
.form-field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--blau-dunkel);
}
.form-field .hint { font-size: var(--fs-0); color: var(--ink-soft); margin: 0.3rem 0 0; }
input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font: inherit;
  color: var(--ink);
  background: var(--weiss);
  border: 1.5px solid var(--linie);
  border-radius: 10px;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
input:focus, textarea:focus {
  /* transparente Outline bleibt im Windows-Hochkontrastmodus sichtbar */
  outline: 3px solid transparent;
  border-color: var(--blau-tief);
  box-shadow: 0 0 0 3px rgba(27, 110, 140, 0.18);
}
.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  font-size: var(--fs-1);
}
.form-consent input[type="checkbox"] {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.2rem;
  accent-color: var(--gruen-tief);
}
.required-mark { color: var(--gruen-dunkel); }
/* Honeypot */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Kontakt-Karten ---------- */
/* Bewusst festes 1 / 2-Spalten-Layout (statt auto-fit): so landen bei vier
   Karten immer exakt zwei Zeilen à zwei Karten, nie drei nebeneinander mit
   einer einzelnen vierten Karte in eigener Zeile. Zusätzlich zentriert und
   auf 38rem begrenzt, damit der Block mittig unter dem einleitenden Text sitzt. */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-inline: auto;
  max-width: 38rem;
}
@media (min-width: 34rem) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
.contact-card {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-1);
}
.contact-card svg { color: var(--gruen-tief); margin-bottom: 0.9rem; }
.contact-card h3 { font-size: var(--fs-3); margin-bottom: 0.4em; }
.contact-card p { margin-bottom: 0.3em; }
.contact-card a { font-weight: 600; font-size: var(--fs-3); text-decoration: none; color: var(--blau-dunkel); }
.contact-card a:hover { color: var(--blau-tief); text-decoration: underline; }
.contact-card .tel-groß { font-size: clamp(1.15rem, 6vw, 1.55rem); }
/* E-Mail-Adresse und Faxnummer immer einzeilig — wie die Telefonnummer */
.contact-card .mail-link { font-size: clamp(0.95rem, 3.6vw, 1.1rem); white-space: nowrap; }
.contact-card .ohne-umbruch { white-space: nowrap; }

/* ---------- Badges / Mitgliedschaften ---------- */
.badge-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: 1rem;
}
.badge-strip img {
  max-height: 74px;
  width: auto;
  filter: grayscale(35%);
  opacity: 0.85;
  transition: filter 200ms var(--ease), opacity 200ms var(--ease);
}
.badge-strip img:hover { filter: none; opacity: 1; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blau-dunkel);
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--fs-1);
  margin-top: 0;
}
.site-footer::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--gruen) 0%, var(--blau) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
  gap: 2.5rem;
  padding-block: 3.5rem 2.5rem;
}
.site-footer h2 {
  color: #fff;
  font-size: var(--fs-3);
  margin-bottom: 0.9rem;
}
.site-footer a { color: #fff; text-decoration-color: rgba(255,255,255,0.4); }
.site-footer a:hover { color: var(--gruen); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer address { font-style: normal; }
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.footer-brand img { width: 48px; height: 48px; background: #fff; border-radius: 50%; padding: 3px; }
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  font-size: var(--fs-0);
  color: rgba(255, 255, 255, 0.72);
}
.footer-legal ul { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.footer-legal li { margin: 0; }

/* ---------- Scroll-Reveal ----------
   Ohne JS bleibt alles sichtbar: erst html.js aktiviert den Ausgangszustand. */
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms var(--ease), transform 550ms var(--ease);
}
html.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Sonstiges ---------- */
.tel-groß {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-5);
  color: var(--blau-dunkel);
  text-decoration: none;
  white-space: nowrap;
}
.tel-groß:hover { color: var(--blau-tief); text-decoration: underline; }

.hours-table { border-collapse: collapse; width: 100%; max-width: 26rem; }
.hours-table td { padding: 0.5rem 0; border-bottom: 1px solid var(--linie); vertical-align: top; }
.hours-table td:last-child { text-align: right; font-weight: 600; }

.figure-caption {
  font-size: var(--fs-0);
  color: var(--ink-soft);
  margin-top: 0.7rem;
}

/* Barrierefreiheit: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Druck */
@media print {
  .site-header, .site-footer, .nav-toggle, .btn, .skip-link { display: none; }
  body { background: #fff; color: #000; }
}

/* FAQ (native details/summary) */
.faq-item {
  border-bottom: 1px solid var(--linie);
  padding: 0.4rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--blau-dunkel);
  padding: 0.7rem 0;
  list-style-position: outside;
}
.faq-item summary:hover { color: var(--blau-tief); }
.faq-item[open] summary { color: var(--blau-tief); }
.faq-item p { margin: 0.3rem 0 0.9rem; }

/* Dropdown-Navigation (CSS-only: hover + focus-within, ohne JS) */
.site-nav li.has-sub { position: relative; }
.site-nav li.has-sub > a {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.site-nav li.has-sub > a::after {
  content: "";
  flex: none;
  width: 0.42em; height: 0.42em;
  margin-top: -0.25em; /* optischer Ausgleich: Spitze des Pfeils mittig zur Textzeile */
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.site-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  min-width: 17rem;
  margin: 0;
  padding: 0.6rem;
  list-style: none;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
}
.site-nav li.has-sub:hover > .sub-menu,
.site-nav li.has-sub:focus-within > .sub-menu { display: block; }
.site-nav .sub-menu a {
  display: block;
  padding: 0.5rem 0.7rem;
  font-weight: 500;
  font-size: var(--fs-0);
  border-bottom: none;
  border-radius: 8px;
  white-space: nowrap;
}
.site-nav .sub-menu a:hover { background: var(--nebel, #f0f4f2); color: var(--blau-tief); }
.site-nav .sub-menu--breit { display: none; padding: 1rem 1.2rem; }
.site-nav li.has-sub:hover > .sub-menu--breit,
.site-nav li.has-sub:focus-within > .sub-menu--breit {
  display: flex;
  gap: 2rem;
  /* Ohne dies erbt das Untermenü align-items:center vom Hauptmenü —
     die kürzere Spalte würde dann mittig statt oben ansetzen. */
  align-items: flex-start;
}
.site-nav .sub-gruppe > ul {
  display: block; /* überschreibt das flex der Hauptnavigations-ul */
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav .sub-titel {
  display: block;
  padding: 0.3rem 0.7rem 0.4rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
/* Anker-Ziele nicht unter dem Header verschwinden lassen */
h2[id], h3[id], section[id] { scroll-margin-top: 6.5rem; }

@media (max-width: 64rem) {
  /* Mobil: Untermenüs eingerückt und immer sichtbar */
  .site-nav .sub-menu,
  .site-nav li.has-sub:hover > .sub-menu,
  .site-nav li.has-sub:focus-within > .sub-menu,
  .site-nav .sub-menu--breit,
  .site-nav li.has-sub:hover > .sub-menu--breit,
  .site-nav li.has-sub:focus-within > .sub-menu--breit {
    display: block;
    position: static;
    transform: none;
    min-width: 0;
    padding: 0 0 0.6rem;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }
  .site-nav li.has-sub > a::after { content: none; }
  .site-nav .sub-menu li { border-bottom: none; }
  .site-nav .sub-menu a {
    padding: 0.45rem 0.25rem 0.45rem 1.1rem;
    font-size: 1.05rem;
    white-space: normal;
  }
  .site-nav .sub-titel { padding-left: 1.1rem; }
}

/* Hinweiszeile unter CTA-Buttons (10–15 Min., Telefon) */
.cta-hinweis {
  margin-top: 0.8rem;
  font-size: var(--fs-0);
  color: var(--ink-soft);
}
.cta-hinweis a {
  color: var(--blau-dunkel);
  font-weight: 600;
  white-space: nowrap;
}

/* Bildkarten: verlinkte Themen-Kacheln, Titel als Overlay im Bild
   Kompakter Block: 3 Spalten, ab Tablet 2 — nie einspaltig */
.bild-karten {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 56rem) {
  .bild-karten { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
}
.bild-karten li { margin: 0; }
.bild-karte-link {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  text-decoration: none;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.bild-karte-link:hover,
.bild-karte-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.bild-karte-link img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 300ms var(--ease);
}
.bild-karte-link:hover img { transform: scale(1.04); }
.bild-karte-link .titel {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem 0.85rem 0.7rem;
  background: linear-gradient(180deg, rgba(19, 77, 98, 0) 0%, rgba(19, 77, 98, 0.82) 78%);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.1rem);
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
