/* V2 Warm und vertrauensvoll - Treppenliftsysteme Eckner */

/* Fonts (gemergt aus assets/fonts.css fuer 1 Request statt 2) */
@font-face { font-family: "Outfit"; font-weight: 400; font-style: normal; font-display: swap; src: url("/assets/fonts/outfit-400.woff2") format("woff2"); }
@font-face { font-family: "Outfit"; font-weight: 500; font-style: normal; font-display: swap; src: url("/assets/fonts/outfit-600.woff2") format("woff2"); }
@font-face { font-family: "Outfit"; font-weight: 600; font-style: normal; font-display: swap; src: url("/assets/fonts/outfit-600.woff2") format("woff2"); }
@font-face { font-family: "Outfit"; font-weight: 700; font-style: normal; font-display: swap; src: url("/assets/fonts/outfit-700.woff2") format("woff2"); }
@font-face { font-family: "Outfit"; font-weight: 800; font-style: normal; font-display: swap; src: url("/assets/fonts/outfit-800.woff2") format("woff2"); }
@font-face { font-family: "Fraunces"; font-weight: 400; font-style: italic; font-display: swap; src: url("/assets/fonts/fraunces-400.woff2") format("woff2"); }
@font-face { font-family: "Fraunces"; font-weight: 600; font-style: italic; font-display: swap; src: url("/assets/fonts/fraunces-600.woff2") format("woff2"); }
@font-face { font-family: "Fraunces"; font-weight: 700; font-style: italic; font-display: swap; src: url("/assets/fonts/fraunces-700.woff2") format("woff2"); }
@font-face { font-family: "Plus Jakarta Sans"; font-weight: 400; font-style: normal; font-display: swap; src: url("/assets/fonts/jakarta-400.woff2") format("woff2"); }
@font-face { font-family: "Plus Jakarta Sans"; font-weight: 500; font-style: normal; font-display: swap; src: url("/assets/fonts/jakarta-500.woff2") format("woff2"); }
@font-face { font-family: "Plus Jakarta Sans"; font-weight: 600; font-style: normal; font-display: swap; src: url("/assets/fonts/jakarta-600.woff2") format("woff2"); }
@font-face { font-family: "Plus Jakarta Sans"; font-weight: 700; font-style: normal; font-display: swap; src: url("/assets/fonts/jakarta-700.woff2") format("woff2"); }

:root {
  --paper: #f6f5f3;
  --paper-2: #ecebe8;
  --paper-3: #e2e0dd;
  --cream: #ffffff;
  --line: #d8d6d2;
  --ink: #1a1a1a;
  --ink-soft: #3a3a3a;
  --mute: #6e6e6e;
  --accent: #9F2021;
  --accent-deep: #7d1819;
  --accent-soft: #f3e0e0;

  --container: 1240px;

  --f-display: "Outfit", system-ui, sans-serif;
  --f-accent: "Fraunces", Georgia, serif;
  --f-body: "Plus Jakarta Sans", system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 24px 56px -28px rgba(20, 20, 20, 0.22);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }

body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--f-display);
  color: var(--accent-deep);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
h2 { font-size: clamp(30px, 3.8vw, 50px); }
h3 { font-size: 22px; line-height: 1.2; }

.section-label {
  display: inline-block;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

em, .ser-em { font-style: normal; font-family: var(--f-display); font-weight: 500; color: var(--accent); }

/* ---------- TOPBAR ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand img { height: 52px; width: auto; }
.nav {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.nav a {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-soft);
  padding: 8px 0;
  transition: color 0.2s var(--ease);
}
.nav a:hover { color: var(--accent); }
.nav a.active {
  color: var(--accent);
  position: relative;
}
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
}

/* Dropdown */
.nav-item { position: relative; display: inline-block; }
.nav-item > a.has-sub::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
  opacity: 0.55;
  transition: transform 0.2s ease;
}
.nav-item:hover > a.has-sub::after,
.nav-item:focus-within > a.has-sub::after { transform: rotate(180deg); opacity: 1; }
.nav-sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 38px rgba(0,0,0,0.10);
  padding: 10px 6px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  z-index: 50;
}
.nav-item:hover > .nav-sub,
.nav-item:focus-within > .nav-sub {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(2px);
}
.nav-sub li { padding: 0; }
.nav-sub a {
  display: block;
  padding: 10px 18px;
  font-size: 14.5px;
  color: var(--ink-soft);
  border-radius: 6px;
  white-space: nowrap;
}
.nav-sub a:hover { background: var(--cream); color: var(--accent-deep); }
.nav-sub a.sub-soft { color: var(--mute); font-size: 13.5px; font-style: italic; }
.nav-sub a.sub-soft:hover { background: transparent; color: var(--mute); }
.nav-sub li.sub-divider {
  height: 1px;
  background: var(--line);
  margin: 6px 12px;
  padding: 0;
}
.nav-sub li.sub-section-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 6px 18px 4px;
}

