:root {
  --wine: #6f2f45;
  --wine-dark: #4b1f2e;
  --wine-soft: #91566a;
  --ink: #262226;
  --muted: #6f686b;
  --cream: #f4f0eb;
  --paper: #fffdfa;
  --sand: #dfd5cc;
  --white: #fff;
  --shadow: 0 24px 70px rgba(66, 37, 46, .13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-offset: 146px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; }
section[id] { scroll-margin-top: var(--header-offset); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: .7rem 1rem;
  color: #fff;
  background: var(--wine);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.service-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,.9);
  background: var(--wine-dark);
  font-size: .83rem;
  letter-spacing: .02em;
}
.service-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.service-bar a {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}
.service-bar svg { width: 16px; fill: currentColor; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 253, 250, .97);
  border-bottom: 1px solid rgba(111,47,69,.12);
  box-shadow: 0 4px 18px rgba(60, 35, 43, .04);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.header-inner {
  position: relative;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  flex: 0 1 300px;
  min-width: 220px;
  text-decoration: none;
}
.brand img { width: 100%; height: auto; }

.navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(.9rem, 1.6vw, 1.75rem);
}
.navigation a {
  position: relative;
  padding: .45rem 0;
  color: #4f494b;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: .2rem;
  height: 2px;
  background: var(--wine);
  transition: right .22s ease;
}
.navigation a:hover,
.navigation a:focus-visible,
.navigation a[aria-current="page"] { color: var(--wine); }
.navigation a:hover::after,
.navigation a:focus-visible::after,
.navigation a[aria-current="page"]::after { right: 0; }

.menu-button {
  display: none;
  align-items: center;
  gap: .7rem;
  padding: .55rem .2rem;
  border: 0;
  color: var(--wine);
  background: transparent;
  font-weight: 750;
  cursor: pointer;
}
.menu-button__icon { width: 25px; display: grid; gap: 5px; }
.menu-button__icon i {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-button[aria-expanded="true"] .menu-button__icon i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-button__icon i:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] .menu-button__icon i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { background: var(--wine-dark); }
.slider {
  position: relative;
  height: clamp(540px, 68vh, 730px);
  min-height: 540px;
  overflow: hidden;
  outline: none;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .75s ease, visibility .75s ease;
}
.slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.slide__media,
.slide__overlay {
  position: absolute;
  inset: 0;
}
.slide__media { overflow: hidden; }
.slide__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
  transition: transform 7s linear;
}
.slide.is-active .slide__media img { transform: scale(1.075); }
.slide:nth-of-type(2) .slide__media img { object-position: 50% 38%; }
.slide:nth-of-type(3) .slide__media img { object-position: 50% 43%; }
.slide__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(38,19,26,.88) 0%, rgba(54,28,37,.68) 40%, rgba(54,28,37,.22) 72%, rgba(54,28,37,.08) 100%),
    linear-gradient(0deg, rgba(27,14,19,.24), transparent 48%);
}
.slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 4rem 5.6rem;
  color: #fff;
}
.eyebrow,
.kicker {
  margin: 0 0 1rem;
  color: var(--wine);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: #ead9df;
}
.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
}
.slide h1,
.slide h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.35rem, 6vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .98;
}
.slide__text {
  max-width: 640px;
  margin: 1.55rem 0 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 1.35vw, 1.17rem);
}
.slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2.2rem;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.45rem;
  border: 1px solid transparent;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .025em;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--light { color: var(--wine-dark); background: #fff; }
.button--light:hover { background: #f4e9ed; }
.button--outline { color: #fff; border-color: rgba(255,255,255,.58); background: rgba(255,255,255,.07); }
.button--outline:hover { border-color: #fff; background: rgba(255,255,255,.15); }
.button--primary { color: #fff; background: var(--wine); }
.button--primary:hover { background: var(--wine-dark); }
.button--secondary { color: var(--wine); border-color: rgba(111,47,69,.5); background: transparent; }
.button--secondary:hover { color: #fff; border-color: var(--wine); background: var(--wine); }

.slider-control {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  color: #fff;
  background: rgba(0,0,0,.12);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color .2s ease, border-color .2s ease;
}
.slider-control:hover,
.slider-control:focus-visible { border-color: transparent; background: rgba(111,47,69,.86); }
.slider-control svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.slider-control--previous { left: max(18px, calc((100vw - 1310px) / 2)); }
.slider-control--next { right: max(18px, calc((100vw - 1310px) / 2)); }
.slider-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}
.slider-dots button {
  width: 30px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: width .2s ease, background-color .2s ease;
}
.slider-dots button.is-active { width: 50px; background: #fff; }
.no-js .slider-control,
.no-js .slider-dots { display: none; }

.section { padding: 112px 0; }
.welcome { background: var(--paper); }
.welcome-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.section-intro h2,
.section-heading h2,
.burial-types h2,
.vorsorge h2,
.about h2,
.funeral-speaker h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.65rem, 4.7vw, 4.75rem);
  font-weight: 400;
  letter-spacing: -.038em;
  line-height: 1.04;
}
.welcome-copy {
  padding-top: 1.8rem;
  border-top: 1px solid var(--sand);
}
.welcome-copy h3 {
  margin: 0 0 1.35rem;
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.35vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
}
.welcome-copy p { margin: 0 0 1.15rem; color: var(--muted); font-size: 1.03rem; }
.welcome-copy p:last-child { margin-bottom: 0; }

.emergency { color: #fff; background: var(--wine); }
.emergency-grid {
  min-height: 250px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding-block: 44px;
}
.emergency-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
}
.emergency-icon svg { width: 28px; fill: #fff; }
.kicker--light { color: #e4cbd4; }
.emergency h2 {
  margin: 0 0 .65rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.35vw, 3.3rem);
  font-weight: 400;
  line-height: 1.1;
}
.emergency p:not(.kicker) { max-width: 720px; margin: 0; color: rgba(255,255,255,.8); }
.emergency-phone {
  min-width: 255px;
  padding: 1.2rem 0 1.2rem 1.7rem;
  border-left: 1px solid rgba(255,255,255,.24);
  color: #fff;
  text-decoration: none;
}
.emergency-phone span { display: block; color: rgba(255,255,255,.65); font-size: .73rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.emergency-phone strong { display: block; margin-top: .15rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }

.emergency-locations {
  width: min(760px, 100%);
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,.22);
}

.emergency-locations__heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .65rem;
  align-items: center;
  margin-bottom: .8rem;
}

.emergency-locations__heading .emergency-locations__pin {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
}

.emergency-locations__pin svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.emergency .emergency-locations__heading p {
  margin: 0;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.emergency-locations__heading > a {
  color: rgba(255,255,255,.78);
  font-size: .69rem;
  font-weight: 750;
  text-underline-offset: 3px;
}

.emergency-locations__grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .48rem;
  width: 100%;
}

.emergency-locations__grid article {
  min-width: 0;
  margin: 0;
  padding: .65rem .72rem;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.065);
}

.emergency-locations__grid h3 {
  margin: 0 0 .24rem;
  font-size: .76rem;
  line-height: 1.25;
}

.emergency-locations__grid h3 a {
  color: #fff;
  text-decoration: none;
}

.emergency-locations__grid h3 a:hover,
.emergency-locations__grid h3 a:focus-visible { text-decoration: underline; text-underline-offset: 3px; }

.emergency-locations__grid address {
  color: rgba(255,255,255,.67);
  font-size: .68rem;
  font-style: normal;
  line-height: 1.4;
}

.emergency-locations__phone {
  display: inline-block;
  margin-top: .3rem;
  color: #fff;
  font-size: .7rem;
  font-weight: 750;
  text-decoration: none;
}

.services { background: var(--cream); }
.section-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.section-heading > p { max-width: 500px; margin: 0 0 .4rem; color: var(--muted); font-size: 1.04rem; }
.service-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.service-card {
  position: relative;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  padding: 2.15rem;
  border: 1px solid rgba(111,47,69,.11);
  background: rgba(255,255,255,.82);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); background: #fff; }
.service-card__number { position: absolute; top: 1.65rem; right: 1.75rem; color: rgba(111,47,69,.38); font-family: var(--serif); }
.service-card__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 4rem;
  border-radius: 50%;
  color: var(--wine);
  background: #f1e6ea;
}
.service-card__icon svg { width: 27px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.45; }
.service-card h3 { margin: 0 0 .8rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.service-card p { margin: 0; color: var(--muted); }


.burial-types {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.burial-types::before {
  content: "";
  position: absolute;
  top: -210px;
  right: -170px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(111,47,69,.09);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(111,47,69,.025), 0 0 0 84px rgba(111,47,69,.018);
  pointer-events: none;
}
.burial-types__intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: end;
  margin-bottom: 4rem;
}
.burial-types__intro > p {
  max-width: 610px;
  margin: 0 0 .35rem;
  color: var(--muted);
  font-size: 1.04rem;
}
.burial-types__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.burial-type-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem 1.8rem;
  border: 1px solid rgba(111,47,69,.12);
  border-top: 3px solid var(--wine);
  background: #fff;
  box-shadow: 0 12px 35px rgba(66,37,46,.055);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.burial-type-card:hover {
  transform: translateY(-5px);
  border-color: rgba(111,47,69,.28);
  box-shadow: var(--shadow);
}
.burial-type-card__number {
  position: absolute;
  top: 1.4rem;
  right: 1.5rem;
  color: rgba(111,47,69,.34);
  font-family: var(--serif);
  font-size: .95rem;
}
.burial-type-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 50%;
  color: var(--wine);
  background: #f3e9ec;
}
.burial-type-card__icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}
.burial-type-card h3 {
  margin: 3rem 0 .75rem;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.12;
}
.burial-type-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.65;
}

