/* ==========================================
   BESTATTUNGEN KINDERKNECHT – MAIN STYLES
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --gold:        #a98749;
  --gold-light:  #c9a96e;
  --gold-dark:   #7a6235;
  --gold-muted:  rgba(169,135,73,0.15);
  --black:       #111111;
  --dark:        #1a1a1a;
  --dark-2:      #252525;
  --dark-3:      #2f2f2f;
  --white:       #ffffff;
  --off-white:   #f8f7f4;
  --gray-light:  #eeece8;
  --gray:        #999999;
  --gray-dark:   #555555;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --max-w:       1200px;
  --nav-h:       120px;

  --ease:        0.3s ease;
  --ease-slow:   0.55s ease;

  --sh-sm:  0 2px 10px rgba(0,0,0,.07);
  --sh-md:  0 6px 28px rgba(0,0,0,.11);
  --sh-lg:  0 14px 48px rgba(0,0,0,.16);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; max-width: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: color var(--ease); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); font-weight: 500; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.9rem); }
p  { font-size: 1rem; line-height: 1.85; color: var(--gray-dark); }

/* ---- Layout Helpers ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section    { padding: 90px 0; }
.section--dark     { background: var(--dark); }
.section--dark-2   { background: var(--dark-2); }
.section--off-white{ background: var(--off-white); }
.section--white    { background: var(--white); }

.section-head       { text-align: center; margin-bottom: 64px; }
.section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-head h2    { margin-bottom: 18px; }
.section-head p     { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }
.section--dark .section-head h2,
.section--dark-2 .section-head h2 { color: var(--white); }
.section--dark .section-head p,
.section--dark-2 .section-head p  { color: rgba(255,255,255,.6); }

/* Gold rule */
.gold-rule { display: block; width: 48px; height: 2px; background: var(--gold); margin: 18px auto; }
.gold-rule--left { margin-left: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 34px;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  outline: none;
  transition: all var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn--gold  { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn--white { background: var(--white); color: var(--dark); }
.btn--white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--outline-gold:hover { background: var(--gold); color: var(--white); }
.btn--lg { padding: 16px 40px; font-size: .88rem; }
.btn svg { flex-shrink: 0; transition: transform var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* ---- HEADER ---- */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 28px;
  transition: background var(--ease), box-shadow var(--ease);
}
.header--transparent { background: transparent; }
.header--solid       { background: var(--dark); box-shadow: 0 4px 20px rgba(0,0,0,.3); }

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.header__logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header__logo-img { height: 140px; width: auto; filter: invert(1); }
.header__logo-text { display: flex; flex-direction: row; align-items: baseline; gap: .45em; }
.header__logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: .03em;
}
.header__logo-sub {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: .03em;
}

/* Nav */
.header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.header__nav .nav-link {
  position: relative;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  padding: 8px 14px;
  white-space: nowrap;
  transition: color var(--ease);
}
.header__nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.header__nav .nav-link:hover,
.header__nav .nav-link.active { color: var(--white); }
.header__nav .nav-link:hover::after,
.header__nav .nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-2);
  min-width: 210px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease), top var(--ease);
  box-shadow: var(--sh-lg);
  border-top: 2px solid var(--gold);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  top: calc(100% + 4px);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: .82rem;
  color: rgba(255,255,255,.72);
  transition: all var(--ease);
  text-transform: none;
  letter-spacing: .02em;
}
.nav-dropdown-menu a:hover { background: var(--gold-muted); color: var(--gold); padding-left: 26px; }

/* Header CTA */
.header__cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header__phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .02em;
  transition: color var(--ease);
}
.header__phone-link svg { color: var(--gold); }
.header__phone-link:hover { color: var(--gold); }

/* Mobile Toggle */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1100;
}
.header__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
  transform-origin: center;
}
.header__hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.header__hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 1000;
  padding: calc(var(--nav-h) + 32px) 28px 48px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav__label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 28px 0 8px;
}
.mobile-nav__label:first-child { margin-top: 0; }

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255,255,255,.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  letter-spacing: .02em;
  transition: color var(--ease), padding-left var(--ease);
  display: block;
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a:active { color: var(--gold); padding-left: 6px; }
.mobile-cta .btn {
  white-space: normal;
  text-align: center;
  line-height: 1.4;
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: .02em;
}
.mobile-nav .mobile-cta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}

