/* =========================================================
   VITALOR v2 — Bildgewaltig, modern-vertrauensvoll
   ========================================================= */
:root {
  /* Türkis aus Logo */
  --teal:        #008081;
  --teal-deep:   #005A5B;
  --teal-bright: #1AA3A4;
  --teal-50:     #E6F2F2;
  --teal-100:    #C2E0E0;
  --teal-200:    #8FCDCE;

  /* Neutrals */
  --ink:    #0F1F22;
  --ink-2:  #2C3E42;
  --grey:   #5A6B70;
  --grey-2: #8A9499;
  --line:   #E6EBEC;
  --line-2: #D5DCDE;
  --bg:     #FBFBF9;
  --bg-2:   #F4F6F5;
  --white:  #FFFFFF;

  /* Akzent — warmes Sand für Kontrast */
  --sand:   #F5EFE2;
  --sand-2: #E9DFC8;

  /* Typo */
  --f-display: "Fraunces", "Times New Roman", serif;
  --f-sans:    "Inter", -apple-system, system-ui, sans-serif;

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(0,90,91,0.04), 0 4px 12px rgba(0,90,91,0.05);
  --shadow-md: 0 2px 6px rgba(0,90,91,0.06), 0 18px 40px rgba(0,90,91,0.08);
  --shadow-lg: 0 4px 12px rgba(0,90,91,0.07), 0 30px 80px rgba(0,90,91,0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal); }
button { font-family: inherit; cursor: pointer; }

/* === TYPO === */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; font-weight: 500; }
p  { margin: 0 0 1em; text-wrap: pretty; color: var(--ink-2); }
em.italic-serif { font-family: var(--f-display); font-style: italic; color: var(--teal-deep); font-weight: 400; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--f-sans);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--teal);
}
.eyebrow.center::before { display:none; }

.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 400;
  max-width: 60ch;
}

/* === LAYOUT === */
.wrap { width: min(1280px, 92%); margin: 0 auto; }
.wrap-narrow { width: min(960px, 92%); margin: 0 auto; }
section { padding: clamp(4rem, 8vw, 8rem) 0; position: relative; }
.bg-cream { background: var(--bg); }
.bg-sand { background: var(--sand); }
.bg-teal { background: var(--teal-deep); color: white; }
.bg-teal h1, .bg-teal h2, .bg-teal h3 { color: white; }
.bg-teal p { color: rgba(255,255,255,0.82); }
.bg-teal-soft { background: var(--teal-50); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.005em;
}
.btn .arr { transition: transform 0.25s; display:inline-block; }
.btn:hover .arr { transform: translateX(3px); }
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-deep); color: white; box-shadow: 0 8px 24px rgba(0,128,129,0.32); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: var(--teal-deep); color: white; transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: var(--line-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-deep); }
.btn-light { background: white; color: var(--ink); }
.btn-light:hover { background: var(--teal-50); color: var(--teal-deep); }
.btn-on-dark { background: white; color: var(--teal-deep); }
.btn-on-dark:hover { background: var(--teal-50); }
.btn-sm { padding: 11px 18px; font-size: 0.85rem; }