.vorsorge { min-height: 680px; display: grid; grid-template-columns: 1fr 1fr; }
.vorsorge-image {
  min-height: 620px;
  background:
    linear-gradient(rgba(45,25,31,.1), rgba(45,25,31,.1)),
    url("assets/slide-friedhof.jpg") center / cover no-repeat;
}
.vorsorge-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem);
  background: #fff;
}
.vorsorge-content > p:not(.kicker) { max-width: 620px; margin: 1.7rem 0 0; color: var(--muted); font-size: 1.04rem; }
.vorsorge ul { display: grid; gap: .8rem; margin: 2rem 0 2.2rem; padding: 0; list-style: none; }
.vorsorge li { position: relative; padding-left: 2rem; color: #4f494b; }
.vorsorge li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: .72rem;
  height: .72rem;
  border: 2px solid var(--wine);
  border-radius: 50%;
}
.vorsorge .button { align-self: flex-start; }
.vorsorge-actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(4rem, 9vw, 9rem); align-items: center; }
.about blockquote { margin: 0; padding: 3.2rem; background: var(--wine); box-shadow: var(--shadow); }
.about blockquote span { display: block; width: 60px; height: 1px; background: rgba(255,255,255,.65); }
.about blockquote p { margin: 1.45rem 0 0; color: #fff; font-family: var(--serif); font-size: clamp(1.8rem, 3.05vw, 3rem); line-height: 1.26; }
.about-grid > div > p:not(.kicker) { margin: 1.55rem 0 0; color: var(--muted); font-size: 1.04rem; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.7rem; padding-top: 2rem; border-top: 1px solid var(--sand); }
.facts strong { display: block; color: var(--wine); font-family: var(--serif); font-size: 2.4rem; font-weight: 400; line-height: 1; }
.facts span { display: block; margin-top: .5rem; color: var(--muted); font-size: .82rem; line-height: 1.35; }

/* Freie Trauerrede auf der Startseite */
.funeral-speaker {
  position: relative;
  padding: clamp(76px, 8vw, 116px) 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 14%, rgba(255,255,255,.09), transparent 25%),
    linear-gradient(135deg, #2f131d 0%, #522033 58%, #6f2f45 100%);
}
.funeral-speaker::before {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255,255,255,.025), 0 0 0 144px rgba(255,255,255,.014);
  pointer-events: none;
}
.funeral-speaker__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.055);
  box-shadow: 0 34px 88px rgba(25,8,14,.34);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.funeral-speaker__portrait {
  position: relative;
  min-width: 0;
  min-height: 620px;
  margin: 0;
  background: #d8c9c1;
}
.funeral-speaker__image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.funeral-speaker__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(38,18,26,.42));
  pointer-events: none;
}
.funeral-speaker__image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.funeral-speaker__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.2rem, 6vw, 6rem);
}
.funeral-speaker__content h2 {
  max-width: 700px;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(3.15rem, 5.4vw, 5.45rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}
.funeral-speaker__content > p:not(.kicker) {
  max-width: 690px;
  margin: 1.25rem 0 0;
  color: rgba(255,255,255,.78);
  font-size: 1.03rem;
}
.funeral-speaker__content blockquote {
  max-width: 690px;
  margin: 2rem 0 0;
  padding: 1.3rem 1.45rem;
  border: 1px solid rgba(255,255,255,.16);
  border-left: 3px solid rgba(255,255,255,.72);
  color: #fff;
  background: rgba(255,255,255,.07);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.25vw, 1.9rem);
  line-height: 1.35;
}

