/* =============================================
   BESTATTUNGSHAUS PRANGE - Stylesheet
   Farben: Dunkelblau #000234 | Gold #C9A961 | Beige #F5EFE6
   ============================================= */

:root {
    --color-dark: #000234;
    --color-dark-soft: #0a1040;
    --color-dark-light: #1a1f4a;
    --color-gold: #C9A961;
    --color-gold-light: #E0C483;
    --color-gold-dark: #A88843;
    --color-beige: #F5EFE6;
    --color-beige-dark: #E8DFD3;
    --color-cream: #FAF7F2;
    --color-white: #FFFFFF;
    --color-text: #2a2a35;
    --color-text-light: #5a5a6a;
    --color-border: rgba(0, 2, 52, 0.08);

    --font-serif: 'Marcellus', 'Cormorant Garamond', Georgia, serif;
    --font-italic: 'Cormorant Garamond', 'Marcellus', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-script: 'Cormorant Garamond', cursive;

    --transition-base: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --container: 1200px;
    --container-narrow: 960px;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
    max-width: 100vw;
    font-feature-settings: "ss01", "cv11";
}

html {
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100vw;
    width: 100%;
    /* Overscroll-Bereich (Gummiband oben/unten) in Dunkelblau statt Weiß:
       Der html-Hintergrund propagiert auf die Viewport-Canvas, also auch auf den
       Überscroll. KEIN overscroll-behavior:none mehr — das hatte den Pull-to-Refresh
       (Hochziehen zum Neuladen) und das Gummiband unterdrückt. */
    background: var(--color-dark);
}

html, body {
    position: relative;
}

em, i, .italic {
    font-family: inherit;
    font-style: normal;
    font-weight: inherit;
    letter-spacing: inherit;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ===== TYPOGRAFIE ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.18;
    color: var(--color-dark);
    letter-spacing: 0.005em;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    letter-spacing: 0.005em;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.005em;
}

h3 {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.01em;
}

h4 {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 0;
}

.eyebrow::before {
    display: none;
}

.eyebrow.no-line {
    padding-left: 0;
}
.eyebrow.no-line::before {
    display: none;
}

.section-title {
    margin-bottom: 1.25rem;
}

/* Überschriften gleichmäßig umbrechen → verhindert einzelne Wörter auf eigener
   Zeile (Schusterjungen wie das alleinstehende „ab"). Wird von Browsern ohne
   Unterstützung einfach ignoriert. */
h1, h2, h3,
.section-title,
.hero h1,
.hero-headline-box h1,
.page-header h1,
.intro-pb-head h2 {
    text-wrap: balance;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 900px;
    margin-bottom: 3rem;
}

em, .italic {
    font-family: var(--font-serif);
    font-style: normal;
}

/* ===== LAYOUT ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    position: relative;
}

.section-dark {
    background: var(--color-dark);
    color: var(--color-beige);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--color-beige);
}

.section-dark p {
    color: rgba(245, 239, 230, 0.8);
}

.section-beige {
    background: var(--color-beige);
}

.section-cream {
    background: var(--color-cream);
}

/* ===== EMERGENCY BAR ===== */
.emergency-bar {
    background: var(--color-dark);
    color: var(--color-beige);
    padding: 0.3rem 0;
    font-size: 0.78rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 95;
    will-change: transform;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.emergency-bar.hidden {
    transform: translateY(-100%);
}

.emergency-bar-left.social-icons {
    gap: 0.75rem;
    flex: 1 1 100%;
    width: 100%;
    align-items: center;
    display: flex !important;
}

/* Telefon-Items links, Social-Icons rechts: erstes social-icon nach den tel-Links bekommt margin-left: auto */
.emergency-bar-left.social-icons > .emergency-bar-item + .emergency-bar-social,
.emergency-bar-left.social-icons > .emergency-bar-social:first-child {
    margin-left: auto !important;
}

.emergency-bar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 97, 0.35);
    color: var(--color-gold);
    transition: all var(--transition-base);
}

.emergency-bar-social:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.emergency-bar-social svg {
    width: 11px;
    height: 11px;
}

.emergency-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.emergency-bar-left {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.emergency-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(245, 239, 230, 0.85);
}

.emergency-bar-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-gold);
}

.emergency-pulse {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.7); }
    50% { opacity: 0.7; transform: scale(1.1); box-shadow: 0 0 0 8px rgba(201, 169, 97, 0); }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    z-index: 90;
    will-change: top, background, height;
    transition:
        top 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    top: 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--color-border);
    box-shadow: 0 2px 30px rgba(0, 2, 52, 0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem; /* Mindestabstand Logo ↔ Menü, auch wenn space-between eng wird */
    height: 130px; /* hoch genug, dass das Logo mit Bogen komplett reinpasst */
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .container {
    height: 130px; /* keine Verkleinerung beim Scrollen — gleiche Höhe wie oben */
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-dark);
    letter-spacing: 0.02em;
    z-index: 110;
    min-width: 0; /* darf bei Platznot schrumpfen statt ans Menü zu stoßen */
}

.nav-logo img {
    height: 116px; /* kleiner als die Leiste (130) → Bogen wird nie abgeschnitten */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.navbar.scrolled .nav-logo img {
    height: 116px; /* Logo bleibt beim Scrollen gleich groß */
}

/* Logo toggle: smooth crossfade between white and dark */
.nav-logo {
    position: relative;
}
.nav-logo .logo-light,
.nav-logo .logo-dark {
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-logo .logo-dark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
}
.nav-logo .logo-light {
    opacity: 1;
    position: relative;
}
.navbar.scrolled .nav-logo .logo-light { opacity: 0; }
.navbar.scrolled .nav-logo .logo-dark { opacity: 1; }

.nav-menu {
    display: flex;
    gap: 1.9rem;
    align-items: center;
    flex-shrink: 0; /* Menü bleibt einzeilig, Platznot fängt das Logo ab */
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.02em;
    white-space: nowrap;
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
    transition: color var(--transition-base);
}

.navbar.scrolled .nav-link {
    color: var(--color-dark);
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--color-gold-dark);
}

.nav-cta {
    background: var(--color-gold);
    color: var(--color-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar.scrolled .nav-cta {
    background: var(--color-dark);
    color: var(--color-beige);
}

.nav-cta:hover {
    background: var(--color-gold-light);
    color: var(--color-dark);
    transform: translateY(-1px);
}

.navbar.scrolled .nav-cta:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}

/* ===== BURGER MENU ===== */
.burger {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    position: relative;
    z-index: 210;
}

.burger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--color-dark);
    transition: all var(--transition-base);
    transform-origin: center;
}

.burger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    background: var(--color-beige);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    background: var(--color-beige);
}

/* Wenn Navbar gescrollt (heller Hintergrund), Burger dunkel; wenn Menü offen, hell */
.navbar.scrolled .burger span {
    background: var(--color-dark);
}
.navbar.scrolled .burger.active span {
    background: var(--color-beige);
}

/* ===== NAVIGATION RESPONSIVE-STUFEN =====
   8 Menüpunkte + breites Logo: ab 1400px stufenweise kompakter,
   unter 1200px passt die Leiste nicht mehr einzeilig und
   klappt ins Burger-Menü (wie Mobile). */
