/* ==========================================================================
   Caffe Medic – Stylesheet
   Aufbau: 1 Schriften · 2 Design-Tokens · 3 Basis · 4 Layout · 5 Komponenten
           6 Sektionen · 7 Unterseiten · 8 Animation · 9 Responsive
   ========================================================================== */

/* 1 · Schriften (lokal gehostet, SIL Open Font License) ------------------- */
@font-face {
  font-family: "Fraunces"; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url("../fonts/fraunces-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Fraunces"; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url("../fonts/fraunces-latin.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;
}
@font-face {
  font-family: "Manrope"; font-style: normal; font-weight: 200 800; font-display: swap;
  src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope"; font-style: normal; font-weight: 200 800; font-display: swap;
  src: url("../fonts/manrope-latin.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;
}

/* 2 · Design-Tokens ------------------------------------------------------- */
:root {
  /* Farben – warme Kaffee-Palette (aus der alten Seite weiterentwickelt) */
  --paper: #FBF7F1;        /* Seitenhintergrund */
  --cream: #F3EADC;        /* abgesetzte Sektionen */
  --cream-2: #E9DBC5;
  --white: #FFFFFF;
  --ink: #2B1D14;          /* Haupttext (Espresso) */
  --ink-2: #5A473A;        /* Fließtext sekundär */
  --ink-3: #75604F;        /* Metatext */
  --line: rgba(43, 29, 20, .12);
  --line-strong: rgba(43, 29, 20, .22);
  --espresso: #1D140F;     /* dunkle Flächen */
  --espresso-2: #2A1D16;
  --on-dark: #F6EDE1;
  --on-dark-2: #CDBBA7;
  --crema: #C8843F;        /* Akzent (Crema/Kupfer) */
  --crema-light: #E4A96A;
  --crema-700: #8A5220;    /* Akzent als Text auf hell */
  --crema-100: #F6E6D1;
  --ok: #2F7A5A;           /* "geheilt" */
  --ok-100: #DDEFE5;

  /* Typografie */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fs-sm: .875rem;
  --fs-base: clamp(1rem, .97rem + .15vw, 1.0625rem);
  --fs-lead: clamp(1.0625rem, 1rem + .35vw, 1.25rem);
  --fs-h3: 1.125rem;
  --fs-h2: clamp(1.875rem, 1.35rem + 2.1vw, 3rem);
  --fs-display: clamp(2.5rem, 1.5rem + 3.4vw, 4.25rem);

  /* Form & Raum */
  --radius-s: 12px;
  --radius: 20px;
  --radius-l: 28px;
  --shadow-1: 0 1px 2px rgba(43, 29, 20, .05), 0 6px 20px rgba(43, 29, 20, .06);
  --shadow-2: 0 2px 6px rgba(43, 29, 20, .06), 0 24px 60px rgba(43, 29, 20, .14);
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-y: clamp(72px, 6vw + 40px, 128px);
  --header-h: 72px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* 3 · Basis --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--font-body); font-size: var(--fs-base); line-height: 1.65;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3 { margin: 0; line-height: 1.12; color: var(--ink); }
h1, h2 { font-family: var(--font-display); font-weight: 580; letter-spacing: -.02em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; letter-spacing: -.005em; }
p { margin: 0; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--crema-100); color: var(--ink); }
:focus-visible { outline: 3px solid var(--crema); outline-offset: 3px; border-radius: 6px; }

.i { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 100; padding: 10px 16px; border-radius: 999px; background: var(--espresso); color: var(--on-dark); font-weight: 600; transition: top .2s; }
.skip-link:focus { top: 12px; }

/* 4 · Layout -------------------------------------------------------------- */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container--narrow { --container: 760px; }
.section { padding-block: var(--section-y); }
.section--cream { background: var(--cream); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 4vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px;
  font-size: .8125rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--crema-700);
}
.kicker::before { content: ""; width: 24px; height: 2px; border-radius: 2px; background: var(--crema); }
.section-head--center .kicker::after { content: ""; width: 24px; height: 2px; border-radius: 2px; background: var(--crema); }
.section-lead { margin-top: 18px; font-size: var(--fs-lead); color: var(--ink-2); line-height: 1.6; }
.card-grid { display: grid; gap: clamp(16px, 2vw, 24px); }
.card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fine-print { margin-top: 20px; font-size: var(--fs-sm); color: var(--ink-3); }

/* 5 · Komponenten --------------------------------------------------------- */
/* Buttons */
.btn {
  --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border: 1.5px solid var(--btn-bd); border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg); font-weight: 700; font-size: .9375rem; line-height: 1.2;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), background-color .2s, border-color .2s, box-shadow .2s, color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .i { width: 18px; height: 18px; }