/* ---- EMERGENCY BAR ---- */
.emergency-bar {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 850;
  background: var(--gold);
  padding: 9px 28px;
  text-align: center;
  transition: transform var(--ease);
}
.emergency-bar.hide { transform: translateY(-100%); }
.emergency-bar--mobile-only { display: none; }
.emergency-bar p { font-size: .8rem; font-weight: 600; color: var(--white); letter-spacing: .02em; }
.emergency-bar a { color: var(--white); text-decoration: underline; font-weight: 700; }
.emergency-short { display: none; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(17,17,17,.88) 0%,
    rgba(17,17,17,.60) 55%,
    rgba(17,17,17,.35) 100%
  );
}
.hero__content {
  position: relative; z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px + 38px) 28px 100px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 44px; height: 1.5px;
  background: var(--gold);
}
.hero h1 {
  color: var(--white);
  max-width: 820px;
  margin-bottom: 26px;
  font-weight: 400;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  max-width: 530px;
  line-height: 1.85;
  margin-bottom: 44px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 64px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 32px; }
.hero__trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.72);
  font-size: .88rem;
}
.hero__trust-item svg { color: var(--gold); flex-shrink: 0; }
/* ---- GOOGLE REVIEW BADGE ---- */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
  padding: 12px 20px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  text-decoration: none;
  transition: background var(--ease), transform var(--ease);
  cursor: pointer;
}
.google-badge:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-2px);
}
.google-badge__logo { flex-shrink: 0; }
.google-badge__divider {
  width: 1px; height: 32px;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}
.google-badge__content { display: flex; flex-direction: column; gap: 3px; }
.google-badge__stars {
  display: flex; gap: 2px;
  font-size: 1rem;
  color: #FBBC05;
  line-height: 1;
}
.google-badge__meta {
  display: flex; align-items: baseline; gap: 5px;
}
.google-badge__score {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.google-badge__count {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  font-weight: 400;
}

/* ---- TRUST STRIP ---- */
.trust-strip { background: #fff; padding: 36px 0; border-top: 1px solid rgba(0,0,0,.07); border-bottom: 1px solid rgba(0,0,0,.07); }
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(0,0,0,.07);
  gap: 8px;
}
.trust-item:last-child { border-right: none; }
.trust-item__icon { color: var(--gold); margin-bottom: 4px; }
.trust-item__icon svg { width: 44px; height: 44px; }
.trust-item__title { font-family: var(--font-sans); font-size: 1rem; color: var(--dark); font-weight: 600; letter-spacing: .01em; }
.trust-item__desc  { font-size: .88rem; color: rgba(0,0,0,.5); line-height: 1.5; }

/* ---- SERVICES GRID ---- */
.services-section { padding: 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: var(--dark);
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  background: var(--dark-3);
}
.service-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}
.service-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.92) 0%, rgba(17,17,17,.3) 55%, transparent 100%);
  transition: background var(--ease-slow);
}
.service-card:hover .service-card__img { transform: scale(1.07); }
.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(17,17,17,.97) 0%, rgba(17,17,17,.5) 55%, rgba(17,17,17,.15) 100%);
}
.service-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 36px;
  z-index: 1;
}
.service-card__eye {
  font-size: .65rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.service-card__title {
  font-family: var(--font-serif); font-size: 1.9rem; font-weight: 500;
  color: var(--white); margin-bottom: 12px; line-height: 1.1;
}
.service-card__excerpt {
  font-size: .88rem; color: rgba(255,255,255,.65);
  margin-bottom: 20px;
  max-height: 0; overflow: hidden;
  transition: max-height var(--ease-slow);
}
.service-card:hover .service-card__excerpt { max-height: 80px; }
.service-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .76rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  opacity: 0; transform: translateY(6px);
  transition: all var(--ease);
}
.service-card:hover .service-card__cta { opacity: 1; transform: translateY(0); }
.service-card__cta svg { transition: transform var(--ease); }
.service-card:hover .service-card__cta svg { transform: translateX(4px); }