@media (max-width: 1400px) {
    .nav-menu { gap: 1.4rem; }
    .nav-link { font-size: 0.85rem; }
    .nav-logo img { height: 110px; }
    .navbar.scrolled .nav-logo img { height: 110px; }
}

@media (max-width: 1320px) {
    .nav-menu { gap: 1.1rem; }
    .nav-link { font-size: 0.82rem; letter-spacing: 0.01em; }
    .nav-cta { padding: 0.65rem 1.1rem; font-size: 0.82rem; }
    .nav-logo img { height: 100px; }
    .navbar.scrolled .nav-logo img { height: 100px; }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .burger {
        display: flex;
        z-index: 1001;
    }

    .burger span {
        background: var(--color-white);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        max-width: 420px;
        background: var(--color-dark);
        flex-direction: column;
        gap: 0;
        padding: 7rem 2.5rem 2.5rem;
        transform: translateX(100%);
        transition: transform var(--transition-base);
        align-items: flex-start;
        z-index: 1000;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        list-style: none;
    }

    .nav-menu .nav-link,
    .navbar.scrolled .nav-menu .nav-link {
        display: block;
        color: var(--color-beige);
        font-size: 1.5rem;
        font-family: var(--font-serif);
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(245, 239, 230, 0.15);
        text-shadow: none;
    }

    .nav-menu li:last-of-type .nav-link {
        border-bottom: none;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active,
    .navbar.scrolled .nav-menu .nav-link:hover,
    .navbar.scrolled .nav-menu .nav-link.active {
        color: var(--color-gold);
    }

    .nav-menu .nav-link::after {
        display: none !important;
    }

    .nav-menu .nav-cta,
    .navbar .nav-menu .nav-cta,
    .navbar.scrolled .nav-menu .nav-cta {
        display: inline-flex;
        margin-top: 1.5rem;
        width: auto;
        align-self: flex-start;
        background: var(--color-gold);
        color: var(--color-dark);
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-dark);
    color: var(--color-beige);
    border: 1px solid var(--color-dark);
}

.btn-primary:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 2, 52, 0.15);
}

.btn-gold {
    background: var(--color-gold);
    color: var(--color-dark);
    border: 1px solid var(--color-gold);
}

.btn-gold:hover {
    background: var(--color-dark);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-dark);
    border: 1px solid var(--color-dark);
}

.btn-outline:hover {
    background: var(--color-dark);
    color: var(--color-beige);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-beige);
    border: 1px solid var(--color-beige);
}

.btn-outline-light:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
}

.btn svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* ===== HERO (PB-STYLE: Foto-Hero mit Headline-Box) ===== */
.hero {
    min-height: 700px;
    height: 92vh;
    max-height: 880px;
    background: linear-gradient(135deg, #6a6a78 0%, #3a3d52 60%, #1f2240 100%);
    color: var(--color-white);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 140px 0 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        url("../assets/images/hero-bg.webp") center center / cover no-repeat,
        linear-gradient(135deg, #4a4d62 0%, #2a2d48 60%, #15182f 100%);
    overflow: hidden;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0, 2, 52, 0.75) 0%, rgba(0, 2, 52, 0.45) 55%, rgba(0, 2, 52, 0.25) 100%),
        linear-gradient(to bottom, rgba(0, 2, 52, 0.3) 0%, transparent 40%, rgba(0, 2, 52, 0.5) 100%);
}

.hero-bg-pusteblume {
    position: absolute;
    top: -5%;
    right: -10%;
    width: 80%;
    max-width: 1100px;
    opacity: 0.18;
    animation: float 14s ease-in-out infinite;
    filter: invert(1) brightness(1.4);
}

.hero-bg-pusteblume-2 {
    position: absolute;
    bottom: -15%;
    left: -15%;
    width: 50%;
    max-width: 600px;
    opacity: 0.08;
    transform: scaleX(-1);
    filter: invert(1) brightness(1.4);
}

.hero-content-card {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0;
}

.hero-content-card .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content-card .container > * {
    max-width: min(680px, 100%);
}

.hero-headline-box {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.hero-headline-box h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(2rem, 3.6vw, 3.1rem);
    line-height: 1.1;
    color: var(--color-white);
    font-weight: 400;
    letter-spacing: 0.005em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
    font-family: var(--font-serif);
    white-space: nowrap;
}

/* TABLET (Mobile + iPad) — Hero mehr Abstand zur Navbar */
@media (max-width: 1024px) {
    .hero {
        padding-top: 10rem;
    }

    .page-header {
        padding: 11rem 0 5rem;
    }
}

@media (max-width: 768px) {
    .hero-headline-box h1 {
        white-space: normal !important;
        font-size: 2.2rem !important;
        line-height: 1.12;
        letter-spacing: 0.005em;
        margin-bottom: 0.85rem !important;
    }

    /* Abstand: Überschrift → Text-Block */
    .hero-headline-box {
        margin-bottom: 1.6rem !important;
    }

    .hero-headline-box .hero-location {
        font-size: 1.05rem;
        line-height: 1.4;
    }

    /* Abstand: Text → Buttons */
    .hero-description {
        margin-bottom: 1.75rem;
    }

    .hero {
        /* Deckblatt füllt auf dem Handy den sichtbaren Bereich (Bildschirm minus
           fixem Header), damit beim Öffnen erst nur der Hero zu sehen ist und nicht
           schon die Partner-Logos darunter. svh = ohne Browser-Leisten. */
        min-height: calc(100vh - var(--mobile-header-height, 102px));
        min-height: calc(100svh - var(--mobile-header-height, 102px));
        height: auto;
        max-height: none;
        padding: 2.5rem 0 3rem;
        display: flex;
        align-items: center;
    }

    /* Logo & Navbar-Höhe auf Mobile */
    .navbar .container {
        height: 102px;
    }
    .navbar.scrolled .container {
        height: 86px;
    }
    .nav-logo img {
        height: 80px !important;
    }
    .navbar.scrolled .nav-logo img {
        height: 66px !important;
    }

    /* Auf Mobile: Header solide oben sitzend. Body bekommt padding-top in Höhe
       des Headers (= nur Navbar, da Telefon-Leiste auf Mobile ausgeblendet ist;
       siehe JS, --mobile-header-height). */
    body {
        padding-top: var(--mobile-header-height, 102px);
    }

    /* Telefon-Leiste (Top-Bar) auf Mobile komplett ausblenden — zu klein zum Tippen,
       der feste Anruf-Button unten reicht. Navbar sitzt dadurch direkt oben. */
    .emergency-bar {
        display: none !important;
    }

    .navbar,
    .navbar.scrolled {
        position: fixed !important;
        top: 0 !important;
        left: 0;
        right: 0;
        z-index: 100 !important;
        background: var(--color-dark) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom: 1px solid rgba(201, 169, 97, 0.15) !important;
        /* 1px dunkle Kante nach unten füllt jeden Sub-Pixel-Spalt (iOS-Rundung)
           mit Dunkelblau, statt den weißen body durchscheinen zu lassen.
           Unsichtbar, da Hero + page-header direkt darunter ebenfalls dunkelblau. */
        box-shadow: 0 1px 0 0 var(--color-dark) !important;
    }

    .navbar.scrolled {
        top: 0 !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3) !important;
    }

    /* Mobile-Menü muss IMMER über allem liegen */
    .nav-menu {
        z-index: 1000 !important;
    }
    .burger {
        z-index: 1001 !important;
    }

    /* Logo-Text auf dunklem Header sichtbar (weißes Logo statt schwarzes) */
    .navbar .nav-logo .logo-light { opacity: 1; }
    .navbar .nav-logo .logo-dark { opacity: 0; }
    .navbar.scrolled .nav-logo .logo-light { opacity: 1; }
    .navbar.scrolled .nav-logo .logo-dark { opacity: 0; }

    /* Page-Header padding-top viel kleiner — Body padding macht den Abstand */
    .page-header {
        padding: 3rem 0 3rem;
    }

    /* Page-Header H1 nicht mit Silbentrennung auf Mobile —
       lieber zwischen Wörtern brechen ("Leben" bleibt ganz) */
    .page-header h1 {
        hyphens: none;
        -webkit-hyphens: none;
        overflow-wrap: normal;
        word-wrap: normal;
    }
}

