/* ═══════════════════════════════════════════════════════════════
   Bestattungen Willy Weyhmüller — Main Stylesheet
   Zero inline CSS. All styles live here.
   ═══════════════════════════════════════════════════════════════ */

/* ── Custom Properties ────────────────────────────────────────── */
:root {
  /* Colors */
  --clr-primary:        hsl(27 90% 55%);
  --clr-primary-hsl:    27 90% 55%;
  --clr-primary-dark:   hsl(27 90% 42%);
  --clr-primary-light:  hsl(27 90% 97%);
  --clr-accent:         #f28e1c;
  --clr-accent-hsl:     27 90% 55%;
  --clr-secondary:      hsl(210 20% 18%);
  --clr-secondary-fg:   hsl(210 10% 92%);
  --clr-bg:             hsl(40 20% 98%);
  --clr-bg-raw:         249 244 239;
  --clr-card:           hsl(0 0% 100%);
  --clr-muted:          hsl(40 15% 95%);
  --clr-border:         hsl(210 10% 88%);
  --clr-fg:             hsl(210 20% 18%);
  --clr-fg-muted:       hsl(210 10% 45%);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', system-ui, sans-serif;

  /* Spacing */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;

  /* Radii */
  --radius-sm:   0.5rem;
  --radius-md:   0.75rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
  --radius-2xl:  2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.05);
  --shadow-xl:  0 20px 50px rgba(0,0,0,.12), 0 8px 20px rgba(0,0,0,.06);
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-fg);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
a:hover { text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-secondary);
}

/* ── Layout Utilities ─────────────────────────────────────────── */
.container-wide   { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: var(--space-lg); }
.container-narrow { width: 100%; max-width: 56rem;  margin-inline: auto; padding-inline: var(--space-lg); }
.section-padding  { padding-block: var(--space-4xl); }

@media (max-width: 768px) {
  .section-padding { padding-block: var(--space-3xl); }
}