.contact { padding: 90px 0; color: #fff; background: var(--wine-dark); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 6rem; align-items: center; }
.contact p:not(.kicker) { max-width: 550px; color: rgba(255,255,255,.75); }
.contact-options { display: grid; gap: .8rem; }
.contact-options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 1.45rem;
  border: 1px solid rgba(255,255,255,.18);
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease;
}
.contact-options a:hover,
.contact-options a:focus-visible { border-color: rgba(255,255,255,.52); background: rgba(255,255,255,.08); }
.contact-options span { color: rgba(255,255,255,.58); font-size: .75rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.contact-options strong { font-family: var(--serif); font-size: clamp(1.22rem, 2.1vw, 1.8rem); font-weight: 400; text-align: right; }


/* Imagefilm auf der Startseite */
.image-film {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.image-film::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(111,47,69,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(111,47,69,.025), 0 0 0 100px rgba(111,47,69,.018);
  pointer-events: none;
}
.image-film__intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: 3.4rem;
}
.image-film h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.65rem, 4.7vw, 4.75rem);
  font-weight: 400;
  letter-spacing: -.038em;
  line-height: 1.04;
}
.image-film__intro > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}
.image-film__player {
  position: relative;
  z-index: 1;
  aspect-ratio: 1280 / 536;
  overflow: hidden;
  border: 1px solid rgba(111,47,69,.16);
  background: #160e12;
  box-shadow: 0 30px 80px rgba(66,37,46,.2);
  isolation: isolate;
}
.image-film__player::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(23,12,17,.08), transparent 45%, rgba(23,12,17,.3));
  pointer-events: none;
  transition: opacity .25s ease;
}
.image-film__player.is-playing::after { opacity: 0; }
.image-film__player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #160e12;
}
.image-film__play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  padding: .65rem 1.15rem .65rem .65rem;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  color: #fff;
  background: rgba(39,20,27,.72);
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .035em;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease;
}
.image-film__play:hover,
.image-film__play:focus-visible {
  border-color: #fff;
  background: rgba(111,47,69,.94);
  transform: translate(-50%, -50%) scale(1.04);
}
.image-film__play[hidden] { display: none; }
.image-film__play-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--wine-dark);
  background: #fff;
}
.image-film__play-icon svg { width: 22px; fill: currentColor; transform: translateX(1px); }
.image-film__label {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  min-width: 126px;
  padding: .7rem .85rem;
  color: #fff;
  background: rgba(39,20,27,.62);
  border: 1px solid rgba(255,255,255,.28);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.image-film__label span,
.image-film__label strong { display: block; }
.image-film__label span {
  color: rgba(255,255,255,.68);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.image-film__label strong {
  margin-top: .12rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
}

.footer { padding: 68px 0 24px; color: #5e5759; background: #eee8e2; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.25fr .9fr; gap: 3rem; }
.footer-brand img { width: 270px; height: auto; mix-blend-mode: multiply; }
.footer-brand p { margin: .9rem 0 0; color: var(--wine); font-family: var(--serif); }
.footer h2 { margin: 0 0 1rem; color: var(--ink); font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.footer a,
.footer address { display: block; margin: .45rem 0; color: inherit; font-size: .9rem; font-style: normal; text-decoration: none; }
.footer a:hover { color: var(--wine); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding-top: 1.2rem; border-top: 1px solid #d6cbc1; }
.footer-bottom span,
.footer-bottom a { font-size: .8rem; }

.mobile-call { display: none; }

@media (max-width: 1120px) {
  .burial-types__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand { flex-basis: 255px; min-width: 205px; }
  .navigation { gap: .95rem; }
  .navigation a { font-size: .8rem; }
  .emergency-grid { grid-template-columns: 70px 1fr; }
  .emergency-phone { grid-column: 2; min-width: 0; width: max-content; padding: .8rem 0 0; border: 0; }
  .vorsorge-content { padding: 5rem 3.5rem; }
}

@media (max-width: 900px) {
  :root { --header-offset: 88px; }
  .container { width: min(100% - 34px, 760px); }
  .service-bar__inner > span { display: none; }
  .service-bar__inner { justify-content: center; }
  .header-inner { min-height: 86px; }
  .brand { flex-basis: 245px; min-width: 0; }
  .menu-button { display: inline-flex; }
  .navigation {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100vw;
    max-height: 0;
    display: grid;
    gap: 0;
    padding: 0 max(17px, calc((100vw - 760px) / 2));
    overflow: hidden;
    visibility: hidden;
    background: var(--paper);
    border-bottom: 1px solid rgba(111,47,69,.13);
    box-shadow: 0 18px 35px rgba(58,31,39,.12);
    transform: translateX(-50%);
    transition: max-height .25s ease, visibility .25s ease, padding .25s ease;
  }
  .navigation.is-open {
    max-height: 480px;
    padding-top: .55rem;
    padding-bottom: .8rem;
    visibility: visible;
  }
  .navigation a { padding: .78rem .2rem; border-bottom: 1px solid rgba(111,47,69,.08); font-size: .95rem; }
  .navigation a::after { display: none; }
  .slider { height: 620px; min-height: 620px; }
  .slide__overlay { background: linear-gradient(90deg, rgba(38,19,26,.88), rgba(38,19,26,.38)); }
  .slide h1, .slide h2 { font-size: clamp(3.1rem, 10vw, 5rem); }
  .slider-control { top: auto; bottom: 18px; transform: none; }
  .slider-control--previous { left: 17px; }
  .slider-control--next { right: 17px; }
  .slider-dots { bottom: 40px; }
  .section { padding: 86px 0; }
  .welcome-grid,
  .section-heading,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.8rem; }
  .funeral-speaker__panel { grid-template-columns: 1fr; min-height: 0; max-width: 720px; }
  .funeral-speaker__portrait { min-height: 0; aspect-ratio: 509 / 574; }
  .funeral-speaker__content { padding: 3.7rem; }
  .welcome-copy { padding-top: 1.5rem; }
  .section-heading { margin-bottom: 2.8rem; }
  .burial-types__intro { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.8rem; }
  .burial-types__intro > p { max-width: 680px; }
  .service-cards { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; }
  .service-card__icon { margin-bottom: 2.5rem; }
  .vorsorge { grid-template-columns: 1fr; }
  .vorsorge-image { min-height: 420px; }
  .vorsorge-content { padding: 5rem max(17px, calc((100vw - 760px) / 2)); }
  .facts { max-width: 540px; }
  .contact-grid { gap: 2rem; }
  .footer-grid { grid-template-columns: 1.5fr 1fr; }
}

@media (max-width: 560px) {
  :root { --header-offset: 78px; }
  body { padding-bottom: 66px; }
  .container { width: calc(100% - 28px); }
  .service-bar { display: none; }
  .header-inner { min-height: 78px; }
  .brand { flex-basis: 210px; }
  .menu-button > span:first-child { display: none; }
  .slider { height: min(640px, calc(100svh - 78px)); min-height: 540px; }
  .slide__media img { object-position: 62% center; }
  .slide:nth-of-type(2) .slide__media img { object-position: 58% 40%; }
  .slide:nth-of-type(3) .slide__media img { object-position: 56% center; }
  .slide__overlay { background: linear-gradient(90deg, rgba(38,19,26,.92), rgba(38,19,26,.48)); }
  .slide__content { justify-content: flex-end; padding-block: 3rem 112px; }
  .slide h1, .slide h2 { font-size: clamp(2.7rem, 13.2vw, 4.2rem); }
  .slide__text { font-size: .96rem; line-height: 1.55; }
  .slide__actions { width: 100%; display: grid; margin-top: 1.6rem; }
  .button { width: 100%; }
  .slider-control { width: 42px; height: 42px; }
  .slider-dots { bottom: 36px; }
  .section { padding: 70px 0; }
  .section-intro h2,
  .section-heading h2,
  .burial-types h2,
  .vorsorge h2,
  .about h2,
  .funeral-speaker h2,
  .contact h2 { font-size: clamp(2.35rem, 11.5vw, 3.5rem); }
  .emergency-grid { grid-template-columns: 1fr; gap: 1.1rem; padding-block: 44px; }
  .emergency-icon { width: 54px; height: 54px; }
  .emergency-phone { grid-column: 1; width: 100%; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.22); }
  .emergency-locations__heading { grid-template-columns: auto 1fr; }
  .emergency-locations__heading > a { grid-column: 2; }
  .emergency-locations__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { min-height: 0; padding: 1.6rem; }
  .service-card__icon { margin-bottom: 2rem; }
  .burial-types__grid { grid-template-columns: 1fr; }
  .burial-type-card { min-height: 0; padding: 1.65rem 1.5rem 1.55rem; }
  .burial-type-card__icon { margin-bottom: 2.5rem; }
  .burial-type-card h3 { margin-top: 0; }
  .vorsorge-image { min-height: 330px; }
  .vorsorge-content { padding: 4rem 14px; }
  .vorsorge-actions { width: 100%; }
  .vorsorge-actions .button { width: 100%; }
  .about blockquote { padding: 2rem; }
  .funeral-speaker { padding: 56px 0; }
  .funeral-speaker::before { display: none; }
  .funeral-speaker__panel { width: 100%; border: 0; }
  .funeral-speaker__portrait { display: grid; aspect-ratio: auto; background: #fff; }
  .funeral-speaker__image-wrap { position: relative; aspect-ratio: 509 / 574; }
  .funeral-speaker__content { padding: 2.35rem 1.3rem 2.65rem; }
  .funeral-speaker__content h2 { font-size: clamp(2.55rem, 12.5vw, 3.7rem); overflow-wrap: anywhere; }
  .funeral-speaker__content > p:not(.kicker) { font-size: .98rem; }
  .funeral-speaker__content blockquote { margin-top: 1.65rem; padding: 1.05rem 1rem; font-size: clamp(1.25rem, 6.2vw, 1.65rem); }
  .facts { grid-template-columns: 1fr; gap: 1rem; }
  .facts div { display: grid; grid-template-columns: 78px 1fr; align-items: center; gap: 1rem; }
  .facts span { margin: 0; }
  .contact { padding: 70px 0; }
  .contact-options a { align-items: flex-start; flex-direction: column; gap: .3rem; }
  .contact-options strong { text-align: left; overflow-wrap: anywhere; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.1rem; }
  .footer-brand img { width: 245px; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
  .mobile-call {
    position: fixed;
    z-index: 110;
    left: 0;
    right: 0;
    bottom: 0;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    color: #fff;
    background: var(--wine);
    box-shadow: 0 -10px 25px rgba(64,27,39,.18);
    font-weight: 800;
    text-decoration: none;
  }
  .mobile-call svg { width: 21px; fill: currentColor; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .slide__media img { transform: none !important; }
}

/* Standorte-Unterseite */
.page-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--wine-dark);
}
.page-hero__media,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}
.page-hero--locations .page-hero__media {
  background: url("assets/slide-friedhof.jpg") center 48% / cover no-repeat;
  transform: scale(1.025);
}
.page-hero__overlay {
  background:
    linear-gradient(90deg, rgba(38,19,26,.92) 0%, rgba(50,25,34,.68) 48%, rgba(50,25,34,.26) 100%),
    linear-gradient(0deg, rgba(30,15,21,.4), transparent 58%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  padding-block: 84px 76px;
}
.page-hero h1 {
  max-width: 820px;
  margin: .25rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 6.4rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}
.page-hero__content > p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.locations-contact {
  padding: 48px 0;
  color: #fff;
  background: var(--wine);
}
.locations-contact__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}
.locations-contact h2 {
  margin: .2rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  font-weight: 400;
  line-height: 1.08;
}
.locations-contact__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,.2);
}
.locations-contact__links a {
  min-width: 0;
  padding: 1rem 1.15rem;
  text-decoration: none;
  transition: background-color .2s ease;
}
.locations-contact__links a + a { border-left: 1px solid rgba(255,255,255,.2); }
.locations-contact__links a:hover,
.locations-contact__links a:focus-visible { background: rgba(255,255,255,.09); }
.locations-contact__links span,
.locations-contact__links strong { display: block; }
.locations-contact__links span {
  margin-bottom: .25rem;
  color: rgba(255,255,255,.62);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.locations-contact__links strong {
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: clamp(.95rem, 1.35vw, 1.2rem);
  font-weight: 400;
  line-height: 1.3;
}

.locations { background: var(--cream); }
.locations-intro {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: clamp(2rem, 7vw, 7.5rem);
  align-items: end;
  margin-bottom: 4rem;
}
.locations-intro h2 {
  margin: .3rem 0 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.3vw, 5.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.04em;
}
.locations-intro > p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
}
.locations-grid { display: grid; gap: 2rem; }
.location-card {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
  min-height: 420px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.location-card:nth-child(even) { grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); }
.location-card:nth-child(even) .location-card__map { order: 2; }
.location-card__map { min-height: 420px; background: #ddd4cc; }
.location-card__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(.72) contrast(.96);
}
.location-card__body {
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 3.5rem);
}
.location-card__heading {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid #e4dbd3;
}
.location-card__number {
  flex: 0 0 auto;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--wine);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.location-card h2 {
  margin: .12rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.3vw, 3.35rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.035em;
}
.location-card__since {
  display: inline-flex;
  align-items: center;
  margin-top: .78rem;
  padding: .48rem .78rem;
  border: 1px solid rgba(111, 47, 69, .24);
  border-radius: 999px;
  color: var(--wine);
  background: rgba(111, 47, 69, .08);
  box-shadow: 0 7px 18px rgba(76, 38, 50, .08);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.location-card__details {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 2rem;
  padding: 1.8rem 0 2rem;
}
.location-card__details h3 {
  margin: 0 0 .55rem;
  color: var(--wine);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.location-card__details p,
.location-card__details address {
  margin: 0;
  color: #514b4d;
  font-size: .96rem;
  font-style: normal;
  line-height: 1.65;
}
.location-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  margin-top: auto;
}
.location-card__actions .button { min-height: 48px; padding: .78rem 1.15rem; font-size: .8rem; }
.text-link {
  color: var(--wine);
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span,
.text-link:focus-visible span { transform: translateX(4px); }

@media (max-width: 1120px) {
  .location-card,
  .location-card:nth-child(even) { grid-template-columns: minmax(320px, .86fr) minmax(0, 1.14fr); }
  .location-card:nth-child(even) .location-card__map { order: 0; }
  .locations-contact__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 900px) {
  .page-hero { min-height: 420px; }
  .page-hero__content { padding-block: 72px 62px; }
  .locations-intro { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.8rem; }
  .location-card,
  .location-card:nth-child(even) { grid-template-columns: 1fr; }
  .location-card:nth-child(even) .location-card__map { order: 0; }
  .location-card__map,
  .location-card__map iframe { min-height: 340px; }
}

@media (max-width: 680px) {
  .locations-contact__links { grid-template-columns: 1fr; }
  .locations-contact__links a + a { border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
}

@media (max-width: 560px) {
  .page-hero { min-height: 360px; }
  .page-hero--locations .page-hero__media { background-position: 61% center; }
  .page-hero__content { padding-block: 56px 48px; }
  .page-hero h1 { font-size: clamp(3rem, 15vw, 4.45rem); }
  .locations-contact { padding: 40px 0; }
  .locations-intro h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .locations-grid { gap: 1.4rem; }
  .location-card__map,
  .location-card__map iframe { min-height: 285px; }
  .location-card__body { padding: 1.55rem 1.35rem 1.65rem; }
  .location-card__heading { gap: .8rem; padding-bottom: 1.4rem; }
  .location-card__since { margin-top: .65rem; padding: .43rem .68rem; font-size: .7rem; }
  .location-card__number { width: 36px; height: 36px; }
  .location-card__details { grid-template-columns: 1fr; gap: 1.3rem; padding: 1.45rem 0 1.65rem; }
  .location-card__actions { align-items: stretch; flex-direction: column; gap: 1rem; }
  .location-card__actions .button { width: 100%; }
  .text-link { align-self: flex-start; }
}

/* Gedenkportal-Unterseite */
.page-hero--memorial .page-hero__media {
  background: url("assets/slide-friedhof.jpg") center 43% / cover no-repeat;
  transform: scale(1.025);
}

.memorial-intro { background: var(--paper); }
.memorial-intro__grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.memorial-intro h2,
.memorial-portal h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.65rem, 4.7vw, 4.75rem);
  font-weight: 400;
  letter-spacing: -.038em;
  line-height: 1.04;
}
.memorial-intro__copy {
  padding-top: 1.8rem;
  border-top: 1px solid var(--sand);
}
.memorial-intro__copy p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 1.03rem;
}
.memorial-intro__copy p:last-child { margin-bottom: 0; }