.hero-headline-box .hero-location {
    display: block;
    font-family: var(--font-sans);
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
    color: var(--color-white);
    font-weight: 300;
    line-height: 1.3;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero-headline-box .hero-location em {
    color: var(--color-gold-light);
    font-family: var(--font-serif);
    font-style: normal;
    font-weight: 400;
}

.hero-brandtag {
    display: none;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.18), transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(245, 239, 230, 0.5), transparent 70%);
    pointer-events: none;
}

.hero-pusteblume {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 750px;
    opacity: 0.28;
    animation: float 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    50% { transform: translateY(-52%) rotate(2deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-eyebrow {
    color: var(--color-gold);
}

.hero h1 {
    color: var(--color-white);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    text-shadow: 0 2px 30px rgba(0, 2, 52, 0.3);
}

.hero h1 em {
    color: var(--color-gold-light);
    font-family: var(--font-serif);
    font-style: normal;
    font-weight: 400;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.55;
    max-width: 560px;
}

.hero-subtitle em {
    color: var(--color-gold-light);
    font-weight: 500;
    font-style: normal;
}

.hero-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 560px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-availability {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    font-weight: 400;
}

.hero-availability strong {
    color: var(--color-gold-light);
    font-weight: 600;
}

.hero-availability-dot {
    width: 9px;
    height: 9px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.25);
    flex-shrink: 0;
}

.hero-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-white);
    color: var(--color-dark);
    padding: 0.55rem 1rem;
    border-radius: 4px;
    margin-top: 1.5rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    transition: transform var(--transition-base);
    border: 1px solid rgba(0, 2, 52, 0.06);
}

.hero-review-badge:hover {
    transform: translateY(-2px);
}

.hero-review-logo {
    display: inline-flex;
    gap: 2px;
    font-weight: 700;
    font-size: 0.9rem;
}

