/*
Theme Name:   Horn-Linden
Theme URI:    https://horn-linden.de
Author:       Horn-Linden Bestattungshaus Solingen
Description:  Offizielles Theme für Bestattungshaus Horn-Linden, Solingen. Familiengeführt seit 1874.
Version:      2.0.3
License:      Proprietary
Text Domain:  horn-linden
*/

/* ============================================================
   CSS CUSTOM PROPERTIES – exakt aus Mockup v4
   ============================================================ */
:root {
  --lila:        #7B5EA7;
  --lila-dark:   #4A3470;
  --lila-light:  #EDE8F5;
  --lila-mid:    #C4B0E0;
  --white:       #FAFAF8;
  --grey-bg:     #F4F1F8;
  --grey-border: #E2DCF0;
  --text:        #2C2C2C;
  --text-muted:  #6B6278;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --radius:       4px;
  --radius-lg:    12px;
  --shadow:       0 2px 16px rgba(74,52,112,0.10);
  --shadow-lg:    0 8px 40px rgba(74,52,112,0.16);
  --transition:   0.25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   TYPOGRAFIE
   ============================================================ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600; line-height: 1.2;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--lila);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.section { padding: 5rem 0; }

/* ============================================================
   WELLEN-ÜBERGANG
   ============================================================ */
.section--wave-bottom { padding-bottom: 0; }
.section--wave-bottom .wave-foot {
  margin-top: 4rem; width: 100%; overflow: hidden;
  line-height: 0; display: block;
}
.section--wave-bottom .wave-foot img {
  width: 100%; height: auto; display: block;
  max-height: 90px; object-fit: cover; object-position: center top;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 clamp(1.5rem, 4vw, 3rem);
  max-width: 1200px; margin: 0 auto;
}
.nav__logo img { height: 44px; max-width: 200px; width: auto; }
.nav__links {
  display: flex; align-items: center; gap: 1.75rem; list-style: none;
}
.nav__links a {
  font-size: 0.88rem; font-weight: 500; color: var(--text);
  transition: color var(--transition); position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--lila); transition: width var(--transition);
}
.nav__links a:hover { color: var(--lila); }
.nav__links a:hover::after,
.nav__links .current-menu-item > a::after { width: 100%; }
.nav__links .current-menu-item > a { color: var(--lila); }
.nav__cta { display: flex; gap: 0.6rem; align-items: center; }
.nav__tel {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.1rem; border-radius: var(--radius);
  font-size: 0.82rem; font-weight: 600;
  color: var(--lila); border: 1.5px solid var(--lila);
  transition: all var(--transition); white-space: nowrap;
}
.nav__tel:hover { background: var(--lila-light); }
.nav__tel-badge {
  display: inline-block;
  background: var(--lila); color: #fff;
  font-size: 0.62rem; font-weight: 700;
  padding: 0.1rem 0.35rem; border-radius: 3px; letter-spacing: 0.04em;
}
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: all var(--transition); }
.nav__mobile { display: none; }
.nav__mobile.open {
  display: flex; flex-direction: column;
  position: absolute; top: 72px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--grey-border);
  padding: 1rem 1.5rem 1.5rem; gap: 0.75rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.nav__mobile.open a { font-size: 1rem; font-weight: 500; color: var(--text); padding: 0.4rem 0; border-bottom: 1px solid var(--grey-border); }