/* ── Typography ───────────────────────────────────────────────── */
.ww-eyebrow {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #e85d17;
    margin-bottom: 12px;
    line-height: 20px;
    letter-spacing: 0.05em;
}
.ww-lead {
  font-size: 1.125rem;
  color: var(--clr-fg-muted);
  line-height: 1.75;
  max-width: 42rem;
}
.ww-section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 48rem;
    margin: 0px auto 4rem auto;
}
.ww-section-header h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
  line-height: 48px;
}
.ww-section-header .ww-lead {
    margin-inline: auto;
    line-height: 29px;
        max-width: 48rem;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.ww-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.2s, opacity 0.2s, background-color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.ww-btn:hover { transform: scale(1.03); text-decoration: none; }
.ww-btn--lg   { padding: 1rem 2rem; font-size: 1.0625rem; }

.ww-btn--accent       { background: var(--clr-accent);     color: #fff; }
.ww-btn--accent:hover { background: #f28e1c; }
.ww-btn--primary      { background: var(--clr-secondary);  color: #fff; }
.ww-btn--secondary    { background: var(--clr-secondary);  color: #fff; border-color: hsl(27 90% 55% / .4); }
.ww-btn--white        { background: #fff; color: var(--clr-secondary); }
.ww-btn--outline      { background: transparent; border-color: var(--clr-secondary); color: var(--clr-secondary); }
.ww-btn--ghost-white  { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); backdrop-filter: blur(4px); }
.ww-btn--ghost-white:hover { background: rgba(255,255,255,.22); }

/* ── Icon Circle ──────────────────────────────────────────────── */
.ww-icon-circle {
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg); flex-shrink: 0;
}
.ww-icon-circle--sm  { width: 2.5rem; height: 2.5rem; }
.ww-icon-circle--md  { width: 3rem;   height: 3rem;   }
.ww-icon-circle--lg  { width: 4rem;   height: 4rem;   border-radius: var(--radius-xl); }
.ww-icon-circle--primary       { background: var(--clr-primary); color: #fff; }
.ww-icon-circle--primary-muted svg {
    width: 24px !important;
    height: 24px !important;
        color: #e85d17;
}
.ww-icon-circle--primary-muted {
    background: #e85d171a;
    color: #e85d17;
}
.ww-icon-circle--accent        { background: var(--clr-accent);  color: #fff; }
.ww-icon-circle--muted         { background: var(--clr-muted);   color: var(--clr-secondary); }
.ww-icon-circle--dark          { background: rgba(255,255,255,.15); color: #fff; }

/* ── Checklist ────────────────────────────────────────────────── */
.ww-checklist { display: flex; flex-direction: column; gap: var(--space-sm); }
.ww-checklist__item {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: 16px;
    color: #292f32;
    line-height: 24px;
}
.ww-checklist__item svg { color: var(--clr-primary); flex-shrink: 0; margin-top: 3px; }

/* ── Accordion ────────────────────────────────────────────────── */
.ww-accordion { display: flex; flex-direction: column; gap: var(--space-md); }
.ww-accordion__item {
  background: var(--clr-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.ww-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--clr-secondary);
  transition: color 0.2s;
}
.ww-accordion__trigger:hover { color: var(--clr-primary); }
.ww-accordion__trigger svg   { flex-shrink: 0; transition: transform 0.3s; }
.ww-accordion__trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.ww-accordion__content {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--clr-fg-muted);
  line-height: 1.75;
}
.ww-accordion__content[hidden] { display: none; }

/* ── Card ─────────────────────────────────────────────────────── */
.ww-card {
  background: var(--clr-card);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.ww-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-2px); }

/* ── Skip Link ────────────────────────────────────────────────── */
.ww-skip-link {
  position: absolute; top: -100%; left: var(--space-md);
  background: var(--clr-primary); color: #fff;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md); font-weight: 600;
  z-index: 9999; text-decoration: none;
}
.ww-skip-link:focus { top: var(--space-md); }

/* ─────────────────────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
.ww-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    padding-block: 1.25rem;
    transition: background-color .3s, box-shadow .3s, padding .3s;
    background: linear-gradient(to bottom,rgba(0,0,0,.60) 0%,rgba(0,0,0,.25) 60%,transparent 100%);
}
.ww-header.is-scrolled {
    background: hsl(40 20% 98%/.97);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 16px rgba(0,0,0,.10);
    padding-block: .625rem;
}
.ww-header__nav { display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.ww-header__logo { display:inline-flex; align-items:center; flex-shrink:0; }
.ww-header__logo img { height:3.5rem; width:auto; transition:filter .3s; }

.ww-header__menu { display:none; list-style:none; align-items:center; gap:.125rem; }
@media(min-width:1024px){ .ww-header__menu { display:flex; } }
.ww-header__item { position:relative; }
.ww-header__link {
    display:inline-flex; align-items:center; gap:.25rem;
    padding:.5rem .875rem; border-radius:var(--radius-md);
    font-weight:600; font-size:.9375rem; color:#fff;
    text-decoration:none; white-space:nowrap;
    transition:background-color .2s,color .2s;
}
.ww-header.is-scrolled .ww-header__link { color:var(--clr-secondary); }
.ww-header__link:hover,.ww-header__link--active { background:var(--clr-accent); color:#171B21 !important; text-decoration:none; }
.ww-header__link svg { transition:transform .3s; }
.ww-header__item:hover .ww-header__link svg { transform:rotate(180deg); }
.ww-header__sub {
    position:absolute;  left:0; min-width:14rem;
    background:var(--clr-card); border-radius:var(--radius-xl);
    box-shadow:var(--shadow-lg); border:1px solid var(--clr-border);
    padding:.5rem; list-style:none;
    opacity:0; pointer-events:none; transform:translateY(-6px);
    transition:opacity .2s,transform .2s; z-index:10;
/* 	top:calc(100% + .375rem); */
}
.ww-header__item:hover .ww-header__sub,
.ww-header__item:focus-within .ww-header__sub { opacity:1; pointer-events:all; transform:translateY(0); }
.ww-header__sub-link {
    display:block; padding:.625rem .875rem; border-radius:var(--radius-md);
    font-size:.9rem; font-weight:500; color:var(--clr-secondary); text-decoration:none;
    transition:background-color .15s,color .15s;
}
.ww-header__sub-link:hover,.ww-header__sub-link--active { background:var(--clr-accent); color:#171B21 !important; text-decoration:none; }

.ww-header__actions { display:flex; align-items:center; gap:.75rem; flex-shrink:0; }
.ww-header__phone {
    display:none; align-items:center; gap:.375rem;
    padding:.5rem 1.125rem; background:var(--clr-accent); color:#171B21 !important;
    border-radius:var(--radius-full); font-weight:600; font-size:.875rem;
    text-decoration:none; white-space:nowrap; transition:opacity .2s,transform .2s;
}
@media(min-width:768px){ .ww-header__phone { display:inline-flex; } }
.ww-header__phone:hover { opacity:.88; transform:scale(1.02); text-decoration:none; }

.ww-header__burger {
    display:flex; align-items:center; justify-content:center;
    width:2.5rem; height:2.5rem; background:rgba(255,255,255,.12);
    border:none; border-radius:var(--radius-md); cursor:pointer; transition:background-color .2s;
}
@media(min-width:1024px){ .ww-header__burger { display:none; } }
.ww-header.is-scrolled .ww-header__burger { background:var(--clr-muted); }
.ww-burger { display:flex; flex-direction:column; gap:5px; }
.ww-burger span { display:block; width:22px; height:2px; background:#fff; border-radius:2px; transition:transform .3s,opacity .3s,background-color .3s; }
.ww-header.is-scrolled .ww-burger span { background:var(--clr-secondary); }
.ww-header__burger[aria-expanded="true"] .ww-burger span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.ww-header__burger[aria-expanded="true"] .ww-burger span:nth-child(2) { opacity:0; }
.ww-header__burger[aria-expanded="true"] .ww-burger span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.ww-header__mobile { border-top:1px solid rgba(255,255,255,.1); overflow:hidden; }
.ww-header.is-scrolled .ww-header__mobile { border-top-color:var(--clr-border); }
.ww-header__mobile[hidden] { display:none; }
.ww-mob__inner {
    background:var(--clr-card); border-radius:var(--radius-2xl);
    box-shadow:var(--shadow-lg); padding:1rem;
    display:flex; flex-direction:column; gap:.25rem; margin-block:.75rem;
}
.ww-mob__link,.ww-mob__toggle {
    display:block; width:100%; padding:.75rem 1rem; border-radius:var(--radius-xl);
    font-size:1rem; font-weight:500; color:var(--clr-secondary); text-decoration:none;
    background:none; border:none; cursor:pointer; text-align:left;
    transition:background-color .2s,color .2s;
}
.ww-mob__toggle { display:flex; align-items:center; justify-content:space-between; }
.ww-mob__link:hover,.ww-mob__toggle:hover { background:var(--clr-muted); text-decoration:none; }
.ww-mob__link--active,.ww-mob__toggle--active { color:var(--clr-primary); font-weight:600; }
.ww-mob__sub { padding-left:1rem; display:flex; flex-direction:column; gap:.125rem; }
.ww-mob__sub[hidden] { display:none; }
.ww-mob__sub-link {
    display:block; padding:.5rem 1rem; border-radius:var(--radius-lg);
    font-size:.9rem; font-weight:500; color:var(--clr-fg-muted); text-decoration:none;
    transition:background-color .15s,color .15s;
}
.ww-mob__sub-link:hover,.ww-mob__sub-link--active { background:var(--clr-accent); color:#fff; text-decoration:none; }
.ww-mob__phone {
    display:flex; align-items:center; justify-content:center; gap:.5rem;
    margin-top:.75rem; padding:.875rem 1rem; border-radius:var(--radius-xl);
    background:var(--clr-accent); color:#fff; font-weight:600; font-size:1rem; text-decoration:none;
}
.ww-mob__phone:hover { opacity:.9; text-decoration:none; }

.ww-sticky {
    position:fixed; right:1.25rem; top:50%; transform:translateY(-50%);
    z-index:100; display:flex; flex-direction:column; gap:.5rem;
}
@media(max-width:1023px){ .ww-sticky { display:none; } }
.ww-sticky__btn {
    display:flex; flex-direction:column; align-items:center; gap:.25rem;
    padding:.75rem .625rem; border-radius:var(--radius-xl);
    text-decoration:none; font-size:.6875rem; font-weight:600; color:#fff;
    transition:transform .2s,opacity .2s;
}
.ww-sticky__btn:hover { transform:scale(1.06); text-decoration:none; }
.ww-sticky__btn--contact { background:var(--clr-secondary); }
.ww-sticky__btn--phone   { background:var(--clr-accent);     color: #171B21 !important;}
.ww-sticky__lbl { display:none; }

.ww-mob-bar {
    display:flex; position:fixed; bottom:0; left:0; right:0; z-index:100;
    background:var(--clr-card); border-top:1px solid var(--clr-border);
    box-shadow:0 -4px 16px rgba(0,0,0,.08);
}
@media(min-width:1024px){ .ww-mob-bar { display:none; } }
.ww-mob-bar__btn {
    flex:1; display:flex; flex-direction:column; align-items:center; gap:.25rem;
    padding:.625rem .5rem; font-size:.75rem; font-weight:600;
    color:var(--clr-fg-muted); text-decoration:none; transition:color .2s;
}
.ww-mob-bar__btn--primary { color:#fff; background:var(--clr-accent); }
.ww-mob-bar__btn:hover { color:var(--clr-primary); text-decoration:none; }
.ww-mob-bar__btn--primary:hover { opacity:.9; color:#fff; }
.ww-mob-bar-spacer { height:4rem; display:block; }
@media(min-width:1024px){ .ww-mob-bar-spacer { display:none; } }

/* Offset for fixed header on all heroes */
.ww-hero,.ww-tf-hero,.ww-bestattung-hero,.ww-fhero,.ww-form-hero,.ww-kontakt-hero,.ww-sth { padding-top:5rem; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS — ALL VARIANTS
   ═══════════════════════════════════════════════════════════════ */
.ww-btn--accent      { background:var(--clr-accent);     color:#171B21 !important;; border-color:var(--clr-accent); }
.ww-btn--primary     { background:var(--clr-primary);    color:#fff; border-color:var(--clr-primary); }
.ww-btn--secondary   { background:var(--clr-secondary);  color:#fff; border-color:var(--clr-secondary); }
.ww-btn--white       { background:#fff; color:var(--clr-secondary); border-color:#fff; }
.ww-btn--outline     { background:transparent; color:var(--clr-secondary); border-color:var(--clr-secondary); }
.ww-btn--ghost-white { background:rgba(255,255,255,.12); color:#fff; border-color:rgba(255,255,255,.3); backdrop-filter:blur(4px); }
.ww-btn--full        { width:100%; justify-content:center; }
.ww-btn--accent:hover,.ww-btn--primary:hover { opacity:.9; }
.ww-btn--white:hover  { background:var(--clr-muted); }
.ww-btn--outline:hover { background:var(--clr-secondary); color:#fff; }
.ww-btn--ghost-white:hover { background:rgba(255,255,255,.22); }

/* Icon circles */
.ww-icon-circle { display:flex; align-items:center; justify-content:center; border-radius:50px; flex-shrink:0; }
.ww-icon-circle--lg  { width:4rem;   height:4rem; }
.ww-icon-circle--md  { width:3rem;   height:3rem; }
.ww-icon-circle--xl  { width:5rem;   height:5rem; }
.ww-icon-circle--primary       { background:hsl(var(--clr-primary-hsl)/.12); color:var(--clr-primary); }
.ww-icon-circle--primary-muted { background:hsl(var(--clr-primary-hsl)/.10); color:var(--clr-primary); }
.ww-icon-circle--accent        { background:var(--clr-accent); color:#fff; }
.ww-icon-circle--muted         { background:var(--clr-muted);  color:var(--clr-secondary); }

/* Checklist utility */
.ww-checklist { display:flex; flex-direction:column; gap:var(--space-sm); margin-block:var(--space-lg); }
.ww-checklist__item {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: 16px;
    color: #292f32;
    line-height: 24px;
}
li.ww-checklist__item svg {
    color: #e85d17;
    width: 20px;
    height: 20px;
}
.ww-checklist__item svg { color:var(--clr-primary); flex-shrink:0; margin-top:2px; }

/* Eyebrow variants */
.ww-eyebrow--white   { color:rgba(255,255,255,.75)!important; }
.ww-eyebrow--primary { color:var(--clr-primary)!important; }

/* ═══════════════════════════════════════════════════════════════
   HERO — HOMEPAGE
   ═══════════════════════════════════════════════════════════════ */
.ww-hero {
    position:relative; min-height:90vh;
    display:flex; justify-content:center; overflow:hidden;    padding-top: 8%;
}
.ww-hero__bg { position:absolute; inset:0; z-index:0; }
.ww-hero__bg img { width:100%; height:100%; object-fit:cover; display:block; }
.ww-hero__overlay  { position:absolute; inset:0; }
.ww-hero__gradient {
    position: absolute;
    inset-x: 0;
    bottom: 0;
    height: 95%;
    background: linear-gradient(to top, hsl(0deg 0% 100%) 0%, rgb(255 255 255 / 55%) 55%, transparent 100%);
    content: "";
    left: 0;
    right: 0;
}
.ww-hero__content  { position:relative; z-index:1; width:100%; text-align:center; }
.ww-hero__card {
    max-width:56rem; margin-inline:auto;
    background:rgba(255,255,255,.72); backdrop-filter:blur(1px); -webkit-backdrop-filter:blur(10px);
    border-radius:var(--radius-2xl); padding:2.5rem 2rem;
}
.ww-hero__ctas a {
    font-size: 18px;
    line-height: 28px;
}
@media(min-width:768px){ .ww-hero__card { padding:3rem 3.5rem; } }
.ww-hero__tagline {
    font-size: 20px;
    font-weight: 500;
    color: var(--clr-secondary);
    margin-bottom: 16px;
    line-height: 28px;
}
.ww-hero__h1 {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    line-height: 72px;
    color: var(--clr-secondary);
    margin-bottom: var(--space-md);
}
.ww-hero__sub {
    display: block;
    font-size: 32px;
    font-weight: 400;
    color: #292f32;
    margin-top: 8px;
    line-height: 40px;
}
.ww-hero__desc {
    font-size: 20px;
    color: #6a767c;
    line-height: 28px;
    max-width: 40rem;
    margin-inline: auto;
    margin-bottom: var(--space-xl);
}
.ww-hero__ctas { display:flex; flex-wrap:wrap; gap:1rem; justify-content:center; }
.ww-hero__scroll { position:absolute; bottom:2rem; left:50%; transform:translateX(-50%); z-index:1; display:none; }
@media(min-width:768px){ .ww-hero__scroll { display:block; } }
.ww-hero__scroll-ring { width:1.5rem; height:2.5rem; border:2px solid rgba(255,255,255,.4); border-radius:var(--radius-full); display:flex; justify-content:center; animation:scroll-bounce 2s infinite; }
.ww-hero__scroll-dot  { width:.375rem; height:.75rem; background:rgba(255,255,255,.6); border-radius:var(--radius-full); margin-top:.375rem; }
@keyframes scroll-bounce { 0%,100%{opacity:1;transform:translateY(0)} 50%{opacity:.4;transform:translateY(4px)} }

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (Interior pages)
   ═══════════════════════════════════════════════════════════════ */
.ww-page-hero { padding-block:7rem var(--space-3xl); text-align:center; }
.ww-page-hero--muted  { background:var(--clr-muted); }
.ww-page-hero--dark   { background:var(--clr-secondary); }
.ww-page-hero--center { background:var(--clr-bg); }
.ww-page-hero__inner  { position:relative; z-index:1; }
.ww-page-hero__bg-wrap { position:absolute; inset:0; overflow:hidden; z-index:0; }
.ww-page-hero__bg-wrap img { width:100%; height:100%; object-fit:cover; }
.ww-page-hero__h1 { font-family:var(--font-heading); font-size:clamp(2rem,5vw,3.25rem); font-weight:700; margin-block:var(--space-sm) var(--space-md); }
.ww-page-hero--dark .ww-page-hero__h1,
.ww-page-hero--dark .ww-eyebrow { color:#fff; }
.ww-page-hero__desc { font-size:1.125rem; color:var(--clr-fg-muted); line-height:1.75; max-width:44rem; margin-inline:auto; }
.ww-page-hero--dark .ww-page-hero__desc { color:rgba(255,255,255,.8); }

/* ═══════════════════════════════════════════════════════════════
   TRAUERFALL HERO
   ═══════════════════════════════════════════════════════════════ */
.ww-tf-hero {
    background:#292f32;
    padding-block:8rem var(--space-4xl);
    padding-top:max(8rem, calc(5rem + var(--space-3xl)));
}
.ww-tf-hero__inner {
    display:grid; grid-template-columns:1fr; gap: 24px;
    max-width:48rem;margin: auto;text-align: center;
}
.ww-tf-hero__badge {
    display:inline-flex; align-items:center; gap:.5rem;
        background: #e85d1733;
    color: #e85d17;
    padding:.375rem 1rem; border-radius:var(--radius-full);
    font-size:.875rem; font-weight:500; width:fit-content;
    margin: auto;
}
.ww-tf-hero__h1 {
    font-family:var(--font-heading);     font-size: 60px;
    font-weight: 700;
    color: #fff;
    line-height: 60px;}
.ww-tf-hero__desc {
    font-size: 20px;
    color: rgba(255,255,255,.82);
    line-height: 33px;
}
.ww-tf-hero__phone-card {
    background: var(--clr-card);
    border-radius: 3rem;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    box-shadow: var(--shadow-xl);
    width: 36rem;
    margin: auto;
}
.ww-tf-hero__phone-row { display:flex; align-items:center; gap:var(--space-md); justify-content: center;}
.ww-tf-hero__phone-label {
    font-size: 14px;
    color: var(--clr-fg-muted);
    margin-bottom: .125rem;
    text-align: left;
    line-height: 20px;
}
.ww-tf-hero__phone-num {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: #e85d17;
    line-height: 36px;
}
.ww-tf-hero .ww-icon-circle--primary-muted {
    background: #e85d171a;
    color: #e85d17;
}
.ww-tf-hero__phone-card a {
    font-size: 18px;
    line-height: 28px;
    background: #e85d17;
    border: #e85d17;
}
.ww-btn--accent:hover{
    background: #e85d17;

}
/* ═══════════════════════════════════════════════════════════════
   CHECKLIST CARDS
   ═══════════════════════════════════════════════════════════════ */
.ww-checklist-cards { background:var(--clr-bg); }
.ww-checklist-cards__grid {
    display:grid; grid-template-columns:1fr; gap:var(--space-lg);
}
@media(min-width:640px)  { .ww-checklist-cards__grid { grid-template-columns:repeat(2,1fr); } }
@media(min-width:1024px) { .ww-checklist-cards__grid { grid-template-columns:repeat(3,1fr); } }
.ww-step-card { background:var(--clr-card); border-radius:var(--radius-2xl); padding:1.5rem; box-shadow:var(--shadow-md); }
.ww-step-card__top { display:flex; align-items:flex-start; gap:var(--space-md); }
.ww-step-card__title-row { display:flex; align-items:center; gap:var(--space-sm); margin-bottom:var(--space-sm); flex-wrap:inherit; }
.ww-step-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.625rem;
    height: 1.625rem;
    border-radius: var(--radius-full);
    background: #e85d171a;
    color: #e85d17;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
}
.ww-step-card__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-secondary);
    line-height: 28px;
}
.ww-step-card__desc  { font-size:.9rem; color:var(--clr-fg-muted); line-height:1.65; }
.ww-tipp-bar {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-top: var(--space-2xl);
    background: #f1f0ee;
    /* border-left: 4px solid var(--clr-primary); */
    border-radius: 50px;
    padding: var(--space-md) var(--space-lg);
    font-size: 14px;
    color: #6a767c;
    width: fit-content;
    line-height: 20px;
    margin: 3rem auto 0;
    align-items: center;
}
.ww-tipp-bar svg { color:var(--clr-primary); flex-shrink:0; margin-top:2px;width: 20px; }

/* ═══════════════════════════════════════════════════════════════
   WIR ERLEDIGEN
   ═══════════════════════════════════════════════════════════════ */
.ww-wir { background:var(--clr-muted); }
.ww-wir__grid {
    display:grid; grid-template-columns:1fr; gap:var(--space-3xl); align-items:start;
}
@media(min-width:1024px){ .ww-wir__grid { grid-template-columns:1fr 1fr; } }
.ww-wir__left h2 { margin-bottom:var(--space-md);     font-size: 36px;
    line-height: 40px;}
.ww-wir__card {
    background: var(--clr-card);
    border-radius: 3rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}
.ww-wir__card-h {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--clr-secondary);
    margin-bottom: 24px;
    line-height: 32px;
}
.ww-wir__card-p {
    color: var(--clr-fg-muted);
    line-height: 26px;
    margin-bottom: var(--space-xl);
    font-size: 16px;
}
.ww-wir__card-btns a.ww-btn--accent {
    background: #e85d17;
    border-color: #e85d17;
}
.trauerfall_faq .ww-faq__cta {
    display: none;
}
.ww-wir__card-btns { display:flex; flex-direction:column; gap:var(--space-md); }

/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */
.ww-faq { background:var(--clr-bg); }
.ww-accordion { display:flex; flex-direction:column; gap:var(--space-md); }
.ww-accordion__item { background:var(--clr-card); border-radius:var(--radius-2xl); box-shadow:var(--shadow-sm); overflow:hidden; transition:box-shadow .2s; }
.ww-accordion__item--open { box-shadow:var(--shadow-md); }
.ww-accordion__trigger {
    display:flex; align-items:center; justify-content:space-between;
    width:100%; padding:1.375rem 1.5rem; background:none; border:none;
    text-align:left; font-family:var(--font-heading); font-size:1.0625rem; font-weight:600;
    color:var(--clr-secondary); cursor:pointer; gap:var(--space-md); transition:color .2s;
}
.ww-accordion__trigger:hover { color:var(--clr-primary); }
.ww-accordion__trigger svg { flex-shrink:0; transition:transform .3s; color:var(--clr-primary); }
.ww-accordion__item--open .ww-accordion__trigger svg { transform:rotate(180deg); }
.ww-accordion__content { padding:0 1.5rem 1.375rem; color:var(--clr-fg-muted); line-height:1.75; font-size:.9375rem; }
.ww-accordion__content[hidden] { display:none; }
.ww-faq__cta { margin-top:var(--space-2xl); text-align:center; }
.ww-faq__cta p { color:var(--clr-fg-muted); margin-bottom:16px; }
.ww-faq__cta a {
    padding: 14px 30px;
}
/* ═══════════════════════════════════════════════════════════════
   CTA BANNER / DARK / PHONE
   ═══════════════════════════════════════════════════════════════ */
.ww-cta-banner {
    position:relative; padding-block:var(--space-4xl);
    background:linear-gradient(167deg,#e85d17 47%,var(--clr-secondary) 100%);
}
.ww-cta-banner__left,.ww-cta-banner__inner { position:relative; z-index:1; }
.ww-cta-banner__grid { display:grid; grid-template-columns:1fr; gap:var(--space-2xl); align-items:center; }
@media(min-width:1024px){ .ww-cta-banner__grid { grid-template-columns:1fr 1fr; } }
.ww-cta-banner__h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: #292f32;
    margin-bottom: var(--space-md);
    line-height: 48px;
}
.ww-cta-banner__desc {
    font-size: 20px;
    color: rgba(255,255,255,.88);
    line-height: 33px;
    margin-bottom: var(--space-xl);
}
.ww-cta-banner__btns { display:flex; flex-wrap:wrap; gap:var(--space-md); }
.ww-cta-banner__cards { display:flex; flex-direction:column; gap:var(--space-md); }
.ww-cta-banner__card { display:flex; align-items:center; gap:var(--space-md); background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.18); border-radius:var(--radius-xl); padding:var(--space-lg); backdrop-filter:blur(4px); }
.ww-cta-banner__card-icon { width:3rem; height:3rem; background:rgba(255,255,255,.18); border-radius:var(--radius-full); display:flex; align-items:center; justify-content:center; color:#fff; flex-shrink:0; }
.ww-cta-banner__card-title { font-size:1rem; font-weight:700; color:#fff; margin-bottom:.125rem; }
.ww-cta-banner__card-text  { font-size:.875rem; color:rgba(255,255,255,.78); }
.ww-cta-dark { background:var(--clr-secondary); padding-block:var(--space-4xl); }
.ww-cta-dark__inner { text-align:center; }
.ww-cta-dark h2 { color:#fff; font-size:clamp(1.75rem,4vw,2.75rem); margin-bottom:var(--space-md); }
.ww-cta-dark__desc { font-size:1.125rem; color:rgba(255,255,255,.82); max-width:40rem; margin-inline:auto; margin-bottom:var(--space-xl); line-height:1.7; }
.ww-cta-dark__btns { display:flex; flex-wrap:wrap; gap:var(--space-md); justify-content:center; }
.ww-cta-phone { background:#e85d17; padding-block:8rem; }
.ww-cta-phone__inner { text-align:center; }
.ww-cta-phone h2 {
    color: #292f32;
    font-size: 36px;
    margin-bottom: var(--space-md);
    line-height: 40px;
}
.ww-cta-phone__desc {
    font-size: 20px;
    color: #fffc;
    max-width: 42rem;
    margin-inline: auto;
    margin-bottom: var(--space-xl);
    line-height: 28px;
}
.ww-cta-phone__inner a {
    color: #e85d17;
}
.uber_banner {
    text-align: left;
}
.uber_banner .ww-eyebrow {
    font-weight: 500;
 }
 .uber_banner h1.ww-page-hero__h1 {
    font-size: 60px;
    line-height: 60px;
    max-width: 48rem;

}
.uber_banner .ww-page-hero__desc {
    font-size: 20px;
    color: var(--clr-fg-muted);
    line-height: 33px;
    max-width: 48rem;
    margin-inline: initial;
}
/* ═══════════════════════════════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════════════════════════════ */
.ww-services { background:var(--clr-bg); }
.ww-services__grid { display:grid; grid-template-columns:1fr; gap:var(--space-xl); }
@media(min-width:640px)  { .ww-services__grid { grid-template-columns:repeat(2,1fr); } }
@media(min-width:1024px) { .ww-services__grid { grid-template-columns:repeat(4,1fr); } }
.ww-service-card { background:var(--clr-card); border-radius:3rem; padding:var(--space-xl); box-shadow:var(--shadow-md); display:flex; flex-direction:column; gap:var(--space-md); text-decoration:none; color:inherit; transition:box-shadow .25s,transform .25s; }
.ww-service-card:hover { box-shadow:var(--shadow-xl); transform:translateY(-4px); text-decoration:none; }
.ww-service-card__icon { transition:transform .25s; }
.ww-service-card:hover .ww-service-card__icon { transform:scale(1.1); }
.ww-service-card__title { font-family:var(--font-heading); font-size:1.25rem; font-weight:600; color:var(--clr-secondary); transition:color .2s; line-height: 28px;}
.ww-service-card:hover .ww-service-card__title { color:var(--clr-primary); }
.ww-service-card__desc  { font-size:16px; color:var(--clr-fg-muted); line-height:26px; flex:1; }
.ww-service-card__more  { display:flex; align-items:center; gap:.375rem; color:var(--clr-primary); font-weight:600; font-size:.9rem; margin-top:auto; }
.ww-service-card__arrow { transition:transform .2s; }
.ww-service-card:hover .ww-service-card__arrow { transform:translateX(4px); }

/* ═══════════════════════════════════════════════════════════════
   TEAM GRID
   ═══════════════════════════════════════════════════════════════ */
.ww-team { background:#f1f0ee; }
.ww-team__grid { display:grid; grid-template-columns:1fr; gap:var(--space-xl); }
@media(min-width:640px)  { .ww-team__grid { grid-template-columns:repeat(2,1fr); } }
@media(min-width:1024px) { .ww-team__grid { grid-template-columns:repeat(3,1fr); } }
.ww-team-card { background:var(--clr-card); border-radius:3rem; overflow:hidden; box-shadow:var(--shadow-md); }
.ww-team-card__photo { aspect-ratio:4/3; background:linear-gradient(135deg,hsl(var(--clr-primary-hsl)/.06),var(--clr-muted)); display:flex; flex-direction:column; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.ww-team-card__photo img { width:100%; height:100%; object-fit:cover; display:block; }
.ww-team-card__initials { width:7rem; height:7rem; border-radius:var(--radius-full); background:hsl(var(--clr-primary-hsl)/.10); border:3px solid hsl(var(--clr-primary-hsl)/.20); display:flex; align-items:center; justify-content:center; }
.ww-team-card__initials span { font-family:var(--font-heading); font-size:2rem; font-weight:700; color:var(--clr-primary); }
.ww-team-card__foto-note { position:absolute; bottom:.5rem; right:.5rem; font-size:.6875rem; color:var(--clr-fg-muted); background:rgba(255,255,255,.85); padding:.125rem .375rem; border-radius:var(--radius-sm); }
.ww-team-card__body { padding:2rem; }
.ww-team-card__body--center { text-align:center; }
.ww-team-card__name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-secondary);
    margin-bottom: .25rem;
    line-height: 28px;
}
.ww-team-card__role {
    color: #e85d17;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0px;
    line-height: 23px;
}
.ww-team-card__email { display:inline-flex; align-items:center; gap:.375rem; font-size: 16px; color:var(--clr-fg-muted); text-decoration:none; transition:color .2s; }
.ww-team-card__email:hover { color:var(--clr-primary); }
.ww-team-card--ruhestand { max-width:28rem; margin-inline:auto; }
.ww-team__ruhestand { margin-top:var(--space-4xl); padding-top:var(--space-3xl); border-top:1px solid var(--clr-border); }
.ww-team__rs-name {
    font-family: var(--font-heading);
    font-size: 30px;
    margin-bottom: 16px;
    line-height: 36px;
}
.ww-team__ruhestand .ww-section-header {
    margin-bottom: 3rem;
}
.ww-team__cta { margin-top:var(--space-3xl); text-align:center; }
.ww-team__cta-card {
    display: inline-flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
    padding: 2rem;
    background: var(--clr-card);
    border-radius: 3rem;
    box-shadow: var(--shadow-md);
}
@media(min-width:640px){ .ww-team__cta-card { flex-direction:row; text-align:left; } }
.ww-team__cta-title { font-family:var(--font-heading); font-size:20px; font-weight:600; margin-bottom:.25rem;    line-height: 28px; }
.ww-team__cta-sub   { font-size:.9375rem; color:var(--clr-fg-muted); }
.ww-team__cta-btns  { display:flex; gap:var(--space-md); flex-wrap:wrap; justify-content:center; }

/* ═══════════════════════════════════════════════════════════════
   ÜBER UNS SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.ww-hda { background:#292f32; color:#fff; padding: 8rem 0;}
/* .ww-hda .ww-eyebrow,.ww-hda .ww-section-heeader h2,.ww-hda .ww-lead { color:#fff; } */
.ww-hda .ww-eyebrow{
    color: #e85d17;
}
.ww-hda h2{
    font-size: 48px;
    line-height: 48px;color: #fff;
}
.ww-hda .ww-lead {
    color: rgba(255,255,255,.8);
    font-size: 20px;
    line-height: 33px;
}
.ww-hda__photo img {
    border-radius: 3rem;
}
.ww-hda__photos { display:grid; grid-template-columns:1fr; gap:var(--space-lg); margin-block:var(--space-2xl); }
@media(min-width:768px){ .ww-hda__photos { grid-template-columns:repeat(2,1fr); } }
.ww-hda__photo { border-radius:var(--radius-2xl); overflow:hidden; aspect-ratio:4/3; }
.ww-hda__photo img { width:100%; height:100%; object-fit:cover; }
.ww-hda__features { display:grid; grid-template-columns:1fr; gap:var(--space-xl); }
@media(min-width:640px){ .ww-hda__features { grid-template-columns:repeat(3,1fr); } }
.ww-hda__feat {
    background: #fafafa1a;
    padding: 1.5rem;
    border-radius: 2rem;
    text-align: center;
}
  .ww-hda__feat .ww-icon-circle{  margin: auto;}
  .ww-hda__feat .ww-icon-circle {
    margin: auto;
    background: transparent !important;
    width: 30px;
    height: 30px;
}
.ww-hda__feat .ww-icon-circle svg {
    width: 32px !important;
    height: 32px !important;
}
.ww-hda__feat-title { font-family:var(--font-heading); font-size:1.125rem; font-weight:700; color:#fff; margin-block:var(--space-md) var(--space-xs);     line-height: 28px;}
.ww-hda__feat-text {
    font-size: 14px;
    color: rgba(255,255,255,.75);
    line-height: 20px;
}
.ww-hda .ww-icon-circle--primary-muted { background:rgba(255,255,255,.12); }

.ww-split { background:var(--clr-bg); }
.ww-split__grid { display:grid; grid-template-columns:1fr; gap:var(--space-3xl); align-items:center; }
@media(min-width:1024px){ .ww-split__grid { grid-template-columns:1fr 1fr; } }
.ww-split__image { border-radius:var(--radius-2xl); overflow:hidden; }
.ww-split__image img { width:100%; object-fit:cover; display:block;height: 438px;    border-radius: 3rem; }
.ww-split__body h2,.ww-split__h2 { font-size:clamp(1.5rem,3vw,2.25rem); margin-block:var(--space-sm) var(--space-md); }
.ww-split__desc { color:var(--clr-fg-muted); line-height:1.75; margin-bottom:var(--space-xl); }
.ww-split__desc p { margin-bottom:var(--space-md); font-size: 18px;}
.ww-split__cta { margin-top:var(--space-xl); }
.ww-split__image-deco { position:relative; }
.ww-split .ww-checklist{
        gap: 16px;
}
.ww-split__cta a {
    background: #e85d17;
    border: #e85d17;
}
.ww-split__cta a svg {
    width: 16px;
	color: #171B21 !important;
}
.ww-values { background:var(--clr-muted); }
.ww-values__grid { display:grid; grid-template-columns:1fr; gap:var(--space-3xl); align-items:start; }
.ww-values .ww-values__h2 {
    font-size: 36px;
    line-height: 40px;
        margin-bottom: 24px;
}
p.ww-values__p {
    font-size: 18px;
    line-height: 29px;
    margin-bottom: 20px;
}
.ww-values__card {
    text-align: center;
    background: #fff;
    padding: 16px;
    border-radius: 2rem;
}
.ww-values__card .ww-icon-circle {
    justify-content: center;
    align-items: center;
    /* width: 20px; */
    height: 20px;
    background: none;
    margin: auto;
}
.ww-values__card {
    text-align: center;
    background: #fff;
    padding: 16px;
    border-radius: 2rem;
}
.ww-values__card .ww-icon-circle--primary-muted svg {
    width: 32px !important;
    height: 32px !important;
    color: #e85d17;
}
.ww-values__card-title {
    font-size: 16px !important;
    line-height: 26px;
    font-weight: 600;
    font-family: 'Source Sans 3', system-ui, sans-serif !important;
    color: #292f32;
}
.ww-values__card-text {
    font-size: 14px;
    color: var(--clr-fg-muted);
    line-height: 20px;
}
@media(min-width:1024px){ .ww-values__grid {         grid-template-columns: 2.6fr 3fr;
        gap: 20px;} }
.ww-values__h2 { font-family:var(--font-heading); font-size:clamp(1.75rem,3.5vw,2.5rem); margin-bottom:var(--space-xl); }
.ww-values__texts { display:grid; grid-template-columns:1fr; gap:var(--space-xl); margin-bottom:var(--space-2xl); }
@media(min-width:768px){ .ww-values__texts { grid-template-columns:1fr 1fr; } }
.ww-values__text-col { color:var(--clr-fg-muted); line-height:1.8; }
.ww-values__p { color:var(--clr-fg-muted); line-height:1.8; }
.ww-values__cards { display:grid; grid-template-columns:repeat(2,1fr); gap:var(--space-lg); margin-block:var(--space-2xl); }
@media(min-width:768px){ .ww-values__cards { grid-template-columns:repeat(1fr 1fr); } }
.ww-values__card { text-align:center; }
.ww-values__card-title { font-family:var(--font-heading); font-weight:700; margin-block:var(--space-sm) var(--space-xs); }
.ww-values__card-text  { font-size:.875rem; color:var(--clr-fg-muted); }
.ww-values__photos-grid { display:grid; grid-template-columns:1fr; gap:var(--space-lg); }
@media(min-width:640px){ .ww-values__photos-grid { grid-template-columns:2fr 1fr; } }
.ww-values__photos-deco { position:relative; }
.ww-values__photo-main img,.ww-values__photo-sec img { width:100%; height:100%; object-fit:cover; display:block;border-radius:var(--radius-2xl);  }
.ww-values__photo-main p {
    font-size: 14px;
    line-height: 26px;
    text-align: center;
    color: #6a767c;
}

.ww-values__photo-main h4 {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    margin-top: 15px;
}
.ww-values__photo-main img {
    height: 430px;
    margin-top: 90px;
}
.ww-values__photo-sec p {
    font-size: 14px;
    line-height: 26px;
    text-align: center;
    color: #6a767c;
}

.ww-values__photo-sec h4 {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    margin-top: 15px;
}
 .ww-values__photo-sec img {   height: 380px;
    margin-top: 90px;}
    .ubers_team {
    background: #fbfaf9;
}
.ubers_team .ww-team__rs-name {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 32px;
}
.ubers_team .ww-team__ruhestand p.ww-lead {
    font-size: 16px;
    line-height: 26px !important;
    max-width: 41rem !important;
}
.ubers_team .ww-team-card--ruhestand.ww-team-card {
    width: 320px;
}
.ubers_team .ww-team-card--ruhestand .ww-team-card__body {
    display: none;
}
.ubers_team .ww-team__cta {
    display: none;
}
.ueber_cta_banner .ww-cta-banner__grid {
    display: block;
    text-align: center;
    max-width: 42rem;
    margin: auto;
}
.ueber_cta_banner h2 {
    font-size: 36px;
    line-height: 40px;
}
.ueber_cta_banner p.ww-cta-banner__desc {
    color: #fffc;
}
.ueber_cta_banner .ww-cta-banner__btns {
    justify-content: center;
}
.ueber_cta_banner {
    background: #e85d17;
}
.ueber_cta_banner a.ww-btn--accent {
    background: #fff;
    border: none;
    color: #e85d17;
}
.ueber_cta_banner a.ww-btn--ghost-white svg {
    display: none;
}
/* ═══════════════════════════════════════════════════════════════
   BESTATTUNGSARTEN
   ═══════════════════════════════════════════════════════════════ */
.ww-bao { background:var(--clr-bg); }
.ww-bao__grid { display:grid; grid-template-columns:repeat(2,1fr); gap:var(--space-lg); margin-top:var(--space-2xl); }
@media(min-width:1024px){ .ww-bao__grid { grid-template-columns:repeat(2,1fr); } }
.ww-bao-card { background:var(--clr-card); border-radius:var(--radius-2xl); padding:var(--space-xl); box-shadow:var(--shadow-md); display:flex; flex-direction:row; gap:var(--space-md); text-decoration:none; color:inherit; transition:box-shadow .25s,transform .25s; }
.ww-bao-card:hover { box-shadow:var(--shadow-xl); transform:translateY(-3px); text-decoration:none; }
.ww-bao-card__body { display:flex; flex-direction:column; flex:1; gap:var(--space-sm); }
.ww-bao-card__name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--clr-secondary);
    line-height: 32px;
}
.ww-bao-card__short {
    font-size: 16px;
    color: var(--clr-fg-muted);
    line-height: 26px;
    flex: 1;
}
.ww-bao-card__link {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    color: #e85d17;
    font-weight: 600;
    font-size: 16px;
    margin-top: auto;
    line-height: 24px;
}
.ww-bao__grid img {
    width: 32px;
}
.bestung_details h2 {
    font-size: 36px;
    line-height: 40px;
}
.ww-bad { background:var(--clr-muted); }
.ww-bad__grid { display:grid; grid-template-columns:1fr; gap:var(--space-xl); margin-top:var(--space-2xl); }
@media(min-width:768px)  { .ww-bad__grid { grid-template-columns:repeat(2,1fr); } }
@media(min-width:1280px) { .ww-bad__grid { grid-template-columns:repeat(2,1fr); } }
.ww-bad-card { background:var(--clr-card); border-radius:3rem; padding:var(--space-xl); box-shadow:var(--shadow-md); display:flex; flex-direction:column; }
.ww-bad-card__head { display:flex; align-items:flex-start; gap:var(--space-md); margin-bottom:var(--space-md); }
.ww-bad-card__name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--clr-secondary);
    line-height: 32px;
    margin-bottom: 8px;
}
section.vorsorge_first_sec span.phone{display: none;}
section.vorsorge_first_sec span.doc_text {
    height: 24px;
}
section.vorsorge_first_sec span.right_arrow{
    display: none;
}
section.vorsorge_first_sec span.sec_phone {
    height: 20px;
}
.erdbestattung_banner span.sec_phone {
    display: none;
}
.erdbestattung_banner span.doc_text {
    display: none;
}
.erdbestattung_banner span.phone {
    height: 24px;
}
.erdbestattung_banner span.right_arrow{
    height: 24px;
}
section.contact_page_map .ww-standorte__h2 {
    font-size: 36px;
    line-height: 40px;
}
section.contact_page_map h3.ww-standort-card__name {
    font-size: 24px;
    line-height: 32px;
}
   section.contact_page_map  .ww-standort-card__details {
        grid-template-columns: 1fr;
    }
  section.contact_page_map span.icon_sec svg {
    width: 20px;
    height: 20px;
}
section.contact_page_map span.icon_sec {
    background: #f28e1c33;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 50px;
    border-radius: 50px;
}
 section.contact_page_map .ww-standort-card__detail h6 {
    font-size: 16px;
    line-height: 26px;
    font-family: 'Source Sans 3';
}
 section.contact_page_map p.text-sm.text-muted-foreground {
    font-size: 14px;
    line-height: 20px;
    color: #6a767c;
}
 section.contact_page_map a.ww-standort-card__route {
    background: #292f32;
    padding: 12px 24px;
    border-radius: 50px;
    color: #fff;
    font-size: 16px !important;
}
section.contact_page_map a.ww-standort-card__route svg {
    color: #fff;
}
.page-id-3010 .ww-locations {
    display: none;
}
.page-id-3010 .ww-hinweis {
    background: var(--clr-muted);
    padding-bottom: 6rem;
}
/* Progress container styling */
.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}
 
/* Line between progress steps */
.progress-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #dcdcdc; /* Light gray color initially */
    z-index: -1;
}
 
/* Progress step styling */
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
    flex-grow: 1;
    z-index: 1;
}
 
/* Step number styling */
.progress-step .step-number {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ccc !important;
    color: #6a767c !important;
    font-size: 16px;
    font-weight: bold;
    line-height: 40px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    z-index: 2;
}
 .progress-step .step-number {
    background-color: #ccc !important;
    color: #6a767c !important;
}
div#gform_page_1_1 div#step-1 .step-number{
    background-color: #f28e1c !important;
    color: #fff !important;
}
div#gform_page_1_2 div#step-1 .step-number{
    background-color: #f28e1c !important;
    color: #fff !important;
}
div#gform_page_1_2 div#step-2 .step-number{
    background-color: #f28e1c !important;
    color: #fff !important;
}
div#gform_page_1_3 div#step-1 .step-number{
    background-color: #f28e1c !important;
    color: #fff !important;
}
div#gform_page_1_3 div#step-2 .step-number{
    background-color: #f28e1c !important;
    color: #fff !important;
}
div#gform_page_1_3 div#step-3 .step-number{
    background-color: #f28e1c !important;
    color: #fff !important;
}
div#gform_page_1_4 div#step-1 .step-number{
    background-color: #f28e1c !important;
    color: #fff !important;
}
div#gform_page_1_4 div#step-2 .step-number{
    background-color: #f28e1c !important;
    color: #fff !important;
}
div#gform_page_1_4 div#step-3 .step-number{
    background-color: #f28e1c !important;
    color: #fff !important;
}
div#gform_page_1_4 div#step-4 .step-number{
    background-color: #f28e1c !important;
    color: #fff !important;
}
/* Step label styling */
.progress-step .step-label {
    font-size: 14px;
    color: #555;
}
 
 
/* Active step circle styling */
.progress-step.active .step-number {
    background-color: #ff9f00; /* Active step stays orange */
}
 
 
/* Line connecting the circles (between the progress steps) */
.progress-step::after {
    content: "";
    position: absolute;
    top: 30%; /* Align line with the center of the circle */
    left: 30%; /* Position the line right after the circle */
    width: 120%; /* Adjust line width to connect to the next step */
    height: 2px;
    background-color: #dcdcdc; /* Default line color */
    z-index: 0;
}
 
 
/* Line after the last step (no line after step 4) */
.progress-step:last-child::after {
    display: none;
}
 
/* For the first step, hide the line before the first circle */
.progress-step:first-child::after {
    display: none;
}
 
/* For active steps, apply bold styling to the label */
.progress-step.active .step-label {
    font-weight: bold;
    /* color: #ff9f00; */
}
 
/* Ensure the line appears correctly between all steps */
.progress-step:not(:last-child)::after {
    display: block; /* Force the line to be visible */
}
 
.ww-bad-card__desc {
    font-size: 16px;
    color: var(--clr-fg-muted);
    margin-bottom: 0px;
    line-height: 26px;
}
ul.ww-bad-card__features li svg {
    color: #e85d17;
    margin-right: 10px;
    width: 16px;
    height: 16px;
}
ul.ww-bad-card__features li span {
    font-size: 14px;
    line-height: 20px;
    color: #6a767c;
}
a.ww-bao-card__link {
    text-decoration: none;
}
.erdbestattung_banner .ww-bestattung-hero__content.container-wide {
    padding: 0rem 0rem 4rem 0rem;
}
.erdbestattung_banner .ww-bestattung-hero__card{
    margin: auto;
    text-align: center;
        background: rgb(255 255 255 / 47%);
    backdrop-filter: blur(8px);
}
.erdbestattung_banner .ww-bestattung-hero__back {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    color: #e85d17;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: var(--space-md);
    line-height: 24px;
}
.erdbestattung_banner span.ww-eyebrow {
    font-size: 20px;
    line-height: 28px;
    color: #292f32 !important;
    text-transform: capitalize;
    letter-spacing: 0px;
}
.erdbestattung_banner .ww-bestattung-hero__h1 {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
    color: var(--clr-secondary);
    margin-bottom: var(--space-sm);
}
.erdbestattung_banner .ww-bestattung-hero__sub {
    display: block;
    font-size: 36px;
    font-weight: 400;
    color: #292f32;
    margin-top: var(--space-xs);
    line-height: 40px;
}
.erdbestattung_banner .ww-bestattung-hero__desc {
    font-size: 20px;
    color: #6a767c;
    line-height: 28px;
    margin-block: var(--space-lg);
    max-width: 44rem;
    margin: 1.5rem auto;
}
.erdbestattung_banner .ww-bestattung-hero__ctas {
    justify-content: center;
}
.erdbestattung_banner a.ww-btn--ghost-dark {
    background: #292f32;
    color: #fff;
}
.erdbestattung_content_section h2 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 24px;
}
.erdbestattung_content_section .ww-bc__text {
    color: #292f32;
    line-height: 26px;
    font-size: 16px;
}
.erdbestattung_content_section h3 {
    font-size: 20px;
    line-height: 26px;
}
.erdbestattung_content_section ul li {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
}
.erdbestattung_content_section ul li svg {
    width: 20px;
    height: 20px;
    color: #e85d17;
}
.erdbestattung_content_section a.ww-btn--accent {
    background: #e85d17;
    border-color: #e85d17;
}
.erdbestattung_content_section .ww-bc__sidebar {
    height: 100%;
}
section.erdbestattung_faq {
    background: #f1f0ee;
}
section.erdbestattung_faq h2 {
    font-size: 36px;
    line-height: 40px;
}
section.erdbestattung_faq .ww-faq__cta {
    display: none;
}
.ww-andere__grid {
    width: 56rem;
    margin: auto;
}
.weitere_bestattungsarten .ww-icon-circle {
    display: none;
}
.weitere_bestattungsarten h3.ww-andere-card__title {
    font-size: 18px;
    line-height: 28px;
}
.weitere_bestattungsarten .ww-andere-card{
    padding: 24px;
}
.weitere_bestattungsarten .ww-andere-card__desc {
    font-size: 13px;
    color: var(--clr-fg-muted);
    line-height: 20px;
    flex: 1;
}
.erdbestattung_cta_banner a {
    background: #e85d17;
    border: none;
}
.friedhoefe_banner h1 {
    font-size: 60px;
    line-height: 60px;
}
.friedhoefe_banner .ww-page-hero__desc {
    font-size: 20px;
    color: var(--clr-fg-muted);
    line-height: 33px;
    max-width: 44rem;
    margin-inline: auto;
}
.friedhoefe_location h3 {
    font-size: 20px !important;
    line-height: 28px !important;
    font-weight: 600;
}
.ww-bad-card__features { display:flex; flex-direction:column; gap:var(--space-xs); margin-bottom:var(--space-lg); flex:1; }
.ww-bad-card__feat { display:flex; align-items:flex-start; gap:.375rem; font-size:.875rem; color:var(--clr-fg-muted); }
.ww-bad-card__feat svg { color:var(--clr-primary); flex-shrink:0; margin-top:2px; }

/* ═══════════════════════════════════════════════════════════════
   BESTATTUNG DETAIL HERO + CONTENT
   ═══════════════════════════════════════════════════════════════ */
.ww-bestattung-hero { position:relative; min-height:55vh; display:flex; align-items:flex-end; overflow:hidden; }
.ww-bestattung-hero__bg { position:absolute; inset:0; z-index:0; }
.ww-bestattung-hero__bg img { width:100%; height:100%; object-fit:cover; display:block; }
.ww-bestattung-hero__overlay  { position:absolute; inset:0; background:rgba(0,0,0,.2); }
.ww-bestattung-hero__gradient { position:absolute; bottom:0; left:0; right:0; height:60%; background:linear-gradient(to top,var(--clr-bg) 0%,rgba(249,244,239,.5) 60%,transparent 100%); }
.ww-bestattung-hero__content  { position:relative; z-index:1; padding-block:var(--space-3xl) var(--space-2xl); width:100%; }
.ww-bestattung-hero__card { max-width:48rem; background:rgba(255,255,255,.85); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); border-radius:var(--radius-2xl); padding:var(--space-xl) var(--space-2xl); }
.ww-bestattung-hero__back { display:inline-flex; align-items:center; gap:.25rem; color:var(--clr-primary); font-size:.9rem; font-weight:500; text-decoration:none; margin-bottom:var(--space-md); }
.ww-bestattung-hero__back:hover { text-decoration:underline; }
.ww-bestattung-hero__h1  { font-family:var(--font-heading); font-size:clamp(2rem,5vw,3.5rem); font-weight:700; line-height:1.1; color:var(--clr-secondary); margin-bottom:var(--space-sm); }
.ww-bestattung-hero__sub { display:block; font-size:clamp(1.125rem,2.5vw,1.5rem); font-weight:400; color:var(--clr-fg-muted); margin-top:var(--space-xs); }
.ww-bestattung-hero__desc { font-size:1.0625rem; color:var(--clr-fg-muted); line-height:1.75; margin-block:var(--space-lg); max-width:44rem; }
.ww-bestattung-hero__ctas { display:flex; flex-wrap:wrap; gap:var(--space-md); }
.ww-eyebrow--white { color:rgba(255,255,255,.75)!important; }