.btn-primary { --btn-bg: var(--espresso); --btn-fg: var(--on-dark); }
.btn-primary:hover { --btn-bg: #33241B; box-shadow: 0 8px 20px rgba(29, 20, 15, .22); }
.btn-accent { --btn-bg: var(--crema); --btn-fg: var(--espresso); }
.btn-accent:hover { --btn-bg: #D39352; box-shadow: 0 10px 24px rgba(200, 132, 63, .35); }
.btn-accent .i:last-child { transition: transform .2s var(--ease); }
.btn-accent:hover .i:last-child { transform: translateX(3px); }
.btn-ghost { --btn-bd: var(--line-strong); --btn-fg: var(--ink); }
.btn-ghost:hover { --btn-bd: var(--ink); --btn-bg: var(--white); }
.btn-sm { min-height: 40px; padding: 0 18px; font-size: .875rem; }
.btn-lg { min-height: 56px; padding: 0 28px; font-size: 1rem; }
.btn-block { width: 100%; }

/* Karten */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 2.4vw, 32px); box-shadow: var(--shadow-1); }
.icon-badge { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: var(--crema-100); color: var(--crema-700); }
.icon-badge .i { width: 26px; height: 26px; }
.icon-badge--sm { width: 44px; height: 44px; border-radius: 14px; }
.icon-badge--sm .i { width: 22px; height: 22px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; height: var(--header-h);
  border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s;
}
/* Unschärfe auf Pseudo-Element: backdrop-filter direkt am Header würde das fixe Mobilmenü einsperren */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(251, 247, 241, .86); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px);
}
.nav-open .site-header::before { background: var(--paper); }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(43, 29, 20, .06); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 100%; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; flex: none; }
.brand img { width: 30px; height: auto; }
.brand-name { font-family: var(--font-display); font-weight: 650; font-size: 1.375rem; letter-spacing: -.01em; }
.brand-name span { color: var(--crema-700); margin-left: .18em; }
.brand--light { color: var(--on-dark); }
.brand--light .brand-name span { color: var(--crema-light); }
.nav { margin-left: auto; }
.nav-list { display: flex; gap: 4px; }
.nav-list a { display: block; padding: 8px 12px; border-radius: 999px; font-size: .9375rem; font-weight: 600; color: var(--ink-2); text-decoration: none; transition: color .2s, background-color .2s; }
.nav-list a:hover, .nav-list a.is-active { color: var(--ink); background: rgba(43, 29, 20, .06); }
.nav-extra { display: none; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: flex; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .6); }
.lang-switch a { padding: 5px 9px; border-radius: 999px; font-size: .75rem; font-weight: 700; letter-spacing: .06em; color: var(--ink-3); text-decoration: none; }
.lang-switch a:hover { color: var(--ink); }
.lang-switch a[aria-current] { background: var(--espresso); color: var(--on-dark); }
.nav-toggle { display: none; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: var(--white); cursor: pointer; }
.nav-toggle .i { width: 22px; height: 22px; }
.nav-toggle .i-close { display: none; }
.nav-open .nav-toggle .i-open { display: none; }
.nav-open .nav-toggle .i-close { display: block; }

