/* ====================================================================
   HörVital v2 – Design „warm-seriös"
   Editorial-Praxis-Anmutung · ruhig · präzise · barrierearm
   ==================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg-base);
  line-height: 1.7;
  font-size: 1.04rem;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Design-Tokens (warm-seriös) ---------- */
:root {
  /* Flächen */
  --bg-base:   #fbf9f4;        /* warmes Off-White */
  --bg-elev:   #ffffff;        /* Karten, Hover-Flächen */
  --bg-tint:   #f4eee0;        /* warmer Sandton für Sektionswechsel */
  --bg-deep:   #1a2230;        /* Cool-Anthrazit für Footer / dunkle CTA */

  /* Schrift */
  --ink:       #1a2230;        /* Haupttext, fast-schwarz mit Blaustich */
  --ink-soft:  #4a5260;
  --ink-mute:  #7e8493;
  --ink-line:  #5a6275;

  /* Linien & Trenner */
  --line:      #e3dbc8;        /* warme Hairline */
  --line-soft: #efe9da;

  /* Marke */
  --brand:       #1e3a5f;      /* HörVital Navy */
  --brand-deep:  #0f2543;
  --brand-tint:  #e9eef5;

  /* Akzent (warm, ein einziger Ton, sparsam) */
  --accent:      #b48858;      /* gedecktes Taupe / Sand */
  --accent-deep: #8e6a3f;
  --accent-soft: #f3e9d8;

  /* Sekundär (Logo-Grün, sehr zurückhaltend) */
  --leaf:        #6ea03e;
  --leaf-soft:   #ecf3df;

  /* Form / Maße */
  --rad-sm:    6px;
  --rad:       10px;
  --rad-lg:    16px;
  --container: 1240px;
}

/* ---------- Typografie ---------- */
h1, h2, h3, h4, .serif {
  font-family: 'Newsreader', 'Lyon Text', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink);
  line-height: 1.15;
  font-feature-settings: "ss01";
}
h1 { font-size: clamp(2.4rem, 4.8vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 500; }
h3 { font-size: 1.35rem; font-weight: 500; }
h4 { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; font-family: 'Inter', sans-serif; }
p  { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

/* Container & Sektionen */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }
.section-soft { background: var(--bg-tint); }
.section-deep { background: var(--bg-deep); color: rgba(255,255,255,0.85); }
.section-deep h1, .section-deep h2, .section-deep h3, .section-deep h4 { color: #fff; }
.section-sm { padding: 70px 0; }

/* Eyebrow / Subtle-Label */
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 18px;
  position: relative;
  padding-left: 36px;
}
.eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 24px; height: 1px; background: var(--accent);
}

.section-header { max-width: 720px; margin: 0 0 70px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header p { margin-top: 20px; font-size: 1.12rem; max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-radius: var(--rad);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  min-height: 54px;  /* Touch-Target */
  cursor: pointer;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover { background: var(--brand-deep); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--bg-base); border-color: var(--ink); }
.btn-ghost {
  color: var(--ink); padding: 12px 0; font-weight: 500;
  border-bottom: 1px solid var(--ink); border-radius: 0;
  min-height: 0;
}
.btn-ghost:hover { color: var(--accent-deep); border-color: var(--accent-deep); }
.btn .icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--line-soft);
}
.topbar {
  background: var(--brand-deep);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; gap: 24px; flex-wrap: wrap;
}
.topbar a {
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.topbar a:hover { color: var(--accent); }
.topbar .icon { width: 14px; height: 14px; opacity: 0.7; }
.topbar-links { display: flex; gap: 28px; flex-wrap: wrap; }

.header-main {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; gap: 32px;
}
.logo { display: inline-flex; align-items: center; }
.logo img {
  height: 64px; width: auto; display: block;
  /* Trick: JPG mit weißem Hintergrund optisch transparent machen */
  mix-blend-mode: multiply;
}
/* Footer hat dunklen Hintergrund → Multiply funktioniert dort nicht.
   Logo in weißem Container darstellen. */
footer .logo {
  background: #fff;
  padding: 14px 22px;
  border-radius: var(--rad);
  border: 1px solid var(--line-soft);
  display: inline-block;
}
footer .logo img { height: 52px; mix-blend-mode: normal; }

/* Navigation */
nav.main-nav ul {
  list-style: none;
  display: flex; gap: 36px; align-items: center;
}
nav.main-nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 500; font-size: 0.98rem;
  color: var(--ink); position: relative;
  padding: 8px 0;
  transition: color 0.2s;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--accent-deep); }