.memorial-portal {
  overflow: hidden;
  background: var(--cream);
}
.memorial-portal__heading {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: 3.5rem;
}
.memorial-portal__heading > p {
  max-width: 560px;
  margin: 0 0 .35rem;
  color: var(--muted);
}
.memorial-feed-shell {
  min-height: 430px;
  padding: clamp(1rem, 2.6vw, 2rem);
  overflow-x: clip;
  border: 1px solid rgba(111,47,69,.12);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.memorial-feed {
  min-width: 0;
  min-height: 360px;
  overflow-x: clip;
}
.memorial-feed:empty {
  display: grid !important;
  place-items: center;
}
.memorial-feed:empty::before {
  content: "Gedenkseiten werden geladen …";
  display: block;
  padding: 2rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  text-align: center;
}
.memorial-feed.has-load-error:empty::before {
  content: "Das Gedenkportal konnte nicht geladen werden. Bitte prüfen Sie Ihre Internetverbindung oder versuchen Sie es später erneut.";
  max-width: 720px;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
}
.memorial-feed__message {
  margin: 0;
  padding: 2rem;
  color: var(--muted);
  text-align: center;
}
.memorial-privacy-note {
  max-width: 900px;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6;
}
.memorial-privacy-note a { color: var(--wine); font-weight: 700; }

/* Acht Navigationspunkte passen auf kompakten Displays besser in das Menü. */
@media (max-width: 1080px) and (min-width: 901px) {
  .menu-button { display: inline-flex; }
  .navigation {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100vw;
    max-height: 0;
    display: grid;
    gap: 0;
    padding: 0 max(24px, calc((100vw - 980px) / 2));
    overflow: hidden;
    visibility: hidden;
    background: var(--paper);
    border-bottom: 1px solid rgba(111,47,69,.13);
    box-shadow: 0 18px 35px rgba(58,31,39,.12);
    transform: translateX(-50%);
    transition: max-height .25s ease, visibility .25s ease, padding .25s ease;
  }
  .navigation.is-open {
    max-height: 560px;
    padding-top: .55rem;
    padding-bottom: .8rem;
    visibility: visible;
  }
  .navigation a {
    padding: .72rem .2rem;
    border-bottom: 1px solid rgba(111,47,69,.08);
    font-size: .92rem;
  }
  .navigation a::after { display: none; }
}

@media (max-width: 900px) {
  .memorial-intro__grid,
  .memorial-portal__heading { grid-template-columns: 1fr; gap: 2.4rem; }
  .memorial-portal__heading { margin-bottom: 2.8rem; }
}

@media (max-width: 560px) {
  .memorial-intro h2,
  .memorial-portal h2 { font-size: clamp(2.35rem, 11.5vw, 3.5rem); }
  .memorial-feed-shell {
    width: 100vw;
    min-height: 360px;
    padding: 10px;
    margin-left: calc(50% - 50vw);
  }
  .memorial-feed { min-height: 320px; }
  .memorial-privacy-note { font-size: .78rem; }
}



/* Datenschutzfreundliche Zwei-Klick-Einbindungen */
.embed-consent {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: grid;
  place-items: center;
  padding: clamp(1.4rem, 4vw, 2.6rem);
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 15%, rgba(111,47,69,.11), transparent 34%),
    linear-gradient(135deg, #eee7e0, #ddd3cb);
  text-align: center;
}
.embed-consent__inner { max-width: 440px; }
.embed-consent__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  color: #fff;
  background: var(--wine);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(75,31,46,.2);
}
.embed-consent__icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.embed-consent__eyebrow {
  margin: 0 0 .35rem;
  color: var(--wine);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.embed-consent h3 {
  margin: 0 0 .65rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.1;
}
.embed-consent p:not(.embed-consent__eyebrow) {
  margin: 0 auto 1.15rem;
  color: #5f575a;
  font-size: .88rem;
  line-height: 1.6;
}
.embed-consent .button { min-height: 46px; padding: .72rem 1.1rem; font-size: .76rem; }
.embed-consent__privacy {
  display: block;
  margin-top: .8rem;
  color: var(--wine);
  font-size: .76rem;
  font-weight: 750;
}
.memorial-consent { min-height: 360px; }

/* Rechtliche Unterseiten */
.page-hero--legal .page-hero__media {
  background: url("assets/slide-friedhof.jpg") center 46% / cover no-repeat;
  transform: scale(1.025);
}
.legal-page { background: var(--cream); }
.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: calc(var(--header-offset) + 24px);
  display: grid;
  padding: 1.5rem;
  background: var(--paper);
  border-top: 4px solid var(--wine);
  box-shadow: 0 14px 42px rgba(66,37,46,.09);
}
.legal-toc .kicker { margin-bottom: .65rem; }
.legal-toc a {
  padding: .72rem 0;
  color: #514b4d;
  border-bottom: 1px solid #e7dfd8;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}
.legal-toc a:last-child { border-bottom: 0; }
.legal-toc a:hover,
.legal-toc a:focus-visible { color: var(--wine); }
.legal-content {
  min-width: 0;
  padding: clamp(2rem, 5vw, 4.4rem);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.legal-updated {
  display: inline-block;
  margin: 0 0 2.6rem;
  padding: .45rem .75rem;
  color: var(--wine);
  background: rgba(111,47,69,.08);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .05em;
}
.legal-content section {
  padding-bottom: 2.8rem;
  margin-bottom: 2.8rem;
  border-bottom: 1px solid #e5ddd6;
  scroll-margin-top: var(--header-offset);
}
.legal-content section:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.legal-content h2 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.legal-content p { margin: 0 0 1rem; color: #514b4d; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content address {
  margin: 0 0 1.25rem;
  color: #3f393b;
  font-style: normal;
  line-height: 1.8;
}
.legal-content a { color: var(--wine); font-weight: 700; overflow-wrap: anywhere; }
.legal-content code {
  padding: .12rem .35rem;
  color: var(--wine-dark);
  background: #eee8e3;
  border-radius: 3px;
  font-size: .88em;
  overflow-wrap: anywhere;
}
.legal-data { display: grid; gap: 0; margin: 1.5rem 0 0; }
.legal-data > div {
  display: grid;
  grid-template-columns: minmax(150px, .45fr) minmax(0, 1fr);
  gap: 1.2rem;
  padding: .85rem 0;
  border-top: 1px solid #e8e0d9;
}
.legal-data dt {
  color: #fff;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.legal-data dd { margin: 0; color: #4b4547; }

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .legal-toc { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-toc .kicker { grid-column: 1 / -1; }
  .legal-toc a:nth-last-child(2) { border-bottom: 0; }
}

@media (max-width: 560px) {
  .legal-toc { grid-template-columns: 1fr; padding: 1.25rem; }
  .legal-toc a:nth-last-child(2) { border-bottom: 1px solid #e7dfd8; }
  .legal-content { width: 100vw; margin-left: calc(50% - 50vw); padding: 2rem 24px; box-shadow: none; }
  .legal-data > div { grid-template-columns: 1fr; gap: .25rem; }
  .embed-consent { padding: 1.3rem; }
  .embed-consent__icon { width: 50px; height: 50px; }
}

.memorial-feed[hidden] { display: none !important; }


@media (max-width: 900px) {
  .image-film__intro { grid-template-columns: 1fr; gap: 1.4rem; margin-bottom: 2.6rem; }
  .image-film__intro > p { max-width: 680px; }
}

@media (max-width: 560px) {
  /* Mobile-Korrektur: Überschrift im Über-uns-Bereich */
  .about-grid,
  .about-grid > *,
  .about-grid > div { min-width: 0; max-width: 100%; }
  .about h2 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.75rem);
    letter-spacing: -.025em;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .image-film::before { display: none; }
  .image-film h2 { font-size: clamp(2.25rem, 10.5vw, 3.2rem); }
  .image-film__intro { margin-bottom: 2rem; }
  .image-film__player { aspect-ratio: 16 / 9; }
  .image-film__play { gap: .65rem; padding: .48rem .9rem .48rem .48rem; white-space: nowrap; }
  .image-film__play-icon { width: 42px; height: 42px; }
  .image-film__label { top: 12px; right: 12px; min-width: 0; padding: .5rem .65rem; }
  .image-film__label strong { font-size: .9rem; }
}

/* Erste Hilfe im Trauerfall */
.emergency-copy { min-width: 0; }
.emergency-help-button {
  width: fit-content;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.25rem;
  padding: .82rem 1.15rem;
  border: 1px solid rgba(255,255,255,.65);
  color: var(--wine-dark);
  background: #fff;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .015em;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(35,12,20,.18);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.emergency-help-button:hover,
.emergency-help-button:focus-visible {
  background: #f8f1f3;
  box-shadow: 0 16px 38px rgba(35,12,20,.25);
  transform: translateY(-2px);
}
.emergency-help-button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.first-aid-hero {
  position: relative;
  min-height: clamp(560px, 70vh, 720px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--wine-dark);
}
.first-aid-hero__media,
.first-aid-hero__overlay { position: absolute; inset: 0; }
.first-aid-hero__media {
  background: url("assets/slide-friedhof.jpg") 64% center / cover no-repeat;
  transform: scale(1.025);
}
.first-aid-hero__overlay {
  background:
    linear-gradient(90deg, rgba(37,14,22,.94) 0%, rgba(61,23,37,.84) 42%, rgba(52,24,34,.46) 72%, rgba(34,15,22,.25) 100%),
    linear-gradient(0deg, rgba(29,10,17,.22), transparent 52%);
}
.first-aid-hero__content {
  position: relative;
  z-index: 1;
  padding-block: clamp(5rem, 9vw, 8rem);
}
.first-aid-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 8.7vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .92;
}
.first-aid-hero__content > p:not(.eyebrow) {
  max-width: 720px;
  margin: 1.7rem 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}
.first-aid-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2.2rem;
}

.first-aid-intro { background: var(--paper); }
.first-aid-intro__grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.first-aid-intro h2,
.first-aid-steps h2,
.first-aid-documents h2,
.first-aid-trust h2,
.first-aid-final-call h2,
.first-aid-hotline h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.65rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -.043em;
  line-height: 1.02;
}
.first-aid-intro__grid > div:last-child {
  padding-top: 1.6rem;
  border-top: 1px solid var(--sand);
}
.first-aid-intro__grid > div:last-child p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 1.05rem;
}
.first-aid-intro__grid > div:last-child p:last-child { margin-bottom: 0; }