/* === HEADER === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; gap: 2rem;
  height: 86px; padding: 0 clamp(1rem, 4vw, 2.5rem);
  max-width: 1440px; margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 64px; width: auto; }
.nav-links { display: flex; gap: 1.8rem; margin-left: auto; align-items: center; }
.nav-links > a, .nav-links > .has-menu > a {
  font-size: 0.93rem; font-weight: 500; color: var(--ink-2);
  position: relative; padding: 8px 0;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.nav-links > a::after, .nav-links > .has-menu > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--teal); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links > a:hover, .nav-links > a.active,
.nav-links > .has-menu > a:hover, .nav-links > .has-menu.open > a { color: var(--teal-deep); }
.nav-links > a:hover::after, .nav-links > a.active::after,
.nav-links > .has-menu:hover > a::after, .nav-links > .has-menu.open > a::after { transform: scaleX(1); }

/* Dropdown */
.has-menu { position: relative; }
.has-menu > a .caret {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s;
  display: inline-block;
  margin-left: 0.15rem;
}
.has-menu:hover > a .caret { transform: rotate(-135deg) translateY(0); }
.nav-menu {
  position: absolute; top: 100%; left: -1.4rem;
  min-width: 280px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 0.6rem;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  display: grid; gap: 2px;
  z-index: 100;
}
.has-menu::before {
  /* hover bridge */
  content: ""; position: absolute;
  top: 100%; left: 0; right: 0; height: 14px;
}
.has-menu:hover .nav-menu,
.has-menu:focus-within .nav-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-menu a {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.92rem; font-weight: 500;
  color: var(--ink-2); border-radius: var(--r-sm);
  text-decoration: none;
}
.nav-menu a:hover { background: var(--teal-50); color: var(--teal-deep); }
.nav-menu a::after { display: none; }
.nav-menu .nm-ico {
  width: 28px; height: 28px;
  background: var(--teal-50);
  color: var(--teal-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-style: italic;
  font-size: 0.85rem; flex-shrink: 0;
}
.nav-menu .nm-meta { display: flex; flex-direction: column; line-height: 1.3; }
.nav-menu .nm-meta small {
  font-size: 0.72rem; color: var(--grey);
  letter-spacing: 0.05em; font-weight: 400;
}
.nav-menu hr {
  border: 0; border-top: 1px solid var(--line);
  margin: 0.4rem 0;
}
.nav-konstanz { display: inline-flex; align-items: center; gap: 0.45rem; }
.nav-badge {
  background: var(--sand-2); color: var(--ink); font-size: 0.66rem;
  font-weight: 600; padding: 3px 7px; border-radius: 4px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.nav-cta { margin-left: 0; }
.menu-btn {
  display: none; width: 44px; height: 44px; border: none; background: transparent;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.menu-btn span { width: 22px; height: 2px; background: var(--ink); display:block; transition: transform 0.25s, opacity 0.25s; }
.menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: flex; }
}

/* === MOBILE DRAWER === */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(20, 60, 68, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; }
.mobile-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(420px, 88vw);
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  display: flex; flex-direction: column;
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0,0,0,0.15);
}
.mobile-drawer.open .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-head {
  padding: 1.4rem 1.6rem 1rem;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; background: #fff; z-index: 2;
}
.mobile-drawer-head .brand img { height: 32px; }
.mobile-drawer-close {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--ink); cursor: pointer;
  font-family: var(--f-sans);
}
.mobile-drawer-body { padding: 0.8rem 0 2rem; flex: 1; }
.mobile-drawer-section { padding: 1rem 1.6rem; border-bottom: 1px solid var(--line); }
.mobile-drawer-section:last-child { border-bottom: none; }
.mobile-drawer-section .md-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 0.6rem; font-family: var(--f-sans);
}
.mobile-drawer a {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.7rem 0;
  font-family: var(--f-serif); font-size: 1.1rem;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.mobile-drawer a:last-child { border-bottom: none; }
.mobile-drawer a small { display:block; font-family: var(--f-sans); font-size: 0.78rem; color: var(--grey); font-weight: 400; margin-top: 0.15em; }
.mobile-drawer .md-ico {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream); color: var(--petrol);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--f-serif); font-size: 0.85rem; font-weight: 600;
  flex-shrink: 0;
}
.mobile-drawer-cta {
  padding: 1.4rem 1.6rem 2rem;
  position: sticky; bottom: 0; background: #fff;
  border-top: 1px solid var(--line);
}
.mobile-drawer-cta .btn { width: 100%; justify-content: center; }
body.drawer-open { overflow: hidden; }