nav.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.3s ease;
}
nav.main-nav a:hover::after, nav.main-nav a.active::after { width: 100%; }

/* Dropdown */
nav.main-nav .has-dropdown { position: relative; }
nav.main-nav .has-dropdown > a::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  margin-right: 6px; opacity: 0.55;
}
.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 240px;
  background: var(--bg-elev);
  border-radius: var(--rad);
  border: 1px solid var(--line);
  padding: 12px;
  opacity: 0; visibility: hidden;
  transition: all 0.25s ease;
}
nav.main-nav .has-dropdown:hover .dropdown,
nav.main-nav .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown ul { flex-direction: column; gap: 0 !important; align-items: stretch !important; }
.dropdown li { margin: 0 !important; }
.dropdown a {
  display: flex !important; align-items: center; gap: 12px;
  padding: 13px 16px !important;
  border-radius: var(--rad-sm);
  font-weight: 500 !important;
  font-size: 0.96rem;
}
.dropdown a:hover { background: var(--bg-tint); color: var(--ink) !important; }
.dropdown a::after { display: none !important; }
.dropdown a .icon { width: 16px; height: 16px; color: var(--accent); opacity: 0.7; }

/* Header CTA / Telefon */
.header-cta { display: flex; align-items: center; gap: 18px; }
.phone-display {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; color: var(--ink);
  font-size: 1.02rem;
}
.phone-display .phone-icon {
  width: 42px; height: 42px;
  background: var(--brand-tint);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.phone-display .phone-icon svg { width: 19px; height: 19px; color: var(--brand); }
.phone-display .phone-text small {
  display: block;
  font-size: 0.7rem; font-weight: 500;
  color: var(--ink-mute); letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.mobile-toggle { display: none; padding: 10px; border-radius: var(--rad-sm); }
.mobile-toggle svg { width: 26px; height: 26px; color: var(--ink); }

/* Version-Hinweis-Banner */
.version-banner {
  background: var(--accent-soft);
  border-bottom: 1px solid var(--accent);
  color: var(--accent-deep);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 500;
}
.version-banner a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.version-banner a:hover { color: var(--brand); }

/* ====================================================================
   HERO – asymmetrisch, ruhig, editorial
   ==================================================================== */
.hero {
  position: relative;
  padding: 80px 0 110px;
  background: var(--bg-base);
}
.hero-grid {
  display: grid; grid-template-columns: 1.25fr 1fr;
  gap: 90px; align-items: center;
}
.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero h1 .highlight {
  color: var(--accent-deep);
  font-style: italic;
  font-weight: 400;
}
.hero .lead {
  margin-bottom: 38px;
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.65;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 50px;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(4, auto);
  gap: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  font-family: 'Inter', sans-serif;
}
.hero-stats .stat .num {
  font-family: 'Newsreader', serif;
  font-size: 2.4rem; font-weight: 400;
  color: var(--ink); line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stats .stat .label {
  font-size: 0.78rem; color: var(--ink-mute);
  margin-top: 8px; letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: 28px; left: 28px; right: 28px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  padding: 22px 26px;
  border-radius: var(--rad);
  display: flex; align-items: center; gap: 18px;
  border: 1px solid var(--line-soft);
}
.hero-badge-icon {
  width: 46px; height: 46px;
  background: var(--leaf-soft);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--leaf);
  flex-shrink: 0;
}
.hero-badge-icon svg { width: 22px; height: 22px; }
.hero-badge-text strong {
  display: block; color: var(--ink);
  font-weight: 600; font-size: 1rem;
  font-family: 'Newsreader', serif;
  font-size: 1.15rem;
}
.hero-badge-text small {
  color: var(--ink-soft); font-size: 0.88rem;
}

/* ---------- Page-Hero (Unterseiten) ---------- */
.page-hero {
  position: relative;
  background: var(--bg-base);
  padding: 70px 0 90px;
  border-bottom: 1px solid var(--line);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; gap: 10px; align-items: center;
  font-size: 0.85rem; color: var(--ink-mute);
  margin-bottom: 32px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--ink-soft); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent-deep); }