.ww-bc { background:var(--clr-bg); }
.ww-bc__grid { display:grid; grid-template-columns:1fr; gap:var(--space-2xl); align-items:start; }
@media(min-width:1024px){ .ww-bc__grid { grid-template-columns:2fr 1fr; } }
.ww-bc__section { margin-bottom:var(--space-2xl); }
.ww-bc__section:last-child { margin-bottom:0; }
.ww-bc__h2 { font-family:var(--font-heading); font-size:1.375rem; font-weight:700; color:var(--clr-secondary); margin-bottom:var(--space-md); }
.ww-bc__text { color:var(--clr-fg-muted); line-height:1.8; }
.ww-bc__sidebar-card { position:sticky; top:7rem; background:var(--clr-card); border-radius:var(--radius-2xl); padding:var(--space-xl); box-shadow:var(--shadow-md); }
.ww-bc__sb-h { font-family:var(--font-heading); font-size:1.125rem; font-weight:700; color:var(--clr-secondary); margin-bottom:var(--space-lg); }
.ww-bc__sb-list { display:flex; flex-direction:column; gap:var(--space-sm); margin-bottom:var(--space-lg); }
.ww-bc__sb-item { display:flex; align-items:flex-start; gap:.5rem; font-size:.9rem; color:var(--clr-fg-muted); }
.ww-bc__sb-item svg { color:var(--clr-primary); flex-shrink:0; margin-top:2px; }
.ww-bc__sb-note { font-size:.875rem; color:var(--clr-fg-muted); line-height:1.65; padding-block:var(--space-lg); border-block:1px solid var(--clr-border); margin-block:var(--space-lg); }

