/* ============================================================
   DIE PFLEGENDEN ENGEL — Main Stylesheet
   ============================================================ */

/* 1. VARIABLES
   ============================================================ */
:root {
  --nav-h: 75px;
  --cream: #FAF6F1;
  --cream-deep: #F0E7D8;
  --champagne: #E6D5BC;
  --taupe: #8B7466;
  --taupe-deep: #6B574B;
  --taupe-soft: #A89384;
  --gold: #B8965A;
  --gold-soft: #D4B98A;
  --ink: #3D2F26;
  --line: rgba(61,47,38,0.14);
}

/* 2. RESET + BASE
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
address { font-style: normal; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: clip;
}

/* 3. ACCESSIBILITY
   ============================================================ */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; }
.skip-link:focus { left: 16px; top: 16px; padding: 12px 20px; background: var(--taupe-deep); color: var(--cream); border-radius: 8px; font-weight: 600; text-decoration: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* 4. TEXTURE + LAYOUT
   ============================================================ */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1; opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.24 0 0 0 0 0.18 0 0 0 0 0.15 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }

/* 5. UTILITY CLASSES
   ============================================================ */
.serif { font-family: 'Cormorant Garamond', serif; font-weight: 400; letter-spacing: -0.005em; }
.script { font-family: 'Dancing Script', cursive; font-weight: 600; }
.italic { font-style: italic; }

/* 6. NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(250,246,241,0.88);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 6px 32px; max-width: 1240px; margin: 0 auto; overflow: visible; }
.logo { display: flex; align-items: center; }
.logo-img { height: 100px; width: auto; margin-bottom: -20px; }
.logo-img--footer { height: 100px; }
.nav-links { display: flex; gap: 36px; font-size: 14px; font-weight: 500; }
.nav-links a { color: var(--ink); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--taupe); }
.nav-cta { background: var(--taupe-deep); color: var(--cream); padding: 13px 24px; border-radius: 999px; font-size: 13px; font-weight: 600; text-decoration: none; transition: all .3s; letter-spacing: 0.02em; }
.nav-cta:hover { background: var(--gold); transform: translateY(-1px); }

/* Burger button */
.nav-burger {
  display: none;
  background: transparent; border: none; cursor: pointer;
  width: 48px; height: 48px; padding: 0; margin-left: 12px;
  align-items: center; justify-content: center;
  position: relative; z-index: 110;
}
.nav-burger span {
  display: block; width: 26px; height: 2px;
  background: var(--taupe-deep); position: absolute; left: 11px;
  transition: transform .3s, opacity .2s, top .3s;
}
.nav-burger span:nth-child(1) { top: 16px; }
.nav-burger span:nth-child(2) { top: 23px; }
.nav-burger span:nth-child(3) { top: 30px; }
body.nav-open .nav-burger span:nth-child(1) { top: 23px; transform: rotate(45deg); }
body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
body.nav-open .nav-burger span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 105;
  background: var(--cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px; padding: 80px 32px 48px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .35s ease, transform .35s ease, visibility 0s linear .35s;
}
body.nav-open .mobile-menu {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .35s ease, transform .35s ease, visibility 0s linear 0s;
}
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 400; color: var(--taupe-deep); text-decoration: none; letter-spacing: -0.005em; padding: 10px 16px; }
.mobile-menu a.mobile-cta { margin-top: 16px; background: var(--taupe-deep); color: var(--cream); padding: 16px 32px; border-radius: 999px; font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.02em; }
body.nav-open { overflow: hidden; }
body.nav-open nav { z-index: 110; background: var(--cream); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
}
@media (min-width: 881px) { :root { --nav-h: 92px; } .mobile-menu { display: none; } }

/* 7. HERO
   ============================================================ */
.hero {
  padding: calc(80px + var(--nav-h)) 0 130px;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(250,246,241,0.78) 0%, rgba(250,246,241,0.84) 55%, rgba(240,231,216,0.92) 100%),
    url('img/BG02.webp');
  background-position: 0 0, center center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(184,150,90,0.10), transparent 60%); z-index: 1; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--taupe); margin-bottom: 32px; }
.eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
h1.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(46px, 6.5vw, 88px); line-height: 1.0; font-weight: 400; letter-spacing: -0.015em; margin-bottom: 36px; color: var(--taupe-deep); }
h1 .accent { color: var(--gold); font-style: italic; font-weight: 300; }
h1 .script-accent { font-family: 'Dancing Script', cursive; color: var(--gold); font-weight: 600; font-size: 0.85em; display: inline-block; transform: rotate(-2deg); }
.hero-lead { font-size: 18px; line-height: 1.7; max-width: 520px; color: rgba(61,47,38,0.78); margin-bottom: 44px; }
.hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.btn-primary { background: var(--taupe-deep); color: var(--cream); padding: 18px 34px; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 12px; transition: all .3s; letter-spacing: 0.02em; }
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(184,150,90,0.35); }
.btn-primary svg { transition: transform .3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-secondary { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 14px; border-bottom: 1px solid var(--taupe); padding-bottom: 3px; }

/* Hero Badges */
.hero-visual { display: flex; flex-direction: column; justify-content: center; gap: 20px; padding-left: 20px; }
.hero-badge { display: flex; align-items: center; gap: 18px; background: rgba(250,246,241,0.85); backdrop-filter: blur(10px); border: 1px solid var(--line); border-radius: 20px; padding: 20px 24px; box-shadow: 0 8px 30px -10px rgba(107,87,75,0.15); }
.hero-badge-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--champagne); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); border: 1px solid var(--line); }
.hero-badge-text { display: flex; flex-direction: column; gap: 3px; }
.hero-badge-text strong { font-size: 15px; color: var(--taupe-deep); font-weight: 600; }
.hero-badge-text span { font-size: 13px; color: var(--taupe); line-height: 1.4; }

/* Contact Buttons */
.hero-contact-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.contact-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 13px; letter-spacing: 0.02em; transition: all .3s; border: 1.5px solid var(--line); background: var(--cream); color: var(--taupe-deep); }
.contact-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(61,47,38,0.15); border-color: var(--taupe-soft); }
.contact-btn svg { flex-shrink: 0; }
.contact-btn.whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.contact-btn.whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; box-shadow: 0 10px 28px rgba(37,211,102,0.3); }
.contact-btn.mail { background: var(--taupe-deep); color: var(--cream); border-color: var(--taupe-deep); }
.contact-btn.mail:hover { background: var(--gold); border-color: var(--gold); box-shadow: 0 10px 28px rgba(184,150,90,0.35); }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 80px; }
  .hero-visual { max-width: 480px; margin: 0 auto; padding-left: 0; }
  .floating-badge { right: 0; }
  .info-badge { left: 0; }
  /* Auf Mobil etwas stärkeres Overlay damit Text auf BG02 lesbar bleibt */
  .hero {
    background-image:
      linear-gradient(180deg, rgba(250,246,241,0.88) 0%, rgba(250,246,241,0.92) 100%),
      url('img/BG02.webp');
  }
}

/* 8. TRUST BAR
   ============================================================ */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0; background: var(--cream-deep); }
.trust-inner { display: flex; justify-content: space-around; align-items: center; gap: 40px; flex-wrap: wrap; font-size: 13px; font-weight: 500; color: var(--taupe-deep); letter-spacing: 0.04em; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* 9. SECTIONS (shared)
   ============================================================ */
section { padding: 130px 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 80px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px, 5.2vw, 68px); line-height: 1.05; font-weight: 400; letter-spacing: -0.012em; margin-bottom: 28px; color: var(--taupe-deep); }
h2 .italic { color: var(--gold); font-weight: 300; font-style: italic; }
.section-lead { font-size: 17px; line-height: 1.7; color: rgba(61,47,38,0.72); }

/* 10. SERVICES
   ============================================================ */