.breadcrumb .sep { opacity: 0.4; }
.page-hero h1 {
  max-width: 22ch;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
}
.page-hero .eyebrow { color: var(--accent-deep); }
.page-hero .lead {
  margin-top: 24px; font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 58ch;
  line-height: 1.65;
}
.page-hero-meta {
  display: flex; gap: 36px; flex-wrap: wrap;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.96rem;
  color: var(--ink-soft);
  font-family: 'Inter', sans-serif;
}
.page-hero-meta .item { display: flex; align-items: center; gap: 10px; }
.page-hero-meta .icon { width: 18px; height: 18px; color: var(--accent); }
.page-hero-meta a { color: var(--ink); font-weight: 500; }
.page-hero-meta a:hover { color: var(--accent-deep); }

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--bg-base);
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.trust-item {
  display: flex; align-items: flex-start; gap: 16px;
  text-align: left;
}
.trust-item .icon-wrap {
  width: 40px; height: 40px;
  flex-shrink: 0;
  color: var(--accent);
  display: grid; place-items: center;
}
.trust-item .icon-wrap svg { width: 26px; height: 26px; }
.trust-item strong {
  color: var(--ink); font-size: 1rem;
  display: block; margin-bottom: 2px;
  font-family: 'Newsreader', serif;
  font-weight: 500;
}
.trust-item small {
  color: var(--ink-mute); font-size: 0.86rem;
  display: block;
  line-height: 1.5;
}

/* ====================================================================
   LEISTUNGEN – Editorial-Liste statt Karten-Grid
   ==================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  background: var(--bg-base);
  padding: 48px 38px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.service-card:hover { background: var(--bg-elev); }
.service-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  color: var(--accent);
  display: grid; place-items: center;
}
.service-icon svg { width: 32px; height: 32px; }
.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}
.service-card p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 38ch;
}

/* 3 Spalten auf großen Screens */
@media (min-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ====================================================================
   STANDORTE-Übersicht (asymmetrisch)
   ==================================================================== */
.locations-intro {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 70px; align-items: end;
  margin-bottom: 60px;
}
.locations-intro h2 { margin-bottom: 16px; max-width: 18ch; }
.locations-intro p { font-size: 1.1rem; max-width: 50ch; }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 1100px) {
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
}

.location-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
  display: flex; flex-direction: column;
}
.location-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.location-map {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg-tint);
  overflow: hidden;
}
.location-map iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.85) contrast(0.95); }
.location-body { padding: 30px 28px; flex: 1; display: flex; flex-direction: column; }
.location-name {
  font-family: 'Newsreader', serif;
  font-size: 1.6rem; font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  display: flex; align-items: center; gap: 10px;
}
.location-name .icon { width: 20px; height: 20px; color: var(--accent); opacity: 0.8; }
.location-address {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
}
.location-meta { display: grid; gap: 14px; margin-bottom: 22px; font-size: 0.94rem; }
.location-meta .row {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--ink-soft);
}
.location-meta .row .icon {
  width: 16px; height: 16px;
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}
.location-meta a { color: var(--ink); font-weight: 500; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.location-meta a:hover { border-color: var(--accent); }
.location-directions {
  background: var(--bg-base);
  padding: 16px 18px;
  border-radius: var(--rad-sm);
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
  border-left: 3px solid var(--accent);
}
.location-directions strong { color: var(--ink); display: block; margin-bottom: 4px; font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; }
.location-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: auto;
}
.location-actions .btn { font-size: 0.92rem; padding: 13px 22px; min-height: 46px; }