/* 6 · Sektionen ----------------------------------------------------------- */
/* Hero */
.hero { position: relative; padding-block: clamp(32px, 4.5vw, 72px) clamp(24px, 3vw, 48px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto auto; width: 70vw; height: 70vw; max-width: 900px; max-height: 900px; z-index: -1;
  background: radial-gradient(closest-side, rgba(200, 132, 63, .16), rgba(200, 132, 63, 0));
}
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 10px; margin-bottom: 26px;
  border: 1px solid rgba(138, 82, 32, .2); border-radius: 999px; background: var(--crema-100);
  font-size: .8125rem; font-weight: 700; letter-spacing: .02em; color: var(--crema-700);
}
.eyebrow .i { width: 18px; height: 18px; }
.display { font-size: var(--fs-display); line-height: 1.02; letter-spacing: -.03em; font-weight: 560; }
.display em { display: block; font-style: normal; color: var(--crema-700); }
.hero-lead { max-width: 560px; margin-top: 24px; font-size: var(--fs-lead); color: var(--ink-2); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 36px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-trust li { display: grid; }
.hero-trust strong { font-family: var(--font-display); font-size: 1.875rem; font-weight: 600; line-height: 1.1; letter-spacing: -.02em; }
.hero-trust span { font-size: var(--fs-sm); color: var(--ink-3); }
.hero-media { position: relative; margin: 0; }
.hero-media > img {
  width: 100%; aspect-ratio: 5 / 6; object-fit: cover; object-position: 38% 50%;
  border-radius: var(--radius-l); box-shadow: var(--shadow-2);
}
.patient-card {
  position: absolute; left: clamp(-40px, -3vw, -16px); bottom: 28px; width: min(290px, 80%);
  padding: 18px 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-2); font-size: .8125rem;
  animation: float 6s ease-in-out infinite;
}
.patient-card-title { display: flex; align-items: center; gap: 8px; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px dashed var(--line-strong); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .6875rem; color: var(--crema-700); }
.patient-card-title .i { width: 16px; height: 16px; }
.patient-card dl { margin: 0; display: grid; gap: 6px; }
.patient-card dl div { display: grid; grid-template-columns: 76px 1fr; gap: 8px; }
.patient-card dt { color: var(--ink-3); }
.patient-card dd { margin: 0; font-weight: 700; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; padding: 5px 12px 5px 8px; border-radius: 999px; background: var(--ok-100); color: var(--ok); font-weight: 800; }
.status-pill .i { width: 16px; height: 16px; stroke-width: 2.5; }

/* Leistungen */
.service-card { transition: transform .3s var(--ease), box-shadow .3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.service-card h3 { margin: 22px 0 10px; font-size: 1.25rem; }
.service-card p { color: var(--ink-2); }
.tag-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; margin-top: 28px; }
.tag-row-label { font-weight: 700; font-size: var(--fs-sm); color: var(--ink-3); }
.tag-row ul { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-row li { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); font-size: var(--fs-sm); font-weight: 600; }
.tag-row li .i { width: 16px; height: 16px; color: var(--ok); stroke-width: 2.5; }

/* Störungen */
.symptom-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.symptom-grid > li { display: flex; }
.symptom {
  display: flex; flex-direction: column; gap: 8px; width: 100%; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); text-decoration: none; transition: background-color .25s, border-color .25s, transform .3s var(--ease), box-shadow .3s;
}
.symptom:hover { background: var(--white); border-color: rgba(200, 132, 63, .55); transform: translateY(-3px); box-shadow: var(--shadow-1); }
.symptom-icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 8px; border-radius: 12px; background: var(--espresso); color: var(--crema-light); }
.symptom-icon .i { width: 22px; height: 22px; }
.symptom-title { font-weight: 700; font-size: 1.0625rem; line-height: 1.3; }
.symptom-text { font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.55; }
.symptom-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 10px; font-size: var(--fs-sm); font-weight: 700; color: var(--crema-700); }
.symptom-cta .i { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.symptom:hover .symptom-cta .i { transform: translateX(4px); }

/* Ablauf */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; counter-reset: step; }
.steps::before { content: ""; position: absolute; top: 34px; left: 12%; right: 12%; border-top: 2px dashed var(--cream-2); }
.step { position: relative; text-align: center; padding: 0 8px; }
.step-no {
  display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 22px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--crema); color: var(--crema-700);
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
}
.step:last-child .step-no { background: var(--ok-100); border-color: var(--ok); color: var(--ok); }
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--ink-2); font-size: .9375rem; }