.hero-review-logo span:nth-child(1) { color: #4285F4; }
.hero-review-logo span:nth-child(2) { color: #EA4335; }
.hero-review-logo span:nth-child(3) { color: #FBBC05; }
.hero-review-logo span:nth-child(4) { color: #4285F4; }
.hero-review-logo span:nth-child(5) { color: #34A853; }
.hero-review-logo span:nth-child(6) { color: #EA4335; }

.hero-review-stars {
    display: inline-flex;
    gap: 2px;
    color: #FBBC05;
    font-size: 1rem;
}

.hero-review-rating {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-dark);
}

.hero-review-count {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.hero-trust {
    margin-top: 2.5rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-trust-value {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-gold-light);
    line-height: 1;
}

.hero-trust-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero-eyebrow {
    color: var(--color-gold-light);
}

/* Floating seeds animation */
.seeds-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.seed {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: drift linear infinite;
    box-shadow: 0 0 6px rgba(201, 169, 97, 0.6);
}

@keyframes drift {
    0% {
        opacity: 0;
        transform: translate(0, 100vh) scale(0.5);
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translate(200px, -100px) scale(1);
    }
}

/* ===== PARTNER BAR (PB-STYLE) ===== */
.partner-bar {
    background: var(--color-cream);
    padding: 3rem 0;
    border-bottom: 1px solid var(--color-border);
}

.partner-bar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2.5rem 2rem;
    align-items: start; /* alle Badges oben bündig → Namen/Subs fluchten */
    justify-items: center;
}

/* Geklonte Badges (nur für den Mobile-Marquee) im Raster/Desktop ausblenden.
   Spezifität 0,2,0 nötig, damit es das spätere `.partner-badge{display:flex}` schlägt. */
.partner-bar-grid .partner-badge-clone {
    display: none;
}

/* Marquee-Bewegung: -50% = exakt ein Badge-Satz (Klone = zweite Hälfte) → nahtlos. */
@keyframes partner-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Barrierefreiheit: Wer reduzierte Bewegung wünscht, bekommt einen wischbaren
   Slider statt Auto-Laufband. */
@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    .partner-bar-grid {
        animation: none !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    .partner-badge {
        scroll-snap-align: center;
    }
}

.partner-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem;
    color: var(--color-text-light);
    transition: all var(--transition-base);
    text-align: center;
    position: relative;
}

.partner-badge:hover {
    transform: translateY(-2px);
}

/* Standard: nur Logo/Icon (kein reservierter Platz darunter).
   Bei Hover erscheint der Name als schwebendes Tooltip über dem Logo. */
.partner-badge-tip {
    position: absolute;
    bottom: calc(100% - 0.75rem);
    left: 50%;
    width: max-content;
    max-width: 190px;
    padding: 0.55rem 0.85rem;
    background: var(--color-dark);
    border-radius: 8px;
    box-shadow: 0 12px 30px -10px rgba(0, 2, 52, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 30;
}

.partner-badge-tip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--color-dark);
}

.partner-badge:hover .partner-badge-tip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.partner-badge-tip .partner-badge-name {
    display: block;
    min-height: 0;
    margin: 0;
    color: var(--color-white);
    font-size: 0.85rem;
    line-height: 1.25;
}

.partner-badge-tip .partner-badge-sub {
    color: var(--color-gold-light);
    margin-top: 0.15rem;
}

/* Touch-Geräte (kein Hover): Name + Sub dauerhaft als normaler Text unter dem Logo */
@media (hover: none) {
    .partner-badge-tip {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        background: transparent;
        box-shadow: none;
        max-width: none;
        width: auto;
        padding: 0;
        margin-top: 0.4rem;
    }
    .partner-badge-tip::after { display: none; }
    .partner-badge-tip .partner-badge-name { color: var(--color-dark); }
    .partner-badge-tip .partner-badge-sub { color: var(--color-text-light); }
}

/* Monochrom in Ruhe, Farbe bei Hover. Filter/Opacity liegen auf den
   Kindern statt auf dem Badge (Badge-Filter würde Hover-Farbwechsel
   und Transform-Animationen unnötig koppeln). */
.partner-badge-logo img,
.partner-badge-icon {
    filter: grayscale(1) opacity(0.85);
    transition: filter var(--transition-base);
}

.partner-badge:hover .partner-badge-logo img,
.partner-badge:hover .partner-badge-icon {
    filter: none;
}

.partner-badge-icon {
    width: 62px;
    height: 62px;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-badge-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.partner-badge-logo {
    width: 88px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-badge-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-badge-dekra {
    background: var(--color-dark);
    color: var(--color-white);
    flex-direction: column;
    gap: 0;
    padding: 0.4rem 0.6rem;
    width: 86px;
    height: 62px; /* gleiche Zonenhöhe wie alle anderen Icons */
    border-radius: 3px;
    line-height: 1;
}

.partner-badge-dekra .dekra-word {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.06em;
    color: var(--color-gold);
}

.partner-badge-dekra .dekra-sub {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 0.25rem;
    color: var(--color-white);
}

.partner-badge-friedwald,
.partner-badge-kristall,
.partner-badge-see,
.partner-badge-handwerk {
    color: #5d6b80;
}

.partner-badge-name {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.4em;
}

.partner-badge-sub {
    font-size: 0.7rem;
    color: var(--color-text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ===== INTRO (PB-STYLE: Trauerbegleitung von Herzen) ===== */
.intro-pb {
    padding: 6rem 0;
    background: var(--color-white);
}

.intro-pb-wrapper {
    display: grid;
    grid-template-columns: 520px 1fr; /* breitere Bildspalte → Text rückt nach rechts */
    grid-template-areas:
        "media head"
        "media content"
        "media cta";
    column-gap: 4rem;
    row-gap: 1rem;
    align-items: start; /* Bild in Originalgröße oben, nicht auf Texthöhe ziehen */
}

.intro-pb-head    { grid-area: head; }
.intro-pb-content { grid-area: content; }
.intro-pb-cta     { grid-area: cta; margin-top: 0.5rem; }

/* Bildspalte als Flex-Säule: Foto wächst, Caption sitzt darunter */
.intro-pb-media {
    grid-area: media;
    display: flex;
    flex-direction: column;
}

@media (min-width: 769px) {
    .intro-pb-image {
        flex: 0 0 auto;          /* nicht in die Höhe ziehen */
        min-height: 0;
    }
}

.intro-pb-image {
    position: relative;
    /* Desktop-Ausschnitt (Mobile überschreibt auf 1/1 weiter unten): etwas höher
       als das Foto → leichter Zoom, damit nach links auf Savannah gepannt werden kann. */
    aspect-ratio: 1 / 1.15;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-beige) 100%);
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 50px -20px rgba(0, 2, 52, 0.12);
}

.intro-pb-image::after {
    display: none;
}

.intro-pb-image-placeholder {
    display: none;
}

.intro-pb-image-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Desktop: Ausschnitt nach links → stehende Person (Savannah) sichtbar.
       (Mobile überschreibt object-position weiter unten.) */
    object-position: 8% center;
    display: block;
}

.intro-pb-caption {
    margin-top: 1.25rem;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-dark);
}

.intro-pb-caption .name {
    font-weight: 500;
}

.intro-pb-caption .role {
    display: block;
    font-size: 0.92rem;
    color: var(--color-gold-dark);
    font-family: var(--font-sans);
    letter-spacing: 0.005em;
    text-transform: none;
    line-height: 1.55;
    margin-top: 0.35rem;
    font-style: normal;
}

.intro-pb-content h2 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.intro-pb-content .subheadline {
    font-family: var(--font-serif);
    font-style: normal;
    color: var(--color-gold-dark);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: block;
}

.intro-pb-content p {
    font-size: 1rem;
    margin-bottom: 1.1rem;
    color: var(--color-text);
}

.intro-pb-signature {
    margin-top: 1.5rem;
    font-family: var(--font-serif);
    font-style: normal;
    font-size: 1.35rem;
    color: var(--color-gold-dark);
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
    color: var(--color-beige);
    padding: 12rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    color: var(--color-beige);
}

.page-header p {
    color: rgba(245, 239, 230, 0.85);
}

.page-header .breadcrumb {
    color: rgba(245, 239, 230, 0.65);
}

.page-header .breadcrumb a {
    color: rgba(245, 239, 230, 0.85);
}

.page-header .breadcrumb a:hover {
    color: var(--color-gold);
}

.page-header .eyebrow {
    color: var(--color-gold-light);
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.15), transparent 60%);
    pointer-events: none;
}

.page-header-pusteblume {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 35%;
    max-width: 450px;
    opacity: 0.12;
    filter: invert(1) brightness(1.5);
    pointer-events: none;
}

.page-header h1 {
    color: var(--color-beige);
    max-width: 1100px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
}

.page-header h1 em {
    color: var(--color-gold-light);
    font-style: normal;
}

.page-header p {
    font-size: 1.15rem;
    max-width: 640px;
    color: rgba(245, 239, 230, 0.85);
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.breadcrumb a:hover {
    color: var(--color-gold-dark);
}

.breadcrumb svg {
    width: 12px;
    height: 12px;
    opacity: 0.5;
}

/* ===== WERTE / VALUES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch; /* alle Kacheln gleiche Höhe pro Reihe */
}

.value-card {
    padding: 2.5rem 2rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: all var(--transition-base);
    position: relative;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -20px rgba(0, 2, 52, 0.12);
    border-color: rgba(201, 169, 97, 0.4);
}

.value-card:hover .value-icon {
    color: var(--color-gold-dark);
    transform: scale(1.05);
}

.value-icon {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.value-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.value-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* ===== INTRO / ABOUT SECTION ===== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.split-reverse {
    direction: rtl;
}

.split-reverse > * {
    direction: ltr;
}

.split-image {
    position: relative;
    aspect-ratio: 4/5;
    background:
        url("../assets/images/pusteblume.png") center center / 90% auto no-repeat,
        linear-gradient(135deg, var(--color-cream) 0%, var(--color-beige) 100%);
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 50px -20px rgba(0, 2, 52, 0.12);
}

.split-image-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-image-placeholder {
    display: none;
}

.split-image::after {
    display: none;
}

.split-image-accent {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--color-dark);
    color: var(--color-beige);
    padding: 1.5rem 2rem;
    max-width: 260px;
    font-family: var(--font-serif);
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.4;
}

.split-image-accent .author {
    display: block;
    margin-top: 0.75rem;
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.split-content h2 {
    margin-bottom: 1.5rem;
}

.split-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.split-content .btn {
    margin-top: 2rem;
}

.signature {
    font-family: var(--font-serif);
    font-style: normal;
    font-size: 1.75rem;
    color: var(--color-gold);
    margin-top: 2rem;
    display: block;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 0;
    position: relative;
    transition: all var(--transition-base);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.service-card-image {
    position: relative;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-beige-dark) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-family: var(--font-serif);
    font-style: normal;
    font-size: 0.95rem;
    z-index: 1;
}

.service-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
    transform: scale(1.04);
}

.service-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 2, 52, 0.08) 100%);
    z-index: 1;
    pointer-events: none;
}

.service-card-image .icon-deco {
    display: none;
    width: 64px;
    height: 64px;
    color: var(--color-gold-dark);
    opacity: 0.55;
    position: relative;
    z-index: 1;
}

.service-card-image .icon-deco svg {
    width: 100%;
    height: 100%;
    stroke-width: 1;
}