.services { background: var(--cream-deep); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service { background: var(--cream); padding: 42px 38px 46px; position: relative; transition: all .4s; border: 1px solid transparent; }
.service:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 30px 60px -30px rgba(61,47,38,0.22); }
.service-num { font-family: 'Cormorant Garamond', serif; font-size: 14px; color: var(--gold); letter-spacing: 0.1em; font-weight: 500; font-style: italic; }
.service-icon { width: 58px; height: 58px; border-radius: 50%; background: var(--cream-deep); display: flex; align-items: center; justify-content: center; margin: 18px 0 26px; color: var(--taupe-deep); border: 1px solid var(--line); }
.service h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.005em; color: var(--taupe-deep); }
.service p { font-size: 15px; color: rgba(61,47,38,0.72); line-height: 1.65; }
@media (max-width: 880px) { .service-grid { grid-template-columns: 1fr; } }

/* 11. PROCESS
   ============================================================ */
.process { background: var(--taupe-deep); color: var(--cream); border-radius: 56px 56px 0 0; margin-top: -56px; padding: 170px 0 130px; position: relative; z-index: 3; }
.process h2 { color: var(--cream); }
.process h2 .italic { color: var(--gold-soft); }
.process .section-lead { color: rgba(250,246,241,0.75); }
.process .eyebrow { color: var(--gold-soft); }
.process .eyebrow::before { background: var(--gold-soft); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 1px; background: repeating-linear-gradient(90deg, rgba(250,246,241,0.3) 0, rgba(250,246,241,0.3) 4px, transparent 4px, transparent 11px); }
.step { text-align: left; position: relative; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: var(--cream); color: var(--taupe-deep); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; font-style: italic; margin-bottom: 26px; position: relative; z-index: 2; border: 4px solid var(--taupe-deep); box-shadow: 0 0 0 1px var(--gold-soft); }
.step h4 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; margin-bottom: 10px; }
.step p { font-size: 14px; color: rgba(250,246,241,0.72); line-height: 1.6; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; } .steps::before { display: none; } }

/* 12. FACTS
   ============================================================ */
.facts { background: var(--cream); padding: 140px 0; position: relative; overflow: hidden; }
.facts::before { content: ''; position: absolute; top: -100px; left: -150px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, var(--champagne), transparent 60%); opacity: 0.5; }
.fact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; position: relative; }
.fact { background: var(--cream-deep); border-radius: 28px; padding: 44px 42px; position: relative; border: 1px solid var(--line); transition: all .4s; overflow: hidden; }
.fact:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(61,47,38,0.2); }
.fact-mark { position: absolute; top: 32px; right: 36px; font-family: 'Cormorant Garamond', serif; font-size: 80px; line-height: 1; color: var(--gold); opacity: 0.18; font-style: italic; font-weight: 400; }
.fact-label { display: inline-block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 18px; padding: 6px 14px; background: rgba(184,150,90,0.12); border-radius: 999px; }
.fact h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; line-height: 1.2; font-weight: 500; margin-bottom: 14px; color: var(--taupe-deep); max-width: 90%; }
.fact p { font-size: 15px; line-height: 1.65; color: rgba(61,47,38,0.75); max-width: 95%; }
.fact .source { display: block; margin-top: 14px; font-size: 12px; color: var(--taupe); font-style: italic; }
@media (max-width: 880px) { .fact-grid { grid-template-columns: 1fr; } }

/* 13. ABOUT
   ============================================================ */