.first-aid-hotline {
  padding: 34px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--wine-dark), var(--wine));
}
.first-aid-hotline__panel {
  display: grid;
  grid-template-columns: 145px 1fr auto;
  gap: 2.2rem;
  align-items: center;
  padding: 2.1rem 2.3rem;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.055);
  box-shadow: 0 24px 60px rgba(31,10,17,.25);
}
.first-aid-hotline__emoji {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  font-size: 4.4rem;
  line-height: 1;
  filter: grayscale(.12);
}
.first-aid-hotline h2 { margin-bottom: .65rem; font-size: clamp(2.3rem, 4vw, 4rem); }
.first-aid-hotline__copy > p:not(.kicker) { max-width: 650px; margin: 0; color: rgba(255,255,255,.78); }
.first-aid-hotline__number {
  min-width: 270px;
  padding: 1.25rem 0 1.25rem 1.8rem;
  border-left: 1px solid rgba(255,255,255,.24);
  color: #fff;
  text-decoration: none;
}
.first-aid-hotline__number span,
.first-aid-hotline__number small {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.first-aid-hotline__number strong {
  display: block;
  margin: .15rem 0 .25rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.1;
}

.first-aid-steps { background: var(--cream); }
.first-aid-heading { margin-bottom: 3.3rem; }
.first-aid-scenarios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.first-aid-scenario {
  position: relative;
  min-height: 340px;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 1.3rem;
  padding: 2.2rem;
  border: 1px solid rgba(111,47,69,.14);
  border-top: 4px solid var(--wine);
  background: #fff;
  box-shadow: 0 16px 42px rgba(66,37,46,.07);
}
.first-aid-scenario__letter {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--wine);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.75rem;
}
.first-aid-scenario h3,
.first-aid-id-note h3 {
  margin: 0 0 .8rem;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.12;
}
.first-aid-scenario p:not(.kicker) { margin: 0; color: var(--muted); }
.first-aid-inline-phone {
  display: inline-block;
  margin-top: 1.15rem;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 2.1rem;
  text-decoration: none;
}
.first-aid-id-note {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1.65rem 2rem;
  color: #fff;
  background: var(--wine-dark);
}
.first-aid-id-note__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
}
.first-aid-id-note__icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.first-aid-id-note h3 { margin-bottom: .25rem; font-size: 1.7rem; }
.first-aid-id-note p { margin: 0; color: rgba(255,255,255,.76); }