.service-card-body {
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* Service-card without image-top (e.g. on leistungen page) — center icon */
.service-card:not(:has(.service-card-image)) .service-card-body {
    padding: 2.5rem 2rem;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-beige) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-gold);
    box-shadow: 0 30px 60px -20px rgba(0, 2, 52, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-link {
    color: var(--color-gold-dark);
}

.service-card:hover .service-icon {
    color: var(--color-gold-dark);
    transform: scale(1.1);
}

.service-icon {
    width: 44px;
    height: 44px;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    transition: all var(--transition-base);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    transition: color var(--transition-base);
}

.service-card p {
    flex-grow: 1;
    transition: color var(--transition-base);
    font-size: 0.95rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-dark);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1.5rem;
    transition: all var(--transition-base);
}

.service-link svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-base);
}

.service-card:hover .service-link svg {
    transform: translateX(6px);
}

/* ===== BESTATTUNGSARTEN GRID ===== */
.bestattung-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.bestattung-card {
    background: var(--color-white);
    padding: 0;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bestattung-card-image {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-beige-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-family: var(--font-serif);
    font-style: normal;
    font-size: 0.85rem;
    overflow: hidden;
}

.bestattung-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.bestattung-card:hover .bestattung-card-image img {
    transform: scale(1.04);
}

.bestattung-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 2, 52, 0.15) 100%);
    z-index: 1;
    pointer-events: none;
}

.bestattung-card-image .number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1;
    opacity: 0;
    position: absolute;
    z-index: 2;
    transition: all var(--transition-base);
    bottom: 0.75rem;
    right: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.bestattung-card-body {
    padding: 1.75rem 1.75rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bestattung-card .number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-beige-dark);
    line-height: 1;
    margin-bottom: 1rem;
    transition: color var(--transition-base);
}

.bestattung-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-gold);
    box-shadow: 0 24px 50px -20px rgba(0, 2, 52, 0.15);
}

.bestattung-card:hover .bestattung-card-image .number {
    color: var(--color-gold-dark);
    opacity: 0.65;
}

.bestattung-card:hover .number {
    color: var(--color-gold-dark);
}

.bestattung-card.featured,
.bestattung-card.featured-flat {
    border-color: var(--color-gold);
}

.bestattung-card.featured-flat .badge,
.bestattung-card.featured .badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-gold);
    color: var(--color-dark);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.bestattung-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    transition: color var(--transition-base);
}

.bestattung-card p {
    font-size: 0.95rem;
    transition: color var(--transition-base);
}

/* ===== TIMELINE / PROCESS ===== */
.timeline {
    position: relative;
    margin: 4rem 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1.75rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: all var(--transition-base);
    position: relative;
}

.timeline-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -20px rgba(0, 2, 52, 0.12);
    border-color: rgba(201, 169, 97, 0.4);
}

.timeline-number {
    flex-shrink: 0;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-gold-dark);
    text-transform: uppercase;
    transition: none;
    line-height: 1;
}

.timeline-number::before {
    content: 'Schritt ';
}

.timeline-item:hover .timeline-number {
    background: transparent;
    transform: none;
    color: var(--color-gold-dark);
}

/* Icon-Variante (für Über-mich Werdegang) - Icon zentriert oben, kein "SCHRITT" Prefix */
.timeline-icon {
    width: 64px;
    height: 64px;
    background: var(--color-beige);
    color: var(--color-gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.timeline-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.5;
}

.timeline-item:hover .timeline-icon {
    background: var(--color-gold);
    color: var(--color-white);
    transform: scale(1.05);
}

.timeline-content {
    padding-top: 0;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.25;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.timeline-content p {
    font-size: 0.93rem;
    margin: 0;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-dark);
    padding: 0.5rem 0;
    transition: color var(--transition-base);
    font-weight: 500;
}

.faq-question:hover {
    color: var(--color-gold-dark);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform var(--transition-base);
    color: var(--color-gold);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-base);
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding-top: 1rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.75;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-cream) 100%);
    color: var(--color-dark);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(201, 169, 97, 0.25);
    border-bottom: 1px solid rgba(201, 169, 97, 0.25);
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.12), transparent 70%);
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    color: var(--color-dark);
    max-width: 720px;
    margin: 0 auto 1rem;
}

.cta-banner h2 em {
    color: var(--color-gold-dark);
    font-style: normal;
}

.cta-banner p {
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Dark CTA variant (opt-in) */
.cta-banner.cta-dark {
    background: var(--color-dark);
    color: var(--color-beige);
    border: none;
}
.cta-banner.cta-dark h2 { color: var(--color-beige); }
.cta-banner.cta-dark h2 em { color: var(--color-gold); }
.cta-banner.cta-dark p { color: rgba(245, 239, 230, 0.85); }

/* ===== KONTAKT FORM ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 120px;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: start;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--color-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-dark);
}

.contact-detail-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
}

.contact-detail-text {
    flex: 1;
}

.contact-detail-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.contact-detail-value {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--color-dark);
}

.contact-detail-value a:hover {
    color: var(--color-gold-dark);
}

.contact-detail-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.contact-detail-mini {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-light);
    font-weight: 500;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.contact-detail-value a + a {
    margin-top: 0.25rem;
}

.contact-social-row {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.contact-social-row a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--color-text-light);
    transition: color var(--transition-base);
}

.contact-social-row a:hover {
    color: var(--color-gold-dark);
}

.contact-social-row svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold-dark);
    stroke-width: 1.5;
}

.contact-form {
    background: var(--color-cream);
    padding: 3rem;
    border: 1px solid var(--color-border);
}

.contact-form h3 {
    margin-bottom: 0.5rem;
}

.contact-form > p {
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: all var(--transition-base);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1L6 6L11 1' stroke='%23000234' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: var(--font-sans);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 16px;
    height: 16px;
    accent-color: var(--color-gold);
    flex-shrink: 0;
}

.form-checkbox a {
    color: var(--color-gold-dark);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    justify-content: center;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 2px;
    font-size: 0.9rem;
    display: none;
}

.form-status.success {
    background: rgba(34, 139, 34, 0.1);
    color: #228B22;
    border: 1px solid rgba(34, 139, 34, 0.25);
    display: block;
}

.form-status.error {
    background: rgba(220, 38, 38, 0.08);
    color: #b91c1c;
    border: 1px solid rgba(220, 38, 38, 0.2);
    display: block;
}

/* ===== NOTFALL CALLOUT ===== */
.emergency-callout {
    background: var(--color-cream);
    color: var(--color-dark);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    box-shadow: 0 10px 30px -15px rgba(0, 2, 52, 0.08);
}

.emergency-callout::before {
    display: none;
}

.emergency-callout-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--color-white);
    color: var(--color-gold-dark);
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.emergency-callout-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    animation: pulse-ring 2.5s ease-in-out infinite;
}

.emergency-callout-icon svg {
    width: 22px;
    height: 22px;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

.emergency-callout-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.emergency-callout-content h3 {
    color: var(--color-dark);
    font-size: 1.25rem;
    margin-bottom: 0.2rem;
    line-height: 1.25;
}

.emergency-callout-content p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.emergency-callout-phones {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: stretch;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.emergency-callout-phone {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-dark);
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1;
    padding: 0.7rem 1.2rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    letter-spacing: 0;
}

.emergency-callout-phone .label-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    font-weight: 600;
    min-width: 70px;
}