/* Band (dunkel) */
.band { position: relative; overflow: hidden; padding-block: var(--section-y); background: var(--espresso); color: var(--on-dark); isolation: isolate; }
.band::before { content: ""; position: absolute; z-index: -1; width: 900px; height: 900px; left: -300px; top: -420px; background: radial-gradient(closest-side, rgba(200, 132, 63, .22), transparent); }
.band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.band h2 { color: var(--on-dark); }
.band-copy p { margin: 20px 0 32px; color: var(--on-dark-2); font-size: var(--fs-lead); }
.stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.stat { display: grid; gap: 4px; padding: 26px 24px; border: 1px solid rgba(246, 237, 225, .12); border-radius: var(--radius); background: rgba(246, 237, 225, .04); }
.stat strong { font-family: var(--font-display); font-size: clamp(2.25rem, 1.6rem + 2vw, 3.25rem); font-weight: 560; line-height: 1; letter-spacing: -.02em; color: var(--crema-light); font-variant-numeric: tabular-nums; }
.stat > span { color: var(--on-dark-2); font-size: var(--fs-sm); }

/* Marken */
.brand-gallery { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.brand-tile { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--cream); aspect-ratio: 4 / 5; }
.brand-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.brand-tile:hover img { transform: scale(1.05); }
.brand-tile::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(to top, rgba(29, 20, 15, .82), transparent); }
.brand-tile span { position: absolute; z-index: 1; left: 16px; bottom: 14px; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: #fff; }
.brand-more { margin-top: 22px; color: var(--ink-3); font-weight: 600; }

/* Über uns */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.about-media { position: relative; margin: 0; }
.about-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-l); box-shadow: var(--shadow-2); }
.about-badge { position: absolute; right: -16px; bottom: 32px; display: grid; padding: 18px 22px; border-radius: 18px; background: var(--espresso); color: var(--on-dark); box-shadow: var(--shadow-2); }
.about-badge strong { font-family: var(--font-display); font-size: 2.25rem; line-height: 1; font-weight: 560; color: var(--crema-light); }
.about-badge span { font-size: var(--fs-sm); color: var(--on-dark-2); }
.pillars { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 32px; }
.pillars li { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.pillars h3 { margin-bottom: 6px; }
.pillars p { color: var(--ink-2); font-size: .9375rem; }

/* Bewertungen */
.review { display: flex; flex-direction: column; margin: 0; }
.review-quote { width: 34px; height: 34px; color: var(--crema); fill: rgba(200, 132, 63, .15); }
.review blockquote { margin: 18px 0 26px; font-size: 1.0625rem; line-height: 1.6; }
.review figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.review figcaption span:last-child { display: grid; line-height: 1.3; }
.review small { color: var(--ink-3); font-size: var(--fs-sm); }
.avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--crema-100); color: var(--crema-700); font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line-strong); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 22px 0; cursor: pointer; list-style: none; font-weight: 700; font-size: 1.0625rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .i { width: 22px; height: 22px; color: var(--crema-700); transition: transform .3s var(--ease); }
.faq-item[open] summary .i { transform: rotate(180deg); }
.faq-item summary:hover { color: var(--crema-700); }
.faq-item p { padding: 0 48px 24px 0; color: var(--ink-2); }