.ww-andere { background:var(--clr-muted); }
.ww-andere__h2 { text-align:center; margin-bottom:var(--space-2xl); }
.ww-andere__grid { display:grid; grid-template-columns:1fr; gap:var(--space-lg); }
@media(min-width:640px){ .ww-andere__grid { grid-template-columns:repeat(3,1fr); }     .ww-andere__grid {
        width: 100%;
    } }
.ww-andere-card { background:var(--clr-card); border-radius:var(--radius-2xl); padding:var(--space-xl); box-shadow:var(--shadow-md); text-decoration:none; color:inherit; display:flex; flex-direction:column; gap:var(--space-sm); transition:box-shadow .25s,transform .25s; }
.ww-andere-card:hover { box-shadow:var(--shadow-xl); transform:translateY(-2px); text-decoration:none; }
.ww-andere-card__title { font-family:var(--font-heading); font-size:1.0625rem; font-weight:700; color:var(--clr-secondary); }
.ww-andere-card__desc  { font-size:.9rem; color:var(--clr-fg-muted); line-height:1.6; flex:1; }
.ww-andere-card__link  { font-size:.875rem; font-weight:600; color:#e85d17; margin-top:auto; }

/* Benefits grid */
.ww-benefits { background:var(--clr-bg); }
.ww-benefits__grid { display:grid; grid-template-columns:repeat(2,1fr); gap:var(--space-lg); margin-top:var(--space-2xl); }
@media(min-width:1024px){ .ww-benefits__grid { grid-template-columns:repeat(4,1fr); } }
.ww-benefit-card { background:var(--clr-card); border-radius:var(--radius-xl); padding:var(--space-lg); box-shadow:var(--shadow-sm); display:flex; flex-direction:column; gap:var(--space-md); }
.ww-benefit-card__icon  { color:var(--clr-primary); }
.ww-benefit-card__title { font-family:var(--font-heading); font-size:1rem; font-weight:700; color:var(--clr-secondary); }
.ww-benefit-card__desc  { font-size:.875rem; color:var(--clr-fg-muted); line-height:1.65; }

/* Vorsorge form */
.ww-vf { background:var(--clr-bg); }
.ww-vf__form-wrap { background:var(--clr-card); border-radius:var(--radius-2xl); padding:var(--space-2xl); box-shadow:var(--shadow-md); }
.ww-vf__fallback { text-align:center; padding:var(--space-2xl); }
.ww-vf__fallback-btns { display:flex; flex-wrap:wrap; gap:var(--space-md); justify-content:center; margin-top:var(--space-lg); }

/* Gedenkportal */
.ww-gp { background:var(--clr-bg); }
.ww-gp__card { max-width:36rem; margin-inline:auto; background:var(--clr-card); border-radius:var(--radius-2xl); padding:var(--space-2xl); box-shadow:var(--shadow-lg); text-align:center; margin-bottom:var(--space-3xl); }
.ww-gp__year { display:inline-block; background:var(--clr-primary); color:#fff; font-weight:700; padding:.25rem .875rem; border-radius:var(--radius-full); font-size:.875rem; margin-bottom:var(--space-md); }
.ww-gp__h2   { font-family:var(--font-heading); font-size:1.5rem; font-weight:700; margin-bottom:var(--space-md); }
.ww-gp__desc { color:var(--clr-fg-muted); line-height:1.75; margin-bottom:var(--space-lg); }
.ww-gp__embed { background:var(--clr-muted); border-radius:var(--radius-lg); padding:var(--space-xl); margin-bottom:var(--space-lg); color:var(--clr-fg-muted); font-size:.9rem; }
.ww-gp__icon { color:var(--clr-primary); display:flex; justify-content:center; margin-bottom:var(--space-md); }
.ww-gp__features { display:grid; grid-template-columns:1fr; gap:var(--space-lg); margin-top:var(--space-2xl); }
@media(min-width:640px){ .ww-gp__features { grid-template-columns:repeat(3,1fr); } }
.ww-gp__feat { text-align:center; }
.ww-gp__feat-title { font-family:var(--font-heading); font-weight:700; margin-block:var(--space-sm) var(--space-xs); font-size:1rem; }
.ww-gp__feat-text  { font-size:.875rem; color:var(--clr-fg-muted); }

/* Formalitäten */
.ww-form-hero { background:var(--clr-secondary); padding-block:8rem var(--space-4xl); padding-top:max(8rem,calc(5rem + var(--space-3xl))); }
.ww-form-hero__inner { display:grid; grid-template-columns:1fr; gap:var(--space-2xl); align-items:center; }
@media(min-width:1024px){ .ww-form-hero__inner { grid-template-columns:1fr 1fr; } }
.ww-form-hero__badge { display:inline-flex; align-items:center; gap:.5rem; background:var(--clr-primary); color:#fff; padding:.375rem 1rem; border-radius:var(--radius-full); font-size:.875rem; font-weight:600; margin-bottom:var(--space-lg); width:fit-content; }
.ww-form-hero__h1   { font-family:var(--font-heading); font-size:clamp(2rem,5vw,3.25rem); font-weight:700; color:#fff; margin-bottom:var(--space-lg); }
.ww-form-hero__desc,.ww-form-hero__desc--2 { color:rgba(255,255,255,.82); line-height:1.75; margin-bottom:var(--space-lg); font-size:1.0625rem; }
.ww-form-hero__login-card { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15); border-radius:var(--radius-2xl); padding:var(--space-xl); backdrop-filter:blur(8px); }
.ww-form-hero__login-head,.ww-form-hero__powered { font-size:.75rem; color:rgba(255,255,255,.5); margin-bottom:var(--space-sm); }
.ww-form-hero__login-title { font-family:var(--font-heading); font-size:1.25rem; font-weight:700; color:#fff; margin-bottom:var(--space-lg); }
.ww-form-hero__note { font-size:.8125rem; color:rgba(255,255,255,.55); margin-top:var(--space-md); }

.ww-fwhat { background:var(--clr-bg); }
.ww-fwhat__grid { display:grid; grid-template-columns:1fr; gap:var(--space-2xl); }
@media(min-width:1024px){ .ww-fwhat__grid { grid-template-columns:1fr 1fr; } }
.ww-fwhat__left h2 { margin-bottom:var(--space-md); }
.ww-fwhat__card { background:var(--clr-muted); border-radius:var(--radius-2xl); padding:var(--space-xl); }
.ww-fwhat__card-h { font-family:var(--font-heading); font-size:1.25rem; font-weight:700; margin-bottom:var(--space-md); }
.ww-fwhat__card-p { color:var(--clr-fg-muted); margin-bottom:var(--space-xl); }
.ww-fwhat__card-btns { display:flex; flex-direction:column; gap:var(--space-md); }

/* Process steps */
.ww-process { background:var(--clr-muted); }
.ww-process__grid { display:grid; grid-template-columns:1fr; gap:var(--space-xl); margin-top:var(--space-2xl); }
@media(min-width:640px)  { .ww-process__grid { grid-template-columns:repeat(2,1fr); } }
@media(min-width:1024px) { .ww-process__grid { grid-template-columns:repeat(4,1fr); } }
.ww-process-card { background:var(--clr-card); border-radius:var(--radius-2xl); padding:var(--space-xl); box-shadow:var(--shadow-md); }
.ww-process-card__num { width:2.75rem; height:2.75rem; background:var(--clr-primary); color:#fff; border-radius:var(--radius-full); display:flex; align-items:center; justify-content:center; font-family:var(--font-heading); font-size:1.125rem; font-weight:700; margin-bottom:var(--space-md); }
.ww-process-card__title { font-family:var(--font-heading); font-size:1.0625rem; font-weight:700; margin-bottom:var(--space-sm); color:var(--clr-secondary); }
.ww-process-card__desc  { font-size:.9375rem; color:var(--clr-fg-muted); line-height:1.65; }

/* ═══════════════════════════════════════════════════════════════
   KONTAKT
   ═══════════════════════════════════════════════════════════════ */
.ww-kontakt-hero {     padding-block: 4rem;
    padding-top: 6rem; text-align:center; color: #292f32 }
.ww-kontakt-hero__inner { position:relative; z-index:1; }
.ww-kontakt-hero__h1 { font-family:var(--font-heading); font-size:clamp(2rem,5vw,3.25rem); font-weight:700; color:#292f32; margin-bottom:var(--space-md); }
.ww-kontakt-hero__desc {
    color: #6a767c;
    font-size: 20px;
    max-width: 40rem;
    margin-inline: auto;
    line-height: 28px;
}
section.ww-quickbtns {
    background: #f28e1c1a;
    padding: 3rem;
}
section.ww-quickbtns a {
    padding: 14px 30px;
}
.ww-quickbtns { background:var(--clr-bg); }
.ww-quickbtns__inner { display:flex; flex-wrap:wrap; gap:var(--space-lg); justify-content:center; }
.ww-hinweis { background:var(--clr-muted); }
.ww-hinweis__inner { max-width:44rem; margin-inline:auto; }
.ww-hinweis__text { text-align:center; color:var(--clr-fg-muted);     line-height: 28px;
    font-size: 18px;}
.ww-hinweis__text strong { color:var(--clr-secondary); }
a.ww-header__sub-link:hover {
    border-radius: 50px;
}
/* Standorte maps */
.ww-standorte { background:var(--clr-muted); }
.ww-standorte__h2 { text-align:center; margin-bottom:var(--space-2xl); }
.ww-standorte__grid { display:grid; grid-template-columns:1fr; gap:var(--space-xl); }
@media(min-width:768px){ .ww-standorte__grid { grid-template-columns:repeat(2,1fr); } }
.ww-standort-card { background:var(--clr-card); border-radius:var(--radius-2xl); box-shadow:var(--shadow-md); overflow:hidden; }
.ww-standort-card__map { aspect-ratio:16/9; }
.ww-standort-card__map iframe { width:100%; height:100%; display:block; border:0; }
.ww-standort-card__body { padding:var(--space-xl); }
.ww-standort-card__name { font-family:var(--font-heading); font-size:1.25rem; font-weight:700; color:var(--clr-secondary); margin-bottom:var(--space-lg); }
.ww-standort-card__details { display:grid; grid-template-columns:1fr; gap:var(--space-md); }
@media(min-width:480px){ .ww-standort-card__details { grid-template-columns:repeat(2,1fr); } }
.ww-standort-card__detail { display:flex; align-items:flex-start; gap:var(--space-sm); }
.ww-standort-card__detail svg { color:var(--clr-accent); flex-shrink:0; margin-top:2px; }
.ww-standort-card__val { font-size:.875rem; color:var(--clr-fg-muted); }
.ww-standort-card__val-strong { font-weight:600; color:var(--clr-secondary); display:block; }
.ww-standort-card__link { font-weight:600; color:var(--clr-secondary); text-decoration:none; display:block; }
.ww-standort-card__link:hover { color:var(--clr-primary); }
.ww-standort-card__route { display:inline-flex; align-items:center; gap:.375rem; color:var(--clr-accent); font-size:.875rem; font-weight:600; text-decoration:none; }
.ww-standort-card__route:hover { text-decoration:underline; }

/* ═══════════════════════════════════════════════════════════════
   FRIEDHÖFE
   ═══════════════════════════════════════════════════════════════ */
.ww-fg { background:var(--clr-bg); }
.ww-fg__grid { display:grid; grid-template-columns:1fr; gap:var(--space-md); margin-top:var(--space-2xl); }
@media(min-width:640px)  { .ww-fg__grid { grid-template-columns:repeat(2,1fr); } }
@media(min-width:1024px) { .ww-fg__grid { grid-template-columns:repeat(3,1fr); } }
.ww-fg-card {
    background: var(--clr-card);
    border-radius: 2rem;
    padding: var(--space-lg);
    box-shadow: 0 4px 24px hsl(200 10% 18% / .08);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s,transform .2s;
}
.ww-cta-phone.black_stripe h2 {
    color: #fff;
}
.ww-cta-phone.black_stripe {
    background: #292f32;
}
  .ww-cta-phone.black_stripe .ww-cta-phone__inner a{  background: #e85d17;
    border: none;
    color: #171B21 !important}
.ww-fg-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-2px); text-decoration:none; }
.ww-fg-card__body { flex:1; }
.ww-fg-card__name { font-family:var(--font-heading); font-size:1.0625rem; font-weight:700; color:var(--clr-secondary); margin-bottom:8px; }
.ww-fg-card__desc { font-size:.875rem; color:var(--clr-fg-muted); line-height: 20px;
    margin-bottom: 16px; }
.ww-fg-card__link { display:flex; align-items:center; gap:.25rem; color:#e85d17; font-size:14px; font-weight:600; margin-top:var(--space-sm); }

.ww-fhero { position:relative; min-height:50vh; display:flex; align-items:flex-end; overflow:hidden; }
.ww-fhero__bg { position:absolute; inset:0; z-index:0; }
.ww-fhero__bg img { width:100%; height:100%; object-fit:cover; display:block; }
.ww-fhero__overlay  { position:absolute; inset:0; background:rgba(0,0,0,.2); }
.ww-fhero__gradient { position:absolute; bottom:0; left:0; right:0; height:55%; background:linear-gradient(to top,var(--clr-bg) 0%,transparent 100%); }
.ww-fhero__content  { position:relative; z-index:1; padding-block:var(--space-4xl) var(--space-xl); width:100%; }
.ww-fhero__card { max-width:56rem; background:rgba(255,255,255,.85); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); border-radius:var(--radius-2xl); padding:2rem; margin: auto;}
.ww-fhero__back { display:inline-flex; align-items:center; gap:.25rem; color:var(--clr-primary); font-size:16px; font-weight:500; text-decoration:none; margin-bottom:var(--space-md);    line-height: 24px; }
.ww-fhero__h1 {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
    color: var(--clr-secondary);
    margin-bottom: 24px;
}
.ww-fhero__desc {
    font-size: 20px;
    color: var(--clr-fg-muted);
    line-height: 33px;
}

.ww-ruheforst { background:var(--clr-card); }
.ww-ruheforst__card { background:linear-gradient(135deg,hsl(var(--clr-primary-hsl)/.08),hsl(var(--clr-accent-hsl)/.08)); border-radius:var(--radius-2xl); padding:var(--space-xl) var(--space-2xl); }
.ww-ruheforst__inner { display:flex; flex-direction:column; gap:var(--space-lg); }
@media(min-width:768px){ .ww-ruheforst__inner { flex-direction:row; align-items:center; } }
.ww-ruheforst__body { flex:1; }
.ww-ruheforst__h2   { font-family:var(--font-heading); font-size:1.5rem; font-weight:700; color:var(--clr-secondary); margin-bottom:var(--space-sm); }
.ww-ruheforst__text { color:var(--clr-fg-muted); line-height:1.75; margin-bottom:var(--space-md); }
.ww-ruheforst__link { display:inline-flex; align-items:center; gap:.375rem; color:var(--clr-primary); font-weight:600; text-decoration:none; font-size:.9375rem; }
.ww-ruheforst__link:hover { text-decoration:underline; }

/* ═══════════════════════════════════════════════════════════════
   STANDORT SEO
   ═══════════════════════════════════════════════════════════════ */
.ww-sth { background:linear-gradient(135deg,var(--clr-primary),var(--clr-secondary)); color:#fff; }
.ww-sth__inner { display:grid; grid-template-columns:1fr; gap:var(--space-2xl); align-items:center; }
@media(min-width:1024px){ .ww-sth__inner { grid-template-columns:1fr 1fr; } }
.ww-sth__h1 { font-family:var(--font-heading); font-size:clamp(2rem,5vw,3.25rem); font-weight:700; color:#fff; margin-bottom:var(--space-md); }
.ww-sth__desc { color:rgba(255,255,255,.85); font-size:1.0625rem; line-height:1.75; margin-bottom:var(--space-xl); }
.ww-sth__card-btns { display:flex; flex-wrap:wrap; gap:var(--space-md); }
.ww-sth__card { background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.2); border-radius:var(--radius-2xl); padding:var(--space-xl); backdrop-filter:blur(6px); }
.ww-sth__card-row { display:flex; align-items:flex-start; gap:var(--space-sm); margin-bottom:var(--space-md); }
.ww-sth__card-item { font-size:.9rem; color:rgba(255,255,255,.85); }
.ww-sth__card-item strong { color:#fff; }
.ww-sth__stats { display:flex; gap:var(--space-xl); margin-top:var(--space-xl); padding-top:var(--space-xl); border-top:1px solid rgba(255,255,255,.15); }
.ww-sth__stat-num { font-family:var(--font-heading); font-size:1.5rem; font-weight:700; color:#fff; }
.ww-sth__stat-lbl { font-size:.8125rem; color:rgba(255,255,255,.65); }
.ww-stl { background:var(--clr-bg); }
.ww-stl__grid { display:grid; grid-template-columns:1fr; gap:var(--space-2xl); }
@media(min-width:768px){ .ww-stl__grid { grid-template-columns:1fr 1fr; } }
.ww-stl__left h2,.ww-stl__right h3,.ww-stl__ort-h { margin-bottom:var(--space-lg); }
.ww-stl__ortsteile { display:flex; flex-wrap:wrap; gap:var(--space-sm); margin-top:var(--space-md); }
.ww-stl__ortsteil { background:var(--clr-muted); border:1px solid var(--clr-border); border-radius:var(--radius-full); padding:.375rem .875rem; font-size:.875rem; font-weight:500; color:var(--clr-secondary); }
.ww-sta { background:var(--clr-muted); }
.ww-sta__h2 { margin-bottom:var(--space-2xl); }
.ww-sta__grid { display:grid; grid-template-columns:repeat(2,1fr); gap:var(--space-lg); }
@media(min-width:768px){ .ww-sta__grid { grid-template-columns:repeat(4,1fr); } }
.ww-sta-card { background:var(--clr-card); border-radius:var(--radius-xl); padding:var(--space-lg); box-shadow:var(--shadow-sm); text-decoration:none; color:inherit; display:flex; flex-direction:column; gap:var(--space-sm); transition:box-shadow .2s,transform .2s; }
.ww-sta-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-2px); text-decoration:none; }
.ww-sta-card__name { font-family:var(--font-heading); font-size:1rem; font-weight:700; color:var(--clr-secondary); }
.ww-sta-card__desc { font-size:.875rem; color:var(--clr-fg-muted); }
.ww-sta-card__link { font-size:.8125rem; font-weight:600; color:var(--clr-primary); margin-top:auto; }

/* Breadcrumb */
.ww-breadcrumb { background:var(--clr-muted); padding-block:var(--space-md); }
.ww-breadcrumb__list { display:flex; align-items:center; gap:.375rem; flex-wrap:wrap; font-size:.875rem; }
.ww-breadcrumb__item { color:var(--clr-fg-muted); display:flex; align-items:center; gap:.375rem; }
.ww-breadcrumb__item a { color:var(--clr-primary); text-decoration:none; }
.ww-breadcrumb__item a:hover { text-decoration:underline; }
.ww-breadcrumb__sep { color:var(--clr-border); }
.ww-breadcrumb__item--current { color:var(--clr-secondary); font-weight:500; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.ww-footer { background:#292f32; color:rgba(255,255,255,.80); }
.ww-footer__grid { display:grid; grid-template-columns:1fr; gap:var(--space-2xl); padding-block:var(--space-4xl); }
@media(min-width:768px)  { .ww-footer__grid { grid-template-columns:repeat(2,1fr); } }
@media(min-width:1024px) { .ww-footer__grid {         grid-template-columns: 1.25fr 1fr 1fr 1.25fr; } }
.ww-footer__logo-link { display:inline-block; margin-bottom:var(--space-lg); }
.ww-footer__logo { height:3.25rem; width:auto; filter:brightness(0) invert(1); display:block; }
.ww-footer__brand-text {     font-size: 16px;
    line-height: 26px; color:rgba(255,255,255,.72); }
.ww-footer__col-h { font-family:var(--font-heading); font-size:1.0625rem; font-weight:600; color:#fff; margin-bottom:var(--space-lg); }
.ww-footer__links { display:flex; flex-direction:column; gap:var(--space-sm); }
.ww-footer__links a { font-size:.9375rem; color:rgba(255,255,255,.72); text-decoration:none; transition:color .2s; }
.ww-footer__links a:hover { color:var(--clr-primary); }
.ww-footer__contacts { display:flex; flex-direction:column; gap:var(--space-lg); cursor: pointer; }
.ww-footer__contact { display:flex; align-items:flex-start; gap:var(--space-sm); text-decoration:none; color:rgba(255,255,255,.72); transition:color .2s; }
.ww-footer__contact:hover { color:var(--clr-primary); }
.ww-footer__contact svg {     color: #e85d17; flex-shrink:0; margin-top:2px; }
.ww-footer__contact strong { color:#fff; display:block; margin-bottom:.125rem;    line-height: 24px; }
.ww-footer__addr { font-style:normal; font-size:.875rem; line-height:20px; }
.ww-footer__sub  { font-size:.875rem; color:rgba(255,255,255,.55); }
.ww-footer__bottom { border-top:1px solid rgba(255,255,255,.10); }
.ww-footer__bottom-inner { display:flex; flex-direction:column; align-items:center; gap:var(--space-md); padding-block:var(--space-xl); font-size:.875rem; text-align:center; }
@media(min-width:768px){ .ww-footer__bottom-inner { flex-direction:column; justify-content:space-between; text-align:left; } }
.ww-footer__credit { display:flex; align-items:center; gap:.375rem; color:rgba(255,255,255,.55); }
.ww-footer__credit a { color:var(--clr-primary); text-decoration:none; }
.ww-footer__credit a:hover { text-decoration:underline; }
.ww-footer__legal { display:flex; gap:var(--space-lg); }
.ww-footer__legal a { color:rgba(255,255,255,.55); text-decoration:none; transition:color .2s; }
.ww-footer__legal a:hover { color:var(--clr-primary); }

/* ── Remaining utilities ────────────────────────────────────── */
.ww-bc__main    { }
.ww-bc__sidebar { }
.ww-fl__main    { }
.ww-values__photos { display:grid; grid-template-columns:1fr; gap:var(--space-lg); }
@media(min-width:640px){ .ww-values__photos { grid-template-columns:1fr; } }
.ww-sth__stat   { text-align:center; }
.ww-btn--ghost-dark { background:transparent; color:var(--clr-secondary); border-color:var(--clr-border); }
.ww-btn--ghost-dark:hover { background:var(--clr-secondary); color:#fff; }
/* ww-icon-circle-- dynamic class (BEM modifier partial) - handled by specific modifiers above */

/* ═══════════════════════════════════════════════════════════════
   LOCATIONS SECTION (above footer, every page)
   ═══════════════════════════════════════════════════════════════ */
.ww-locations { background: var(--clr-muted); }
.ww-locations__h {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--clr-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 36px;
}
.ww-locations__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}
@media (min-width: 768px) {
    .ww-locations__grid { grid-template-columns: repeat(2, 1fr); }
}

.ww-location-card {
    background: var(--clr-card);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.ww-location-card__map {
    aspect-ratio: 16/9;
    width: 100%;
    background: var(--clr-muted);
}
.ww-location-card__map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}
.ww-location-card__body { padding: var(--space-xl); }
.ww-location-card__name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-secondary);
    margin-bottom: var(--space-lg);
}
.ww-location-card__details {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}
@media (min-width: 480px) {
    .ww-location-card__details { grid-template-columns: repeat(2, 1fr); }
}
.ww-location-card__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.875rem;
}
.ww-location-card__detail > svg { color: var(--clr-accent); flex-shrink: 0; margin-top: 2px; }
.ww-location-card__val { color: var(--clr-fg-muted); line-height: 1.5; }
.ww-location-card__val--strong { font-weight: 600; color: var(--clr-secondary); }
.ww-location-card__link {
    font-weight: 600;
    color: var(--clr-secondary);
    text-decoration: none;
    display: block;
    line-height: 1.5;
    transition: color 0.2s;
}
.ww-location-card__link:hover { color: var(--clr-primary); }
.ww-location-card__route {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--clr-accent);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}
.ww-location-card__route:hover { opacity: 0.8; text-decoration: none; }

/* ═══════════════════════════════════════════════════════════════
   LOCATIONS SECTION — global, above footer
   ═══════════════════════════════════════════════════════════════ */
.ww-locations { background: var(--clr-muted); }
.ww-locations__h {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--clr-secondary);
    text-align: center;
    margin-bottom: var(--space-2xl);
    line-height: 36px;
}
.ww-locations__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}
@media (min-width: 768px) { .ww-locations__grid { grid-template-columns: repeat(2, 1fr); } }

.ww-location-card {
    background: var(--clr-card);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.ww-location-card__map { aspect-ratio: 16/9; background: var(--clr-muted); }
.ww-location-card__map iframe { width: 100%;     
height: 340px !important; display: block; }
.ww-location-card__body { padding: var(--space-xl); }
.ww-location-card__name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-secondary);
    margin-bottom: 16px;
}
.ww-location-card__details {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}
@media (min-width: 480px) { .ww-location-card__details { grid-template-columns: repeat(2, 1fr); } }
.ww-location-card__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.875rem;
}
.ww-location-card__detail > svg { color: var(--clr-accent); flex-shrink: 0; margin-top: 2px; }
.ww-location-card__val { color: var(--clr-fg-muted); line-height: 1.5; }
.ww-location-card__val--strong { font-weight: 500; color: var(--clr-secondary); }
.ww-location-card__link { font-weight: 600; color: var(--clr-secondary); text-decoration: none; display: block; }
.ww-location-card__link:hover { color: var(--clr-primary); }
.ww-location-card__route {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--clr-accent);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
}
.ww-location-card__route:hover { opacity: 0.8; }

/* Footer col variants */
.ww-footer__col { }
.ww-footer__col--brand { }

/* Mobile nav group (parent of toggle+sub) */
.ww-mob__group { }

/* ═══════════════════════════════════════════════════════════════
   FRIEDHOF LIST — two modes
   ═══════════════════════════════════════════════════════════════ */
.ww-fl { background: var(--clr-bg); }

/* Shared heading */
.ww-fl__h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--clr-secondary);
    margin-bottom: 32px;
    line-height: 36px;
}

/* ── GRID MODE (>5 items, Bretzfeld etc.) ─────────────────── */
.ww-fl__cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}
@media (min-width: 640px)  { .ww-fl__cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ww-fl__cards-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Grid-mode card */
.ww-fl-card {
    background: var(--clr-card);
    border-radius: var(--radius-2xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
}
.ww-fl-card__head {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}
.ww-fl-card__name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-secondary);
    line-height: 1.3;
}
.ww-fl-card__grabarten {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    list-style: none;
    margin-top: var(--space-xs);
}
.ww-fl-card__grabart {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--clr-fg-muted);
}
.ww-fl-card__grabart svg {
    color: #e85d17;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* ── SIDEBAR MODE (≤5 items, Weinsberg etc.) ────────────────── */
.ww-fl__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: start;
}
@media (min-width: 1024px) { .ww-fl__layout { grid-template-columns: 2fr 1fr; } }