.nav__mobile.open .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.5rem; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: all var(--transition); border: none; white-space: nowrap;
}
.btn--primary { background: var(--lila); color: #fff; }
.btn--primary:hover { background: var(--lila-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(123,94,167,0.35); }
.btn--outline { background: transparent; color: var(--lila); border: 1.5px solid var(--lila); }
.btn--outline:hover { background: var(--lila-light); }
.btn--white { background: #fff; color: var(--lila-dark); }
.btn--white:hover { background: var(--lila-light); transform: translateY(-1px); }
.btn--ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn--ghost:hover { background: rgba(255,255,255,0.22); }
.btn--lg { padding: 0.9rem 2rem; font-size: 0.95rem; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   HERO – heller lila Gradient (nicht dunkel!)
   ============================================================ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: flex-end; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #F4F1F8 0%, #EDE8F5 40%, #F8F5FF 100%);
  padding-top: 72px;
}
.hero__content {
  display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 2rem;
  max-width: 1200px; margin: 0 auto;
  padding: 4rem clamp(1.5rem, 4vw, 3rem) 0; width: 100%;
}
.hero__text { padding-bottom: 4rem; }
.hero__eyebrow { margin-bottom: 1rem; }
.hero__title { margin-bottom: 1.5rem; color: var(--lila-dark); }
.hero__title em { font-style: italic; color: var(--lila); }
.hero__subtitle { color: var(--text-muted); max-width: 480px; margin-bottom: 2.5rem; font-size: 1.05rem; line-height: 1.75; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__image { display: flex; justify-content: flex-end; align-items: flex-end; }
.hero__image img { max-height: 520px; width: auto; }
.hero__wave { width: 100%; overflow: hidden; line-height: 0; margin-top: -2px; }
.hero__wave img { width: 100%; height: auto; display: block; }

/* ============================================================
   NOTFALL-BAND
   ============================================================ */
.notfall { background: var(--lila-dark); color: #fff; padding: 1.1rem 0; }
.notfall__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.notfall__text { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; }
.notfall__tel { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 0.6rem; }
.notfall__tel:hover { opacity: 0.85; }
.notfall__badge { font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; background: rgba(255,255,255,0.2); padding: 0.2rem 0.5rem; border-radius: 3px; letter-spacing: 0.05em; }

/* ============================================================
   STERBEFALL CTA
   ============================================================ */
.cta-sterbefall { background: linear-gradient(135deg, var(--lila-dark) 0%, var(--lila) 100%); color: #fff; text-align: center; padding: 5rem 0; position: relative; overflow: hidden; }
.cta-sterbefall::before { content: ''; position: absolute; top: -50%; left: -10%; width: 300px; height: 300px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.cta-sterbefall__inner { position: relative; z-index: 1; }
.cta-sterbefall .eyebrow { color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.cta-sterbefall h2 { margin-bottom: 1rem; color: #fff; }
.cta-sterbefall p { max-width: 560px; margin: 0 auto 2.5rem; opacity: 0.88; font-size: 1.05rem; line-height: 1.75; }
.cta-sterbefall__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.leistungen { background: var(--grey-bg); }
.leistungen__header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.leistungen__header .eyebrow { margin-bottom: 0.75rem; }
.leistungen__header p { color: var(--text-muted); margin-top: 1rem; }
.leistungen__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.leistung-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; transition: box-shadow var(--transition), transform var(--transition); border: 1px solid transparent; }
.leistung-card:hover { box-shadow: var(--shadow); border-color: var(--lila-mid); transform: translateY(-2px); }
.leistung-card__icon { width: 52px; height: 52px; border-radius: 50%; background: var(--lila-light); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; }
.leistung-card__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.6rem; color: var(--lila-dark); }
.leistung-card__text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.leistung-card__link { font-size: 0.85rem; font-weight: 600; color: var(--lila); display: inline-flex; align-items: center; gap: 0.3rem; transition: gap var(--transition); }
.leistung-card__link:hover { gap: 0.6rem; }

/* ============================================================
   STANDORTE
   ============================================================ */
.standorte { background: var(--white); }
.standorte__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.standort-card { border: 1px solid var(--grey-border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); background: var(--white); }
.standort-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.standort-card__header { background: linear-gradient(135deg, var(--lila) 0%, var(--lila-dark) 100%); padding: 2rem 2rem 1.5rem; color: #fff; }
.standort-card__header .eyebrow { color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }
.standort-card__title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin-bottom: 0.25rem; }
.standort-card__adresse { font-size: 0.9rem; opacity: 0.85; }
.standort-card__body { padding: 1.75rem 2rem 2rem; }
.standort-card__features { list-style: none; margin: 1rem 0 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.standort-card__features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; }
.standort-card__features li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--lila); flex-shrink: 0; }
.standort-card__tel { font-weight: 600; color: var(--lila); font-size: 1.05rem; display: block; margin-bottom: 0.4rem; }
.standort-card__hours { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* ============================================================
   KOLUMBARIUM
   ============================================================ */
.kolumbarium { background: var(--lila-dark); color: #fff; padding: 5rem 0; }
.kolumbarium__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.kolumbarium__text .eyebrow { color: var(--lila-mid); margin-bottom: 0.75rem; }
.kolumbarium__text h2 { color: #fff; margin-bottom: 1.25rem; }
.kolumbarium__text p { opacity: 0.85; line-height: 1.75; margin-bottom: 1rem; }
.kolumbarium__text p:last-of-type { margin-bottom: 2rem; }
.kolumbarium__features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.kol-feature { background: rgba(255,255,255,0.08); border-radius: 8px; padding: 1rem; border: 1px solid rgba(255,255,255,0.12); }
.kol-feature__icon { font-size: 1.3rem; margin-bottom: 0.4rem; }
.kol-feature__label { font-size: 0.78rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.08em; }
.kol-feature__val { font-size: 0.92rem; font-weight: 500; margin-top: 0.2rem; }
.kolumbarium__img { border-radius: var(--radius-lg); overflow: hidden; height: 380px; background: var(--lila); display: flex; align-items: center; justify-content: center; }
.kolumbarium__img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   ÜBER UNS / TEAM
   ============================================================ */
.ueber-uns { background: var(--white); }
.ueber-uns__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ueber-uns__text .eyebrow { margin-bottom: 0.75rem; }
.ueber-uns__text h2 { margin-bottom: 1.5rem; }
.ueber-uns__text p { color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.75; }
.ueber-uns__stats { display: flex; gap: 2.5rem; margin: 2rem 0 2.5rem; }
.stat__number { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--lila); line-height: 1; }
.stat__label { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.08em; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.team-card { background: var(--grey-bg); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--grey-border); transition: box-shadow var(--transition), transform var(--transition); }
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.team-card__photo { width: 100%; aspect-ratio: 3/4; overflow: hidden; background: var(--lila-light); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__body { padding: 1rem; }
.team-card__name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--lila-dark); }
.team-card__roles { list-style: none; margin-top: 0.4rem; display: flex; flex-direction: column; gap: 0.15rem; }
.team-card__roles li { font-size: 0.78rem; color: var(--text-muted); padding-left: 0.75rem; position: relative; }
.team-card__roles li::before { content: '–'; position: absolute; left: 0; color: var(--lila-mid); }

/* ============================================================
   NACHSORGE
   ============================================================ */
.nachsorge { background: var(--grey-bg); }
.nachsorge__header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.nachsorge__header .eyebrow { margin-bottom: 0.75rem; }
.nachsorge__header p { color: var(--text-muted); margin-top: 1rem; line-height: 1.7; }
.nachsorge__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.nachsorge-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--grey-border); transition: box-shadow var(--transition), transform var(--transition); display: flex; flex-direction: column; }
.nachsorge-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.nachsorge-card__icon { width: 56px; height: 56px; border-radius: var(--radius-lg); background: var(--lila-light); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.25rem; flex-shrink: 0; }
.nachsorge-card__eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lila); margin-bottom: 0.4rem; }
.nachsorge-card__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--lila-dark); margin-bottom: 0.75rem; line-height: 1.3; }
.nachsorge-card__text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 1.5rem; }
.nachsorge-card__link { font-size: 0.85rem; font-weight: 600; color: var(--lila); display: inline-flex; align-items: center; gap: 0.3rem; margin-top: auto; transition: gap var(--transition); }
.nachsorge-card__link:hover { gap: 0.6rem; }
.nachsorge__hint { margin-top: 2.5rem; background: var(--lila-light); border-radius: var(--radius-lg); padding: 1.5rem 2rem; border-left: 4px solid var(--lila); display: flex; align-items: flex-start; gap: 1rem; }
.nachsorge__hint-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.nachsorge__hint p { font-size: 0.92rem; color: var(--text); line-height: 1.65; }
.nachsorge__hint strong { color: var(--lila-dark); }