.cta-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}
.cta-phone-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mute);
  margin-bottom: 3px;
}
.cta-phone-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
}

/* ---------- BURGER + MOBILE MENU ---------- */
.burger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
}
.burger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] .burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] .burger-bar:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 8px 24px 24px;
}
.mobile-menu[aria-hidden="false"], .mobile-menu.is-open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 14px 4px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a.mobile-sub {
  padding-left: 16px;
  font-weight: 500;
  font-size: 15px;
  color: var(--mute);
}
.mobile-menu a.active { color: var(--accent); }
.mobile-menu a.mobile-call {
  margin-top: 12px;
  background: var(--accent);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  border-bottom: none;
  padding: 14px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 0 0;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/img/hero-eckner.webp");
  background-size: cover;
  background-position: 72% 0%;
  filter: contrast(1.04) saturate(0.95);
  transform-origin: center top;
  animation: warmKenBurns 30s ease-in-out infinite alternate;
}
@keyframes warmKenBurns {
  0%   { transform: scale(1.02); }
  100% { transform: scale(1.1) translate(-1%, 0); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(246,245,243,0.96) 0%, rgba(246,245,243,0.86) 35%, rgba(246,245,243,0.5) 58%, rgba(246,245,243,0.12) 80%, rgba(246,245,243,0.02) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(246,245,243,0) 30%, rgba(246,245,243,0) 60%, rgba(246,245,243,0.5) 100%);
}
.hero-content {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 60px;
  width: 100%;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--cream);
  padding: 8px 16px;
  border: 1px solid var(--accent-soft);
  border-radius: 999px;
  margin-bottom: 28px;
  box-shadow: 0 6px 18px -10px rgba(159, 32, 33, 0.25);
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(44px, 6.6vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--accent-deep);
  max-width: 880px;
  text-wrap: balance;
}
.hero h1 .line {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
}
.hero h1 .ser-em {
  color: var(--accent);
  font-style: normal;
  font-family: var(--f-display);
  font-weight: 500;
}

.hero-sub {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 560px;
  margin-bottom: 36px;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 50%;
}
.hero-cta .btn { flex: 1 1 0; min-width: 0; text-align: center; justify-content: center; }
@media (max-width: 700px) {
  .hero-cta { max-width: 100%; flex-direction: column; }
  .hero-cta .btn { width: 100%; flex: 0 0 auto; }
}

.hero-caption {
  position: absolute;
  right: 32px;
  bottom: 150px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 18px 12px 14px;
  box-shadow: var(--shadow);
}
.hero-caption img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--paper-2);
}
.hero-caption strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.2;
}
.hero-caption span { font-size: 12px; color: var(--mute); }

.hero-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-strip > div {
  padding: 22px 32px;
  border-right: 1px solid var(--line);
}
.hero-strip > div:last-child { border-right: none; }
.hero-strip strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-strip span {
  font-size: 13px;
  color: var(--mute);
  letter-spacing: 0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(159, 32, 33, 0.5);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }

.btn-soft {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--line);
}
.btn-soft:hover { background: #fff; border-color: var(--accent); }

.btn-block { display: flex; width: 100%; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); animation: revealUp 1s var(--ease) forwards; animation-delay: calc(0.15s + var(--d) * 0.14s); }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