/* ====================================================================
   ABLAUF – horizontale Nummerierung mit Linien
   ==================================================================== */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  border-top: 1px solid var(--line);
}
.process-step {
  padding: 44px 28px 28px;
  position: relative;
  border-right: 1px solid var(--line);
}
.process-step:last-child { border-right: none; }
.process-step .step-num {
  font-family: 'Newsreader', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--accent-deep);
  display: block;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  border: 0; background: transparent; padding: 0;
  width: auto; height: auto;
  box-shadow: none;
}
.process-step .step-num::before { content: '— '; opacity: 0.6; }
.process-step h3 { margin-bottom: 12px; font-size: 1.3rem; font-weight: 500; }
.process-step p { font-size: 0.96rem; line-height: 1.6; }

/* ====================================================================
   VORTEILE / ÜBER UNS – Editorial-Split
   ==================================================================== */
.benefits-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 90px; align-items: center;
}
.benefits-list { list-style: none; margin-top: 32px; }
.benefits-list li {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.benefits-list li:last-child { border-bottom: none; }
.benefits-list .check {
  width: 30px; height: 30px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: transparent;
}
.benefits-list .check svg { width: 14px; height: 14px; stroke-width: 2.5; }
.benefits-list strong {
  color: var(--ink); font-weight: 600;
  display: block; margin-bottom: 4px;
  font-size: 1.05rem;
  font-family: 'Newsreader', serif;
}
.benefits-list span { font-size: 0.96rem; color: var(--ink-soft); line-height: 1.6; }
.benefits-visual {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.benefits-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95) contrast(1.02); }

/* ====================================================================
   CTA-Banner – ruhig, dunkel, hochwertig
   ==================================================================== */
.cta-banner {
  background: var(--bg-deep);
  color: #fff;
  padding: 110px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner .container { position: relative; z-index: 1; max-width: 800px; }
.cta-banner h2 { color: #fff; margin-bottom: 18px; font-weight: 400; font-size: clamp(2rem, 3.6vw, 3rem); }
.cta-banner p { color: rgba(255,255,255,0.72); margin-bottom: 38px; font-size: 1.12rem; }
.cta-banner .eyebrow { color: var(--accent); }
.cta-banner .eyebrow::before { background: var(--accent); }
.cta-banner .btn-primary { background: var(--accent); color: #fff; }
.cta-banner .btn-primary:hover { background: var(--accent-deep); }
.cta-banner .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-banner .btn-secondary:hover { background: #fff; color: var(--ink); border-color: #fff; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ====================================================================
   TESTIMONIALS – Zitate, kein Karten-Look
   ==================================================================== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px;
}
.testimonial {
  background: transparent;
  padding: 0;
  border: 0;
  position: relative;
}
.testimonial::before {
  content: '“';
  font-family: 'Newsreader', serif;
  font-size: 5rem;
  color: var(--accent);
  line-height: 1;
  position: absolute;
  top: -20px; left: -8px;
  opacity: 0.5;
}
.stars { display: none; }
.testimonial blockquote {
  color: var(--ink); font-family: 'Newsreader', serif;
  font-size: 1.25rem; line-height: 1.55;
  margin-bottom: 28px;
  font-style: italic;
  font-weight: 400;
  padding-top: 30px;
}
.testimonial .author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.testimonial .avatar {
  width: 44px; height: 44px;
  background: var(--bg-tint);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--accent-deep);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}
.testimonial .author strong { display: block; color: var(--ink); font-size: 0.98rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.testimonial .author small { color: var(--ink-mute); font-size: 0.84rem; }

/* ====================================================================
   KONTAKT
   ==================================================================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 90px; align-items: start;
}
.contact-info { padding-right: 20px; }
.contact-info h2 { margin-bottom: 18px; }
.contact-info > p { margin-bottom: 38px; font-size: 1.06rem; }
.contact-items { display: grid; gap: 26px; }
.contact-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-soft);
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-item .icon-wrap {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--accent); flex-shrink: 0;
  background: transparent;
}
.contact-item .icon-wrap svg { width: 20px; height: 20px; }
.contact-item strong {
  color: var(--ink); display: block; margin-bottom: 4px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.contact-item a {
  color: var(--ink); font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.contact-item a:hover { border-color: var(--accent); }

/* Formular */
.contact-form {
  background: var(--bg-elev);
  padding: 48px 44px;
  border: 1px solid var(--line);
  border-radius: var(--rad);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  color: var(--ink); margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group label .required { color: var(--accent-deep); }
.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-base);
  border: 1px solid var(--line);
  border-radius: var(--rad-sm);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  transition: all 0.2s;
  min-height: 52px;
}
.form-control:focus {
  outline: none;
  background: var(--bg-elev);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180, 136, 88, 0.15);
}
textarea.form-control { resize: vertical; min-height: 140px; line-height: 1.6; }
select.form-control { cursor: pointer; }
.checkbox-row {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.9rem; color: var(--ink-soft);
  margin: 22px 0;
  line-height: 1.5;
}
.checkbox-row input { margin-top: 4px; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--accent); }
.checkbox-row a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.form-submit {
  width: 100%; padding: 17px;
  background: var(--brand);
  color: #fff;
  border-radius: var(--rad);
  font-family: 'Inter', sans-serif;
  font-weight: 500; font-size: 1.02rem;
  transition: background 0.25s ease;
  min-height: 56px;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.form-submit:hover { background: var(--brand-deep); }
.form-msg {
  padding: 16px 20px;
  border-radius: var(--rad-sm);
  margin-top: 18px;
  font-size: 0.94rem;
  display: none;
  line-height: 1.5;
}
.form-msg.success {
  background: var(--leaf-soft); color: #3e5c1e; display: block;
  border: 1px solid #c3d99d;
}
.form-msg.error {
  background: #fdf2f2; color: #8b2424; display: block;
  border: 1px solid #f1bfbf;
}

/* ====================================================================
   STANDORT-DETAILSEITE
   ==================================================================== */
.location-detail-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 60px; align-items: start;
}
.info-box {
  background: var(--bg-elev);
  padding: 36px;
  border-radius: var(--rad);
  border: 1px solid var(--line);
}
.info-box h3 {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 26px;
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.info-box h3 .icon { width: 20px; height: 20px; color: var(--accent); }
.info-box .meta-list { list-style: none; }
.info-box .meta-list li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.info-box .meta-list li:last-child { border-bottom: none; }
.info-box .meta-list .label {
  min-width: 120px;
  font-weight: 600;
  color: var(--ink-mute);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-top: 3px;
  font-family: 'Inter', sans-serif;
}
.info-box .meta-list .value {
  color: var(--ink); font-size: 0.98rem;
  line-height: 1.7;
  flex: 1;
}
.info-box .meta-list a { color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--line); transition: border-color 0.2s; }
.info-box .meta-list a:hover { border-color: var(--accent); }