.emergency-callout-phone:hover {
    color: var(--color-dark);
    border-color: var(--color-gold);
    background: var(--color-white);
    box-shadow: 0 4px 12px -4px rgba(201, 169, 97, 0.3);
    transform: translateY(-1px);
}

.emergency-callout-phone svg {
    display: none;
}

/* ===== CHECKLIST ===== */
.checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.checklist-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    position: relative;
    transition: all var(--transition-base);
}

.checklist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(0, 2, 52, 0.1);
    border-color: var(--color-gold);
}

.checklist-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checklist-card h3 .num {
    color: var(--color-gold);
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1.5rem;
}

.checklist-items {
    list-style: none;
}

.checklist-items li {
    padding: 0.75rem 0 0.75rem 1.75rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
}

.checklist-items li:last-child {
    border-bottom: none;
}

.checklist-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.2rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

/* ===== CHILDREN IN GRIEF SECTION ===== */
.children-section {
    background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-cream) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.children-section::before {
    display: none;
}

/* ===== FOOTER ===== */
footer {
    background: var(--color-dark);
    color: rgba(245, 239, 230, 0.75);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at bottom right, rgba(201, 169, 97, 0.06), transparent 60%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand img {
    width: 260px;
    height: auto;
    max-width: 100%;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: rgba(245, 239, 230, 0.7);
    max-width: 320px;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-style: normal;
    color: var(--color-gold);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

footer h4 {
    color: var(--color-beige);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-family: var(--font-sans);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(245, 239, 230, 0.7);
    font-size: 0.9rem;
    transition: all var(--transition-base);
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 0.75rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: rgba(245, 239, 230, 0.7);
    line-height: 1.4;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--color-gold);
    margin-top: 0;
}

.footer-contact-item a {
    color: rgba(245, 239, 230, 0.85);
    transition: color var(--transition-base);
}

.footer-contact-item a:hover {
    color: var(--color-gold);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 97, 0.4);
    color: var(--color-gold);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 239, 230, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(245, 239, 230, 0.5);
    position: relative;
    z-index: 2;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a:hover {
    color: var(--color-gold);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Catch-all: ALLE Kinder einblenden, sobald sichtbar (unabhängig von der Anzahl).
   Vorher fehlte nth-child(9+) → die 9. Karte blieb unsichtbar und ließ eine Lücke. */
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: 0.0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.48s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.56s; }
.stagger.visible > *:nth-child(n+9) { transition-delay: 0.62s; }

/* Reveal text animation */
.reveal-text {
    display: inline-block;
    overflow: hidden;
}

.reveal-text span {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.9s cubic-bezier(0.7, 0, 0.3, 1);
}

.reveal-text.visible span {
    transform: translateY(0);
}

/* ===== BACK TO TOP (unten rechts, über dem Anruf-Button) ===== */
.back-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: calc(1.5rem + 132px); /* über WhatsApp- und Telefon-Button */
    width: 54px;
    height: 54px;
    background: var(--color-white);
    color: var(--color-dark);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base), background var(--transition-base), color var(--transition-base), border-color var(--transition-base);
    z-index: 84;
    box-shadow: 0 10px 28px -10px rgba(0, 2, 52, 0.25);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
}

.back-to-top svg {
    width: 18px;
    height: 18px;
}

/* ===== FESTER ANRUF-BUTTON (rechte Seitenleiste, alle Seiten) =====
   Runder goldener Telefon-Button. Bei Hover erscheint die Nummern-Karte links daneben. */
.fixed-call {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 85;
}

/* Fester WhatsApp-Button — ÜBER dem Anruf-Button (damit die nach links
   aufklappende Nummern-Karte ihn nicht verdeckt), gleiche Größe/Form */
.fixed-whatsapp {
    position: fixed;
    right: 1.5rem;
    bottom: calc(1.5rem + 66px); /* 54px Button + 12px Abstand → direkt über dem Anruf-Button */
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366; /* WhatsApp-Grün */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px -8px rgba(0, 2, 52, 0.35);
    transition: transform 0.25s ease;
    z-index: 85;
}

.fixed-whatsapp:hover {
    transform: scale(1.05);
    background: #1ebe5b;
}

.fixed-whatsapp svg {
    width: 30px;
    height: 30px;
}

.fixed-call-handle {
    width: 54px;
    height: 54px;
    padding: 0;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px -8px rgba(0, 2, 52, 0.35);
    transition: transform 0.25s ease;
}

.fixed-call:hover .fixed-call-handle,
.fixed-call:focus-within .fixed-call-handle {
    transform: scale(1.05);
}

.fixed-call-handle svg {
    width: 24px;
    height: 24px;
}

/* Nummern-Karte: öffnet links neben dem Button (Hover ODER Klick = .open) */
.fixed-call-body {
    position: absolute;
    right: calc(100% + 12px);
    bottom: 0;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    box-shadow: 0 14px 44px -14px rgba(0, 2, 52, 0.22);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.fixed-call.hover-open .fixed-call-body,
.fixed-call:focus-within .fixed-call-body,
.fixed-call.open .fixed-call-body {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.fixed-call-head {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    background: var(--color-cream);
    padding: 0.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.fixed-call-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1.1rem;
    text-decoration: none;
    color: var(--color-dark);
    transition: background var(--transition-base);
}

.fixed-call-item + .fixed-call-item {
    border-top: 1px solid var(--color-border);
}

.fixed-call-item:hover {
    background: var(--color-cream);
}

.fixed-call-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold-dark);
    flex-shrink: 0;
}

.fixed-call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.18;
}

.fixed-call-text strong {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0;
    white-space: nowrap;
}