/* ---- ABOUT / INTRO ---- */
.intro { padding: 100px 0; }
.intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro__img-wrap { position: relative; }
.intro__img-wrap img { width: 100%; height: 540px; object-fit: cover; object-position: left center; }
.intro__img-wrap::before {
  content: '';
  position: absolute;
  top: -22px; left: -22px; right: 22px; bottom: 22px;
  border: 2px solid var(--gold);
  z-index: -1;
}
.intro__badge {
  position: absolute;
  bottom: -22px; right: -22px;
  width: 136px; height: 136px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  color: var(--white);
  box-shadow: var(--sh-md);
}
.intro__badge .num { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 600; line-height: 1; }
.intro__badge .lbl { font-size: .64rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; line-height: 1.4; margin-top: 4px; }
.intro__text .eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.intro__text h2 { margin-bottom: 18px; }
.intro__text > p { font-size: 1.05rem; margin-bottom: 22px; }
.intro__values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin: 28px 0 36px;
}
.intro__value { display: flex; flex-direction: column; gap: 6px; }
.intro__value svg { color: var(--gold); }
.intro__value strong { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--dark); }
.intro__value span { font-size: .82rem; color: var(--gray); line-height: 1.55; }

/* ---- TEAM SECTION ---- */
.team-section { padding: 100px 0; background: var(--off-white); }

.team-section .section-head h2 { color: var(--dark); }
.team-section .section-head p   { color: #666; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 0 auto;
}

/* Karte: Foto links, Text rechts */
.team-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.12), 0 1px 4px rgba(0,0,0,.08);
  transition: transform var(--ease), box-shadow var(--ease);
}

.team-card__img-wrap {
  flex-shrink: 0;
  line-height: 0;
}
.team-card__photo {
  display: block;
  width: 280px;
  height: 415px;
  object-fit: cover;
  object-position: center top;
}

.team-card__body {
  flex: 1;
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-card__gold-line {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}

.team-card__name {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.15;
}

.team-card__desc {
  font-size: .88rem;
  color: #666;
  line-height: 1.78;
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; }
  .team-card__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center top;
  }
  .team-card__photo--elmira { object-position: center 10%; }
  .team-card__photo--philip { object-position: center 20%; }
}

/* ---- PROCESS ---- */
.process { padding: 100px 0; }
.process__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 60px;
}
.process__grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(169,135,73,.25), var(--gold));
}
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.process-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(17,17,17,.55);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.3rem; color: var(--gold);
  position: relative; z-index: 1;
}
.process-step__title { font-family: var(--font-serif); font-size: 1.15rem; color: var(--white); font-weight: 500; }
.process-step__desc  { font-size: .84rem; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 55%, var(--gold-light) 100%);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2   { color: var(--white); margin-bottom: 12px; }
.cta-banner > .container > p { color: rgba(255,255,255,.88); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }
.cta-banner__btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 100px 0; }
.testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.t-card {
  background: var(--white); padding: 40px;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--ease), transform var(--ease);
  position: relative;
}
.t-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.t-card__quote {
  position: absolute; top: 18px; left: 30px;
  font-family: var(--font-serif); font-size: 6rem; line-height: 1;
  color: var(--gold); opacity: .18;
}
.t-card__stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 20px; }
.t-card__text {
  font-style: italic; font-size: .94rem; line-height: 1.85;
  color: var(--gray-dark); margin-bottom: 28px;
}
.t-card__author { display: flex; align-items: center; gap: 13px; }
.t-card__av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold); font-weight: 600;
  flex-shrink: 0;
}
.t-card__name { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--dark); }
.t-card__date { font-size: .72rem; color: var(--gray); }