.ww-fl__items { display: flex; flex-direction: column; gap: var(--space-lg); }

/* Stacked card (sidebar mode — bigger, vertical list) */
.ww-fl-card--stacked {
    padding: var(--space-xl);
        box-shadow: 0 4px 24px hsl(200 10% 18% / .08);
}
.ww-fl-card--stacked .ww-fl-card__head {
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
}
.ww-fl-card--stacked .ww-fl-card__name {
        font-size: 20px;
    margin-bottom: 12px;
    line-height: 28px;
    font-weight: 600;
}
.ww-fl-card__grab-label {
    font-size: 14px;
    color: var(--clr-fg-muted);
    margin-bottom: 12px;
    line-height: 20px;
}
/* 2-col grabarten grid inside stacked card */
.ww-fl-card__grabarten--2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.ww-fl-card__grabarten--2col .ww-fl-card__grabart {
    font-size: 14px;
    line-height: 20px;
    color: #292f32;
}

/* Prose below grid/list */
.ww-fl__prose { margin-top: var(--space-3xl); max-width: 48rem; }
.ww-fl__prose-h {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-secondary);
    margin-bottom: var(--space-md);
}
.ww-fl__prose-p {
    color: #292f32;
    line-height: 1.8;
}

/* Sidebar card */
.ww-fl__sidebar {}
.ww-fl__sb-card {
    background: var(--clr-card);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 7rem;
}
.ww-fl__sb-h {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-secondary);
    margin-bottom: 24px;
}
.weinsberg_black_stripe {
    background: #292f32;
}
.bretzfeld_location .ww-fl-card h3 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 8px;
}
.bretzfeld_location .ww-fl-card__grabart {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 14px;
    color: var(--clr-fg-muted);
    line-height: 20px;
}
.ww-fl__sb-p {
    font-size: 16px;
    color: var(--clr-fg-muted);
    line-height: 26px;
    margin-bottom: var(--space-lg);
}
    .ww-fl__sidebar .ww-btn{background: #e85d17;
    border: none;}