.large-map {
  border-radius: var(--rad);
  overflow: hidden;
  aspect-ratio: 16/10;
  margin-top: 32px;
  border: 1px solid var(--line);
}
.large-map iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.85) contrast(0.95); }

.directions-list { list-style: none; margin-top: 28px; }
.directions-list li {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.directions-list li:last-child { border-bottom: none; }
.directions-list .icon-wrap {
  width: 44px; height: 44px;
  color: var(--accent);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: transparent;
}
.directions-list .icon-wrap svg { width: 22px; height: 22px; }
.directions-list strong {
  display: block; color: var(--ink);
  font-weight: 500; margin-bottom: 6px;
  font-size: 1.1rem;
  font-family: 'Newsreader', serif;
}
.directions-list p { font-size: 0.98rem; line-height: 1.65; color: var(--ink-soft); }

/* FAQ */
.faq-list { max-width: 820px; }
.faq-list.center { margin: 0 auto; }
.faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 0;
}
.faq-item summary {
  padding: 26px 0;
  cursor: pointer;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  font-family: 'Newsreader', serif;
  font-size: 1.18rem;
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--accent-deep); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-item[open] summary { color: var(--accent-deep); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 0 28px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 68ch;
}

/* ====================================================================
   FOOTER
   ==================================================================== */
footer {
  background: var(--bg-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 100px 0 36px;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 60px; margin-bottom: 70px;
}
footer h4 {
  color: rgba(255,255,255,0.95);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 26px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 12px; }
footer ul a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}
footer ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom-links { display: flex; gap: 28px; flex-wrap: wrap; }

/* ====================================================================
   Floating Call (Mobile)
   ==================================================================== */