/* ---- Burial Types List ---- */
.burial-types { display: flex; flex-direction: column; gap: 0; }
.burial-type {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-light);
}
.burial-type strong {
  display: block;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.burial-type span {
  display: block;
  font-size: .95rem;
  color: var(--gray-dark);
  line-height: 1.65;
}

/* ---- FAQ ---- */
.faq { padding: 100px 0; }
.faq__wrap { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-item__btn {
  width: 100%; background: none; border: none; padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left;
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: var(--dark);
  transition: color var(--ease);
}
.faq-item__btn:hover { color: var(--gold); }
.faq-item__icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: transform var(--ease);
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__body { max-height: 0; overflow: hidden; transition: max-height var(--ease-slow), padding var(--ease-slow); }
.faq-item.open .faq-item__body { max-height: 400px; padding-bottom: 24px; }
.faq-item__body p { font-size: .95rem; color: var(--gray-dark); line-height: 1.85; }

/* ---- CONTACT SECTION ---- */
.contact-section { padding: 100px 0; }
.contact-section__inner {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: start;
}
.contact-info .eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { font-size: 1.05rem; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 22px; }
.contact-detail  { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail__icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.contact-detail__label {
  font-size: .68rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 3px;
}
.contact-detail__value { font-size: .98rem; font-weight: 500; color: var(--dark); line-height: 1.55; }
.contact-detail__value a:hover { color: var(--gold); }

/* ---- CONTACT FORM ---- */
.contact-form-wrap {
  background: var(--white);
  padding: 52px 48px;
  box-shadow: var(--sh-lg);
}
.contact-form-wrap h3 {
  font-family: var(--font-serif); font-size: 1.8rem; font-weight: 500;
  color: var(--dark); margin-bottom: 8px;
}
.contact-form-wrap > p { font-size: .88rem; color: var(--gray); margin-bottom: 32px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: .7rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--gray-dark); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--gray-light);
  background: var(--off-white);
  font-family: var(--font-sans); font-size: .94rem; color: var(--dark);
  outline: none; appearance: none; border-radius: 0;
  transition: border-color var(--ease), background var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-check { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 28px; }
.form-check input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--gold); }
.form-check label { font-size: .78rem; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--gray); line-height: 1.6; }
.form-success { display: none; text-align: center; padding: 36px 0; }
.form-success svg { color: var(--gold); margin-bottom: 16px; }
.form-success h3  { font-family: var(--font-serif); font-size: 1.6rem; color: var(--dark); margin-bottom: 10px; }
.form-success p   { color: var(--gray); font-size: .94rem; }

/* ---- FOOTER ---- */
.footer { background: var(--dark); padding: 80px 0 0; }
.footer__grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
  gap: 52px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.footer__brand-logo { height: 200px; width: auto; filter: invert(1); margin-bottom: 18px; }