.first-aid-documents { background: #fff; }
.first-aid-documents__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.first-aid-documents__intro {
  position: sticky;
  top: calc(var(--header-offset) + 34px);
}
.first-aid-documents__intro > p:not(.kicker) { margin: 1.5rem 0 0; color: var(--muted); }
.first-aid-checklist {
  display: grid;
  gap: .8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.first-aid-checklist li {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 1rem 1.15rem 1rem 3.5rem;
  border: 1px solid rgba(111,47,69,.12);
  background: var(--paper);
  color: #4d4649;
  box-shadow: 0 8px 26px rgba(66,37,46,.035);
}
.first-aid-checklist li::before {
  content: "✓";
  position: absolute;
  left: 1.1rem;
  top: 50%;
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--wine);
  font-size: .85rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.first-aid-trust {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(135deg, #2f131d, #5b2439 68%, #6f2f45);
}
.first-aid-trust::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -270px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,.02), 0 0 0 160px rgba(255,255,255,.012);
  pointer-events: none;
}
.first-aid-trust__intro,
.first-aid-service-list { position: relative; z-index: 1; }
.first-aid-trust__intro {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: 3.2rem;
}
.first-aid-trust h2 { color: #fff; }
.first-aid-trust__intro > p { margin: 0 0 .4rem; color: rgba(255,255,255,.76); }
.first-aid-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.18);
  border-left: 1px solid rgba(255,255,255,.18);
}
.first-aid-service-list div {
  position: relative;
  min-height: 84px;
  display: flex;
  align-items: center;
  padding: 1.15rem 1.25rem 1.15rem 3.4rem;
  border-right: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
}
.first-aid-service-list div::before {
  content: "";
  position: absolute;
  left: 1.3rem;
  width: .72rem;
  height: .72rem;
  border: 2px solid #e5cbd4;
  border-radius: 50%;
}

.first-aid-final-call {
  padding: clamp(4rem, 7vw, 6rem) 0;
  color: #fff;
  background: var(--wine);
}
.first-aid-final-call__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.first-aid-final-call h2 { max-width: 760px; margin-bottom: .8rem; color: #fff; font-size: clamp(2.6rem, 4.7vw, 4.5rem); }
.first-aid-final-call p:not(.kicker) { max-width: 680px; margin: 0; color: rgba(255,255,255,.78); }
.first-aid-final-call__grid > a {
  min-width: 280px;
  padding: 1.3rem 1.5rem;
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
  background: rgba(255,255,255,.075);
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.first-aid-final-call__grid > a:hover,
.first-aid-final-call__grid > a:focus-visible { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.first-aid-final-call__grid > a span { display: block; color: rgba(255,255,255,.66); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.first-aid-final-call__grid > a strong { display: block; margin-top: .2rem; font-family: var(--serif); font-size: 2.25rem; font-weight: 400; }

@media (max-width: 1120px) {
  .emergency-help-button { margin-top: 1rem; }
  .first-aid-hotline__panel { grid-template-columns: 112px 1fr; }
  .first-aid-hotline__emoji { width: 96px; height: 96px; font-size: 3.5rem; }
  .first-aid-hotline__number { grid-column: 2; min-width: 0; width: fit-content; padding: .8rem 0 0; border: 0; }
}

@media (max-width: 900px) {
  .first-aid-intro__grid,
  .first-aid-documents__grid,
  .first-aid-trust__intro,
  .first-aid-final-call__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .first-aid-scenarios { grid-template-columns: 1fr; }
  .first-aid-documents__intro { position: static; }
  .first-aid-service-list { grid-template-columns: 1fr; }
  .first-aid-final-call__grid > a { width: fit-content; }
}

@media (max-width: 560px) {
  .emergency-help-button { width: 100%; min-height: 56px; }
  .first-aid-hero { min-height: 600px; }
  .first-aid-hero__media { background-position: 62% center; }
  .first-aid-hero h1 { font-size: clamp(3.1rem, 15vw, 4.8rem); }
  .first-aid-hero__content { display: flex; flex-direction: column; justify-content: flex-end; min-height: 600px; padding-block: 3rem 4rem; }
  .first-aid-hero__actions { display: grid; width: 100%; }
  .first-aid-intro h2,
  .first-aid-steps h2,
  .first-aid-documents h2,
  .first-aid-trust h2,
  .first-aid-final-call h2,
  .first-aid-hotline h2 { font-size: clamp(2.35rem, 11vw, 3.5rem); }
  .first-aid-hotline { padding: 22px 0; }
  .first-aid-hotline__panel { grid-template-columns: 1fr; gap: 1.3rem; padding: 1.4rem; }
  .first-aid-hotline__emoji { width: 78px; height: 78px; font-size: 2.75rem; }
  .first-aid-hotline__number { grid-column: 1; width: 100%; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.22); }
  .first-aid-scenario { min-height: 0; grid-template-columns: 1fr; padding: 1.5rem; }
  .first-aid-scenario__letter { width: 50px; height: 50px; font-size: 1.45rem; }
  .first-aid-id-note { grid-template-columns: 1fr; padding: 1.4rem; }
  .first-aid-checklist li { padding-right: .9rem; font-size: .94rem; }
  .first-aid-service-list div { min-height: 74px; padding-right: .9rem; font-size: .94rem; }
  .first-aid-final-call__grid > a { width: 100%; min-width: 0; }
}

/* =========================================================
   Särge, Urnen & Trauerfeier – Unterseite und Startseiten-CTA
   ========================================================= */
.welcome-details-button {
  position: relative;
  min-height: 112px;
  display: grid;
  grid-template-columns: 58px 1fr 28px;
  gap: 1.15rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(111,47,69,.18);
  color: var(--wine-dark);
  background: linear-gradient(135deg, #fff, #f2e9ed);
  box-shadow: 0 16px 35px rgba(72,39,51,.09);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.welcome-details-button::after {
  content: "";
  position: absolute;
  right: -46px;
  top: -64px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(111,47,69,.09);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(111,47,69,.035);
}
.welcome-details-button:hover,
.welcome-details-button:focus-visible {
  border-color: rgba(111,47,69,.42);
  box-shadow: 0 22px 46px rgba(72,39,51,.15);
  transform: translateY(-3px);
}
.welcome-details-button__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--wine);
  border-radius: 50%;
}
.welcome-details-button__icon svg,
.welcome-details-button__arrow {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.welcome-details-button__copy { min-width: 0; display: grid; gap: .18rem; }
.welcome-details-button__copy small {
  color: var(--muted);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.welcome-details-button__copy strong {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
}
.welcome-details-button__copy > span:last-child { color: var(--wine); font-size: .78rem; font-weight: 800; }
.welcome-details-button__arrow { position: relative; z-index: 1; color: var(--wine); }
.welcome-details-button--locations { margin-top: .85rem; }

.selection-hero {
  position: relative;
  min-height: clamp(520px, 70vh, 720px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.11), transparent 26%),
    linear-gradient(135deg, #2f131d 0%, #5b2439 62%, #7b3950 100%);
}
.selection-hero::before,
.selection-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  pointer-events: none;
}
.selection-hero::before { width: 520px; height: 520px; right: -110px; top: -170px; box-shadow: 0 0 0 80px rgba(255,255,255,.025); }
.selection-hero::after { width: 340px; height: 340px; left: -130px; bottom: -190px; box-shadow: 0 0 0 65px rgba(255,255,255,.018); }
.selection-hero__inner { position: relative; z-index: 1; padding-block: 6rem; }
.selection-hero h1 {
  max-width: 960px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .94;
}
.selection-hero__inner > p:not(.eyebrow) { max-width: 720px; margin: 1.7rem 0 0; color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.5vw, 1.18rem); }
.selection-hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.35rem; }

.selection-product { background: var(--paper); }
.selection-product--reverse { background: #f3eee9; }
.selection-product__grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
  gap: clamp(3rem, 7vw, 7.5rem);
  align-items: center;
}
.selection-product--reverse .selection-product__media { order: 2; }
.selection-product--reverse .selection-product__copy { order: 1; }
.selection-product__media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #e9e4df;
  box-shadow: 0 28px 64px rgba(55,31,40,.15);
}
.selection-product__media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.55);
  pointer-events: none;
}
.selection-product__media--coffin { aspect-ratio: 4 / 3; }
.selection-product__media--coffin img { width: 100%; height: 100%; object-fit: cover; }
.selection-product__media--urn { min-height: 620px; display: grid; place-items: center; background: #eeeae6; }
.selection-product__media--urn img { width: 100%; height: 100%; max-height: 720px; object-fit: contain; }
.selection-product__copy h2,
.selection-ceremony h2,
.selection-final-call h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 6vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}
.selection-product__copy > p:not(.kicker) { margin: 1.15rem 0 0; color: var(--muted); font-size: 1.02rem; }
.selection-product__copy .button { margin-top: 1.8rem; }
.selection-inline-phone {
  display: inline-flex;
  flex-direction: column;
  margin-top: 1.8rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--wine);
  color: var(--wine-dark);
  background: rgba(255,255,255,.72);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.selection-inline-phone:hover,