.fixed-call-text span {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

/* Touch/Mobile: etwas größerer Touch-Bereich, beide Buttons gleich groß.
   Nummern-Karte klappt nach OBEN auf (rechtsbündig), damit sie nicht aus
   dem schmalen Display läuft. */
@media (max-width: 1300px) {
    .fixed-call-handle {
        width: 56px;
        height: 56px;
    }
    .back-to-top {
        width: 56px;
        height: 56px;
        background: var(--color-dark);
        color: var(--color-gold);
        border-color: transparent;
        bottom: calc(1.5rem + 68px); /* über dem Anruf-Button */
    }
    /* Mobile: Karte öffnet nach OBEN → links ist frei. WhatsApp daher links neben
       den Anruf-Button (sonst läge er auf dem „Nach oben"-Button). */
    .fixed-whatsapp {
        width: 56px;
        height: 56px;
        right: calc(1.5rem + 68px);
        bottom: 1.5rem;
    }
    .fixed-call-body {
        right: 0;
        left: auto;
        bottom: calc(100% + 12px);
        top: auto;
        width: max-content;
        max-width: calc(100vw - 3rem);
        transform: translateY(10px);
    }
    .fixed-call.hover-open .fixed-call-body,
    .fixed-call:focus-within .fixed-call-body,
    .fixed-call.open .fixed-call-body {
        transform: translateY(0);
    }
}

/* ===== PUSTEBLUME BACKGROUND DECORATION ===== */
.bg-pusteblume {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.bg-pusteblume-right {
    right: -10%;
    top: 20%;
    width: 40%;
    max-width: 500px;
}

.bg-pusteblume-left {
    left: -10%;
    bottom: 20%;
    width: 35%;
    max-width: 450px;
    transform: scaleX(-1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        position: static;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .container, .container-narrow {
        padding: 0 1.25rem;
    }

    section {
        padding: 2.5rem 0;
    }

    /* Margin-top der Service-Grid reduzieren (auf Desktop 3rem) */
    .services-grid,
    .bestattung-grid,
    .values-grid {
        margin-top: 1.5rem !important;
    }

    /* Headlines auf Mobile etwas kleiner für bessere Lesbarkeit */
    h1 { font-size: clamp(2rem, 8vw, 2.8rem); line-height: 1.15; }
    h2 { font-size: clamp(1.75rem, 7vw, 2.4rem); line-height: 1.2; }
    h3 { font-size: clamp(1.2rem, 5vw, 1.5rem); line-height: 1.25; }

    .hero-content-card .container > * {
        max-width: 100%;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        max-width: 420px;
        background: var(--color-dark);
        flex-direction: column;
        gap: 0;
        padding: 7rem 2.5rem 2.5rem;
        transform: translateX(100%);
        transition: transform var(--transition-base);
        align-items: flex-start;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    /* Mobile-Menü: <li> haben kein style, <a> wird block damit border-bottom voll greift */
    .nav-menu li {
        width: 100%;
        list-style: none;
    }

    .nav-menu .nav-link,
    .navbar.scrolled .nav-menu .nav-link {
        display: block;
        color: var(--color-beige);
        font-size: 1.5rem;
        font-family: var(--font-serif);
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(245, 239, 230, 0.15);
        position: relative;
    }

    .nav-menu li:last-of-type .nav-link {
        border-bottom: none;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active,
    .navbar.scrolled .nav-menu .nav-link:hover,
    .navbar.scrolled .nav-menu .nav-link.active {
        color: var(--color-gold);
    }

    /* Goldlinien-Animation in der Navbar gibt's auf Mobile nicht */
    .nav-menu .nav-link::after,
    .nav-menu .nav-link:hover::after,
    .nav-menu .nav-link.active::after {
        display: none !important;
    }

    /* Kontakt-Button mit gold Hintergrund — überschreibt navbar.scrolled */
    .nav-menu .nav-cta,
    .navbar .nav-menu .nav-cta,
    .navbar.scrolled .nav-menu .nav-cta {
        display: inline-flex;
        margin-top: 1.5rem;
        width: auto;
        align-self: flex-start;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        background: var(--color-gold);
        color: var(--color-dark);
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .nav-menu .nav-cta svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .burger {
        display: flex;
        position: relative;
        z-index: 200;
    }

    /* Burger immer hell auf Mobile (Navbar ist immer dunkel auf Mobile) */
    .burger span,
    .navbar .burger span,
    .navbar.scrolled .burger span,
    .burger.active span,
    .navbar.scrolled .burger.active span {
        background: var(--color-beige) !important;
    }

    .hero-pusteblume {
        right: -30%;
        width: 90%;
        opacity: 0.08;
    }

    /* Bilder auf Mobile breiter & weniger hoch, mit max-Höhe damit nichts in die Länge gezogen wird */
    /* Definierte Höhe (statt nur aspect-ratio) → Box kollabiert nicht mehr zu 0.
       Im Grid mit align-items:center lieferte aspect-ratio sonst keine Höhe und
       das Foto war unsichtbar. */
    .split-image {
        aspect-ratio: auto;
        height: 92vw;
        min-height: 300px;
        max-height: 440px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        background-size: 70% auto;
    }

    .split-image-photo {
        object-position: center 30%;
    }

    .split-image-accent {
        bottom: 1rem;
        right: 1rem;
        padding: 1rem 1.25rem;
        max-width: 75%;
        font-size: 0.95rem;
    }

    /* Bestattungsarten-Karten Bilder kürzer */
    .bestattung-card-image {
        aspect-ratio: 16/10;
        max-height: 240px;
    }

    /* Leistungen-Karten Bilder kürzer */
    .service-card-image,
    .service-image {
        aspect-ratio: 16/10;
        max-height: 240px;
    }

    /* Service-Karten ohne Bild: min-height auf Mobile entfernen, sonst zu viel Luft */
    .service-card {
        min-height: 0;
    }
    .service-card:not(:has(.service-card-image)) .service-card-body {
        padding: 1.75rem 1.5rem;
    }

    .hero-content-card .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .hero-bg-pusteblume {
        right: -30%;
        width: 110%;
        opacity: 0.3;
    }

    /* Mobile: eine Spalte, Reihenfolge Überschrift → Text → Bild → Button */
    .intro-pb-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
    .intro-pb-head    { order: 1; margin-bottom: 0; }
    .intro-pb-content { order: 2; }
    .intro-pb-media   { order: 3; }
    .intro-pb-cta     { order: 4; margin-top: 0; }

    /* Bild quadratisch (1:1) und über die volle Breite */
    .intro-pb-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        max-height: none;
        margin: 0;
        background-size: cover;
    }
    .intro-pb-image-photo {
        object-position: center 25%;
    }

    /* ===== Partner-Leiste als Marquee (Endlos-Laufband) ===== */
    .partner-bar {
        padding: 2rem 0;
        overflow: hidden;            /* Laufband-Überstand abschneiden */
    }

    /* Container volle Breite, damit das Laufband randlos durchläuft */
    .partner-bar .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
        /* sanfter Fade an den Rändern */
        -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
                mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    }

    .partner-bar-grid {
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
        gap: 0;
        align-items: center;
        justify-items: initial;
        animation: partner-marquee 30s linear infinite;
        will-change: transform;
        /* Läuft auf Mobile immer durch — Touch/Tippen darf ihn nicht anhalten. */
        pointer-events: none;
    }

    /* Geklonte Badges hier wieder einblenden (für nahtlosen Loop).
       Spezifität 0,2,0 muss die Desktop-Ausblendung überschreiben. */
    .partner-bar-grid .partner-badge-clone {
        display: flex;
    }

    .partner-badge {
        flex: 0 0 auto;
        width: 9.5rem;               /* fester Slot → gleichmäßige Bewegung */
        min-height: 0;
        padding: 0 0.5rem;
        gap: 0.45rem;
    }

    .partner-badge-icon {
        width: 30px;
        height: 30px;
    }

    .partner-badge-logo {
        width: 46px;
        height: 30px;
    }

    .partner-badge-dekra {
        width: 52px;
        height: 30px;
        padding: 0.2rem 0.35rem;
    }

    .partner-badge-dekra .dekra-word {
        font-size: 0.55rem;
    }

    .partner-badge-dekra .dekra-sub {
        font-size: 0.36rem;
        letter-spacing: 0.1em;
        margin-top: 0.1rem;
    }

    /* Labels dauerhaft als normaler Text unter dem Logo (Tooltip-Modus aus) */
    .partner-badge-tip {
        position: static !important;
        opacity: 1 !important;
        pointer-events: auto;
        transform: none !important;
        background: transparent !important;
        box-shadow: none !important;
        max-width: none;
        width: auto;
        padding: 0 !important;
        margin-top: 0.35rem;
        z-index: auto;
    }
    .partner-badge-tip::after { display: none !important; }
    .partner-badge-tip .partner-badge-name {
        color: var(--color-dark);
        font-size: 0.68rem;
        line-height: 1.2;
    }
    .partner-badge-tip .partner-badge-sub {
        color: var(--color-text-light);
        font-size: 0.56rem;
        margin-top: 0.1rem;
    }

    .services-grid,
    .bestattung-grid,
    .values-grid,
    .checklist {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card-body,
    .bestattung-card-body {
        padding: 1.5rem 1.25rem;
    }

    .value-card {
        padding: 1.75rem 1.5rem;
    }

    /* CTA-Banner */
    .cta-banner {
        padding: 3.5rem 0;
    }

    .cta-banner h2 {
        font-size: clamp(1.75rem, 7vw, 2.2rem);
    }

    /* Buttons nebeneinander, schlank, gleich breit (wie Hero) */
    .cta-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 0.6rem;
    }

    .cta-buttons .btn {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
        justify-content: center;
        padding: 0.8rem 0.5rem;
        font-size: 0.8rem;
        letter-spacing: 0.02em;
        gap: 0.45rem;
        white-space: nowrap;
    }

    .cta-buttons .btn svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    /* Page-Header */
    .page-header {
        padding: 5rem 0 3.5rem;
    }

    .page-header h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    /* Hero Buttons: nebeneinander, schlank, gleich breit */
    .hero-cta {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 0.6rem;
    }

    .hero-cta .btn {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
        justify-content: center;
        padding: 0.8rem 0.5rem;
        font-size: 0.8rem;
        letter-spacing: 0.02em;
        gap: 0.45rem;
        white-space: nowrap;
    }

    .hero-cta .btn svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    /* Footer-Content schon auf 1024px auf 1fr 1fr, hier auf 1fr */
    .footer-tagline,
    .footer-brand p {
        max-width: 100%;
    }

    .hero-trust {
        gap: 2rem;
    }

    .hero-trust-value {
        font-size: 1.5rem;
    }

    .emergency-bar {
        font-size: 0.78rem;
    }

    .emergency-bar .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .emergency-bar-left {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem !important;
    }

    .emergency-bar-left.social-icons {
        gap: 0.5rem !important;
    }

    .emergency-bar-item {
        font-size: 0.78rem;
    }

    .emergency-bar-pulse {
        font-size: 0.72rem;
    }

    .emergency-bar-left {
        justify-content: center;
        gap: 1.5rem;
    }

    .emergency-callout {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem 1.5rem;
        gap: 1.25rem;
    }

    .emergency-callout-content h3 {
        font-size: 1.1rem;
    }

    .emergency-callout-phones {
        width: 100%;
        align-items: center;
    }

    /* "Jetzt anrufen"-Button nicht über die volle Breite ziehen, sondern
       auf Inhaltsbreite, zentriert (statt align-items:stretch der Basis). */
    .emergency-callout-phones .btn {
        width: auto;
        align-self: center;
    }

    .emergency-callout-phone {
        justify-content: space-between;
        width: 100%;
        font-size: 0.95rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .timeline {
        grid-template-columns: 1fr;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-pusteblume { animation: none; }
    .seed { display: none; }
}

/* ===== BESTATTUNGSART-ROW (Detailliste mit Bild + Text) ===== */
.bestattungsart-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--color-border);
}

.bestattungsart-row:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bestattungsart-row--reverse {
    direction: rtl;
}

.bestattungsart-row--reverse > * {
    direction: ltr;
}

.bestattungsart-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-beige) 100%);
    box-shadow: 0 20px 50px -20px rgba(0, 2, 52, 0.15);
}

.bestattungsart-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.bestattungsart-row:hover .bestattungsart-image img {
    transform: scale(1.03);
}

.bestattungsart-image--puste {
    background:
        url("../assets/images/pusteblume.png") center center / 70% auto no-repeat,
        linear-gradient(135deg, var(--color-cream) 0%, var(--color-beige) 100%);
}

.bestattungsart-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-gold);
    color: var(--color-dark);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.bestattungsart-text h2 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bestattungsart-text p {
    margin-bottom: 1rem;
}