/* ---------- TRUST ---------- */
.trust {
  background: var(--ink);
  color: #fff;
  padding: 18px 0;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.trust-row span:nth-child(even) { color: rgba(255, 255, 255, 0.4); opacity: 0.7; }

/* ---------- SECTION HEAD ---------- */
.section-head { margin-bottom: 60px; max-width: 780px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 em { color: var(--accent); }

/* ---------- STORY ---------- */
.story { padding: 120px 0; background: var(--paper); }
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px 32px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.story-card-feature {
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--cream) 100%);
  border-color: var(--accent);
}
.story-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}
.story-card h3 { margin-bottom: 12px; }
.story-card p { color: var(--mute); line-height: 1.65; }

/* ---------- ZIELGRUPPEN ---------- */
.zielgruppen { padding: 120px 0; background: var(--cream); }
.zg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.zg-card {
  padding: 0;
}
.zg-card h3 {
  font-size: 32px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.zg-card p { color: var(--ink-soft); margin-bottom: 16px; }
.link-arrow {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 600;
  font-style: italic;
  color: var(--accent);
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  transition: color 0.2s var(--ease);
}
.link-arrow:hover { color: var(--accent-deep); }

/* ---------- LEISTUNGEN ---------- */
.leistungen { padding: 120px 0; background: var(--paper); }
.leist-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.leist-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 32px 24px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.leist-list li:nth-child(odd) { border-right: 1px solid var(--line); }
.leist-list .step {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--accent);
}
.leist-list h3 { margin-bottom: 6px; }
.leist-list p { color: var(--mute); font-size: 16px; }

/* ---------- PRODUKTE ---------- */
.produkte { padding: 120px 0; background: var(--cream); }
.prod-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.prod-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  grid-column: span 3;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.prod-card.prod-mini { grid-column: span 2; }
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prod-img { width: 100%; aspect-ratio: 16 / 10; overflow: hidden; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; }
.prod-body { padding: 26px 28px; }
.prod-mini .prod-body { padding: 28px; }
.prod-card h3 { margin-bottom: 8px; }
.prod-card p { color: var(--mute); font-size: 15px; line-height: 1.6; }

/* ---------- REGION ---------- */
.region { padding: 120px 0; background: var(--paper); }
.region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.region-map img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.region-text h2 { margin-bottom: 20px; }
.region-text > p { font-size: 18px; color: var(--mute); margin-bottom: 28px; }
.region-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.region-list li {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  padding: 7px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
}

/* ---------- VISION ---------- */
.vision {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.vision blockquote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.vision blockquote p {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 32px;
}
.vision blockquote p em {
  color: var(--accent);
  font-style: normal;
  font-family: var(--f-display);
  font-weight: 500;
}
.vision blockquote footer {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.vision blockquote footer img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cream);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.vision blockquote footer span {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: var(--mute);
}
.vision blockquote footer strong {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}

/* ---------- KONTAKT ---------- */
.kontakt { padding: 120px 0; background: var(--cream); }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.kontakt-text h2 { margin-bottom: 18px; }
.kontakt-text > p { font-size: 18px; color: var(--mute); margin-bottom: 32px; max-width: 460px; }
.kontakt-channels { display: flex; flex-direction: column; gap: 18px; }
.kch {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: block;
}
.kch:last-child { border-bottom: none; }
.kch-label {
  display: block;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mute);
  margin-bottom: 6px;
}
.kch-val {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.3;
}
a.kch:hover .kch-val { color: var(--accent); }