.ww-fl__sb-links {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--clr-border);
}
.ww-fl__sb-links-h {
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-secondary);
    margin-bottom: var(--space-md);
    line-height: 24px;
}
.ww-fl__sb-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-primary);
    text-decoration: none;
    margin-bottom: var(--space-sm);
    transition: opacity 0.2s;
    line-height: 20px;
}
.ww-fl__sidebar {
    height: 100%;
}
.ww-fl__sb-link:hover { opacity: 0.75; text-decoration: none; }
.ww-gallery h2 {
    font-size: 30px;
    line-height: 36px;
}
.ww-faq h2 {
    font-size: 36px;
    line-height: 40px;
}
section.weinsberg_faq {
    background: #f1f0ee;
}
section.weinsberg_faq .ww-faq__cta{
    display: none;
}
.weinsberg_black_stripe h2 {
    font-size: 36px;
    line-height: 40px;
}
.weinsberg_black_stripe p.ww-cta-dark__desc {
    font-size: 20px;
    line-height: 28px;
}
.weinsberg_black_stripe a.ww-btn{
    background: #e85d17;
    border: none;
}
.red_stripe_obersulm {
    padding: 8rem 0px !important;
}
.red_stripe_obersulm .ww-ruheforst__card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
}
.red_stripe_obersulm .ww-ruheforst__card h2 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 16px;
}
.red_stripe_obersulm .ww-ruheforst__card .ww-ruheforst__text {
    color: #6a767c;
    line-height: 26px;
    margin-bottom: var(--space-md);
    font-size: 16px;
}
.red_stripe_obersulm .ww-ruheforst__card .ww-ruheforst__link {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    color: var(--clr-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
}
.red_stripe_obersulm .ww-ruheforst__card .ww-icon-circle svg {
    width: 40px !important;
    height: 40px !important;
}
.red_stripe_obersulm .ww-ruheforst__card .ww-icon-circle {
    background: #e85d1733;
    border-radius: 32px;
}
/* ── Ruheforst highlight fix ────────────────────────────────── */
.ww-ruheforst { background: var(--clr-card); padding-block: var(--space-xl); }

/* ═══════════════════════════════════════════════════════════════
   IMAGE GALLERY (Friedhof pages)
   ═══════════════════════════════════════════════════════════════ */
.ww-gallery {
    background: var(--clr-muted);
    padding-block: var(--space-4xl);
}
.ww-gallery .ww-section-header { margin-bottom: var(--space-xl); }
.ww-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}
@media (min-width: 640px)  { .ww-gallery__grid { grid-template-columns: repeat(4, 1fr); } }
.ww-gallery__item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    margin: 0;
}
.ww-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.ww-gallery__item:hover img { transform: scale(1.05); }
.ww-gallery__caption {
    display: none; /* Hidden visually — present for accessibility only */
}
.ww-service-card__icon img {
    width: 32px;
}
.vorsorge_first_sec .ww-bestattung-hero__content {
    text-align: center;
}
.vorsorge_first_sec .ww-bestattung-hero__card {
    margin: auto;
    padding: 3rem;
    backdrop-filter: blur(4px) !important;
    background: rgb(255 255 255 / 63%);
}
.vorsorge_first_sec .ww-bestattung-hero__ctas{
justify-content: center;}
.vorsorge_first_sec a.ww-bestattung-hero__back {
    display: none;
}
.vorsorge_first_sec span.ww-eyebrow {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
    color: #292f32 !important;
    text-transform: capitalize;
}
.vorsorge_first_sec .ww-bestattung-hero__h1 {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
    color: var(--clr-secondary);
    margin-bottom: var(--space-sm);
}
.vorsorge_first_sec .ww-bestattung-hero__sub {
    display: block;
    font-size: 36px;
    font-weight: 400;
    color: #292f32;
    margin-top: var(--space-xs);
    line-height: 40px;
}
.vorsorge_first_sec a.ww-btn.ww-btn--accent:hover
 {
    background-color: #f28e1c;
}