/* === HERO — FULL BLEED === */
.hero-full {
  position: relative;
  min-height: clamp(480px, 68vh, 680px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: white;
}
.hero-full .hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  z-index: -2;
}
.hero-full .hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(0,72,73,0.78) 0%, rgba(0,72,73,0.55) 40%, rgba(0,72,73,0.15) 75%, rgba(0,72,73,0.05) 100%),
    linear-gradient(180deg, rgba(0,40,40,0.20) 0%, rgba(0,40,40,0.05) 40%, rgba(0,40,40,0.45) 100%);
  z-index: -1;
}
.hero-full .hero-content {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
}
.hero-full .hero-content > .reveal { max-width: 760px; }
.hero-full .eyebrow { color: rgba(255,255,255,0.85); }
.hero-full .eyebrow::before { background: rgba(255,255,255,0.7); }
.hero-full h1 {
  color: white;
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  letter-spacing: -0.025em;
  text-shadow: 0 2px 30px rgba(0,40,40,0.3);
}
.hero-full h1 .accent {
  font-style: italic; color: var(--teal-200, #B8E5E5); font-weight: 400;
}
.hero-full .lead {
  color: rgba(255,255,255,0.92);
  max-width: 580px;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  text-shadow: 0 1px 12px rgba(0,40,40,0.25);
}
.hero-full .hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero-full .hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.4rem; margin-top: 2.8rem;
  padding-top: 2.4rem; border-top: 1px solid rgba(255,255,255,0.25);
  font-size: 0.85rem; color: rgba(255,255,255,0.78);
}
.hero-full .hero-meta strong {
  color: white; font-weight: 600; display: block; font-size: 1.1rem;
  font-family: var(--font-serif); letter-spacing: 0;
  margin-bottom: 0.15rem;
}
.hero-badge-top {
  position: absolute; top: 1.6rem; right: 1.6rem;
  z-index: 2;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,40,40,0.2);
  backdrop-filter: blur(8px);
}
.hero-badge-top .pulse {
  width: 8px; height: 8px; background: var(--teal); border-radius: 50%;
  animation: pulse 2s infinite;
}
.btn-ghost-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  color: white;
}

/* === LEGACY HERO === */
.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(4rem, 7vw, 7rem);
  background: linear-gradient(180deg, var(--bg) 0%, white 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 5rem);
  letter-spacing: -0.025em;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--teal);
  font-weight: 400;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; margin-top: 2.4rem;
  padding-top: 2.4rem; border-top: 1px solid var(--line);
  font-size: 0.84rem; color: var(--grey);
}
.hero-meta strong { color: var(--ink); font-weight: 600; display: block; font-size: 1.05rem; margin-bottom: 0.1rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,90,91,0.12) 100%);
}
.hero-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 10px 16px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 600; color: var(--teal-deep);
  display: inline-flex; align-items: center; gap: 0.5rem;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.hero-badge .pulse {
  width: 8px; height: 8px; background: var(--teal); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* === TRUST BAR === */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-item {
  padding: 1.8rem 1.5rem;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.3rem;
}
.trust-item:last-child { border-right: none; }
.trust-item .num {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--teal-deep);
  line-height: 1;
}
.trust-item .label { font-size: 0.82rem; color: var(--grey); letter-spacing: 0.04em; }
@media (max-width: 700px) {
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* === SECTION HEADERS === */
.sec-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem); align-items: end;
}
.sec-head.center { grid-template-columns: 1fr; text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.sec-head.center .eyebrow { justify-content: center; }
@media (max-width: 800px) { .sec-head { grid-template-columns: 1fr; } }
.sec-head .right { font-size: 1.05rem; color: var(--ink-2); line-height: 1.6; max-width: 50ch; }

/* === SYMPTOM TILES === */
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1100px) { .symptom-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .symptom-grid { grid-template-columns: repeat(2, 1fr); } }
.symptom-card {
  position: relative; aspect-ratio: 1/1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--teal-50);
  border: 1px solid var(--line);
  cursor: pointer; display: block; color: inherit; text-decoration: none;
  transition: all 0.3s;
  isolation: isolate;
}
.symptom-card .bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}
.symptom-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,90,91,0.05) 0%,
    rgba(0,90,91,0.25) 45%,
    rgba(0,90,91,0.85) 100%);
  z-index: 1;
  transition: opacity 0.3s;
}
.symptom-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-200);
}
.symptom-card:hover .bg { transform: scale(1.05); }
.symptom-card .ico {
  position: relative; z-index: 2;
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.92); color: var(--teal-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 1.4rem 0 0 1.4rem;
  font-family: var(--f-display);
  font-size: 1.4rem; font-style: italic;
  backdrop-filter: blur(6px);
}
.symptom-card .lbl {
  position: absolute; left: 1.4rem; right: 1.4rem; bottom: 1.4rem;
  z-index: 2;
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  color: white; font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.symptom-card .arr {
  position: absolute; right: 1.2rem; top: 1.2rem;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%; background: white;
  color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s, transform 0.25s;
  transform: translate(-4px, 4px);
}
.symptom-card:hover .arr { opacity: 1; transform: translate(0,0); }

/* === BENTO === */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.bento-tile {
  border-radius: var(--r-lg);
  overflow: hidden; position: relative;
  background: var(--bg-2);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem; color: white;
  text-decoration: none;
  transition: all 0.4s;
}
.bento-tile img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transition: transform 0.6s ease;
}
.bento-tile::after {
  content:""; position: absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(0,40,42,0) 0%, rgba(0,40,42,0.65) 100%);
}
.bento-tile:hover img.bg { transform: scale(1.05); }
.bento-tile .label, .bento-tile h3, .bento-tile p { position: relative; z-index: 2; }
.bento-tile .tag {
  position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2;
  background: rgba(255,255,255,0.95); color: var(--teal-deep);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  padding: 6px 11px; border-radius: 999px;
}
.bento-tile h3 { color: white; margin: 0 0 0.3em; }
.bento-tile p { color: rgba(255,255,255,0.85); font-size: 0.92rem; margin: 0; max-width: 36ch; }
.bento-tile.light { background: var(--teal-50); color: var(--ink); padding: 2.2rem; }
.bento-tile.light::after { display: none; }
.bento-tile.light h3 { color: var(--ink); }
.bento-tile.light p { color: var(--ink-2); }