.footer__brand-name {
  font-family: var(--font-serif); font-size: 1.45rem; font-weight: 600;
  color: var(--white); margin-bottom: 4px;
}
.footer__brand-tag  { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 600; letter-spacing: normal; text-transform: none; color: var(--white); margin-bottom: 18px; }
.footer__brand-desc { font-size: .87rem; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 270px; }
.footer__col h4 {
  font-family: var(--font-sans); font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a { font-size: .88rem; color: rgba(255,255,255,.45); transition: color var(--ease); }
.footer__col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer__contact-row { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.footer__contact-label { font-size: .64rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.footer__contact-value { font-size: .88rem; color: rgba(255,255,255,.55); }
.footer__contact-value a { color: rgba(255,255,255,.55); }
.footer__contact-value a:hover { color: var(--gold); }
.footer__bottom {
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer__copy  { font-size: .76rem; color: rgba(255,255,255,.3); }
.footer__legal { display: flex; gap: 22px; }
.footer__legal a { font-size: .76rem; color: rgba(255,255,255,.3); transition: color var(--ease); }
.footer__legal a:hover { color: var(--gold); }
.footer__credits { font-size: .68rem; color: rgba(255,255,255,.22); text-align: center; padding-bottom: 14px; }
.footer__credits a { color: rgba(169,135,73,.5); }

/* ---- PAGE HERO (Unterseiten) ---- */
.page-hero {
  position: relative;
  height: 62vh; min-height: 360px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.92) 0%, rgba(17,17,17,.4) 55%, rgba(17,17,17,.2) 100%);
}
.page-hero__body {
  position: relative; z-index: 1;
  max-width: var(--max-w); width: 100%;
  margin: 0 auto;
  padding: 0 28px 60px;
}
.page-hero__crumbs {
  display: flex; align-items: center; gap: 7px;
  font-size: .76rem; color: rgba(255,255,255,.5); margin-bottom: 14px;
}
.page-hero__crumbs a { color: rgba(255,255,255,.5); }
.page-hero__crumbs a:hover { color: var(--gold); }
.page-hero__crumbs svg { color: var(--gold); }
.page-hero__eye { font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.page-hero h1  { color: var(--white); font-weight: 400; margin-bottom: 18px; }
.page-hero__sub { font-size: 1.08rem; color: rgba(255,255,255,.72); max-width: 580px; }

/* ---- SERVICE PAGE CONTENT ---- */
.service-main { padding: 84px 0; }
.service-main__inner {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 80px; align-items: start;
}
.service-text h2 { margin-bottom: 18px; }
.service-text h3 { font-size: 1.5rem; margin: 36px 0 12px; }
.service-text p  { font-size: 1.04rem; line-height: 1.87; margin-bottom: 20px; }
.service-text ul { margin: 18px 0; }
.service-text ul li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 9px 0; font-size: .97rem; color: var(--gray-dark);
  border-bottom: 1px solid var(--gray-light);
}
.service-text ul li::before {
  content: ''; flex-shrink: 0;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); margin-top: 9px;
}
.service-sidebar { position: sticky; top: calc(var(--nav-h) + 48px); }
.sidebar-cta {
  background: var(--dark); padding: 40px; margin-bottom: 20px;
}
.sidebar-cta h3 { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 500; color: var(--white); margin-bottom: 12px; }
.sidebar-cta p  { font-size: .88rem; color: rgba(255,255,255,.62); margin-bottom: 24px; line-height: 1.7; }
.sidebar-cta .phone-big {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.18rem; font-weight: 700; color: var(--gold); margin-bottom: 20px;
}
.sidebar-other { background: var(--off-white); padding: 28px; }
.sidebar-other h4 { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.sidebar-other ul { display: flex; flex-direction: column; gap: 10px; }
.sidebar-other ul li a {
  font-size: .88rem; color: var(--dark);
  display: flex; align-items: center; gap: 8px;
  transition: color var(--ease), padding-left var(--ease);
}
.sidebar-other ul li a:hover { color: var(--gold); padding-left: 4px; }
.sidebar-other ul li a svg { color: var(--gold); }

/* ---- IMAGE GALLERY ---- */
.gallery-section { padding: 60px 0; }
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}
.gallery-grid img {
  width: 100%; height: auto;
  display: block;
  margin-bottom: 16px;
  break-inside: avoid;
  transition: transform .45s ease, filter .45s ease;
}
.gallery-grid img:hover { transform: scale(1.04); filter: brightness(1.05); }
.gallery-grid .span-2 { /* span-2 entfällt bei columns-Layout */ }

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid::before { display: none; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .intro__inner { gap: 52px; }
  .contact-section__inner { gap: 52px; }
}

@media (max-width: 768px) {
  /* ---- Basis ---- */
  :root { --nav-h: 84px; }
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }

  /* ---- Header ---- */
  .header { padding: 0 20px; }
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__hamburger { display: flex; }
  .header__logo-img { height: 64px; }
  .header__logo-name,
  .header__logo-sub { font-size: .92rem; }

  /* ---- Buttons ---- */
  .btn--lg {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    white-space: normal;
    text-align: center;
  }

  /* ---- Hero ---- */
  .hero { min-height: 100svh; }
  .hero__bg { background-attachment: scroll; }
  .hero__content { padding: calc(var(--emergency-h) + var(--nav-h) + 28px) 20px 72px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
  .hero__trust { flex-direction: column; gap: 12px; }
  .hero__sub { font-size: 1rem; }
  .google-badge { width: 100%; justify-content: center; }

  /* ---- Trust Strip ---- */
  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: none !important; }

  /* ---- Services Grid ---- */
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card { aspect-ratio: 16/9; }
  .service-card__excerpt { max-height: 60px; }
  .service-card__cta { opacity: 1; transform: none; }

  /* ---- About / Intro ---- */
  .intro { padding: 56px 0; }
  .intro__inner { grid-template-columns: 1fr; gap: 36px; }
  .intro__img-wrap::before { display: none; }
  .intro__img-wrap img { height: 260px; object-position: right center; }
  .intro__badge { display: none; }
  .intro__values { grid-template-columns: 1fr; gap: 16px; }
  .intro__text > .btn { display: block; margin: 0 20px; white-space: normal; text-align: center; }

  /* ---- Process ---- */
  .process { padding: 56px 0; }
  .process__grid { grid-template-columns: 1fr; gap: 24px; }
  .process__grid::before { display: none; }

  /* ---- Testimonials ---- */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* ---- FAQ ---- */
  .faq-item__btn { padding: 20px 0; font-size: 1.25rem; min-height: 56px; }

  /* ---- Contact ---- */
  .contact-section { padding: 56px 0; }
  .contact-section__inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-wrap { padding: 32px 20px; box-shadow: none; }
  .form-row2 { grid-template-columns: 1fr; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }

  /* ---- Gallery ---- */
  .gallery-section { padding: 48px 0; }
  .gallery-grid { columns: 1; gap: 10px; }
  .gallery-grid img { margin-bottom: 10px; }

  /* ---- CTA Banner ---- */
  .cta-banner { padding: 52px 0; }
  .cta-banner__btns { flex-direction: column; align-items: center; gap: 12px; }
  .cta-banner__btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* ---- Footer ---- */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 10px; }

  /* ---- Emergency Bar – über dem Header ---- */
  :root { --emergency-h: 34px; }
  .emergency-bar--mobile-only { display: flex; }
  .emergency-bar {
    position: fixed;
    top: 0;
    z-index: 910;
    padding: 0 16px;
    height: var(--emergency-h);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    white-space: nowrap;
    overflow: hidden;        /* verhindert horizontales Overflow */
  }
  .emergency-full { display: none; }
  .emergency-short { display: inline; }
  /* Header unter die Bar schieben – nur wenn Bar vorhanden */
  body:has(.emergency-bar) .header { top: var(--emergency-h); }
  body:not(:has(.emergency-bar)) .header { top: 0; }

  /* ---- Page Hero (Unterseiten) ---- */
  .page-hero { height: auto; min-height: 0; padding-top: var(--nav-h); }
  body:has(.emergency-bar) .page-hero { padding-top: calc(var(--emergency-h) + var(--nav-h)); }
  .page-hero__bg { background-attachment: scroll; }
  .page-hero__body { padding: 28px 20px 44px; }
  .page-hero h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .page-hero__sub { font-size: .97rem; }

  /* ---- Intro Bild mobile ---- */
  .intro__img-wrap {
    position: static;
    left: auto;
    transform: none;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    overflow: hidden;
  }
  .intro__img-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
  /* grid items brauchen min-width:0 damit langer Text umbricht */
  .intro__inner > * { min-width: 0; }
  .intro__text { overflow-wrap: break-word; word-break: break-word; }

  /* ---- Service Seiten ---- */
  .service-main { padding: 48px 0; }
  .service-main__inner { grid-template-columns: 1fr; gap: 0; }
  .service-sidebar { position: relative; top: auto; margin-top: 48px; }
  .sidebar-cta { padding: 28px 20px; }
  .service-text h3 { font-size: 1.3rem; }
  .service-card__body { padding: 20px 24px; }

  /* ---- Mobile Nav Label ---- */
  .mobile-nav__label { font-size: .72rem; }

  /* ---- Page Hero min-height ---- */
  .page-hero { min-height: 0; }

  /* ---- Vorsorge Hint ---- */
  .vorsorge-hint { padding: 40px 0; }
  .vorsorge-hint__inner { grid-template-columns: 1fr; gap: 28px; }
  .vorsorge-hint__link { text-align: center; justify-content: center; }

  /* ---- Reviews ---- */
  .reviews-section { padding: 48px 0; }
  .reviews-summary { max-width: 100%; padding: 20px; flex-direction: column; gap: 12px; }
}