.floating-call {
  position: fixed; bottom: 22px; right: 22px;
  width: 60px; height: 60px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: none;
  place-items: center;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.35);
}
.floating-call:hover { background: var(--brand-deep); }
.floating-call svg { width: 26px; height: 26px; }

/* ====================================================================
   Andere Standorte
   ==================================================================== */
.other-locations { background: var(--bg-base); border-top: 1px solid var(--line); }
.other-locations-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
@media (max-width: 1100px) { .other-locations-grid { grid-template-columns: repeat(2, 1fr); } }
.mini-location {
  background: var(--bg-base);
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: block;
  text-align: left;
  transition: background 0.25s ease;
}
.mini-location:hover { background: var(--bg-elev); }
.mini-location .icon-wrap {
  width: 32px; height: 32px;
  color: var(--accent);
  margin-bottom: 16px;
  background: transparent;
  display: block;
}
.mini-location .icon-wrap svg { width: 24px; height: 24px; }
.mini-location strong {
  color: var(--ink);
  font-family: 'Newsreader', serif;
  font-size: 1.45rem;
  font-weight: 500;
  display: block; margin-bottom: 6px;
}
.mini-location span { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.55; }

/* ====================================================================
   Galerie
   ==================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.gallery-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: var(--rad);
  background: var(--bg-tint);
}
.gallery-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: saturate(0.95);
}
.gallery-card:hover img { transform: scale(1.02); filter: saturate(1.05); }
.gallery-card .caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 38px 24px 22px;
  background: linear-gradient(to top, rgba(26,34,48,0.92), rgba(26,34,48,0.4) 60%, transparent);
  color: #fff;
}
.gallery-card .caption strong {
  display: block;
  font-family: 'Newsreader', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: #fff;
}
.gallery-card .caption small {
  color: rgba(255,255,255,0.85);
  font-size: 0.86rem;
}

/* ====================================================================
   Hörgeräte / Marken-Sektion
   ==================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 32px 22px 28px;
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.product-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.product-card .product-img {
  height: 150px;
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.product-card .product-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-card strong {
  display: block;
  color: var(--ink);
  font-family: 'Newsreader', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.product-card small { display: block; color: var(--ink-mute); font-size: 0.86rem; line-height: 1.5; }

/* ====================================================================
   Rechtsseiten
   ==================================================================== */
.legal-content {
  max-width: 720px;
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.legal-content h2 {
  font-size: 1.7rem;
  margin: 56px 0 22px;
  color: var(--ink);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.18rem;
  margin: 32px 0 14px;
  color: var(--ink);
}
.legal-content p { margin-bottom: 16px; }
.legal-content ul, .legal-content ol { margin: 0 0 20px 26px; padding: 0; }
.legal-content li { margin-bottom: 10px; }
.legal-content a {
  color: var(--ink); text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.2s;
}
.legal-content a:hover { color: var(--accent-deep); }
.legal-content strong { color: var(--ink); }
.legal-placeholder {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  padding: 16px 22px;
  border-radius: var(--rad-sm);
  font-size: 0.94rem;
  color: var(--accent-deep);
  margin: 12px 0 24px;
}
.legal-placeholder strong { color: var(--accent-deep); }
.legal-box {
  background: var(--bg-elev);
  border-radius: var(--rad);
  padding: 28px 32px;
  margin: 24px 0;
  border: 1px solid var(--line);
}
.legal-box p:last-child { margin-bottom: 0; }

/* ====================================================================
   Booking-Modal (Standortauswahl für Termin-Buchung)
   ==================================================================== */
.booking-modal {
  position: fixed; inset: 0;
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.booking-modal.open { display: flex; }
.booking-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 42, 69, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: bm-fade .25s ease;
}
.booking-modal-box {
  position: relative;
  background: var(--bg-base);
  border-radius: var(--rad-lg);
  max-width: 540px;
  width: 100%;
  padding: 48px 44px 40px;
  box-shadow: 0 30px 60px rgba(20, 42, 69, 0.4);
  animation: bm-rise .3s ease;
}
.booking-modal-box h3 {
  font-family: 'Newsreader', serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--ink);
}
.booking-modal-box p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.65;
}
.booking-modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 38px; height: 38px;
  background: transparent;
  border-radius: 50%;
  color: var(--ink-soft);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.2s;
}
.booking-modal-close:hover { background: var(--bg-tint); }
.booking-modal-close svg { width: 20px; height: 20px; }