.selection-inline-phone:focus-visible { background: #fff; transform: translateX(4px); }
.selection-inline-phone span { color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.selection-inline-phone strong { margin-top: .2rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }

.selection-ceremony {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #2f131d, #5b2439 68%, #6f2f45);
}
.selection-ceremony::after {
  content: "";
  position: absolute;
  right: -210px;
  bottom: -280px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,.02), 0 0 0 160px rgba(255,255,255,.012);
}
.selection-ceremony__intro,
.selection-ceremony__grid { position: relative; z-index: 1; }
.selection-ceremony__intro {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: 3.3rem;
}
.selection-ceremony h2 { color: #fff; }
.selection-ceremony__intro > p { margin: 0 0 .3rem; color: rgba(255,255,255,.76); font-size: 1.03rem; }
.selection-ceremony__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); }
.selection-ceremony__card { min-height: 330px; padding: clamp(2rem, 4vw, 3.5rem); background: rgba(255,255,255,.06); }
.selection-ceremony__card--light { color: var(--wine-dark); background: #f4efeb; }
.selection-ceremony__icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 2.2rem; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; }
.selection-ceremony__card--light .selection-ceremony__icon { border-color: rgba(111,47,69,.25); color: var(--wine); }
.selection-ceremony__icon svg { width: 30px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.selection-ceremony__card h3 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.3vw, 3rem); font-weight: 400; }
.selection-ceremony__card p { margin: 1rem 0 0; color: rgba(255,255,255,.75); }
.selection-ceremony__card--light p { color: var(--muted); }

.selection-final-call { padding: clamp(4.2rem, 8vw, 7rem) 0; color: #fff; background: var(--wine); }
.selection-final-call__grid { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.selection-final-call h2 { max-width: 820px; color: #fff; }
.selection-final-call p:not(.kicker) { max-width: 680px; margin: 1rem 0 0; color: rgba(255,255,255,.77); }
.selection-final-call__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .8rem; }

@media (max-width: 900px) {
  .selection-product__grid,
  .selection-ceremony__intro,
  .selection-final-call__grid { grid-template-columns: 1fr; }
  .selection-product--reverse .selection-product__media,
  .selection-product--reverse .selection-product__copy { order: initial; }
  .selection-product__media--urn { min-height: 0; }
  .selection-product__media--urn img { max-height: 680px; }
  .selection-ceremony__grid { grid-template-columns: 1fr; }
  .selection-final-call__actions { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .welcome-details-button { grid-template-columns: 48px 1fr 22px; gap: .8rem; min-height: 100px; padding: 1rem; }
  .welcome-details-button__icon { width: 48px; height: 48px; }
  .welcome-details-button__copy strong { font-size: 1.35rem; }
  .selection-hero { min-height: 580px; }
  .selection-hero__inner { display: flex; min-height: 580px; flex-direction: column; justify-content: flex-end; padding-block: 3rem 4rem; }
  .selection-hero h1 { font-size: clamp(3.25rem, 15vw, 4.9rem); }
  .selection-hero__actions { display: grid; width: 100%; }
  .selection-product__grid { gap: 2.4rem; }
  .selection-product__media--coffin { aspect-ratio: 1.18 / 1; }
  .selection-product__media--urn img { max-height: 560px; }
  .selection-product__copy h2,
  .selection-ceremony h2,
  .selection-final-call h2 { font-size: clamp(2.8rem, 13vw, 4.1rem); }
  .selection-product__copy > p:not(.kicker) { font-size: .96rem; }
  .selection-product__copy .button,
  .selection-inline-phone { width: 100%; }
  .selection-ceremony__intro { gap: 1.5rem; }
  .selection-ceremony__card { min-height: 0; padding: 1.6rem; }
  .selection-final-call__actions { display: grid; width: 100%; }
}


/* Social-Media-Verlinkung im öffentlichen Footer */
.footer-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2.4rem;
  padding: 1.25rem 0 1.7rem;
  border-top: 1px solid #d6cbc1;
}
.footer-social__intro { max-width: 25rem; }
.footer-social__intro > span {
  display: block;
  margin-bottom: .25rem;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-social__intro p { margin: 0; color: #5e5759; font-size: .88rem; }
.footer-social__links { display: flex; flex-wrap: wrap; gap: .75rem; }
.footer .footer-social__link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 2.7rem;
  padding: .72rem .95rem;
  color: var(--wine);
  background: #fff;
  border: 1px solid rgba(111,47,69,.18);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(49,33,40,.07);
  text-decoration: none;
  transition: background .2s ease, transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.footer .footer-social__link svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer .footer-social__link svg path:first-child:not(.footer-social__play) { fill: currentColor; stroke: none; }
.footer .footer-social__link svg .footer-social__play { fill: #fff; stroke: none; }
.footer .footer-social__link svg .footer-social__dot { fill: currentColor; stroke: none; }
.footer .footer-social__link:hover,
.footer .footer-social__link:focus-visible {
  color: #fff;
  background: var(--wine);
  border-color: var(--wine);
  box-shadow: 0 12px 28px rgba(111,47,69,.2);
  transform: translateY(-1px);
}
.footer-social + .footer-bottom { margin-top: 0; }
@media (max-width: 760px) {
  .footer-social { align-items: stretch; flex-direction: column; }
  .footer-social__links { flex-direction: column; }
  .footer .footer-social__link { justify-content: center; width: 100%; }
}
@media (max-width: 440px) {
  .footer-social__links { gap: .55rem; }
  .footer .footer-social__link { min-height: 2.55rem; padding: .68rem .82rem; }
}


/* Trauerdruck CTA auf der Startseite */
.service-print-cta {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 1.35rem;
  align-items: center;
  margin-top: 1.45rem;
  padding: clamp(1.15rem, 2.7vw, 1.75rem);
  border: 1px solid rgba(111,47,69,.16);
  border-radius: 1.45rem;
  background: linear-gradient(135deg, #fff, #f7efe9);
  box-shadow: 0 16px 42px rgba(49,33,40,.08);
  overflow: hidden;
}
.service-print-cta::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -110px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 1px solid rgba(111,47,69,.12);
  box-shadow: 0 0 0 36px rgba(111,47,69,.035);
  pointer-events: none;
}
.service-print-cta__icon {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--wine);
  box-shadow: 0 16px 30px rgba(111,47,69,.22);
}
.service-print-cta__icon svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.service-print-cta__copy { position: relative; z-index: 1; min-width: 0; }
.service-print-cta__copy .kicker { margin-bottom: .25rem; }
.service-print-cta__copy h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.45rem); font-weight: 400; color: var(--wine-dark); line-height: 1.08; }
.service-print-cta__copy p:not(.kicker) { margin: .55rem 0 0; color: var(--muted); }
.service-print-cta .button { position: relative; z-index: 1; white-space: nowrap; }

/* Unterseite Trauerdruck */
.page-trauerdruck .print-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  color: #fff;
  background: #21151b;
  overflow: hidden;
}
.print-hero__media,
.print-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.print-hero__media img { object-fit: cover; object-position: center 52%; }
.print-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(32,18,25,.86) 0%, rgba(32,18,25,.62) 46%, rgba(32,18,25,.18) 100%); }
.print-hero__inner { position: relative; z-index: 1; padding: 7.5rem 0 4.4rem; max-width: 48rem; }
.print-hero h1 { margin: 0 0 1rem; font-family: var(--serif); font-size: clamp(2.7rem, 6vw, 5.4rem); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
.print-hero p:not(.kicker) { max-width: 40rem; margin: 0; color: rgba(255,255,255,.84); font-size: 1.08rem; }
.print-hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.65rem; }
.print-intro { background: var(--paper); }
.print-intro__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.4rem, 7vw, 6rem); align-items: start; }
.print-intro__statement { padding: clamp(1.4rem, 3vw, 2.2rem); border-left: 4px solid var(--wine); background: #fff; box-shadow: 0 16px 40px rgba(49,33,40,.07); }
.print-intro__statement h2 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 400; color: var(--wine-dark); line-height: 1.04; letter-spacing: -.03em; }
.print-intro__copy p { margin: 0 0 1.05rem; color: var(--muted); font-size: 1.03rem; }