.kontakt-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
}
.kontakt-form h3 { margin-bottom: 24px; font-size: 24px; }
.kontakt-form label {
  display: block;
  margin-bottom: 18px;
}
.kontakt-form label span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.kontakt-form input,
.kontakt-form textarea {
  width: 100%;
  font-family: var(--f-body);
  font-size: 15px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s var(--ease);
}
.kontakt-form input:focus,
.kontakt-form textarea:focus { outline: none; border-color: var(--accent); }
.kontakt-form textarea { resize: vertical; min-height: 100px; }
.form-hint { margin-top: 10px; font-size: 13px; color: var(--mute); text-align: center; }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: #fff; padding: 80px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer img { filter: brightness(0) invert(1); opacity: 0.92; margin-bottom: 20px; }
.footer-small { font-size: 14px; color: rgba(255, 255, 255, 0.82); line-height: 1.7; margin-bottom: 14px; }
.footer strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.footer a {
  display: block;
  padding: 5px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s var(--ease);
}
.footer a:hover { color: rgba(255, 255, 255, 0.95); }
.footer-base {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .nav { display: none; }
  .cta-phone { display: none; }
  .burger { display: inline-flex; }
  .topbar-inner { grid-template-columns: 1fr auto; }
  .hero { min-height: auto; padding-top: 100px; }
  .hero-content { padding-bottom: 56px; }
  .hero-bg { background-position: 75% center; }
  .hero-veil { background:
    linear-gradient(180deg, rgba(250,246,240,0.98) 0%, rgba(250,246,240,0.85) 35%, rgba(250,246,240,0.7) 60%, rgba(250,246,240,0.65) 100%); }
  .hero-caption { display: none; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-strip > div:nth-child(2) { border-right: none; }
  .hero-strip > div:nth-child(1), .hero-strip > div:nth-child(2) { border-bottom: 1px solid var(--line); }
  .story-grid, .zg-grid, .region-grid, .kontakt-grid { grid-template-columns: 1fr; gap: 32px; }
  .leist-list { grid-template-columns: 1fr; }
  .leist-list li:nth-child(odd) { border-right: none; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-card, .prod-card.prod-mini { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container, .topbar-inner, .hero-grid { padding-left: 20px; padding-right: 20px; }
  .topbar-inner { padding-top: 12px; padding-bottom: 12px; gap: 12px; }
  .brand img { height: 40px; }
  .cta-phone-num { font-size: 16px; }
  .hero { padding-top: 80px; }
  .hero-content { padding-bottom: 40px; }
  .hero h1 { font-size: 44px; }
  .hero-strip { grid-template-columns: 1fr; }
  .hero-strip > div { border-right: none; border-bottom: 1px solid var(--line); }
  .hero-strip > div:last-child { border-bottom: none; }
  .hero-caption { margin: 24px 20px 0; }
  .btn { width: 100%; }
  .story, .zielgruppen, .leistungen, .produkte, .region, .vision, .kontakt { padding: 72px 0; }
  .prod-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-base { flex-direction: column; gap: 6px; }
  .trust { padding: 22px 0; }
  .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
    font-size: 13px;
    text-align: left;
  }
  .trust-row span:nth-child(even) { display: none; }
  .trust-row span:nth-child(odd) {
    position: relative;
    padding-left: 22px;
    line-height: 1.3;
  }
  .trust-row span:nth-child(odd)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(-45deg);
  }
  .vision blockquote footer { flex-direction: column; gap: 12px; text-align: center; }
}

/* ---------- SECTION CTA (Home -> Subpages) ---------- */
.section-cta {
  margin-top: 56px;
  text-align: center;
}
.section-cta .link-arrow {
  font-size: 18px;
}

/* ---------- PAGE HERO (Subpages) ---------- */
.page-hero {
  position: relative;
  min-height: 56vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 0;
  isolation: isolate;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 60% 18%;
  filter: contrast(1.04) saturate(0.95);
  transform-origin: center top;
  animation: warmKenBurns 30s ease-in-out infinite alternate;
}
.page-hero .hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(246,245,243,0.96) 0%, rgba(246,245,243,0.84) 38%, rgba(246,245,243,0.55) 62%, rgba(246,245,243,0.2) 85%, rgba(246,245,243,0.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(246,245,243,0) 25%, rgba(246,245,243,0) 65%, rgba(246,245,243,0.6) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 64px;
  width: 100%;
}
.page-hero .breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--mute);
  margin-bottom: 18px;
}
.page-hero .breadcrumb a { color: var(--accent); }
.page-hero .breadcrumb a:hover { color: var(--accent-deep); }
.page-hero .breadcrumb-sep { color: var(--line); }
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--accent-deep);
  margin-bottom: 20px;
  max-width: 880px;
}
.page-hero h1 em {
  color: var(--accent);
  font-style: normal;
  font-family: var(--f-display);
  font-weight: 500;
}
.page-hero .lead {
  font-size: clamp(17px, 1.45vw, 20px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 600px;
  font-weight: 500;
}

/* ---------- CONTENT BLOCKS (Subpages) ---------- */
.content {
  padding: 96px 0;
  background: var(--paper);
}
.content + .content { padding-top: 0; }
.content-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  margin-bottom: 72px;
}
.content-block:last-child { margin-bottom: 0; }
.content-block-aside {
  position: sticky;
  top: 96px;
  align-self: start;
}
.content-block-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.content-block h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 20px;
  max-width: 700px;
}
.content-block p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 640px;
}
.content-block p:last-child { margin-bottom: 0; }
.content-block ul:not(.region-list) {
  list-style: none;
  margin: 24px 0;
  max-width: 640px;
}
.content-block ul:not(.region-list) li {
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 16px;
  color: var(--ink-soft);
}
.content-block ul:not(.region-list) li:last-child { border-bottom: none; }
.content-block ul:not(.region-list) li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 14px;
  height: 2px;
  background: var(--accent);
}