/* ============================================================
   VORSORGE CTA
   ============================================================ */
.vorsorge-cta { background: var(--white); }
.vorsorge-cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.vorsorge-cta__text .eyebrow { margin-bottom: 0.75rem; }
.vorsorge-cta__text h2 { margin-bottom: 1rem; }
.vorsorge-cta__text p { color: var(--text-muted); margin-bottom: 1.75rem; line-height: 1.75; }
.vorsorge-cta__box { background: var(--grey-bg); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--grey-border); box-shadow: var(--shadow); }
.vorsorge-cta__box h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; color: var(--lila-dark); }
.vorsorge-list { list-style: none; margin-bottom: 1.5rem; }
.vorsorge-list li { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.45rem 0; border-bottom: 1px solid var(--grey-border); font-size: 0.9rem; color: var(--text-muted); }
.vorsorge-list li:last-child { border-bottom: none; }
.vorsorge-list li::before { content: '✓'; color: var(--lila); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   NEWS + BLOG
   ============================================================ */
.news { background: var(--grey-bg); }
.news__header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; gap: 1rem; flex-wrap: wrap; }
.news__header-left .eyebrow { margin-bottom: 0.5rem; }
.news__layout { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.news__ratgeber-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.blog-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--grey-border); transition: box-shadow var(--transition), transform var(--transition); background: var(--white); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card__img { aspect-ratio: 1/1; overflow: hidden; background: var(--lila-light); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 1.25rem; }
.blog-card__tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lila); margin-bottom: 0.5rem; }
.blog-card__title { font-family: var(--font-display); font-size: 0.98rem; font-weight: 600; line-height: 1.35; color: var(--lila-dark); margin-bottom: 0.4rem; }
.blog-card__excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fb-feed-wrapper { position: sticky; top: 88px; }
.fb-feed-label { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.fb-feed-label .eyebrow { margin: 0; }
.fb-badge { display: inline-flex; align-items: center; gap: 0.35rem; background: #1877F2; color: #fff; font-size: 0.72rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 20px; }
.fb-feed-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--grey-border); box-shadow: var(--shadow); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--lila-dark); color: rgba(255,255,255,0.85); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand img { height: 46px; margin-bottom: 1rem; filter: brightness(10); }
.footer__brand p { font-size: 0.88rem; line-height: 1.65; max-width: 280px; }
.footer__col-title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: #fff; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.15); }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a { font-size: 0.88rem; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer__links a:hover { color: #fff; }
.footer__contact p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 0.2rem; }
.footer__contact a { color: rgba(255,255,255,0.7); }
.footer__contact a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer__bottom a { color: rgba(255,255,255,0.5); }
.footer__bottom a:hover { color: rgba(255,255,255,0.85); }

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .fade-in { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .leistungen__grid { grid-template-columns: repeat(2, 1fr); }
  .nachsorge__grid { grid-template-columns: repeat(2, 1fr); }
  .news__layout { grid-template-columns: 1fr; }
  .fb-feed-wrapper { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero__content { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .standorte__grid { grid-template-columns: 1fr; }
  .leistungen__grid, .nachsorge__grid { grid-template-columns: 1fr; }
  .ueber-uns__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .vorsorge-cta__inner { grid-template-columns: 1fr; }
  .kolumbarium__inner { grid-template-columns: 1fr; }
  .news__ratgeber-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .ueber-uns__stats { gap: 1.5rem; flex-wrap: wrap; }
  .section { padding: 3.5rem 0; }
  .nachsorge__hint { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero__actions, .cta-sterbefall__actions { flex-direction: column; align-items: center; }
  .team-grid { grid-template-columns: 1fr; }
}