.print-ruler-section {
  padding: 0 0 4.8rem;
  background: var(--paper);
}
.print-ruler-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(300px, 1.15fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(111,47,69,.13);
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(111,47,69,.13), transparent 32%),
    radial-gradient(circle at 100% 100%, rgba(111,47,69,.08), transparent 36%),
    linear-gradient(135deg, #fff, #f7f0f3 68%, #efe2e7);
  box-shadow: 0 18px 50px rgba(49,33,40,.08);
}
.print-ruler-card::before {
  content: "";
  position: absolute;
  inset: auto -4rem -5.5rem auto;
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
  background: rgba(111,47,69,.08);
}
.print-ruler-card__copy { position: relative; z-index: 1; }
.print-ruler-card__copy h2 {
  margin: 0 0 .85rem;
  color: var(--wine-dark);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.035em;
}
.print-ruler-card__copy p:not(.kicker) { margin: 0; color: var(--muted); }
.print-ruler {
  position: relative;
  z-index: 1;
  min-height: 132px;
  padding: 1.15rem 1.3rem 1.05rem;
  border-radius: 1rem;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,0) 18%, rgba(255,255,255,0) 82%, rgba(255,255,255,.08)),
    linear-gradient(180deg, #8a4159, #6f2f45 58%, #4b1f2e);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 18px 38px rgba(111,47,69,.22);
  transform: rotate(-1.4deg);
}
.print-ruler::before,
.print-ruler::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: rgba(255,255,255,.33);
}
.print-ruler::before { top: 2.9rem; }
.print-ruler::after { bottom: 2.55rem; }
.print-ruler__brand {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.print-ruler__brand::before {
  content: "";
  width: .62rem;
  height: .62rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.12);
}
.print-ruler__scale {
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  align-items: start;
  gap: 0;
  height: 44px;
  margin: 1.05rem .15rem .65rem;
}
.print-ruler__scale i {
  position: relative;
  display: block;
  height: 100%;
  border-left: 2px solid rgba(255,255,255,.78);
}
.print-ruler__scale i:nth-child(even)::after,
.print-ruler__scale i:nth-child(odd)::after {
  content: "";
  position: absolute;
  left: .48rem;
  top: 0;
  height: 22px;
  border-left: 1px solid rgba(255,255,255,.48);
}
.print-ruler__scale i:nth-child(4n+1) { border-left-width: 3px; }
.print-ruler__scale i:nth-child(4n+1)::after { height: 31px; }
.print-ruler__labels {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  color: rgba(255,255,255,.82);
  font-family: var(--serif);
  font-size: clamp(.9rem, 1.5vw, 1.08rem);
  line-height: 1.2;
}
.print-ruler__labels span { white-space: nowrap; }
@media (max-width: 900px) {
  .print-ruler-section { padding-bottom: 3.6rem; }
  .print-ruler-card { grid-template-columns: 1fr; }
  .print-ruler { transform: none; }
}
@media (max-width: 560px) {
  .print-ruler-card { padding: 1rem; border-radius: 1.25rem; }
  .print-ruler { min-height: 118px; padding: .9rem .9rem .85rem; }
  .print-ruler__scale { height: 36px; margin-top: .9rem; }
  .print-ruler__labels { font-size: .82rem; gap: .3rem; }
  .print-ruler__labels span:nth-child(2),
  .print-ruler__labels span:nth-child(4) { display: none; }
}

.print-process { background: linear-gradient(180deg, #f7efe9, #fff); }
.print-process__heading { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,.8fr); gap: 2.5rem; align-items: end; margin-bottom: 3rem; }
.print-process__heading h2,
.print-gallery h2,
.print-final h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4.6rem); font-weight: 400; line-height: 1.02; letter-spacing: -.04em; color: var(--wine-dark); }
.print-process__heading > p { margin: 0; color: var(--muted); }
.print-process__grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.1rem; }
.print-step { min-height: 285px; padding: 1.7rem; border: 1px solid rgba(111,47,69,.12); border-radius: 1.25rem; background: rgba(255,255,255,.82); box-shadow: 0 12px 36px rgba(49,33,40,.06); }
.print-step__number { display: inline-grid; place-items: center; width: 2.5rem; height: 2.5rem; margin-bottom: 1.3rem; border-radius: 50%; color: #fff; background: var(--wine); font-family: var(--serif); font-size: 1.2rem; }
.print-step h3 { margin: 0 0 .75rem; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; color: var(--wine-dark); }
.print-step p { margin: 0; color: var(--muted); }
.print-gallery { background: var(--paper); }
.print-gallery__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1.1rem; margin-top: 2.2rem; }
.print-gallery__item { position: relative; margin: 0; overflow: hidden; border-radius: 1.4rem; background: #fff; box-shadow: 0 18px 44px rgba(49,33,40,.09); }
.print-gallery__item--large { grid-column: span 7; }
.print-gallery__item--small { grid-column: span 5; }
.print-gallery__item img { display: block; width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.print-gallery__item--small img { min-height: 270px; }
.print-gallery__caption { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; padding: .9rem 1rem; border-radius: 1rem; color: #fff; background: rgba(35,19,27,.72); backdrop-filter: blur(8px); }
.print-gallery__caption strong { display: block; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.print-gallery__caption span { color: rgba(255,255,255,.78); font-size: .88rem; }
.print-final { color: #fff; background: linear-gradient(135deg, #2f131d, #6f2f45); }
.print-final__grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: center; }
.print-final h2 { color: #fff; }
.print-final p { max-width: 710px; margin: 1rem 0 0; color: rgba(255,255,255,.78); }
.print-final__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: flex-end; }

@media (max-width: 900px) {
  .service-print-cta { grid-template-columns: 64px minmax(0,1fr); }
  .service-print-cta .button { grid-column: 1 / -1; justify-self: stretch; }
  .print-intro__grid,
  .print-process__heading,
  .print-process__grid,
  .print-final__grid { grid-template-columns: 1fr; }
  .print-final__actions { justify-content: flex-start; }
  .print-gallery__item--large,
  .print-gallery__item--small { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .service-print-cta { grid-template-columns: 1fr; text-align: left; }
  .service-print-cta__icon { width: 60px; height: 60px; }
  .page-trauerdruck .print-hero { min-height: 64vh; }
  .print-hero__overlay { background: linear-gradient(180deg, rgba(32,18,25,.32) 0%, rgba(32,18,25,.82) 86%); }
  .print-gallery__item img { min-height: 255px; }
}



/* Team-Erweiterung */
.team-teaser-button {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border-radius: 1.35rem;
  background: linear-gradient(135deg, #6f2f45, #8d4760);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 20px 45px rgba(111, 47, 69, .2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.team-teaser-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(111, 47, 69, .28);
}
.team-teaser-button__icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.14);
}
.team-teaser-button svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.team-teaser-button__copy {
  display: grid;
  gap: .15rem;
}
.team-teaser-button__copy small,
.team-teaser-button__copy span {
  color: rgba(255,255,255,.82);
}
.team-teaser-button__copy strong {
  font-size: 1.2rem;
  line-height: 1.1;
}
.team-teaser-button__arrow {
  opacity: .9;
}
@media (max-width: 620px) {
  .team-teaser-button {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .team-teaser-button__arrow {
    display: none;
  }
}




/* Farbkorrektur Rechtstexte und Social Media */
.footer-social__intro > span {
  color: var(--wine);
}
.footer .footer-social__link {
  color: var(--wine);
  background: #fff;
  border-color: rgba(111, 47, 69, .18);
}
.footer .footer-social__link svg {
  color: currentColor;
}
.footer .footer-social__link:hover,
.footer .footer-social__link:focus-visible {
  color: #fff;
  background: var(--wine);
  border-color: var(--wine);
}
.page-hero,
.page-hero .eyebrow,
.page-hero h1,
.page-hero p {
  color: #fff;
}
.legal-data dt {
  color: var(--wine);
}
.legal-content a,
.legal-page a {
  color: var(--wine);
}

@media (max-width: 420px) {
  .emergency-locations__grid { grid-template-columns: 1fr; }
}