.bento-a { grid-column: span 4; grid-row: span 2; }
.bento-b { grid-column: span 2; grid-row: span 1; }
.bento-c { grid-column: span 2; grid-row: span 1; }
.bento-d { grid-column: span 3; grid-row: span 2; }
.bento-e { grid-column: span 3; grid-row: span 2; }
.bento-f { grid-column: span 6; grid-row: span 1; }

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .bento-a, .bento-b, .bento-c, .bento-d, .bento-e, .bento-f { grid-column: span 1; grid-row: span 1; }
  .bento-a { grid-row: span 2; }
}

/* === PILLARS (3 Säulen mit großen Bildern) === */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 950px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: all 0.3s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-100); }
.pillar-img {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
}
.pillar-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.pillar:hover .pillar-img img { transform: scale(1.04); }
.pillar-num {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.95); color: var(--teal-deep);
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-style: italic; font-size: 1.1rem; font-weight: 500;
}
.pillar-body { padding: 1.8rem 1.8rem 2rem; flex: 1; display: flex; flex-direction: column; }
.pillar-body h3 { margin-bottom: 0.5rem; color: var(--ink); }
.pillar-body p { color: var(--ink-2); flex: 1; font-size: 0.96rem; }
.pillar-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--teal-deep); font-weight: 500; font-size: 0.92rem;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}
.pillar-link .arr { transition: transform 0.25s; }
.pillar:hover .pillar-link .arr { transform: translateX(4px); }

/* === STANDORTE GALLERY === */
.standorte-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
@media (max-width: 760px) { .standorte-grid { grid-template-columns: 1fr; } }
.standort-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3;
  text-decoration: none; color: inherit;
  cursor: pointer;
}
.standort-card img {
  position: absolute; inset:0; width:100%; height:100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.standort-card:hover img { transform: scale(1.04); }
.standort-card::after {
  content:""; position: absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,40,42,0.78) 100%);
}
.standort-meta {
  position: absolute; left: 1.5rem; right: 1.5rem; bottom: 1.5rem; z-index: 2;
  color: white;
}
.standort-meta .name {
  font-family: var(--f-display); font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 0.3rem;
}
.standort-meta .addr { font-size: 0.92rem; color: rgba(255,255,255,0.88); }
.standort-meta .tel { font-size: 0.88rem; color: rgba(255,255,255,0.78); margin-top: 0.3rem; display:block; }
.standort-tag {
  position: absolute; top: 1.2rem; right: 1.2rem; z-index: 2;
  background: rgba(255,255,255,0.95);
  color: var(--teal-deep); font-size: 0.74rem; font-weight: 600;
  padding: 7px 12px; border-radius: 999px;
  letter-spacing: 0.04em;
}
.standort-tag.coming { background: var(--sand-2); color: var(--ink); }