/* ---------- TEAM CARDS ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.team-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card .role {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.team-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.team-card .years {
  display: inline-block;
  font-size: 13px;
  color: var(--mute);
  padding: 4px 10px;
  background: var(--paper);
  border-radius: 999px;
  margin-bottom: 16px;
}
.team-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* ---------- PRODUCT DETAIL ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.product-detail:last-of-type { border-bottom: none; }
.product-detail-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-detail-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.product-detail.reverse .product-detail-img { order: 2; }
.product-detail-text .pd-cat {
  display: inline-block;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.product-detail-text h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  margin-bottom: 18px;
  line-height: 1.05;
}
.product-detail-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 560px;
}
.product-detail-text ul {
  list-style: none;
  margin: 24px 0;
}
.product-detail-text ul li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 16px;
}
.product-detail-text ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 96px 0;
  background: var(--paper-2);
}
.faq-list { max-width: 880px; margin: 0 auto; }
.faq details {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq summary {
  padding: 22px 28px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.01em;
  list-style: none;
  transition: color 0.2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
  font-weight: 400;
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary { color: var(--accent); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body {
  padding: 0 28px 24px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ---------- ANREISE / MAP CARD ---------- */
.anreise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.anreise-text h3 { font-size: 26px; margin-bottom: 14px; }
.anreise-text p { color: var(--ink-soft); margin-bottom: 14px; }
.anreise-text .address-block {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  font-size: 17px;
  line-height: 1.6;
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .content-block { grid-template-columns: 1fr; gap: 24px; }
  .content-block-aside { position: static; }
  .product-detail { grid-template-columns: 1fr; gap: 32px; padding: 64px 0; }
  .product-detail.reverse .product-detail-img { order: 0; }
  .product-detail-img img { height: 360px; }
  .team-grid { grid-template-columns: 1fr; }
  .anreise-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 640px) {
  .page-hero { min-height: auto; padding-top: 100px; }
  .page-hero-content { padding-bottom: 40px; }
  .content { padding: 64px 0; }
  .faq { padding: 64px 0; }
  .faq summary { padding: 18px 22px; font-size: 16px; }
  .faq .faq-body { padding: 0 22px 20px; font-size: 15px; }
}

/* ---------- NOTRUF-BANNER (Kontakt) ---------- */
.notruf-banner {
  display: flex; align-items: center; gap: 18px;
  background: var(--accent); color: #fff;
  padding: 18px 22px; border-radius: 14px;
  margin: 16px 0 28px;
  text-decoration: none;
  box-shadow: 0 12px 30px -12px rgba(159,32,33,0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.notruf-banner:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -14px rgba(159,32,33,0.55); }
.notruf-icon {
  flex: 0 0 44px; width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.18); border-radius: 50%;
  font-family: var(--f-display); font-weight: 800; font-size: 24px;
}
.notruf-body { display: flex; flex-direction: column; gap: 2px; }
.notruf-body strong { font-size: 17px; line-height: 1.3; }
.notruf-sub { font-size: 14px; opacity: 0.92; line-height: 1.5; }
.notruf-tel { margin-top: 6px; font-family: var(--f-display); font-weight: 700; font-size: 19px; letter-spacing: 0.02em; }
@media (max-width: 560px) {
  .notruf-banner { padding: 16px; gap: 14px; }
  .notruf-icon { width: 38px; height: 38px; flex-basis: 38px; font-size: 21px; }
  .notruf-body strong { font-size: 15px; }
  .notruf-tel { font-size: 17px; }
}