.booking-modal-list { display: grid; gap: 10px; }
.booking-modal-item {
  display: flex; align-items: center;
  padding: 18px 22px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.booking-modal-item:hover {
  border-color: var(--accent);
  background: #fff;
}
.booking-modal-item-text { flex: 1; }
.booking-modal-item strong {
  display: block;
  font-family: 'Newsreader', serif;
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.booking-modal-item small {
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.booking-modal-item svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.booking-modal-item:hover svg { transform: translateX(3px); }

@keyframes bm-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes bm-rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 560px) {
  .booking-modal-box { padding: 36px 26px 30px; }
  .booking-modal-box h3 { font-size: 1.35rem; }
}

/* ====================================================================
   Telefonnummer-Formatierung (mit Leerzeichen-Gruppen)
   ==================================================================== */
.phone-fmt { white-space: nowrap; font-variant-numeric: tabular-nums; }

/* ====================================================================
   Responsive Helpers – harte <br> auf Mobile ausblenden
   ==================================================================== */
@media (max-width: 900px) {
  br.hide-mobile, .hide-mobile br { display: none; }
}

/* ====================================================================
   Responsive
   ==================================================================== */
@media (max-width: 1100px) {
  .section { padding: 80px 0; }
  .hero { padding: 50px 0 70px; }
  .hero-grid { gap: 60px; }
  .benefits-grid, .contact-grid, .location-detail-grid { gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .hero-stats { gap: 28px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (max-width: 900px) {
  .section { padding: 60px 0; }
  .container { padding: 0 22px; }
  .hero { padding: 40px 0 60px; }
  .hero-grid, .locations-intro, .benefits-grid, .contact-grid, .location-detail-grid {
    grid-template-columns: 1fr; gap: 48px;
  }
  /* Locations-Cards: auf Mobile volle Breite, damit Telefon/Mail/Öffnungszeiten lesbar bleiben */
  .services-grid, .testimonials-grid, .locations-grid {
    grid-template-columns: 1fr;
  }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { border-bottom: 1px solid var(--line); }
  .process-step:nth-child(odd) { border-right: 1px solid var(--line); }
  .process-step:nth-child(even) { border-right: none; }

  nav.main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--bg-elev); padding: 22px; border-bottom: 1px solid var(--line); }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; gap: 0; align-items: stretch; }
  nav.main-nav ul li { border-bottom: 1px solid var(--line-soft); }
  nav.main-nav ul li:last-child { border-bottom: none; }
  nav.main-nav a { display: block; padding: 16px 0; }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    border: none; padding: 0; margin: 6px 0 12px;
    background: var(--bg-tint);
  }
  .mobile-toggle { display: block; }
  .header-cta > .btn { display: none; }
  .phone-display .phone-text { display: none; }
  .floating-call { display: grid; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .topbar-links { font-size: 0.8rem; gap: 16px; }
  .contact-form { padding: 32px 24px; }
  .info-box { padding: 28px 22px; }

  .gallery-grid, .gallery-grid.cols-3 { grid-template-columns: 1fr 1fr; }

  /* Produktkarten auf Mobile breiter und Text wieder lesbar */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .product-card { padding: 24px 16px 22px; }
  .product-card .product-img { height: 120px; margin-bottom: 16px; }
  .product-card strong { font-size: 1rem; }

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

  .testimonials-grid { gap: 40px; }
}
@media (max-width: 560px) {
  h1 { font-size: 2rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--line); }
  .trust-grid { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-grid.cols-3, .products-grid, .other-locations-grid {
    grid-template-columns: 1fr;
  }
  /* Auf sehr kleinen Screens Produktbilder größer zeigen */
  .product-card .product-img { height: 160px; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .topbar-inner { font-size: 0.78rem; }
  .contact-form { padding: 26px 20px; }
  /* Page-Hero-Meta auf Mobile untereinander */
  .page-hero-meta { gap: 14px; flex-direction: column; align-items: flex-start; }
}