/* === TEAM CARDS === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
@media (max-width: 1000px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 3/4;
  text-decoration: none; color: inherit;
}
.team-card .photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  transition: transform 0.5s;
}
.team-card:hover .photo { transform: scale(1.03); }
.team-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,40,42,0.85) 100%);
}
.team-card .meta {
  position: absolute; left: 1.3rem; right: 1.3rem; bottom: 1.3rem; z-index: 2; color: white;
}
.team-card .meta .role {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-200); font-weight: 600; margin-bottom: 0.3rem;
}
.team-card .meta .nm {
  font-family: var(--f-display); font-size: 1.25rem; line-height: 1.15;
  letter-spacing: -0.01em;
}

/* === TESTIMONIALS === */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex; flex-direction: column;
}
.testi .stars { color: var(--teal); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testi blockquote {
  margin: 0 0 1.4rem;
  font-family: var(--f-display);
  font-size: 1.15rem; line-height: 1.45;
  color: var(--ink); flex: 1;
  letter-spacing: -0.005em;
}
.testi .who {
  font-size: 0.85rem; color: var(--grey);
  border-top: 1px solid var(--line); padding-top: 1rem;
}
.testi .who strong { color: var(--ink); display: block; font-size: 0.95rem; font-weight: 600; }

/* === EMERGENCY BANNER === */
.emergency {
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: grid; grid-template-columns: auto 1fr auto; gap: 2rem;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) {
  .emergency { grid-template-columns: 1fr; text-align: center; }
}
.emergency .icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--teal); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 1.6rem;
  font-style: italic;
}
.emergency h3 { color: white; margin: 0 0 0.4rem; font-size: clamp(1.4rem, 2.5vw, 2rem); }
.emergency p { margin: 0; color: rgba(255,255,255,0.78); }

/* === FAQ === */
.faq-list { display: grid; gap: 0.5rem; }
details.faq {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: white;
  padding: 0;
  transition: all 0.2s;
}
details.faq[open] { background: var(--teal-50); border-color: var(--teal-100); }
details.faq summary {
  cursor: pointer; padding: 1.4rem 1.8rem;
  font-family: var(--f-display); font-size: 1.15rem; color: var(--ink);
  list-style: none; position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  letter-spacing: -0.01em;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+"; font-size: 1.4rem; color: var(--teal); font-weight: 300;
  transition: transform 0.2s; flex-shrink: 0;
}
details.faq[open] summary::after { content: "−"; }
details.faq .faq-body { padding: 0 1.8rem 1.6rem; color: var(--ink-2); font-size: 0.97rem; }

/* === KONSTANZ TEASER === */
.konstanz-teaser {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 5rem);
  color: white;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: center;
  position: relative; overflow: hidden;
}
@media (max-width: 900px) { .konstanz-teaser { grid-template-columns: 1fr; } }
.konstanz-teaser h2 { color: white; }
.konstanz-teaser p { color: rgba(255,255,255,0.85); }
.konstanz-teaser::before {
  content: ""; position: absolute; right: -10%; top: -30%;
  width: 60%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
}
.save-the-date {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
}
.save-the-date .month {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(2.4rem, 5vw, 4rem); color: white;
  line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.02em;
}
.save-the-date .yr {
  font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--teal-200);
}
.save-the-date .nm {
  font-size: 1.05rem; color: white; font-weight: 500;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem; margin-top: 1.4rem;
}