.vorsorge_first_sec a.ww-btn {
    font-size: 18px;
    line-height: 28px;
}
.vorsorge_first_sec a.ww-btn.ww-btn--ghost-dark {
    background: #292f32;
    color: #fff;
}
.vorsorge_sec_sec {
    background: #f1f0ee;
}
.vorsorge_sec_sec span.ww-eyebrow {
    display: none;
}
.vorsorge_sec_sec h2 {
    font-size: 36px !important;
    line-height: 40px !important;
}
.vorsorge_sec_sec .ww-benefit-card{
    text-align: center;
}
.vorsorge_sec_sec .ww-benefit-card {
    gap: 0;
    /* text-align: center; */
    align-items: center;
}
.vorsorge_sec_sec .ww-icon-circle svg {
    width: 48px !important;
    height: 48px !important;
}
.vorsorge_sec_sec .ww-icon-circle {
    background: transparent;
}
.vorsorge_sec_sec .ww-benefit-card__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-secondary);
    line-height: 28px;
    margin-bottom: 8px;
}
.vorsorge_sec_sec .ww-benefit-card__desc {
    line-height: 20px;
}
.vorsorge_third_sec h2 {
    font-size: 36px;
    line-height: 40px;
}
section.vorsorge_faq {
    background: #f1f0ee;
}
section.vorsorge_faq .ww-faq__cta {
    display: none;
}
.gedenkportal_first_sec {
    background: #f1f0ee;
}
.gedenkportal_sec_sec .ww-gp__card {
    max-width: 42rem;
    box-shadow: 0 4px 24px rgba(45, 52, 54, .08);
}
    .gedenkportal_sec_sec .ww-icon-circle {margin: 0 auto 18px;
    }
    .gedenkportal_sec_sec .ww-icon-circle--primary-muted svg{
    width: 40px !important;
    height: 40px !important;
    color: #e85d17;
}
.gedenkportal_sec_sec h2 {
    font-size: 30px;
    line-height: 36px;
}
.gedenkportal_sec_sec .ww-gp__desc {
    color: var(--clr-fg-muted);
    line-height: 28px;
    margin-bottom: var(--space-lg);
    font-size: 18px;
}
.gedenkportal_sec_sec .ww-gp__year {
    display: flex;
    background: transparent;
    color: #6a767c;
    font-weight: 400;
    padding: .25rem .875rem;
    border-radius: var(--radius-full);
    font-size: 16px;
    margin-bottom: var(--space-md);
    align-items: center;
    width: 16rem;
    margin: 38px auto;
    gap: 8px;
    line-height: 24px;
}
.gedenkportal_sec_sec .ww-gp__embed {
    background: #f1f0ee80;
    border: 2px dashed #e5e2dc;
}
.gedenkportal_sec_sec .ww-gp__embed p {
    font-size: 14px;
    line-height: 20px;
}
.gedenkportal_sec_sec .ww-gp__features {
    width: 42rem;
    margin: auto;
}
.gedenkportal_sec_sec .ww-gp__feat {
    background: #fff;
    padding: 1.5rem;
    border-radius: 2rem;
}
.gedenkportal_sec_sec .ww-gp__feat svg {
    width: 24px !important;
}
.gedenkportal_sec_sec .ww-gp__feat-title {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-block: 8px;
    font-size: 15px;
    line-height: 24px;
}
.gedenkportal_sec_sec .ww-gp__feat-text {
    font-size: 14px;
    color: var(--clr-fg-muted);
    line-height: 20px;
}
.formalitaeten_first_sec .ww-form-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
        max-width: 56rem;
    margin: auto;
}
.formalitaeten_first_sec .ww-form-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #e85d1733;
    color: #e85d17;
    padding: .375rem 1rem;
    border-radius: var(--radius-full);
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    width: fit-content;
       margin: 0 auto 24px;
}
.formalitaeten_first_sec.ww-form-hero {
    background: #292f32f2;
    padding-block: 8rem var(--space-4xl);
    padding-top: max(8rem,calc(5rem + var(--space-3xl)));
}
.formalitaeten_first_sec .ww-form-hero__h1 {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-lg);
    line-height: 60px;
}
.formalitaeten_first_sec p.ww-form-hero__desc {
    font-size: 20px;
    line-height: 33px;
    width: 42rem;
    margin: 0 auto 24px;
}
.formalitaeten_first_sec p.ww-form-hero__desc--2 {
    font-size: 18px !important;
    line-height: 29px !important;
    margin: 0 auto 40px !important;
}
.formalitaeten_first_sec .ww-form-hero__login-card {
    width: 36rem;
    margin: auto;
        background: #fff;
            border-radius: 3rem;
}
.formalitaeten_first_sec .ww-form-hero__login-head {
    display: flex;
    justify-content: center;
        margin-bottom: 24px;
        gap: 10px;
}
.formalitaeten_first_sec p.ww-form-hero__powered {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0px;
        color: #6a767c;
            text-align: left;
}
.formalitaeten_first_sec p.ww-form-hero__login-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 0px;
    color: #292f32;
}
.formalitaeten_first_sec a.ww-btn:hover {
    background: #f28e1c;
}
.formalitaeten_first_sec a.ww-btn {
    border: none;
}
.formalitaeten_first_sec p.ww-form-hero__note {
    font-size: 14px;
    line-height: 20px;
    color: #6a767c;
}
.formalitaeten_sec_sec .ww-benefits__grid {
        grid-template-columns: repeat(3, 1fr);
    }
   .formalitaeten_sec_sec  .ww-benefit-card{
            gap: 0;
    }
    .formalitaeten_sec_sec .ww-icon-circle {
    background: #e85d171a;
    width: 56px;
    height: 56px;
        margin-bottom: 20px;
}
.formalitaeten_sec_sec .ww-icon-circle--primary-muted svg {
    width: 28px !important;
    height: 28px !important;
    color: #e85d17;
}
.formalitaeten_sec_sec h3.ww-benefit-card__title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
}
.formalitaeten_sec_sec .ww-benefit-card__desc {
    font-size: 16px;
    color: #6a767c;
    line-height: 26px;
}
.formalitaeten_third_sec {
    background: #f1f0ee !important;
}
    .formalitaeten_third_sec .ww-process__grid {
            grid-template-columns: repeat(2, 1fr);
    width: 56rem;
    margin: auto;
    gap: 20px;
    }
    .formalitaeten_third_sec .ww-process-card__num {
    width: 4.7rem;
    height: 2.75rem;
    background: #f28e1c;
    color: #fff;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Source Sans 3';
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    margin-right: 15px;
}
.formalitaeten_third_sec .ww-process-card__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--clr-secondary);
    line-height: 28px;
}
.formalitaeten_third_sec .ww-process-card {
    display: flex;
}
.formalitaeten_third_sec .ww-process-card__desc {
    font-size: 14px;
    color: var(--clr-fg-muted);
    line-height: 23px;
}
.formalitaeten_fourth_sec h2#fwhat-h {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 24px;
}
.formalitaeten_fourth_sec .ww-lead {
    font-size: 1.125rem;
    color: var(--clr-fg-muted);
    line-height: 29px;
    max-width: 42rem;
}
.formalitaeten_fourth_sec .ww-checklist__item {
    margin-bottom: 8px;
}
.formalitaeten_fourth_sec .ww-fwhat__card-btns a.ww-btn--accent:hover {
    background: #f28e1c;
}
.formalitaeten_fourth_sec .ww-fwhat__card-h {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 32px;
}
.formalitaeten_fourth_sec .ww-fwhat__card {
    background: #faf0e5;
    border-radius: 3rem;
    padding: 2.5rem;
        height: fit-content;
}
.formalitaeten_fourth_sec .ww-fwhat__grid{
            align-items: center;
}
section.formalitaeten_faq {
    background: #f1f0ee;
}
section.formalitaeten_faq .ww-faq__cta{
    display: none;
}
.formalitaeten_cta_banner .ww-cta-banner__grid {
    grid-template-columns: 1fr;
}
.formalitaeten_cta_banner .ww-cta-banner__cards {
    display: none;
}
.formalitaeten_cta_banner .ww-cta-banner__left {
    text-align: center;
}
.formalitaeten_cta_banner .ww-cta-banner__btns {
    justify-content: center;
}
.formalitaeten_cta_banner.ww-cta-banner {
    background: #f28e1c;
}
.formalitaeten_cta_banner .ww-cta-banner__h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: #292f32;
    margin-bottom: var(--space-md);
    line-height: 40px;
}
.formalitaeten_cta_banner .ww-cta-banner__desc {
    font-size: 20px;
    color: rgba(255,255,255,.88);
    line-height: 28px;
    margin-bottom: var(--space-xl);
    max-width: 42rem;
    margin: 12px auto 32px;
}
.formalitaeten_cta_banner a.ww-btn--accent {
    background: #fff;
    color: #f28e1c;
}
.formalitaeten_faq h2 {
    font-size: 48px;
    line-height: 48px;
}
.bestattungsart_cta_banner {
    background: #292f32;
}
 .bestattungsart_cta_banner h2{   color: #fff;}
 .bestattungsart_cta_banner a.ww-btn--accent {
    background: #f28e1c !important;
    color: #fff !important;
}
.erdbestattung_cta_banner {
    background: #292f32;
}
.ww-bestattung-hero__ctas a.ww-btn.ww-btn--accent {
    background: #f28e1c;
}
.heilbronn_sec_sec p.ww-fl-card__grab-label {
    display: none;
}
.gedenkportal_first_sec h1 {
    font-size: 60px;
    line-height: 60px;
}
.gedenkportal_first_sec .ww-page-hero__desc {
    font-size: 20px;
    line-height: 33px;
}
h2.gform_title {
    display: none;
}
 
.gform-theme--framework .gf_page_steps,
.gform-theme--framework .gf_progressbar_wrapper {
    margin-block-end: var(--gf-field-pg-prog-margin-y-end);
    display: none;
}
 
p.gform_required_legend {
    display: none;
}
 
.ww-vf__form-wrap {
    max-width: 56rem;
    margin: 0 auto;
}
.gform_page_fields h3 {
    font-size: 24px;
    line-height: 32px;
}
.gform_page_fields div.gform_fields{
        row-gap: 24px;
}
legend.gfield_label.gform-field-label {
    font-size: 17px !important;
    line-height: 14px !important;
}
label.gfield_label.gform-field-label {
    font-size: 17px !important;
    line-height: 14px !important;
}
.gfield_radio{
            grid-template-columns: repeat(3, 0fr) !important;
}
input {
    background: #fbfaf9 !important;
    border: 1px solid #e5e2dc !important;
    border-radius: 50px !important;
    box-shadow: none !important;
    width: 100% !important;
}
textarea {
    background: #fbfaf9 !important;
    border: 1px solid #e5e2dc !important;
    border-radius: 30px !important;
    box-shadow: none !important;
    width: 100% !important;
}
.gform_next_button {
    background: #f28e1c !important;
    height: 45px !important;
    padding: 13px 12px !important;
    width: 20% !important;
}
#gform_submit_button_1 {
    background: #f28e1c !important;
    height: 45px !important;
    padding: 13px 12px !important;
    width: 20% !important;
}
div#gform_page_1_2 .gfield_radio {
    grid-template-columns: repeat(2, 1fr) !important;
}
.ww-header__sub-link--active {
    border-radius: 90px !important;
}
a.ww-sticky__btn.ww-sticky__btn--contact:hover span.ww-sticky__lbl {
    position: absolute;
    display: block;
    /* left: -220%; */
    background: #252e37;
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 14px;
    line-height: 20px;
    right: 120%;
}
a.ww-sticky__btn.ww-sticky__btn--phone:hover  span.ww-sticky__lbl {
    position: absolute;
    display: block;
    /* left: -220%; */
    background: #f28e1c;
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 14px;
    line-height: 20px;
    right: 120%;
        width: 125px;
}
.heilbronn_faq span.ww-eyebrow {
    display: none;
}
section.impress_class {
    padding: 8rem 0px;
}
section.impress_class h1 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 16px;
}
section.impress_class p {
    font-size: 18px;
    line-height: 32px;
    color: #67737e;
}
section.impress_class ul {
list-style: disc;    
padding-left: 30px;
margin-bottom: 30px;
}
section.impress_class li {
    font-size: 18px;
    line-height: 25px;
    color: #67737e;
}
a.ww-btn.ww-btn--accent:hover {
    background: #f28e1c;
}
.ww-cta-banner__btns svg {
    width: 20px;
}
section.impress_class h2 {
    font-size: 26px;
    line-height: 30px;
    margin: 15px 0px 10px;
}
section.impress_class h3 {
    font-size: 22px;
    line-height: 28px;
    margin: 15px 0px 10px;
}
section.impress_class h4 {
    font-size: 20px;
    line-height: 26px;
    margin: 15px 0px 10px;
}
div#gform_page_1_2 .gchoice {
    padding: 16px;
    border: 1px solid #e5e2dc;
    border-radius: 50px;
}
div#gform_page_1_2 .gform-field-label {
    font-size: 18px !important;
}
div#gform_page_1_4 .gfield_radio {
    grid-template-columns: repeat(2, 1fr) !important;
}
div#gform_page_1_4 .gchoice {
    padding: 16px;
    border: 1px solid #e5e2dc;
    border-radius: 50px;
}
div#gform_page_1_4 .gform-field-label {
    font-size: 18px !important;
}
div#field_1_29 {
    background: #f1f0ee;
    padding: 1.5rem;
    border-radius: 31px;
}
.gform_previous_button{
    background: #fbfaf9 !important;
    height: 45px !important;
    padding: 13px 12px !important;
    width: 20% !important;
}
.gform_page_footer {
    justify-content: space-between !important;
}
.ginput_container.ginput_container_date{width: 100% !important;}
.weitere_bestattungsarten h2 {
    font-size: 30px;
    line-height: 36px;
}
.vorsorge_first_sec p {
    font-size: 20px;
    line-height: 28px;
}
.gfield-choice-input{
    border-color: #e85d17 !important;
}
.formalitaeten_cta_banner a.ww-btn--accent:hover {
    background: #fff;
}
.ww-services__grid a.ww-service-card:hover {
    box-shadow: rgba(41, 47, 50, 0.08) 0px 4px 24px 0px;
}
.page-id-2999 span.home_redirect_icon{
    display: none;
}
.page-id-2999 span.home_phone_icon{
 height: 24px;
}
.page-id-2999 span.home_formalitaeten_calender_icon{
 height: 24px;
}
.ueber_cta_banner a.ww-btn--accent:hover {
    background: #fff;
}
.ueber_cta_banner span.home_phone_icon {
    height: 24px;
}
.ueber_cta_banner span.home_redirect_icon {
    display: none;
}
p.ww-standort-card__val-strong a {
    text-decoration: none;
}
.page-id-2999 span.home_formalitaeten_arrow_icon{
 height: 24px;
}
.page-id-3009 span.home_phone_icon{
    display: none;
}
.page-id-3009 span.home_redirect_icon{
    height: 24px;
}
.page-id-3009 span.home_formalitaeten_calender_icon {
    display: none;
}
.page-id-3009 span.home_formalitaeten_arrow_icon{
    display: none;

}
@media(max-width:1024px) {
    .ww-header__phone {
    display: none;}
    .ww-header__burger {
    display: flex;}
    .ww-header__menu {
    display: none;}
    .ww-hero__content {
    margin: auto;
}
.ww-section-header h2 {
    font-size: 48px;
    margin-bottom: var(--space-md);
    line-height: 48px;
}
 .ww-split__image img {
    height: 342px;
}
.ww-split__body h2, .ww-split__h2 {
    font-size: 36px;
    line-height: 40px;
}
.ww-values__grid {
        grid-template-columns: 2.5fr 2.5fr;
        gap: 20px;
    }
    .erdbestattung_banner{
        align-items: center;
    }
    .erdbestattung_content_section h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 24px;
}
h2#andere-h {
    font-size: 30px;
    line-height: 36px;
}
section.ww-gallery h2{
    font-size: 30px;
    line-height: 36px;

}
.weinsberg_faq h2 {
    font-size: 36px;
    line-height: 40px;
}
.ww-bestattung-hero {
    align-items: center;
}
 }
 @media(max-width:768px) {
    .formalitaeten_sec_sec .ww-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
   
}
.formalitaeten_third_sec .ww-process__grid{
         width: 100%;
}
    .formalitaeten_third_sec .ww-process-card__num {
    width: 7rem;
}
.gedenkportal_first_sec h1 {
    font-size: 48px;
    line-height: 48px;
}
.ww-location-card__body {
    padding: 1rem;
}
    .ww-fhero__h1 {
    font-size: 36px;
    line-height: 40px;
}

    .erdbestattung_banner .ww-bestattung-hero__card {
    margin: auto 20px;
}
   .ww-andere__grid{ width: 100%;}
    .uber_banner h1.ww-page-hero__h1 {
    font-size: 48px;
    line-height: 48px;
    max-width: 48rem;
}
    .ww-split__image img {
        height: 542px;
    }
    .ww-values__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ww-values__text-col {
    order: 2;
}
.ww-values__photos {
    order: 1;
}
 .ww-mob-bar-spacer {
    height: 0rem;
}
.ww-hero__h1 {
    font-size: 60px;
    line-height: 60px;
}
.ww-section-header h2 {
    font-size: 36px;
    margin-bottom: var(--space-md);
    line-height: 40px;
}
.ww-cta-banner__h2 {
    font-size: 36px;
    line-height: 40px;
}
   .ww-tf-hero .container-wide{ max-width: 100% !important;}
   .friedhoefe_banner h1 {
    font-size: 48px;
    line-height: 48px;
}
  
}
 @media(max-width:600px) {
    .formalitaeten_first_sec .ww-form-hero__inner{
            max-width: 100%;
    }
    .formalitaeten_first_sec .ww-form-hero__inner {
    display: block;
   
}
.formalitaeten_first_sec p.ww-form-hero__desc{
    width: 100%;
}
.formalitaeten_first_sec .ww-form-hero__login-card{
        width: 100%;
}
.formalitaeten_first_sec .ww-form-hero__h1 {
    font-size: 34px;
    line-height: 40px;
}
    .formalitaeten_sec_sec .ww-benefits__grid {
        grid-template-columns: 1fr;
    }
    .formalitaeten_third_sec .ww-process__grid{
            grid-template-columns: 1fr;
    }
    .formalitaeten_fourth_sec h2#fwhat-h {
    font-size: 30px;
    line-height: 36px;
}
    .vorsorge_sec_sec h2 {
    font-size: 30px !important;
    line-height: 36px !important;
}
.vorsorge_sec_sec .ww-benefits__grid {
    grid-template-columns: 1fr;
}
    .vorsorge_first_sec .ww-bestattung-hero__card {
    padding: 2rem;

}
.vorsorge_first_sec .ww-bestattung-hero__h1 {
    font-size: 36px;
    line-height: 45px;
   
}
.vorsorge_first_sec .ww-bestattung-hero__sub {
    font-size: 24px;
    line-height: 32px;
}
    .gedenkportal_first_sec h1 {
        font-size: 36px;
        line-height: 36px;
    }
    .gedenkportal_sec_sec h2 {
    font-size: 24px;
    line-height: 32px;
}
.gedenkportal_sec_sec .ww-gp__features{
        width: 100%;
}
        section.ww-gallery h2 {
        font-size: 22px;
        line-height: 32px;
    }
    .weinsberg_black_stripe h2 {
    font-size: 26px;
    line-height: 30px;
}
.red_stripe_obersulm .ww-ruheforst__card {
    flex-direction: column;
            padding: 2rem;
        border-radius: 3rem;
}
.red_stripe_obersulm .ww-ruheforst__card h2 {
    font-size: 24px;
    line-height: 30px;}
    .ww-fl-card__grabarten--2col {
    grid-template-columns: 1fr;
}
    .friedhoefe_banner h1 {
        font-size: 36px;
        line-height: 40px;
    }
    .erdbestattung_banner .ww-bestattung-hero__h1 {
    font-size: 36px;
    line-height: 45px;
}
.erdbestattung_banner .ww-bestattung-hero__sub {
    font-size: 24px;
    line-height: 32px;
}
.erdbestattung_banner .ww-bestattung-hero__desc {
    font-size: 18px;}
    section.erdbestattung_faq h2 {
    font-size: 30px;
    line-height: 36px;
}
    h2#andere-h {
        font-size: 24px;
        line-height: 32px;
    }
    .uber_banner h1.ww-page-hero__h1 {
    font-size: 36px;
    line-height: 40px;
}
    .ww-split__image img
 {
        height: 290px;
    }
        .ww-split__body h2, .ww-split__h2 {
        font-size: 27px;
        line-height: 30px;
    }
    .ww-values__photos-grid {
    grid-template-columns: 2fr 1fr;
}
.ww-values__photo-main img {
    height: 290px;
}
.ww-values__photo-sec img {
    height: 250px;
}
.ueber_cta_banner h2 {
    font-size: 30px;
    line-height: 36px;
}
.ww-hero__tagline {
    font-size: 18px;
}
.ww-hero__h1 {
    font-size: 36px;
    line-height: 45px;
}
.ww-hero__sub {
    font-size: 24px;
    line-height: 32px;
}
.ww-hero__desc {
    font-size: 18px;}
    .ww-section-header h2 {
    font-size: 30px;
    line-height: 36px;
}
.ww-team__rs-name {
    font-size: 24px;
    line-height: 32px;
}
    .ww-cta-banner__h2 {
        font-size: 28px;
        line-height: 36px;
    }
    .ww-cta-banner__btns a {
    width: 100%;
    justify-content: center;
}
.ww-locations__h {
    font-size: 24px;
    line-height: 32px;
}
.ww-tf-hero__inner {
    display: inline-grid;
  
}
.ww-tf-hero__phone-card{
        width: 100%;
}
.ww-tf-hero__h1 {
    font-size: 34px;
    line-height: 40px;
}
.ww-wir__left h2 {
    font-size: 30px;
    line-height: 36px;
}
.ww-cta-phone h2 {
    font-size: 30px;
    line-height: 36px;
}
.ww-bao__grid {
    grid-template-columns: 1fr;
}
 }