.about { background: var(--cream-deep); padding: 140px 0; }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: center; }
.about-portrait { aspect-ratio: 4/5; background: linear-gradient(160deg, var(--champagne) 0%, var(--taupe) 100%); border-radius: 240px 240px 24px 24px; position: relative; overflow: hidden; box-shadow: 0 30px 70px -20px rgba(107,87,75,0.4); }
.about-portrait::after { content: ''; position: absolute; inset: 18px; border: 1px solid rgba(250,246,241,0.25); border-radius: 230px 230px 14px 14px; }
.about-portrait .frame-text { position: absolute; bottom: 40px; left: 0; right: 0; text-align: center; color: var(--cream); }
.about-portrait .frame-text .script { font-size: 38px; line-height: 1; }
.about-portrait .frame-text .name { font-family: 'Cormorant Garamond', serif; font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 8px; opacity: 0.85; }
.about-content .greeting { font-family: 'Dancing Script', cursive; font-size: 32px; color: var(--gold); margin-bottom: 16px; }
.about-content h2 { margin-bottom: 30px; }
.about-content p { font-size: 17px; line-height: 1.75; color: rgba(61,47,38,0.78); margin-bottom: 22px; }
.about-content p.lead { font-size: 19px; font-style: italic; color: var(--taupe-deep); font-family: 'Cormorant Garamond', serif; line-height: 1.45; }
.signature { margin-top: 32px; }
.signature .script { font-size: 36px; color: var(--taupe-deep); }
.signature .role { font-size: 13px; color: var(--taupe); letter-spacing: 0.08em; }
@media (max-width: 920px) { .about-grid { grid-template-columns: 1fr; } .about-portrait { width: 100%; max-width: 380px; margin: 0 auto; height: auto; aspect-ratio: 4/5; order: 2; } .about-content { order: 1; } }

/* 14. CTA
   ============================================================ */
.cta {
  padding: 150px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.cta::before {
  content: '';
  position: absolute;
  inset: 60px 40px;
  background: radial-gradient(ellipse at center, rgba(184,150,90,0.12), transparent 70%);
  z-index: 1;
  pointer-events: none;
}
/* BG01: natürliches Bildformat, Breite skaliert mit Viewport (38vw), Maske
   endet exakt am Bildrand — Komposition erkennbar, Kante weich verlaufend. */
.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('img/BG01.webp');
  background-size: 38vw auto;
  background-position: 0 50%;
  background-repeat: no-repeat;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.95) 8%, rgba(0,0,0,0.75) 18%, rgba(0,0,0,0.45) 26%, rgba(0,0,0,0.18) 32%, rgba(0,0,0,0) 38%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.95) 8%, rgba(0,0,0,0.75) 18%, rgba(0,0,0,0.45) 26%, rgba(0,0,0,0.18) 32%, rgba(0,0,0,0) 38%);
  z-index: 0;
  pointer-events: none;
}
.cta > .wrap { position: relative; z-index: 2; }

/* Tablet (iPad etc.): Bild auf volle Container-Höhe, breitere Maske, da Bild größer im Verhältnis zum Container ist */
@media (min-width: 701px) and (max-width: 1199px) {
  .cta::after {
    background-size: auto 100%;
    -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.95) 12%, rgba(0,0,0,0.75) 25%, rgba(0,0,0,0.45) 38%, rgba(0,0,0,0.18) 50%, rgba(0,0,0,0) 62%);
    mask-image: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.95) 12%, rgba(0,0,0,0.75) 25%, rgba(0,0,0,0.45) 38%, rgba(0,0,0,0.18) 50%, rgba(0,0,0,0) 62%);
  }
}

.cta h2 { max-width: 820px; margin: 0 auto 28px; }
.cta p { font-size: 18px; max-width: 580px; margin: 0 auto 44px; color: rgba(61,47,38,0.72); line-height: 1.65; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 60px auto 0; }
.contact-card { background: var(--cream-deep); padding: 36px 28px; border-radius: 24px; border: 1px solid var(--line); transition: all .3s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(61,47,38,0.2); }
.contact-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: var(--gold); border: 1px solid var(--line); }
.contact-card .label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); font-weight: 600; margin-bottom: 6px; }
.contact-card .value { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--taupe-deep); font-weight: 500; }
.contact-card a { color: inherit; text-decoration: none; }
.contact-card a:hover { color: var(--gold); }
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }

/* 15. FOOTER
   ============================================================ */
footer { background: var(--taupe-deep); color: var(--cream); padding: 80px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.foot-brand p { font-size: 14px; color: rgba(250,246,241,0.7); max-width: 320px; line-height: 1.7; margin-top: 22px; }
.foot-col h5 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--gold-soft); margin-bottom: 22px; }
.foot-col a, .foot-col p { display: block; color: rgba(250,246,241,0.75); text-decoration: none; font-size: 14px; margin-bottom: 12px; transition: color .2s; white-space: nowrap; }
.foot-col a:hover { color: var(--cream); }
.foot-bottom { border-top: 1px solid rgba(250,246,241,0.15); padding-top: 30px; display: flex; justify-content: space-between; font-size: 13px; color: rgba(250,246,241,0.55); flex-wrap: wrap; gap: 16px; }
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

