: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,
.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; }

.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; }

.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; }
  .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,
  .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); }
  .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; }
  .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__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;
  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__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: var(--wine);
  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; }
}