/* ---------- VORTEILE (Pflegedienste) ---------- */
.vorteile { padding: 110px 0; background: var(--paper-2); }
.vorteile-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-top: 48px;
}
.vorteile-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px 36px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.vorteile-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.vorteile-tag {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--accent);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.vorteile-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.vorteile-card li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}
.vorteile-card li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 16px; height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
@media (max-width: 800px) {
  .vorteile { padding: 80px 0; }
  .vorteile-grid { grid-template-columns: 1fr; gap: 20px; }
  .vorteile-card { padding: 32px 28px; }
}

/* ---------- LEGAL PAGES (Impressum, Datenschutz) ---------- */
.page-hero-slim {
  min-height: auto;
  padding: 160px 0 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}
.page-hero-slim .hero-veil { display: none; }
.page-hero-slim .page-hero-content { padding-bottom: 56px; }
.page-hero-slim h1 {
  font-size: clamp(36px, 4.4vw, 60px);
}
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}
.content-text h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--accent-deep);
  margin: 48px 0 14px;
}
.content-text h2:first-of-type { margin-top: 0; }
.content-text p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.content-text ul {
  margin: 0 0 18px;
  padding-left: 22px;
}
.content-text ul li {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.content-text strong { color: var(--ink); }
.content-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-text a:hover { color: var(--accent-deep); }
.tldr {
  background: var(--cream);
  border-left: 4px solid var(--accent);
  padding: 24px 28px 20px;
  border-radius: 6px;
  margin: 0 0 48px;
}
.tldr-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 12px;
}
.tldr ul {
  margin: 0;
  padding-left: 20px;
}
.tldr li {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 6px;
}
.tldr li:last-child { margin-bottom: 0; }

/* ---------- TREPPENLIFTE: MODELL-KARTEN ---------- */
.models { padding-top: 80px; }
.model {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.model:last-of-type { border-bottom: none; }
.model.reverse .model-media { order: 2; }
.model-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow);
}
.model-media > img:first-child {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.model-media-side { display: none; }
.model-text { display: flex; flex-direction: column; gap: 12px; }
.model-num {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}
.model-text h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--accent-deep);
  margin: 0;
}
.model-tagline {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.3;
  margin: 0 0 4px;
}
.model-text > p:not(.model-tagline) {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 8px;
}
.model-usps {
  background: var(--cream);
  border-radius: 12px;
  padding: 22px 26px;
  margin: 8px 0 4px;
}
.model-usps h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--accent-deep);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.model-usps ul {
  margin: 0;
  padding-left: 18px;
}
.model-usps ul li {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.model-usps strong { color: var(--ink); font-weight: 600; }
.model-variante {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--cream);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 8px 0 4px;
}
.model-variante img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.model-variante .variante-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.model-variante strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--accent-deep);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.model-variante p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
@media (max-width: 500px) {
  .model-variante { grid-template-columns: 1fr; }
  .model-variante img { height: 220px; }
}

.model-tech {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  margin: 8px 0 4px;
}
.model-tech summary {
  cursor: pointer;
  padding: 16px 22px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--accent-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.model-tech summary::-webkit-details-marker { display: none; }
.model-tech summary::after {
  content: "+";
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
  transition: transform 0.3s ease;
}
.model-tech[open] summary::after { content: "−"; }
.model-tech summary:hover { color: var(--accent); }
.tech-body { padding: 4px 22px 22px; }
.tech-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  margin-bottom: 12px;
}
.tech-body th {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
  padding: 9px 10px 9px 0;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
  vertical-align: top;
  width: 45%;
}
.tech-body td {
  padding: 9px 0;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.tech-body tr:last-child th,
.tech-body tr:last-child td { border-bottom: none; }
.tech-note {
  font-size: 13px;
  color: var(--mute);
  font-style: italic;
  margin-top: 12px;
}
.model-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 0;
  border-radius: 0;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .model { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .model.reverse .model-media { order: 0; }
  .model-media-side { width: 32%; max-width: 140px; bottom: 12px; right: 12px; }
}
@media (max-width: 600px) {
  .tech-body th { width: 50%; font-size: 13.5px; padding-right: 8px; white-space: normal; }
  .tech-body td { font-size: 13.5px; }
  .model-cta { width: 100%; text-align: center; }
}