/* === TOPIC DETAIL PAGES === */
.topic-hero {
  position: relative;
  min-height: clamp(420px, 60vh, 640px);
  overflow: hidden;
  isolation: isolate;
  display: flex; align-items: flex-end;
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(2.4rem, 4vw, 4rem);
}
.topic-hero .bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}
/* Per-topic crops so anatomically relevant areas stay visible */
.topic-hero .bg.crop-top      { object-position: center 18%; }
.topic-hero .bg.crop-top-soft { object-position: center 25%; }
.topic-hero .bg.crop-mid      { object-position: center 40%; }
.topic-hero .bg.crop-low      { object-position: center 60%; }
.topic-hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,40,42,0.55) 0%,
      rgba(0,40,42,0.35) 25%,
      rgba(0,40,42,0.55) 60%,
      rgba(0,40,42,0.92) 100%),
    linear-gradient(90deg,
      rgba(0,40,42,0.55) 0%,
      rgba(0,40,42,0.20) 55%,
      rgba(0,40,42,0) 100%);
  z-index: 1;
}
.topic-hero .wrap { position: relative; z-index: 2; color: white; }
.topic-hero .eyebrow { color: var(--teal-200); }
.topic-hero .eyebrow::before { background: var(--teal-200); }
.topic-hero h1 {
  color: white; max-width: 18ch;
  text-shadow: 0 2px 24px rgba(0,30,32,0.45), 0 1px 2px rgba(0,30,32,0.35);
}
.topic-hero h1 em { color: var(--teal-200); }
.topic-hero .lead {
  color: white; max-width: 56ch;
  text-shadow: 0 1px 16px rgba(0,30,32,0.55), 0 1px 2px rgba(0,30,32,0.4);
}
.topic-crumb {
  font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0,30,32,0.55);
}
.topic-crumb a { color: rgba(255,255,255,0.92); }
.topic-crumb a:hover { color: white; }
.topic-crumb span { margin: 0 0.6rem; opacity: 0.6; }