/* 16. REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: all .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* 17. MOBILE BREAKPOINT (≤600px)
   ============================================================ */
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 6px 20px; }
  .logo-img { height: 76px; margin-bottom: -14px; }
  section { padding: 72px 0; }

  /* HERO */
  .hero { padding: calc(48px + var(--nav-h)) 0 72px; }
  .hero-grid { gap: 48px; }
  h1.hero-title { font-size: 40px; margin-bottom: 24px; }
  .eyebrow { margin-bottom: 22px; font-size: 11px; }
  .hero-lead { font-size: 16px; margin-bottom: 32px; }
  .hero-ctas { gap: 12px; }
  .btn-primary { padding: 16px 26px; font-size: 14px; min-height: 48px; }
  .contact-btn { padding: 14px 20px; font-size: 13px; min-height: 48px; }
  .hero-visual { padding-left: 0; gap: 14px; }
  .hero-badge { padding: 16px 18px; gap: 14px; border-radius: 16px; }
  .hero-badge-icon { width: 42px; height: 42px; }
  .hero-badge-text strong { font-size: 14px; }
  .hero-badge-text span { font-size: 12px; }

  /* TRUST */
  .trust { padding: 22px 0; }
  .trust-inner { gap: 18px 28px; font-size: 12px; }

  /* SECTION HEADS */
  .section-head { margin-bottom: 48px; }
  h2 { font-size: 34px; margin-bottom: 20px; }
  .section-lead { font-size: 16px; }

  /* SERVICES */
  .service { padding: 32px 26px 34px; }
  .service h3 { font-size: 24px; }

  /* PROCESS */
  .process { border-radius: 32px 32px 0 0; margin-top: -32px; padding: 96px 0 72px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
  .step-num { width: 56px; height: 56px; font-size: 24px; margin-bottom: 18px; }
  .step h4 { font-size: 22px; }

  /* FACTS */
  .facts { padding: 80px 0; }
  .fact { padding: 32px 26px; border-radius: 22px; }
  .fact-mark { font-size: 60px; top: 22px; right: 24px; }
  .fact h3 { font-size: 22px; max-width: 100%; }
  .fact p { font-size: 14px; max-width: 100%; }

  /* ABOUT */
  .about { padding: 80px 0; }
  .about-grid { gap: 32px; }
  .about-portrait { max-width: 200px; height: auto; aspect-ratio: 4/5; border-radius: 100px 100px 14px 14px; order: 1; box-shadow: 0 18px 40px -16px rgba(107,87,75,0.35); }
  .about-content { order: 2; }
  .about-portrait::after { border-radius: 94px 94px 8px 8px; inset: 8px; }
  .about-portrait .frame-text { bottom: 20px; }
  .about-portrait .frame-text .script { font-size: 22px; }
  .about-portrait .frame-text .name { font-size: 10px; letter-spacing: 0.14em; margin-top: 4px; }
  .about-content .greeting { font-size: 26px; text-align: center; }
  .about-content h2 { text-align: center; }
  .about-content p { font-size: 16px; }
  .about-content p.lead { font-size: 17px; }
  .signature { display: none; }

  /* CTA */
  .cta { padding: 84px 0; }
  .cta::before { inset: 30px 16px; }
  .cta p { font-size: 16px; }
  /* BG01 auf Mobil: am unteren Rand mittig, weich nach oben auslaufend */
  .cta::after {
    background-position: center bottom;
    background-size: 95% auto;
    opacity: 0.35;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.4) 78%, rgba(0,0,0,0.8) 100%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.4) 78%, rgba(0,0,0,0.8) 100%);
  }
  .contact-grid { gap: 16px; margin-top: 40px; }
  .contact-card { padding: 28px 22px; border-radius: 18px; }
  .contact-card .value { font-size: 18px; word-break: break-word; }

  /* FOOTER */
  footer { padding: 56px 0 32px; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 40px; }
  .foot-col a, .foot-col p { white-space: normal; word-break: break-word; }
  .foot-bottom { flex-direction: column; align-items: flex-start; font-size: 12px; }
  .mobile-menu a { font-size: 26px; }
}