/* Kontakt */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.locations { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.location { display: flex; flex-direction: column; }
.location h3 { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.location h3 .i { color: var(--crema); }
.location-address { margin-top: 4px; font-size: var(--fs-sm); color: var(--ink-3); }
.location-phone { display: block; margin: 14px 0 18px; font-size: 1.25rem; font-weight: 800; letter-spacing: .01em; text-decoration: none; font-variant-numeric: tabular-nums; }
.location-phone:hover { color: var(--crema-700); }
.location-actions { display: grid; gap: 8px; margin-top: auto; }
.location-actions .btn { min-height: 44px; font-size: .875rem; padding: 0 16px; }
.contact-email { display: flex; align-items: center; gap: 10px; margin-top: 22px; color: var(--ink-2); }
.contact-email .i { color: var(--crema-700); }
.contact-email a { font-weight: 700; color: var(--ink); }

.repair-form { position: relative; display: grid; gap: 18px; padding: clamp(24px, 3vw, 40px); box-shadow: var(--shadow-2); overflow: hidden; }
.repair-form::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, var(--crema), var(--crema-light)); }
.form-title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; letter-spacing: -.01em; }
.form-intro { margin-top: -10px; color: var(--ink-2); }
.field { display: grid; gap: 8px; min-width: 0; margin: 0; padding: 0; border: 0; }
.field label, .field legend { padding: 0; font-weight: 700; font-size: var(--fs-sm); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; border: 1.5px solid var(--line-strong); border-radius: var(--radius-s);
  background: var(--paper); transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.field textarea { min-height: 116px; resize: vertical; }
.field select { appearance: none; padding-right: 42px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A5220' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; }
.field input::placeholder, .field textarea::placeholder { color: #9A8676; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(43, 29, 20, .38); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--crema); background: var(--white); box-shadow: 0 0 0 4px rgba(200, 132, 63, .18); }
.field.is-highlight select { border-color: var(--crema); box-shadow: 0 0 0 4px rgba(200, 132, 63, .25); }
.segmented { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; padding: 5px; border-radius: 14px; background: var(--cream); }
.segmented label { position: relative; cursor: pointer; }
.segmented input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.segmented span { display: block; padding: 10px; border-radius: 10px; text-align: center; font-weight: 700; color: var(--ink-2); transition: background-color .2s, color .2s, box-shadow .2s; }
.segmented input:checked + span { background: var(--white); color: var(--ink); box-shadow: var(--shadow-1); }
.segmented input:focus-visible + span { outline: 3px solid var(--crema); outline-offset: 1px; }
.form-error { padding: 12px 14px; border-radius: var(--radius-s); background: #FBE3DD; color: #8C2A17; font-weight: 600; font-size: var(--fs-sm); }
.form-note { font-size: .8125rem; color: var(--ink-3); text-align: center; }
.form-note a { color: var(--ink); font-weight: 700; }

.map-embed { position: relative; margin-top: clamp(40px, 5vw, 64px); height: 380px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-l); background: var(--cream); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-placeholder {
  height: 100%; display: grid; place-content: center; justify-items: center; gap: 14px; padding: 24px; text-align: center;
  background-image: linear-gradient(rgba(43, 29, 20, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(43, 29, 20, .055) 1px, transparent 1px);
  background-size: 40px 40px; background-position: center;
}
.map-icon { width: 44px; height: 44px; color: var(--crema-700); }
.map-title { font-weight: 700; }
.map-placeholder .form-note { max-width: 420px; }

/* Footer */
.site-footer { padding-top: clamp(56px, 6vw, 88px); background: var(--espresso); color: var(--on-dark-2); font-size: .9375rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { margin-top: 18px; max-width: 320px; }
.footer-tagline { font-family: var(--font-display); font-size: 1.125rem; color: var(--on-dark); }
.footer-title { margin-bottom: 16px; font-family: var(--font-body); font-size: .8125rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark); }
.footer-title--spaced { margin-top: 28px; }
.footer-list { display: grid; gap: 10px; }
.footer-list a, .footer-address { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; transition: color .2s; }
.footer-list a:hover { color: var(--crema-light); }
.footer-list .i { width: 18px; height: 18px; color: var(--crema-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-block: 24px; border-top: 1px solid rgba(246, 237, 225, .12); font-size: var(--fs-sm); }
.to-top { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.to-top:hover { color: var(--crema-light); }
.to-top .i { width: 18px; height: 18px; }

/* Anruf-Leiste (nur mobil) */
.call-bar { display: none; }

/* Cookie-Banner --------------------------------------------------------- */
.consent {
  position: fixed; z-index: 60; left: 24px; bottom: 24px; width: min(520px, calc(100% - 32px));
  display: grid; gap: 14px; padding: 22px 22px 20px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); box-shadow: var(--shadow-2); font-size: .9375rem;
  opacity: 0; transform: translateY(12px); transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.consent[hidden] { display: none; }
.consent.is-visible { opacity: 1; transform: none; }
.consent-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.375rem; font-weight: 600; }
.consent-title .i { width: 22px; height: 22px; color: var(--crema-700); }
.consent-text { color: var(--ink-2); line-height: 1.55; }
.consent-text a { color: var(--ink); font-weight: 700; }
.consent-options { display: grid; gap: 8px; }
.consent-options[hidden] { display: none; }
.consent-opt { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-s); background: var(--paper); cursor: pointer; }
.consent-opt input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--crema-700); cursor: pointer; }
.consent-opt input:disabled { cursor: not-allowed; }
.consent-opt span { display: grid; gap: 2px; }
.consent-opt small { color: var(--ink-3); font-size: .8125rem; line-height: 1.45; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.consent-actions .btn { flex: 1 1 auto; }
.consent-actions [hidden] { display: none; }
.footer-link-btn { padding: 0; border: 0; background: none; color: inherit; font: inherit; text-align: left; cursor: pointer; transition: color .2s; }
.footer-link-btn:hover { color: var(--crema-light); }
.consent-open .call-bar { display: none; }
@media (max-width: 760px) {
  .consent { left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); width: auto; max-height: calc(100vh - 88px); overflow-y: auto; padding: 18px; }
  .consent-actions .btn { flex: 1 1 100%; }
}

/* 7 · Unterseiten --------------------------------------------------------- */
.legal { padding-block: clamp(40px, 5vw, 72px) var(--section-y); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; font-size: var(--fs-sm); color: var(--ink-3); }
.breadcrumb a { color: var(--ink-2); }
.legal h1 { font-size: clamp(2rem, 1.5rem + 2vw, 3rem); }
.legal-notice { display: flex; align-items: center; gap: 10px; margin-top: 20px; padding: 14px 16px; border-radius: var(--radius-s); background: var(--crema-100); color: var(--crema-700); font-weight: 600; font-size: var(--fs-sm); }
.prose { margin-top: 36px; }
.prose h2 { margin: 40px 0 12px; font-size: 1.5rem; }
.prose p, .prose ul { margin-bottom: 16px; color: var(--ink-2); }
.prose ul { padding-left: 1.2em; list-style: disc; }
.prose li { margin-bottom: 6px; }
.not-found { padding-block: var(--section-y); text-align: center; }
.not-found img { width: 72px; margin: 0 auto 24px; }
.not-found h1 { font-size: var(--fs-h2); margin-bottom: 14px; }
.not-found p { color: var(--ink-2); }
.not-found-langs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 32px; }

/* 8 · Animation ----------------------------------------------------------- */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--delay, 0s); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* 9 · Responsive ---------------------------------------------------------- */
@media (max-width: 1140px) {
  .nav-list a { padding: 8px 9px; font-size: .875rem; }
  .brand-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .symptom-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
  .nav-toggle { display: grid; }
  .header-cta { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0; z-index: 40; display: flex; flex-direction: column; justify-content: space-between;
    padding: 24px var(--gutter) calc(24px + env(safe-area-inset-bottom)); background: var(--paper);
    overflow-y: auto; visibility: hidden; opacity: 0; transform: translateY(-8px); transition: opacity .25s, transform .25s var(--ease), visibility 0s .25s;
  }
  .nav-open .nav { visibility: visible; opacity: 1; transform: none; transition: opacity .25s, transform .25s var(--ease); }
  .nav-open { overflow: hidden; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-list a { padding: 14px 0; border-bottom: 1px solid var(--line); border-radius: 0; font-family: var(--font-display); font-size: 1.75rem; font-weight: 560; color: var(--ink); }
  .nav-list a:hover { background: none; color: var(--crema-700); }
  .nav-extra { display: grid; gap: 12px; margin-top: 32px; }
  .nav-phone { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); font-weight: 800; text-decoration: none; }
  .nav-phone span { display: grid; line-height: 1.3; }
  .nav-phone small { font-weight: 600; color: var(--ink-3); }
  .nav-phone .i { color: var(--crema-700); }
  .hero-grid, .band-grid, .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 640px; }
  .hero-media > img { aspect-ratio: 4 / 3; }
  .patient-card { left: 16px; }
  .about-media { max-width: 520px; }
  .about-badge { right: 16px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; }
  .steps::before { display: none; }
  .card-grid--3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  :root { --header-h: 64px; }
  body { padding-bottom: 72px; }
  .brand-name { font-size: 1.25rem; }
  .lang-switch a { padding: 5px 7px; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { gap: 16px 24px; }
  .hero-trust strong { font-size: 1.5rem; }
  .patient-card { position: relative; left: auto; bottom: auto; width: auto; margin: -48px 16px 0; animation: none; }
  .symptom-grid { grid-template-columns: 1fr; gap: 12px; }
  .symptom { display: grid; grid-template-columns: auto 1fr; column-gap: 16px; row-gap: 4px; padding: 18px; }
  .symptom-icon { grid-row: span 3; margin: 0; }
  .symptom-cta { padding-top: 6px; }
  .steps { grid-template-columns: 1fr; row-gap: 28px; }
  .step { display: grid; grid-template-columns: auto 1fr; column-gap: 18px; text-align: left; padding: 0; }
  .step-no { grid-row: span 2; width: 56px; height: 56px; margin: 0; font-size: 1.25rem; }
  .step h3 { align-self: end; margin-bottom: 4px; }
  .stats { gap: 12px; }
  .stat { padding: 20px 18px; }
  .brand-gallery { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: calc(-1 * var(--gutter)); padding: 0 var(--gutter) 8px; scrollbar-width: none; }
  .brand-gallery::-webkit-scrollbar { display: none; }
  .brand-tile { flex: 0 0 62%; scroll-snap-align: start; }
  .pillars { grid-template-columns: 1fr; gap: 22px; }
  .locations { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .faq-item p { padding-right: 0; }
  .map-embed { height: 320px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .call-bar {
    position: fixed; inset: auto 0 0; z-index: 45; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(29, 20, 15, .96); backdrop-filter: blur(10px);
    box-shadow: 0 -8px 30px rgba(29, 20, 15, .2);
  }
  .call-bar a { display: flex; align-items: center; justify-content: center; gap: 6px; min-height: 48px; border-radius: 12px; background: rgba(246, 237, 225, .08); color: var(--on-dark); font-size: .8125rem; font-weight: 700; text-decoration: none; }
  .call-bar .i { width: 18px; height: 18px; color: var(--crema-light); }
  .call-bar .call-bar-accent { background: var(--crema); color: var(--espresso); }
  .call-bar .call-bar-accent .i { color: var(--espresso); }
  .nav-open .call-bar { display: none; }
}
@media (max-width: 380px) {
  .brand-name { font-size: 1.125rem; }
  .header-inner { gap: 10px; }
}
@media print {
  .consent, .site-header, .call-bar, .map-embed, .repair-form, .site-footer { display: none; }
  body { background: #fff; padding: 0; }
}