.bestattungsart-text p:last-child {
    margin-bottom: 0;
}

.bestattungsart-row--featured {
    background: var(--color-cream);
    border: 1px solid var(--color-gold);
    border-bottom: 1px solid var(--color-gold);
    padding: 4rem;
    border-radius: 6px;
    box-shadow: 0 20px 50px -25px rgba(0, 2, 52, 0.12);
}

.bestattungsart-row--featured .bestattungsart-badge {
    background: var(--color-gold);
    color: var(--color-dark);
}

@media (max-width: 900px) {
    .bestattungsart-row,
    .bestattungsart-row--reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .bestattungsart-row--featured {
        padding: 2rem;
    }
}

/* ===== CHECKLIST DOWNLOAD BOX ===== */
.checklist-download {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 2rem 2.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    box-shadow: 0 10px 30px -15px rgba(0, 2, 52, 0.1);
}

.checklist-download-icon {
    flex-shrink: 0 !important;
    width: 56px !important;
    height: 56px !important;
    min-width: 56px;
    min-height: 56px;
    max-width: 56px;
    max-height: 56px;
    background: var(--color-beige);
    color: var(--color-gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.checklist-download-icon svg {
    width: 26px !important;
    height: 26px !important;
    flex-shrink: 0;
}

.checklist-download-text {
    flex: 1;
}

.checklist-download-text h3 {
    margin: 0 0 0.25rem;
    font-size: 1.2rem;
    line-height: 1.25;
}

.checklist-download-text p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.92rem;
}

.checklist-download .btn {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .checklist-download {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem 1.5rem;
    }
    .checklist-download .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Selection */
::selection {
    background: var(--color-gold);
    color: var(--color-dark);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    max-width: 880px;
    margin: 0 auto;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 20px 60px -15px rgba(0, 2, 52, 0.25);
    padding: 1.75rem 2rem;
    z-index: 9999;
    transform: translateY(calc(100% + 2rem));
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
    font-family: var(--font-sans);
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
}

.cookie-banner-icon {
    width: 44px;
    height: 44px;
    background: var(--color-beige);
    color: var(--color-gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-banner-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.cookie-banner-text h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-dark);
    margin: 0 0 0.25rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.cookie-banner-text p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

.cookie-banner-text p a {
    color: var(--color-gold-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-text p a:hover {
    color: var(--color-dark);
}

.cookie-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-banner-actions button {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.7rem 1.3rem;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    line-height: 1;
}

.cookie-banner-accept {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

.cookie-banner-accept:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
}

.cookie-banner-decline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.cookie-banner-decline:hover {
    border-color: var(--color-dark);
    color: var(--color-dark);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
        padding: 1.25rem 1.25rem;
    }

    .cookie-banner-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: left;
    }

    .cookie-banner-icon {
        margin-bottom: 0;
    }

    .cookie-banner-actions {
        flex-direction: row;
    }

    .cookie-banner-actions button {
        flex: 1;
        text-align: center;
    }
}