/* 18. SUBPAGE LAYOUT (Pillar-Pages, Stadt-Pages, Impressum, Datenschutz, 404)
   ============================================================ */

/* Layout container — schmaler als die Homepage für besseren Lesefluss */
body.subpage main { padding: calc(80px + var(--nav-h)) 0 100px; position: relative; z-index: 2; }
body.subpage main > .wrap { max-width: 880px; }
body.subpage footer { margin-top: 80px; }

/* H1 — wie Homepage Hero, aber etwas dezenter */
body.subpage h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.05; font-weight: 400; letter-spacing: -0.012em;
  margin: 0 0 32px; color: var(--taupe-deep);
}

/* H2 — Sektions-Überschrift, mit Atemraum davor */
body.subpage h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15; font-weight: 400; letter-spacing: -0.008em;
  color: var(--taupe-deep);
  margin: 72px 0 20px;
  position: relative;
}
body.subpage h2::before {
  content: ''; display: block; width: 40px; height: 1px;
  background: var(--gold); margin-bottom: 18px;
}
body.subpage h2 .italic { font-style: italic; color: var(--gold); font-weight: 300; }

/* H3 — Subthema */
body.subpage h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500; letter-spacing: -0.005em;
  color: var(--taupe-deep);
  margin: 40px 0 12px;
}

/* Absätze — etwas größer und dunkler für Lesbarkeit */
body.subpage p {
  font-size: 17px; line-height: 1.75;
  color: rgba(61,47,38,0.82);
  margin: 0 0 18px;
  max-width: 70ch;
}
body.subpage p strong { color: var(--taupe-deep); font-weight: 600; }

/* Listen — mit gold-akzentuierten Markern */
body.subpage ul, body.subpage ol { margin: 0 0 28px; padding: 0; list-style: none; max-width: 70ch; }
body.subpage ul li, body.subpage ol li {
  position: relative; padding-left: 28px;
  margin-bottom: 12px;
  font-size: 17px; line-height: 1.7; color: rgba(61,47,38,0.82);
}
body.subpage ul li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 12px; height: 1px; background: var(--gold);
}
body.subpage ol { counter-reset: subpage-list; }
body.subpage ol li { counter-increment: subpage-list; padding-left: 36px; }
body.subpage ol li::before {
  content: counter(subpage-list);
  position: absolute; left: 0; top: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; color: var(--gold);
  line-height: 1.7;
  font-feature-settings: 'lnum';
}
body.subpage li strong { color: var(--taupe-deep); font-weight: 600; }

/* Links im Text */
body.subpage a:not([class]) { color: var(--taupe-deep); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 1px; transition: color .2s, border-color .2s; }
body.subpage a:not([class]):hover { color: var(--gold); border-bottom-color: var(--taupe-deep); }

/* Mobile Anpassung */
@media (max-width: 700px) {
  body.subpage main { padding: calc(48px + var(--nav-h)) 0 64px; }
  body.subpage footer { margin-top: 56px; padding: 56px 0 32px; }
  body.subpage h1 { margin-bottom: 24px; }
  body.subpage h2 { margin-top: 56px; }
  body.subpage h2::before { margin-bottom: 14px; }
  body.subpage h3 { margin-top: 32px; font-size: 20px; }
  body.subpage p, body.subpage li { font-size: 16px; }
}

/* 18b. SUBPAGE COMPONENTS (Breadcrumb, Lead, Callouts, Tabellen, Regionen, 404)
   ============================================================ */

/* Breadcrumb — wie ein dezenter Eyebrow */
.breadcrumb-nav {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: var(--taupe);
  margin-bottom: 36px;
}
.breadcrumb-nav::before {
  content: ''; width: 36px; height: 1px; background: var(--gold);
}
.breadcrumb-nav a { color: var(--taupe); text-decoration: none; border-bottom: 0; padding: 0; transition: color .2s; }
.breadcrumb-nav a:hover { color: var(--taupe-deep); }
.breadcrumb-nav .sep { color: var(--gold); }