/* ======================== GOOGLE REVIEWS ======================== */
.reviews-section {
  background: var(--white);
  padding: 80px 0;
}

/* Summary-Box */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 24px 32px;
  margin-bottom: 40px;
  max-width: 520px;
}
.reviews-summary__score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.reviews-summary__stars { display: flex; gap: 3px; margin-bottom: 6px; }
.review-star        { fill: none;    stroke: #d4a843; stroke-width: 1.5; }
.review-star.filled { fill: #d4a843; stroke: #d4a843; }
.review-star.half   { fill: url(#halfGold); stroke: #d4a843; }
.reviews-summary__count {
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.reviews-summary__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .04em;
}
.reviews-summary__link:hover { text-decoration: underline; }

/* Karussell */
.reviews-carousel-outer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviews-carousel-clip {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Karten */
.review-card {
  flex: 0 0 auto;      /* Breite per JS gesetzt */
  background: var(--off-white);
  padding: 24px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-sizing: border-box;
}
.review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-card__name  { font-weight: 600; font-size: .92rem; color: var(--dark); }
.review-card__date  { font-size: .76rem; color: var(--text-light); margin-top: 2px; }
.review-card__stars { display: flex; gap: 2px; }
.review-card__text {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}
.review-card__text--clamped {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card__toggle {
  background: none;
  border: none;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0 0;
  display: block;
  letter-spacing: .03em;
}
.review-card__toggle:hover { text-decoration: underline; }

/* Navigations-Buttons */
.reviews-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.15s, visibility 0.2s;
}
.reviews-nav:hover {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.08);
}

/* Ladeanzeige */
.reviews-loading {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 48px 0;
}
.reviews-loading span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .3;
  animation: reviewPulse 1.2s ease-in-out infinite;
}
.reviews-loading span:nth-child(2) { animation-delay: .2s; }
.reviews-loading span:nth-child(3) { animation-delay: .4s; }
@keyframes reviewPulse { 0%,100%{opacity:.3;transform:scale(1)} 50%{opacity:1;transform:scale(1.3)} }

.reviews-error {
  text-align: center;
  padding: 32px;
  color: var(--text-light);
  font-size: .9rem;
  font-style: italic;
}

@media (max-width: 600px) {
  .reviews-section { padding: 48px 0; }
  .reviews-summary { flex-direction: column; align-items: flex-start; gap: 12px; padding: 20px; }

  /* Pfeile über die Karte legen – Karte bekommt volle Breite */
  .reviews-carousel-outer { position: relative; display: block; }
  .reviews-carousel-clip  { display: block; width: 100%; }
  .reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
    z-index: 2;
  }
  .reviews-nav--prev { left: 6px; }
  .reviews-nav--next { right: 6px; }
  .review-card { padding: 16px 52px; } /* Platz für Pfeile links/rechts */
  .review-card__text { font-size: .88rem; }
  .review-card__text--clamped { -webkit-line-clamp: 4; }
}

/* ======================== VORSORGE HINT ======================== */
.vorsorge-hint {
  background: var(--off-white);
  padding: 56px 0;
  border-top: 1px solid rgba(0,0,0,.07);
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.vorsorge-hint__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.vorsorge-hint__label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.vorsorge-hint__text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 600;
}
.vorsorge-hint__text p {
  font-size: .97rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 24px;
}
.vorsorge-hint__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 10px 20px;
  transition: background .2s, color .2s;
}
.vorsorge-hint__link:hover {
  background: var(--gold);
  color: #fff;
}
.vorsorge-hint__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vorsorge-hint__list li {
  display: flex;
  gap: 12px;
  font-size: .96rem;
  color: var(--text-light);
  line-height: 1.5;
}
.vorsorge-hint__list strong {
  color: var(--dark);
}
.vorsorge-check {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .vorsorge-hint { padding: 40px 0; }
  .vorsorge-hint__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .vorsorge-hint__link { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .intro__img-wrap { margin-left: -16px; margin-right: -16px; width: calc(100% + 32px); }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .hero__content { padding: calc(var(--emergency-h) + var(--nav-h) + 16px) 16px 52px; }
  .hero__sub { font-size: .95rem; }
  .btn--lg { padding: 14px 20px; font-size: .84rem; width: 100%; justify-content: center; }
  .header__logo-name,
  .header__logo-sub { font-size: 1.05rem; }
  .header__logo-img { height: 76px; }
  .section-head { margin-bottom: 36px; }
  .service-card { aspect-ratio: 4/3; }
  .service-card__body { padding: 16px 18px; }
  .page-hero__body { padding: 24px 16px 32px; }
  .page-hero h1 { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .cta-banner__btns .btn { max-width: 100%; }
  .contact-form-wrap { padding: 24px 16px; }
  .vorsorge-hint__text h3 { font-size: 1.55rem; }
  .sidebar-cta { padding: 24px 16px; }
  /* Testimonials & FAQ spacing */
  .t-card { padding: 28px 20px; }
  .faq-item__btn { font-size: 1.25rem; }
  /* Footer lesbarer */
  .footer__col ul li a { font-size: .92rem; }
  .footer__contact-value { font-size: .92rem; }
}

/* ======================== COOKIE BANNER ======================== */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--dark);
  border-top: 2px solid var(--gold);
  padding: 20px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 240px; }
.cookie-banner__text strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: .04em;
}
.cookie-banner__text p {
  font-size: .82rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.5;
}
.cookie-banner__text a {
  color: var(--gold-light);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
#cookie-accept {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
#cookie-accept:hover { background: var(--gold-dark); }
#cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 22px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
#cookie-decline:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-banner__actions { width: 100%; }
  #cookie-accept, #cookie-decline { flex: 1; text-align: center; }
}
