
        /* ═══════════════════════════════════════
           SERVICE HERO / PAGE HEADER
        ═══════════════════════════════════════ */
        .page-hero {
            position: relative;
            min-height: 52vh;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            overflow: hidden;
            padding: 8rem 1.25rem 4rem;
        }

        @media (min-width: 768px) {
            .page-hero {
                min-height: 60vh;
                padding: 9rem 2.5rem 5rem;
            }
        }

        .page-hero__bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background:
                radial-gradient(ellipse at 30% 50%, rgba(160, 82, 45, 0.13) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.11) 0%, transparent 50%),
                linear-gradient(155deg, #0a1628 0%, #162340 60%, #0c1a2e 100%);
        }

        .page-hero__frame {
            position: absolute;
            inset: 16px;
            z-index: 1;
            border: 1px solid rgba(201, 169, 110, 0.12);
            pointer-events: none;
        }

        @media (min-width: 768px) {
            .page-hero__frame {
                inset: 26px;
            }
        }

        .page-hero__frame::before {
            content: '';
            position: absolute;
            inset: 7px;
            border: 1px solid rgba(201, 169, 110, 0.05);
        }

        .page-hero__inner {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 760px;
            width: 100%;
        }

        .page-hero__eyebrow {
            font-size: 0.62rem;
            letter-spacing: 0.44em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeUp 0.9s 0.2s ease forwards;
        }

        .page-hero__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.6rem, 9vw, 6rem);
            line-height: 0.95;
            font-weight: 300;
            color: var(--cream);
            opacity: 0;
            animation: fadeUp 1s 0.35s ease forwards;
        }

        .page-hero__title em {
            font-style: italic;
            color: var(--gold);
        }

        .page-hero__sub {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(0.95rem, 2.5vw, 1.2rem);
            font-weight: 300;
            font-style: italic;
            color: rgba(246, 240, 230, 0.5);
            margin-top: 1.4rem;
            opacity: 0;
            animation: fadeUp 1s 0.5s ease forwards;
        }

        /* ornament line below title */
        .page-hero__ornament {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            opacity: 0;
            animation: fadeUp 1s 0.6s ease forwards;
        }

        .page-hero__ornament span {
            display: block;
            width: 60px;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--gold));
        }

        .page-hero__ornament span:last-child {
            background: linear-gradient(to left, transparent, var(--gold));
        }

        .page-hero__ornament i {
            color: var(--gold);
            font-style: normal;
            font-size: 0.65rem;
        }


        /* ═══════════════════════════════════════
           SERVICE NAV (sticky anchor links)
        ═══════════════════════════════════════ */
        .svc-nav {
            background: var(--navy2);
            border-bottom: 1px solid rgba(201, 169, 110, 0.12);
            position: sticky;
            top: 62px;
            z-index: 100;
        }

        .svc-nav__list {
            display: flex;
            list-style: none;
            overflow-x: auto;
            scrollbar-width: none;
            gap: 0;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }

        .svc-nav__list::-webkit-scrollbar {
            display: none;
        }

        .svc-nav__list a {
            display: block;
            padding: 1.05rem 1.4rem;
            font-size: 0.62rem;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            font-weight: 700;
            color: rgba(246, 240, 230, 0.4);
            text-decoration: none;
            white-space: nowrap;
            border-bottom: 2px solid transparent;
            transition: color var(--t), border-color var(--t);
        }

        .svc-nav__list a:hover {
            color: var(--gold);
            border-bottom-color: var(--gold);
        }

        @media (min-width: 768px) {
            .svc-nav__list {
                padding: 0 2.5rem;
                gap: 0.5rem;
            }

            .svc-nav__list a {
                padding: 1.1rem 2rem;
            }
        }


        /* ═══════════════════════════════════════
           SHARED SERVICE SECTION STRUCTURE
        ═══════════════════════════════════════ */
        .svc-section {
            padding: 5rem 0;
        }

        @media (min-width: 768px) {
            .svc-section {
                padding: 7rem 0;
            }
        }

        @media (min-width: 1100px) {
            .svc-section {
                padding: 8.5rem 0;
            }
        }

        .svc-section--dark {
            background: var(--navy);
        }

        .svc-section--mid {
            background: var(--navy2);
        }

        .svc-section--light {
            background: var(--white);
        }

        /* Section number badge */
        .svc-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border: 1px solid rgba(201, 169, 110, 0.35);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            font-weight: 300;
            color: var(--gold);
            margin-bottom: 1.2rem;
        }

        .svc-badge--terra {
            border-color: rgba(160, 82, 45, 0.4);
            color: var(--terra);
        }

        /* image placeholder */
        .img-placeholder {
            width: 100%;
            aspect-ratio: 4 / 3;
            background:
                linear-gradient(135deg, rgba(201, 169, 110, 0.06) 0%, rgba(160, 82, 45, 0.04) 100%);
            border: 1px dashed rgba(201, 169, 110, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            color: rgba(201, 169, 110, 0.3);
            font-size: 0.65rem;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .img-placeholder--light {
            background: linear-gradient(135deg, rgba(160, 82, 45, 0.04) 0%, rgba(0, 0, 0, 0.03) 100%);
            border-color: rgba(160, 82, 45, 0.18);
            color: rgba(160, 82, 45, 0.3);
        }

        .img-placeholder__icon {
            width: 48px;
            height: 48px;
            opacity: 0.4;
        }

        .img-placeholder::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(-45deg,
                    transparent,
                    transparent 18px,
                    rgba(201, 169, 110, 0.02) 18px,
                    rgba(201, 169, 110, 0.02) 19px);
        }

        /* corner accents on image */
        .img-wrap {
            position: relative;
        }

        .img-wrap::before,
        .img-wrap::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 30px;
            z-index: 2;
            pointer-events: none;
        }

        .img-wrap::before {
            top: -8px;
            left: -8px;
            border-top: 2px solid var(--gold);
            border-left: 2px solid var(--gold);
            opacity: 0.5;
        }

        .img-wrap::after {
            bottom: -8px;
            right: -8px;
            border-bottom: 2px solid var(--gold);
            border-right: 2px solid var(--gold);
            opacity: 0.5;
        }

        .img-wrap--terra::before,
        .img-wrap--terra::after {
            border-color: var(--terra);
        }


        /* ═══════════════════════════════════════
           01 — ABHOLUNG
        ═══════════════════════════════════════ */
        .abholung-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 900px) {
            .abholung-grid {
                grid-template-columns: 1fr 1fr;
                gap: 6rem;
            }
        }

        .abholung__phone-card {
            display: flex;
            align-items: center;
            gap: 1.4rem;
            background: rgba(201, 169, 110, 0.06);
            border: 1px solid rgba(201, 169, 110, 0.18);
            padding: 1.6rem 1.8rem;
            margin-top: 2rem;
        }

        .abholung__phone-icon {
            width: 48px;
            height: 48px;
            border: 1px solid rgba(201, 169, 110, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            flex-shrink: 0;
        }

        .abholung__phone-label {
            font-size: 0.6rem;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            color: rgba(246, 240, 230, 0.35);
            margin-bottom: 0.25rem;
        }

        .abholung__phone-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.55rem;
            color: var(--gold);
            text-decoration: none;
            transition: color var(--t);
        }

        .abholung__phone-num:hover {
            color: var(--gold2);
        }

        .abholung__steps {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-top: 2rem;
        }

        .abholung__step {
            display: flex;
            gap: 1.2rem;
            align-items: flex-start;
            padding-bottom: 1.4rem;
            position: relative;
        }

        .abholung__step:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 15px;
            top: 34px;
            width: 1px;
            height: calc(100% - 34px);
            background: rgba(201, 169, 110, 0.15);
        }

        .abholung__step-num {
            width: 32px;
            height: 32px;
            border: 1px solid rgba(201, 169, 110, 0.3);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.95rem;
            color: var(--gold);
        }

        .abholung__step-text {
            padding-top: 0.3rem;
        }

        .abholung__step-title {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--cream);
            margin-bottom: 0.3rem;
        }

        .abholung__step-desc {
            font-size: 0.84rem;
            line-height: 1.75;
            color: rgba(246, 240, 230, 0.48);
            font-weight: 300;
        }


        /* ═══════════════════════════════════════
           02 — PARTYSERVICE
        ═══════════════════════════════════════ */
        .party-intro {
            max-width: 640px;
        }

        .party-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
            margin-top: 3.5rem;
        }

        @media (min-width: 600px) {
            .party-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1000px) {
            .party-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .party-card {
            border: 1px solid rgba(201, 169, 110, 0.12);
            padding: 2rem 1.5rem 2.2rem;
            background: rgba(201, 169, 110, 0.03);
            position: relative;
            overflow: hidden;
            transition: transform var(--t), border-color var(--t), background var(--t);
        }

        .party-card:hover {
            transform: translateY(-4px);
            border-color: rgba(201, 169, 110, 0.3);
            background: rgba(201, 169, 110, 0.07);
        }

        .party-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(to right, var(--gold), transparent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .party-card:hover::after {
            transform: scaleX(1);
        }

        .party-card__icon {
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            display: block;
            opacity: 0.8;
        }

        .party-card__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.45rem;
            font-weight: 400;
            color: var(--gold);
            margin-bottom: 0.65rem;
            line-height: 1.2;
        }

        .party-card__desc {
            font-size: 0.8rem;
            line-height: 1.82;
            color: rgba(246, 240, 230, 0.45);
            font-weight: 300;
        }

        .party-images {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
            margin-top: 4rem;
        }

        @media (min-width: 768px) {
            .party-images {
                grid-template-columns: 1.4fr 1fr;
                gap: 1.5rem;
            }
        }

        .party-cta {
            margin-top: 3.5rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .party-cta__note {
            font-size: 0.78rem;
            color: rgba(246, 240, 230, 0.35);
            font-weight: 300;
            font-style: italic;
        }


        /* ═══════════════════════════════════════
           03 — GUTSCHEIN
        ═══════════════════════════════════════ */
        .gutschein-wrap {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 900px) {
            .gutschein-wrap {
                grid-template-columns: 1fr 1fr;
                gap: 6rem;
            }
        }

        /* Gift card mockup */
        .gift-card {
            position: relative;
            background: linear-gradient(135deg, var(--navy2) 0%, #0a1628 100%);
            border: 1px solid rgba(201, 169, 110, 0.25);
            padding: 2.4rem 2rem;
            max-width: 400px;
        }

        .gift-card::before {
            content: '';
            position: absolute;
            top: -8px;
            right: -8px;
            bottom: 8px;
            left: 8px;
            border: 1px solid rgba(201, 169, 110, 0.12);
            pointer-events: none;
        }

        .gift-card__logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            margin-bottom: 2rem;
        }

        .gift-card__logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .gift-card__logo-text span:first-child {
            color: var(--gold);
        }

        .gift-card__logo-text span:last-child {
            color: var(--cream);
        }

        .gift-card__ornament {
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, var(--gold), transparent);
            margin-bottom: 2rem;
            opacity: 0.35;
        }

        .gift-card__label {
            font-size: 0.58rem;
            letter-spacing: 0.38em;
            text-transform: uppercase;
            color: rgba(246, 240, 230, 0.3);
            margin-bottom: 0.5rem;
        }

        .gift-card__value {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.8rem;
            font-weight: 300;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 0.25rem;
        }

        .gift-card__value-sub {
            font-size: 0.65rem;
            color: rgba(246, 240, 230, 0.3);
            letter-spacing: 0.14em;
            text-transform: uppercase;
            margin-bottom: 2rem;
        }

        .gift-card__footer {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            border-top: 1px solid rgba(201, 169, 110, 0.12);
            padding-top: 1.2rem;
        }

        .gift-card__meta {
            font-size: 0.6rem;
            color: rgba(246, 240, 230, 0.25);
            letter-spacing: 0.1em;
            line-height: 1.6;
        }

        .gift-card__star {
            font-size: 1.4rem;
            color: rgba(201, 169, 110, 0.2);
        }

        .gutschein__options {
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
            margin-top: 2rem;
        }

        .gutschein__option {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.3rem 1.5rem;
            background: rgba(160, 82, 45, 0.05);
            border: 1px solid rgba(160, 82, 45, 0.12);
            transition: border-color var(--t), background var(--t);
        }

        .gutschein__option:hover {
            border-color: rgba(160, 82, 45, 0.3);
            background: rgba(160, 82, 45, 0.08);
        }

        .gutschein__option-icon {
            font-size: 1.3rem;
            flex-shrink: 0;
            margin-top: 0.1rem;
        }

        .gutschein__option-title {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--txt);
            margin-bottom: 0.25rem;
        }

        .gutschein__option-desc {
            font-size: 0.82rem;
            line-height: 1.72;
            color: var(--muted);
            font-weight: 300;
        }

        .gutschein__occasions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .gutschein__tag {
            font-size: 0.62rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--muted);
            border: 1px solid rgba(160, 82, 45, 0.18);
            padding: 0.4rem 0.9rem;
            font-weight: 600;
        }


        /* ═══════════════════════════════════════
           04 — FAMILIENFEIER
        ═══════════════════════════════════════ */
        .feier-hero {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 4.5rem;
        }

        .feier-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
            margin-bottom: 4.5rem;
        }

        @media (min-width: 600px) {
            .feier-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1000px) {
            .feier-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .feier-card {
            background: var(--navy2);
            border: 1px solid rgba(201, 169, 110, 0.1);
            padding: 2rem 1.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: transform var(--t), border-color var(--t);
        }

        .feier-card:hover {
            transform: translateY(-3px);
            border-color: rgba(201, 169, 110, 0.28);
        }

        .feier-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: var(--gold);
        }

        .feier-card__icon {
            font-size: 2rem;
            margin: 1rem 0 1.2rem;
            display: block;
        }

        .feier-card__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-weight: 400;
            color: var(--cream);
            margin-bottom: 0.5rem;
        }

        .feier-card__sub {
            font-size: 0.75rem;
            color: rgba(246, 240, 230, 0.35);
            font-weight: 300;
            line-height: 1.6;
        }

        /* promise strip */
        .feier-promise {
            background: rgba(201, 169, 110, 0.05);
            border: 1px solid rgba(201, 169, 110, 0.14);
            padding: 3rem 2rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        @media (min-width: 768px) {
            .feier-promise {
                grid-template-columns: repeat(3, 1fr);
                padding: 3rem;
            }
        }

        .feier-promise__item {
            text-align: center;
        }

        .feier-promise__num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 300;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 0.4rem;
        }

        .feier-promise__lbl {
            font-size: 0.63rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: rgba(246, 240, 230, 0.35);
            font-weight: 700;
        }

        /* image gallery */
        .feier-gallery {
            display: grid;
            gap: 1.25rem;
            grid-template-columns: 1fr;
        }

        @media (min-width: 768px) {
            .feier-gallery {
                grid-template-columns: repeat(3, 1fr);
                grid-template-rows: auto auto;
            }

            .feier-gallery__main {
                grid-column: 1 / 3;
                grid-row: 1 / 3;
            }
        }

        .feier-gallery .img-placeholder {
            aspect-ratio: 1 / 1;
        }

        .feier-gallery__main .img-placeholder {
            aspect-ratio: 4 / 3;
        }

        @media (min-width: 768px) {
            .feier-gallery__main .img-placeholder {
                height: 100%;
                aspect-ratio: unset;
            }
        }

        /* bottom CTA */
        .feier-cta {
            text-align: center;
            padding: 5rem 1.25rem;
            background:
                radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 70%),
                var(--navy);
            border-top: 1px solid rgba(201, 169, 110, 0.1);
        }

        .feier-cta__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.8rem, 5vw, 3.2rem);
            font-weight: 300;
            color: var(--cream);
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }

        .feier-cta__title em {
            font-style: italic;
            color: var(--gold);
        }

        .feier-cta__sub {
            font-size: 0.88rem;
            color: rgba(246, 240, 230, 0.4);
            font-weight: 300;
            max-width: 480px;
            margin: 0 auto 2.5rem;
            line-height: 1.8;
        }

        .feier-cta__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.85rem;
            align-items: center;
            justify-content: center;
        }