/* Lead text directly under H1 — größer, Cormorant Italic für Eleganz */
body.subpage .lead-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5; font-weight: 400; font-style: italic;
  color: var(--taupe-deep);
  max-width: 62ch;
  margin: 0 0 40px;
}
body.subpage .lead-text strong { font-style: normal; font-weight: 600; color: var(--taupe-deep); }

/* Callout box ("Kurz gesagt:") — größer, prominenter */
.lead-box {
  background: rgba(184,150,90,0.08);
  border-left: 3px solid var(--gold);
  padding: 22px 28px; margin: 36px 0;
  border-radius: 0 6px 6px 0;
  font-size: 16px; line-height: 1.7;
  color: rgba(61,47,38,0.85);
  max-width: 70ch;
}
.lead-box strong { color: var(--taupe-deep); display: inline-block; margin-right: 4px; }

/* CTA row (primary + secondary button) */
.cta-row {
  margin: 56px 0 16px;
  display: flex; flex-wrap: wrap; gap: 20px;
  align-items: center;
}
.cta-row--center { justify-content: center; }

/* Disclaimer / small print at bottom */
.disclaimer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px; line-height: 1.6;
  color: rgba(61,47,38,0.55);
  font-style: italic;
  max-width: 70ch;
}

/* "Mehr →" link inside homepage fact-boxes */
.fact-more { margin-top: 14px; }
.fact-more a { color: var(--gold); font-weight: 500; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; }