.topic-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .topic-grid { grid-template-columns: 1fr; } }
.topic-body h2 { margin-top: 2.4rem; font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.topic-body h2:first-child { margin-top: 0; }
.topic-body p { font-size: 1.05rem; line-height: 1.7; }
.topic-body ul {
  list-style: none; padding: 0; margin: 1.2rem 0 1.6rem;
}
.topic-body ul li {
  position: relative; padding: 0.55rem 0 0.55rem 1.6rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.topic-body ul li::before {
  content: ""; position: absolute; left: 0; top: 1.05rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
}
.topic-aside {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.8rem;
  position: sticky; top: 1.4rem;
}
.topic-aside h4 {
  font-family: var(--f-sans);
  font-size: 0.74rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal);
  font-weight: 600; margin: 0 0 0.8rem;
}
.topic-aside h4:not(:first-child) { margin-top: 1.6rem; }
.topic-aside p { font-size: 0.96rem; margin: 0; }
.topic-aside .btn { width: 100%; justify-content: center; margin-top: 0.6rem; }
.topic-aside hr {
  border: 0; border-top: 1px solid var(--line);
  margin: 1.6rem 0 0;
}

.topic-other {
  background: var(--bg);
}

/* === HORIZONTAL RAIL (themes / standorte switcher) === */
.topic-rail-wrap {
  position: relative;
  margin-top: 2.4rem;
}
.topic-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: clamp(1.2rem, 4vw, 2.5rem);
  -webkit-overflow-scrolling: touch;
  padding: 0.4rem 0 1.4rem;
  /* hide scrollbar visually but keep scroll */
  scrollbar-width: thin;
  scrollbar-color: var(--teal-200, #c8d8d8) transparent;
}
.topic-rail::-webkit-scrollbar { height: 6px; }
.topic-rail::-webkit-scrollbar-track { background: transparent; }
.topic-rail::-webkit-scrollbar-thumb {
  background: var(--teal-200, #c8d8d8);
  border-radius: 999px;
}
.topic-rail > .symptom-card {
  flex: 0 0 calc((100% - 3rem) / 4);
  scroll-snap-align: start;
  aspect-ratio: 1/1;
  min-width: 0;
}
@media (max-width: 1100px) {
  .topic-rail > .symptom-card { flex-basis: calc((100% - 2rem) / 3); }
}
@media (max-width: 800px) {
  .topic-rail > .symptom-card { flex-basis: calc((100% - 1rem) / 2); }
}
@media (max-width: 540px) {
  .topic-rail > .symptom-card { flex-basis: 78%; }
}

/* Arrow buttons (desktop only) */
.rail-btn {
  position: absolute;
  top: calc(50% - 0.5rem);
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--v-line, #e5e0d3);
  box-shadow: 0 6px 18px rgba(20,60,68,0.12);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif, "Fraunces", serif);
  font-size: 1.2rem;
  color: var(--teal-deep, #143C44);
  z-index: 5;
  transition: transform 0.2s, opacity 0.2s, background 0.2s;
}
.rail-btn:hover { background: var(--teal-deep, #143C44); color: #fff; transform: translateY(-50%) scale(1.05); }
.rail-btn[disabled] { opacity: 0.3; cursor: default; pointer-events: none; }
.rail-btn.prev { left: -22px; }
.rail-btn.next { right: -22px; }
@media (max-width: 800px) { .rail-btn { display: none; } }
.rail-hint {
  display: none;
  font-size: 0.78rem; color: var(--v-grey, #7a8488);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-top: 0.4rem;
}
@media (max-width: 800px) { .rail-hint { display: block; } }
.topic-other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  gap: 1rem;
  margin-top: 2.4rem;
}
@media (max-width: 1000px) { .topic-other-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .topic-other-grid { grid-template-columns: 1fr; } }

/* === FOOTER === */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 5rem 0 2rem; }
.site-footer .brand img { height: 72px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-grid h4 {
  color: white; font-family: var(--f-sans); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-grid a { color: rgba(255,255,255,0.7); }
.footer-grid a:hover { color: var(--teal-200); }
.footer-grid p { color: rgba(255,255,255,0.7); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem;
}

/* === REVEAL === */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* === BREADCRUMB === */
.breadcrumb {
  font-size: 0.82rem; color: var(--grey); margin-bottom: 1.4rem;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--teal-deep); }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }

/* === FOCUS === */
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 3px; }

/* === SKIP === */
.skip {
  position: absolute; left: -9999px;
  background: var(--teal); color: white; padding: 10px 16px; z-index: 200;
}
.skip:focus { left: 1rem; top: 1rem; }


/* === MEGA MENU (3-column dropdown for Leistungen) === */
.nav-menu.nav-mega {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 0.6rem;
  min-width: 820px;
  padding: 1rem;
  left: -1.4rem;
}
.nav-menu.nav-mega .mega-col { display: flex; flex-direction: column; gap: 2px; }
.nav-menu.nav-mega .mega-head {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 0.9rem 0.6rem;
  border-bottom: 1px solid var(--v-line, #e5e0d3);
  margin-bottom: 0.3rem;
}
.nav-menu.nav-mega .mega-head a {
  padding: 0; background: none;
  font-family: var(--font-serif, "Fraunces", serif);
  font-size: 1rem;
  color: var(--teal-deep, #143C44);
}
.nav-menu.nav-mega .mega-head a:hover { background: none; color: var(--v-petrol, #1F5862); }
.nav-menu.nav-mega .mega-num {
  font-family: var(--font-serif, "Fraunces", serif);
  font-style: italic;
  color: var(--v-gold, #B79064);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
@media (max-width: 1100px) {
  .nav-menu.nav-mega { min-width: 0; grid-template-columns: 1fr; max-height: 70vh; overflow-y: auto; }
}

/* === MOBILE TIGHTENING === */
@media (max-width: 600px) {
  .wrap { width: 92%; }
  section { padding: clamp(3rem, 12vw, 5rem) 0; }
  .hero-full { min-height: clamp(420px, 80vh, 600px); }
  .hero-full .hero-content { padding: clamp(4rem, 14vw, 6rem) 0 clamp(2.5rem, 8vw, 4rem); }
  .hero-full h1 { font-size: clamp(2rem, 9vw, 3.2rem); line-height: 1.05; }
  .hero-full .lead { font-size: 1.02rem; line-height: 1.55; }
  .hero-full .hero-meta { gap: 1rem 1.6rem; padding-top: 1.6rem; margin-top: 2rem; }
  .hero-full .btn { width: 100%; }
  .hero-full .hero-cta { flex-direction: column; align-items: stretch; }
  .topic-hero { min-height: clamp(360px, 70vh, 480px); }
  .topic-hero h1 { font-size: clamp(2rem, 8.5vw, 3rem); }
  .topic-hero .lead { font-size: 1rem; }
  .symptom-card { aspect-ratio: 4/3; }
  .topic-rail > .symptom-card { flex-basis: 82%; aspect-ratio: 4/3; }
  .pillar { padding: 1.6rem; }
  .bento { grid-auto-rows: 200px; gap: 0.8rem; }
  .emergency { padding: 1.6rem 1.4rem; }
  .emergency h3 { font-size: 1.2rem; }
  .footer-grid { gap: 2rem; }
  .nav .brand img { height: 30px; }
}