.made-text{
	color: #f28e1c;
}

.red-text{
	color: black !important;
}



@media (max-width: 767px) {
  .progress-container {
    justify-content: space-between;
    gap: 4px;
  }

  .progress-container .progress-step {
    flex: 1 1 0;
    min-width: 0;            /* labels ko shrink hone deta hai — ye main fix hai */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* circle */
  .progress-container .step-number {
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 13px;
    flex-shrink: 0;
  }

  /* label — wrap + chhota font */
  .progress-container .step-label {
    font-size: 10px;
    line-height: 1.2;
    margin-top: 6px;
    white-space: normal;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
  }
}





@media (max-width: 767px) {
  .ww-mob-bar-spacer {
    height: 74px;
  }
  .ww-footer__bottom {
    padding-bottom: 74px;
  }
}

@media (max-width: 1024px) {
  .ww-mob-bar-spacer {
    height: 74px;
  }
  .ww-footer__bottom {
    padding-bottom: 74px;
  }
}





div#gform_confirmation_message_1 {
    text-align: center;
}




a.brlbs-cmpnt-cb-btn {
    background-color: #f1893a !important;
   color: #171B21 !important;
}

a.brlbs-cmpnt-cb-provider-toggle {
    color: black !important;
}


input#gform_next_button_1_12 {
    width: 30% !important;
}