/* Data tables (Pflegestufen, Kosten, Vergleiche) */
.data-tabelle { width: 100%; border-collapse: collapse; margin: 24px 0 32px; font-size: 15px; }
.data-tabelle th, .data-tabelle td { padding: 12px 14px; text-align: left; border-bottom: 1px solid rgba(184,150,90,0.25); vertical-align: top; }
.data-tabelle th { background: rgba(184,150,90,0.08); font-weight: 600; color: var(--taupe-deep); font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.data-tabelle tr:hover td { background: rgba(184,150,90,0.04); }
.data-tabelle .betrag { font-weight: 600; color: var(--taupe-deep); white-space: nowrap; text-align: right; }
.data-tabelle .minus { color: #5d7c3f; }
.data-tabelle .subtotal { background: rgba(184,150,90,0.06); font-weight: 600; }
.data-tabelle .summe { background: rgba(184,150,90,0.12); font-weight: 700; }
.data-tabelle .text-right { text-align: right; }
.data-tabelle .hint { display: block; font-size: 13px; color: rgba(61,47,38,0.6); margin-top: 2px; font-weight: 400; }
@media (max-width: 720px) {
  .data-tabelle { font-size: 14px; }
  .data-tabelle th, .data-tabelle td { padding: 10px 8px; }
}

/* Regionen & Wissen block on homepage */
.regionen { padding: 64px 0; background: rgba(184,150,90,0.04); position: relative; z-index: 2; }
.regionen .section-head { margin-bottom: 40px; }
.regionen .section-head h2 { font-size: 32px; }
.regionen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.regionen-col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.regionen-col ul { list-style: none; padding: 0; margin: 0; }
.regionen-col li { margin-bottom: 10px; }
.regionen-col a { color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(184,150,90,0.4); padding-bottom: 2px; transition: border-color .2s; }
.regionen-col a:hover { border-bottom-color: var(--gold); }

/* 404 error page */
.err-code { font-family: 'Cormorant Garamond', serif; font-size: 140px; line-height: 1; font-weight: 300; color: var(--gold); letter-spacing: -0.03em; margin-bottom: 8px; }
.err-lead { font-size: 18px; max-width: 56ch; margin: 0 0 32px; }
.err-links { display: flex; flex-wrap: wrap; gap: 24px; margin: 32px 0 8px; }
.err-links a { color: var(--ink); text-decoration: none; font-weight: 500; border-bottom: 1px solid rgba(184,150,90,0.5); padding-bottom: 3px; transition: border-color .2s; }
.err-links a:hover { border-bottom-color: var(--gold); }
.err-cta { margin-top: 40px; }
@media (max-width: 720px) {
  .err-code { font-size: 96px; }
  .err-lead { font-size: 16px; }
  .err-links { gap: 16px; }
}

/* 19. SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 150;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--taupe-deep); color: var(--cream);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .25s, transform .25s, background .2s;
  box-shadow: 0 4px 16px -4px rgba(61,47,38,0.3);
}
.scroll-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.scroll-top:hover { background: var(--gold); transform: translateY(-2px); }
@media (min-width: 881px) { .scroll-top { display: none !important; } }

/* 20. COOKIE CONSENT
   ============================================================ */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200; max-width: 640px; margin: 0 auto; background: var(--cream); color: var(--taupe-deep); border: 1px solid rgba(107,87,75,0.18); border-radius: 20px; box-shadow: 0 30px 70px -20px rgba(61,47,38,0.35); padding: 24px 26px; opacity: 0; transform: translateY(12px); transition: opacity .3s ease, transform .3s ease; font-family: 'Manrope', sans-serif; }
.cookie-banner.is-visible { opacity: 1; transform: none; }
.cookie-banner h2 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; margin: 0 0 8px; color: var(--taupe-deep); }
.cookie-banner p { font-size: 14px; line-height: 1.55; margin: 0 0 16px; color: rgba(61,47,38,0.8); }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner__categories { margin: 0 0 18px; display: flex; flex-direction: column; gap: 12px; }
.cookie-banner__categories[hidden] { display: none; }
.cookie-banner__cat { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; border: 1px solid rgba(107,87,75,0.14); border-radius: 12px; background: rgba(255,255,255,0.5); }
.cookie-banner__cat-text { flex: 1; }
.cookie-banner__cat strong { display: block; font-size: 13px; color: var(--taupe-deep); margin-bottom: 2px; }
.cookie-banner__cat span { font-size: 12px; line-height: 1.5; color: rgba(61,47,38,0.7); }
.cookie-banner__toggle { position: relative; flex: 0 0 auto; width: 38px; height: 22px; display: inline-block; }
.cookie-banner__toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-banner__toggle .slider { position: absolute; inset: 0; background: rgba(107,87,75,0.3); border-radius: 999px; cursor: pointer; transition: background .2s; }
.cookie-banner__toggle .slider::before { content: ''; position: absolute; left: 3px; top: 3px; width: 16px; height: 16px; background: #fff; border-radius: 50%; transition: transform .2s; box-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.cookie-banner__toggle input:checked + .slider { background: var(--gold); }
.cookie-banner__toggle input:checked + .slider::before { transform: translateX(16px); }
.cookie-banner__toggle input:disabled + .slider { opacity: 0.6; cursor: not-allowed; }
.cookie-banner__toggle input:focus-visible + .slider { outline: 2px solid var(--gold); outline-offset: 2px; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-banner button { font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; padding: 12px 18px; border-radius: 999px; border: 1px solid rgba(107,87,75,0.25); background: transparent; color: var(--taupe-deep); cursor: pointer; transition: background .2s, color .2s, border-color .2s; min-height: 44px; }
.cookie-banner button:hover { border-color: var(--taupe-deep); }
.cookie-banner button[data-action="accept-all"] { background: var(--taupe-deep); color: var(--cream); border-color: var(--taupe-deep); }
.cookie-banner button[data-action="accept-all"]:hover { background: var(--gold); border-color: var(--gold); }
.cookie-banner button[data-action="save"] { background: var(--gold); color: var(--cream); border-color: var(--gold); }
.cookie-banner button[data-action="save"]:hover { background: var(--taupe-deep); border-color: var(--taupe-deep); }
@media (max-width: 600px) {
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 20px 18px; border-radius: 18px; }
  .cookie-banner__actions { gap: 8px; }
  .cookie-banner button { flex: 1 1 100%; padding: 14px 18px; }
  .cookie-banner button[data-action="accept-all"] { order: -1; }
}
