/* =========================================================
   Trüffelschwein – HTML/CSS-Rebuild
   Designsystem
   ========================================================= */

:root {
    --gold: #c5a787;
    --gold-dark: #ac8764;
    --cream: #faf7f4;
    --cream-dark: #f0ebe5;
    --primary: #301f17;
    --primary-dark: #231510;
    --anthracite: #301f17;
    --muted: #8f664a;
    --white: #ffffff;
    --black: #000000;

    --font-heading: "Playfair Display", Georgia, serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, sans-serif;

    --radius: 0.5rem;
    --radius-lg: 0.75rem;

    --container: 80rem; /* max-w-7xl ≈ 1280px */
    --container-narrow: 56rem; /* max-w-4xl ≈ 896px */
    --container-tight: 42rem; /* max-w-2xl ≈ 672px */

    --transition: 0.3s ease;
    --transition-slow: 0.7s ease;
}

/* Reset & Basis ------------------------------------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--anthracite);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

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

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

button {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
}

p {
    margin: 0;
}

/* Layout-Helfer ------------------------------------------------ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-inline: 1.5rem;
}

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

.container-tight {
    max-width: var(--container-tight);
    margin: 0 auto;
    padding-inline: 1.5rem;
}

.section {
    padding-block: 5rem;
}
@media (min-width: 768px) {
    .section {
        padding-block: 7rem;
    }
}

.section-sm {
    padding-block: 4rem;
}
@media (min-width: 768px) {
    .section-sm {
        padding-block: 5rem;
    }
}

.bg-cream {
    background-color: var(--cream);
}
.bg-white {
    background-color: var(--white);
}
.bg-primary {
    background-color: var(--primary);
    color: var(--cream);
}
.bg-primary-dark {
    background-color: var(--primary-dark);
    color: var(--cream);
}

/* Header ------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    background: transparent;
}

.site-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.site-header__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding-inline: 1.5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.025em;
    color: var(--white);
    transition: color var(--transition);
}

.site-header__brand img {
    height: 2.5rem;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter var(--transition);
}

.site-header.is-scrolled .site-header__brand {
    color: var(--anthracite);
}
.site-header.is-scrolled .site-header__brand img {
    filter: none;
}

.site-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .site-nav {
        display: flex;
    }
}

/* Header-Verdichtung bei mittleren Desktop-Breiten (1024–1399px) */
@media (min-width: 1024px) and (max-width: 1399px) {
    .site-header__inner {
        padding-inline: 1rem;
    }
    .site-header__brand {
        font-size: 1.125rem;
        gap: 0.5rem;
    }
    .site-header__brand img {
        height: 2rem;
    }
    .site-nav {
        gap: 1.1rem;
    }
    .site-nav a {
        font-size: 0.8125rem;
    }
    .site-nav .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
}

/* Noch enger bei 1024–1199px — Brand-Text verstecken, nur Logo */
@media (min-width: 1024px) and (max-width: 1199px) {
    .site-header__brand {
        font-size: 0;          /* versteckt den Text "Trüffelschwein" */
    }
    .site-header__brand img {
        height: 2.25rem;
    }
    .site-nav {
        gap: 0.85rem;
    }
    .site-nav a {
        font-size: 0.78rem;
    }
}

.site-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}
.site-nav a:hover {
    color: var(--gold);
}
.site-header.is-scrolled .site-nav a {
    color: var(--anthracite);
}
.site-header.is-scrolled .site-nav a:hover {
    color: var(--gold-dark);
}

/* Aktiver Menüpunkt: zeigt an auf welcher Seite der User ist */
.site-nav a.is-active,
.mobile-nav a.is-active {
    color: var(--gold);
}
.site-header.is-scrolled .site-nav a.is-active {
    color: var(--gold-dark);
}

/* =========================================================
   Nav-Dropdown (z.B. Firmenevents → Weihnachtsfeier als Submenu)
   ========================================================= */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}
/* Pfeil-Indikator nach dem Haupt-Link */
.nav-dropdown > a::after {
    content: " ▾";
    font-size: 0.75em;
    margin-left: 0.25em;
    opacity: 0.7;
}
.nav-dropdown__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.5rem;
    min-width: 11rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(48, 31, 23, 0.18);
    padding: 0.5rem 0;
    z-index: 200;
}
.nav-dropdown__menu::before {
    /* Unsichtbare "Hover-Brücke" damit Menü beim Mauswechsel nicht zuklappt */
    content: "";
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
}
.nav-dropdown__menu a {
    display: block !important;
    padding: 0.5rem 1.25rem !important;
    color: var(--anthracite) !important;
    font-size: 0.875rem;
    white-space: nowrap;
}
.nav-dropdown__menu a:hover {
    background: var(--cream);
    color: var(--gold-dark) !important;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
    display: block;
}

/* Mobile-Nav: Submenu als eingerückte Liste immer sichtbar */
.mobile-nav .nav-dropdown {
    display: block;
}
.mobile-nav .nav-dropdown > a::after { content: ""; }
.mobile-nav .nav-dropdown__menu {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    background: transparent;
}
.mobile-nav .nav-dropdown__menu a {
    padding-left: 1.5rem !important;
    font-size: 0.95rem;
    opacity: 0.85;
    color: var(--cream) !important;
}

.btn {
    display: inline-block;
    font-weight: 600;
    border-radius: var(--radius);
    transition: background-color var(--transition), color var(--transition),
        border-color var(--transition), transform var(--transition);
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}
.btn-gold:hover {
    background-color: var(--gold-dark);
}

/* Runde Icon-Buttons (Telefon / E-Mail) im Header */
.btn-icon-round {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--muted);
    color: var(--white);
    transition: background-color var(--transition), transform var(--transition);
    flex-shrink: 0;
    text-decoration: none;
}
.btn-icon-round:hover {
    background-color: var(--anthracite);
    color: var(--white) !important;
    transform: translateY(-1px);
}
.btn-icon-round svg {
    width: 1.125rem;
    height: 1.125rem;
}
/* In Mobile-Nav etwas größer */
.mobile-nav .btn-icon-round {
    width: 3rem;
    height: 3rem;
}
.mobile-nav .btn-icon-round svg {
    width: 1.375rem;
    height: 1.375rem;
}
/* Gruppen-Wrapper, damit Tel+Mail Icons in einer Reihe nebeneinander stehen */
.btn-icon-group {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-gold-lg {
    background-color: var(--gold);
    color: var(--white);
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}
.btn-gold-lg:hover {
    background-color: var(--gold-dark);
}

.btn-gold-xl {
    background-color: var(--gold);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}
.btn-gold-xl:hover {
    background-color: var(--gold-dark);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}
.btn-outline:hover {
    background-color: var(--primary);
    color: var(--cream);
}

.menu-toggle {
    display: inline-flex;
    align-items: center;
    color: var(--white);
}
.site-header.is-scrolled .menu-toggle {
    color: var(--anthracite);
}
@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

/* Mobile-Navigation */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 60;
    display: none;
    flex-direction: column;
    padding: 5.5rem 1.5rem 2rem;
}
.mobile-nav.is-open {
    display: flex;
}
.mobile-nav__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--anthracite);
}
.mobile-nav a {
    color: var(--anthracite);
    font-size: 1.25rem;
    font-weight: 500;
    padding-block: 0.75rem;
    border-bottom: 1px solid var(--cream-dark);
}
.mobile-nav a:hover {
    color: var(--gold-dark);
}
.mobile-nav .btn {
    margin-top: 1.5rem;
    align-self: flex-start;
}

/* Hero --------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    color: var(--white);
}

.hero__video {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -2;
}
.hero__video iframe,
.hero__video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}
/* Bei YouTube-iframe (16:9) brauchen wir Überskalierung damit kein Letterbox erscheint.
   Bei <video> übernimmt object-fit: cover die Aufgabe. */
.hero__video iframe {
    width: 300%;
    height: 300%;
}
@media (min-width: 768px) {
    .hero__video iframe {
        width: 200%;
        height: 200%;
    }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.hero__content {
    width: 100%;
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding-inline: 1.5rem;
    text-align: center;
}

.hero__title {
    font-size: clamp(2.25rem, 5vw + 1rem, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero__lead {
    font-size: clamp(1.125rem, 1vw + 1rem, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 38rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Section-Eyebrow / Section-Heading ----------------------------- */
.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-head {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-head h2 {
    font-size: clamp(1.875rem, 3vw + 1rem, 3rem);
    color: var(--anthracite);
    line-height: 1.15;
}
.bg-primary .section-head h2,
.bg-primary-dark .section-head h2 {
    color: var(--cream);
}
.section-head p {
    margin-top: 1rem;
    max-width: 38rem;
    margin-inline: auto;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--muted);
}
.bg-primary .section-head p,
.bg-primary-dark .section-head p {
    color: rgba(250, 247, 244, 0.7);
}

/* Feature Cards ------------------------------------------------- */
.features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 2x2-Variante: bleibt auf allen Breakpoints bei 2 Spalten und ist zentriert */
.features-grid.features-grid--2x2 {
    max-width: 56rem;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr) !important;
}
@media (max-width: 639px) {
    .features-grid.features-grid--2x2 {
        grid-template-columns: 1fr !important;
    }
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius);
    padding: 2rem;
    transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
    box-shadow: 0 10px 25px rgba(48, 31, 23, 0.08);
    transform: translateY(-2px);
}
.feature-card__icon {
    width: 2rem;
    height: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--anthracite);
    margin-bottom: 0.5rem;
}
.feature-card p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--muted);
}

/* Location Gallery ---------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    color: var(--white);
}
.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}
.gallery-item__overlay h4 {
    font-size: 1.125rem;
    font-weight: 600;
}
.gallery-item__overlay p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Asymmetrische Felder im 4-Spalten-Grid */
@media (min-width: 768px) {
    .gallery-item.is-large {
        grid-column: span 2;
        grid-row: span 2;
        /* aspect-ratio auf auto, damit is-large genau die Höhe der zwei überspannten
           Grid-Reihen einnimmt — sonst entsteht eine Lücke unter dem großen Bild,
           weil 1/1 (Container-Breite) nicht zu (Row0 + gap + Row1) passt. */
        aspect-ratio: auto;
    }
    .gallery-item.is-wide {
        grid-column: span 2;
        aspect-ratio: 16 / 9;
    }
    .gallery-item.is-full {
        grid-column: 1 / -1;
        aspect-ratio: 3 / 2;
    }
}
.gallery-item.is-full {
    grid-column: 1 / -1;
    aspect-ratio: 3 / 2;
}

/* Welten / Teaser-Karten ---------------------------------------- */
.worlds-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .worlds-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.world-card {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
    aspect-ratio: 4 / 5;
}
.world-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.world-card:hover img {
    transform: scale(1.05);
}
.world-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 100%
    );
}
.world-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: var(--cream);
}
.world-card__content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.world-card__content p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(250, 247, 244, 0.75);
}
.world-card__cta {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
}
.world-card:hover .world-card__cta {
    text-decoration: underline;
}

/* SEO-Text Section ---------------------------------------------- */
.seo-text {
    text-align: center;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}
.seo-text h2 {
    font-size: clamp(1.5rem, 2vw + 1rem, 1.875rem);
    color: var(--anthracite);
    margin-bottom: 1rem;
}
.seo-text p + p {
    margin-top: 1rem;
}

/* CTA-Section --------------------------------------------------- */
.cta-section {
    text-align: center;
}
.cta-section h2 {
    font-size: clamp(1.875rem, 3vw + 1rem, 3rem);
    color: var(--cream);
    margin-bottom: 1.5rem;
}
.cta-section p {
    color: rgba(250, 247, 244, 0.75);
    font-size: 1.25rem;
    max-width: 36rem;
    margin: 0 auto 2.5rem;
}

/* Footer -------------------------------------------------------- */
.site-footer {
    background-color: var(--primary);
    color: var(--cream);
}
.site-footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 4rem 1.5rem;
}
.site-footer__cols {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .site-footer__cols {
        grid-template-columns: repeat(4, 1fr);
    }
}
.site-footer h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
}
.site-footer address,
.site-footer nav {
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(250, 247, 244, 0.8);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.site-footer address p {
    margin: 0;
}
.site-footer a:hover {
    color: var(--gold);
}
.site-footer__socials {
    display: flex;
    gap: 1rem;
}
.site-footer__socials a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(250, 247, 244, 0.1);
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition), color var(--transition);
}
.site-footer__socials a:hover {
    background-color: rgba(197, 167, 135, 0.2);
    color: var(--gold);
}
.site-footer__socials svg {
    width: 1.25rem;
    height: 1.25rem;
}

.site-footer__bar {
    border-top: 1px solid rgba(250, 247, 244, 0.1);
}
.site-footer__bar div {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(250, 247, 244, 0.5);
}

/* Reveal-Animation (sanftes Einblenden) ------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   Hero-Variante mit Bild (statt Video)
   ========================================================= */
.hero--image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Sub-Hero (kleiner als Startseiten-Hero) */
.hero--sub {
    min-height: 70vh;
}

/* =========================================================
   Cards mit Bild + Text (Format-Karten Firmenevents)
   ========================================================= */
.format-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .format-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.format-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--cream-dark);
    transition: box-shadow var(--transition), transform var(--transition);
}
.format-card:hover {
    box-shadow: 0 12px 28px rgba(48, 31, 23, 0.1);
    transform: translateY(-2px);
}
.format-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.format-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.format-card:hover .format-card__image img {
    transform: scale(1.05);
}
.format-card__body {
    padding: 1.75rem;
}
.format-card__body h3 {
    font-size: 1.375rem;
    color: var(--anthracite);
    margin-bottom: 0.75rem;
}
.format-card__body p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--muted);
}

/* =========================================================
   Sorgen-Karten (zwei Spalten: Sorge / Lösung)
   ========================================================= */
.worry-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .worry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.worry-card {
    background: var(--white);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: 0 1px 3px rgba(48, 31, 23, 0.05);
}
.worry-card__problem {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.worry-card h3 {
    font-size: 1.25rem;
    color: var(--anthracite);
    margin-bottom: 0.75rem;
}
.worry-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--muted);
}

/* =========================================================
   Full-Width-Bildband mit Text-Overlay
   ========================================================= */
.banner {
    position: relative;
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    isolation: isolate;
}
.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.40));
    z-index: -1;
}
.banner__text {
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 3vw + 1rem, 3rem);
    font-weight: 700;
    line-height: 1.2;
    padding-inline: 1.5rem;
}

/* =========================================================
   Schritte / Prozess
   ========================================================= */
.steps {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step {
    position: relative;
    padding-top: 1rem;
}
.step__num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.75rem;
    display: inline-block;
}
.step h3 {
    font-size: 1.25rem;
    color: var(--anthracite);
    margin-bottom: 0.5rem;
}
.step p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--muted);
}

/* =========================================================
   Stats / Zahlen
   ========================================================= */
.stats {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}
.stat__num {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stat__label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}
.bg-primary .stat__label,
.bg-primary-dark .stat__label {
    color: rgba(250, 247, 244, 0.6);
}

/* =========================================================
   Team-Karten
   ========================================================= */
.team-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-card {
    text-align: center;
}
.team-card__photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 50%;
    width: 12rem;
    height: 12rem;
    margin: 0 auto 1.25rem;
    background: var(--cream-dark);
}
.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card h3 {
    font-size: 1.375rem;
    color: var(--anthracite);
    margin-bottom: 0.25rem;
}
.team-card__role {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.team-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 0.75rem;
}
.team-card__email {
    font-size: 0.8125rem;
    color: var(--muted);
}
.team-card__email:hover {
    color: var(--gold-dark);
}

/* =========================================================
   Werte-Liste (Über uns)
   ========================================================= */
.values {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .values {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value {
    display: flex;
    gap: 1.25rem;
}
.value__icon {
    flex: 0 0 3.5rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.value__icon svg {
    width: 1.75rem;
    height: 1.75rem;
}
.value h3 {
    font-size: 1.25rem;
    color: var(--anthracite);
    margin-bottom: 0.5rem;
}
.value p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--muted);
}

/* =========================================================
   Kontakt: Formular + Info-Spalte
   ========================================================= */
.contact-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--cream-dark);
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .form {
        padding: 2.5rem;
    }
    .form__row {
        display: grid;
        gap: 1.25rem;
        grid-template-columns: repeat(2, 1fr);
    }
}

.form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--anthracite);
    margin-bottom: 0.5rem;
}
.form label .req {
    color: var(--gold-dark);
}
.form__dsgvo {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: var(--radius);
    margin: 1.25rem 0 0.5rem;
}
.form__dsgvo input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: var(--gold);
    cursor: pointer;
}
.form__dsgvo label {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--anthracite);
    margin-bottom: 0;
    cursor: pointer;
}
.form__dsgvo label a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.form__dsgvo label a:hover {
    color: var(--gold);
}
.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius);
    background: var(--cream);
    font: inherit;
    color: var(--anthracite);
    transition: border-color var(--transition), background-color var(--transition);
}
.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}
.form textarea {
    min-height: 8rem;
    resize: vertical;
}
.form button[type="submit"] {
    justify-self: start;
}

.contact-info {
    display: grid;
    gap: 2rem;
    align-content: start;
}
.contact-info__block {
    background: var(--cream);
    padding: 1.75rem;
    border-radius: var(--radius);
}
.contact-info h3 {
    font-size: 1.125rem;
    color: var(--anthracite);
    margin-bottom: 1rem;
}
.contact-info dl {
    margin: 0;
    display: grid;
    gap: 0.75rem;
}
.contact-info dt {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-weight: 600;
}
.contact-info dd {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--anthracite);
}
.contact-info dd a:hover {
    color: var(--gold-dark);
}
.contact-info__block p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 1rem;
}

/* Prominenter Telefon-Block oben in der Kontakt-Seitenleiste */
.contact-info__phone {
    background: var(--anthracite);
    color: var(--white);
    text-align: center;
    padding: 2rem 1.5rem;
}
.contact-info__phone h3 {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}
.contact-info__phone-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.875rem, 4.5vw, 2.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-decoration: none;
    letter-spacing: 0.01em;
}
.contact-info__phone-number:hover {
    color: var(--gold);
}
.contact-info__phone-hint {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
}

/* =========================================================
   Map
   ========================================================= */
.map {
    width: 100%;
    aspect-ratio: 16 / 7;
    border: 0;
    display: block;
    border-radius: var(--radius);
}

/* =========================================================
   Mix & Match: Featured Image + Grid
   ========================================================= */
.mm-feature {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
    .mm-feature {
        grid-template-columns: 3fr 2fr;
    }
}
.mm-feature__main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.mm-feature__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mm-feature__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.mm-feature__grid > div {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
/* Ab Desktop: Grid bekommt eine eigene aspect-ratio (8/9), die bei 3fr:2fr-Spalten
   exakt der Höhe des 4/3-Main-Bildes entspricht — also kein Höhenversatz mehr. */
@media (min-width: 1024px) {
    .mm-feature__grid {
        aspect-ratio: 8 / 9;
        grid-template-rows: 1fr 1fr;
    }
    .mm-feature__grid > div {
        aspect-ratio: auto;
    }
}
.mm-feature__grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.mm-feature__grid > div:hover img {
    transform: scale(1.05);
}

/* =========================================================
   Erlebnis-Liste (Mix & Match)
   ========================================================= */
.feature-list {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    max-width: 56rem;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .feature-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-list__item {
    text-align: center;
}
.feature-list__icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(197, 167, 135, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-list__icon svg {
    width: 1.75rem;
    height: 1.75rem;
}
.feature-list__item h3 {
    font-size: 1.125rem;
    color: var(--anthracite);
    margin-bottom: 0.5rem;
}
.feature-list__item p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--muted);
}

/* =========================================================
   Blog-Index (Karten-Grid)
   ========================================================= */
.blog-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--cream-dark);
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: 0 12px 28px rgba(48, 31, 23, 0.08);
    transform: translateY(-2px);
}
.blog-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--cream-dark);
}
.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}
.blog-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card__date {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.blog-card h3 {
    font-size: 1.25rem;
    color: var(--anthracite);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.blog-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 1rem;
    flex: 1;
}
.blog-card__more {
    color: var(--gold-dark);
    font-size: 0.875rem;
    font-weight: 600;
}

/* =========================================================
   Artikel-Layout (Blogpost Detail)
   ========================================================= */
.article {
    max-width: 48rem;
    margin: 0 auto;
    padding-inline: 1.5rem;
}
.article__hero {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}
.article__date {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.article h1 {
    font-size: clamp(2rem, 3vw + 1rem, 3rem);
    color: var(--anthracite);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}
.article__lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 2rem;
}
.article h2 {
    font-size: 1.5rem;
    color: var(--anthracite);
    margin: 2.5rem 0 1rem;
}
.article h3 {
    font-size: 1.25rem;
    color: var(--anthracite);
    margin: 1.75rem 0 0.5rem;
}
.article p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.article ul,
.article ol {
    color: var(--muted);
    line-height: 1.75;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.article li {
    margin-bottom: 0.5rem;
}
.article a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.article a:hover {
    color: var(--anthracite);
}
.article__back {
    display: inline-block;
    margin-top: 2.5rem;
    color: var(--muted);
    font-size: 0.875rem;
}
.article__back:hover {
    color: var(--gold-dark);
}

/* =========================================================
   Sub-Hero (Page-Header für Unterseiten)
   ========================================================= */
.sub-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    color: var(--white);
    background-size: cover;
    background-position: center;
}
.sub-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.30),
        rgba(0, 0, 0, 0.45)
    );
    z-index: -1;
}
.sub-hero__content {
    text-align: center;
    max-width: 48rem;
    padding: 7rem 1.5rem 3rem;
}
.sub-hero h1 {
    font-size: clamp(2.25rem, 4vw + 1rem, 3.5rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.sub-hero__lead {
    font-size: clamp(1.0625rem, 1vw + 0.75rem, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Hero ohne Bild (z. B. Blog/Datenschutz/Impressum) */
.page-header {
    background: var(--cream);
    padding: 8rem 0 4rem;
    text-align: center;
}
.page-header h1 {
    font-size: clamp(2.25rem, 4vw + 1rem, 3.5rem);
    color: var(--anthracite);
    margin-bottom: 1rem;
}
.page-header p {
    color: var(--muted);
    font-size: 1.125rem;
    max-width: 38rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* =========================================================
   Legal-Texte (Impressum / Datenschutz)
   ========================================================= */
.legal {
    max-width: 48rem;
    margin: 0 auto;
    padding-inline: 1.5rem;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.9375rem;
}
.legal h2 {
    font-size: 1.375rem;
    color: var(--anthracite);
    margin: 2rem 0 0.75rem;
}
.legal h3 {
    font-size: 1.125rem;
    color: var(--anthracite);
    margin: 1.5rem 0 0.5rem;
}
.legal p {
    margin-bottom: 1rem;
}
.legal a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.legal li {
    margin-bottom: 0.5rem;
}
.legal address {
    font-style: normal;
    margin-bottom: 1rem;
}

/* =========================================================
   Section heading variant (left-aligned)
   ========================================================= */
.section-head--left {
    text-align: left;
    margin-bottom: 3rem;
}
.section-head--left h2 {
    margin: 0;
}

/* =========================================================
   Angebotspakete
   ========================================================= */
.packages-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.package-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
}
.package-card__image {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
    overflow: hidden;
}
.package-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.package-card:hover .package-card__image img {
    transform: scale(1.05);
}
.package-card__body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.package-card:hover {
    box-shadow: 0 14px 32px rgba(48, 31, 23, 0.1);
    transform: translateY(-3px);
}
.package-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.package-card__lead {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.package-card__divider {
    height: 2px;
    width: 2.5rem;
    background: var(--gold);
    margin-bottom: 1.5rem;
    border: 0;
}
.package-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}
.package-card__list li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--anthracite);
    line-height: 1.5;
    align-items: flex-start;
}
.package-card__list li::before {
    content: "✓";
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.5;
}
.package-card .btn {
    align-self: stretch;
    text-align: center;
}

/* =========================================================
   Eingebettete 360°-Tour
   ========================================================= */
.tour-stage {
    position: relative;
    width: 100%;
    height: clamp(420px, 70vh, 720px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--anthracite);
    box-shadow: 0 10px 40px rgba(48, 31, 23, 0.18);
}
.tour-stage .pnlm-container { width: 100%; height: 100%; }
.tour-panorama { width: 100%; height: 100%; }
.tour-stage .pnlm-hotspot {
    background-color: var(--gold) !important;
    border: 2px solid var(--white) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.tour-poster {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.5s ease;
    z-index: 10;
}
.tour-poster::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(48, 31, 23, 0.25) 0%, rgba(48, 31, 23, 0.55) 100%);
}
.tour-poster__inner {
    position: relative;
    text-align: center;
    color: var(--cream);
    padding: 1.5rem;
}
.tour-poster__play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--anthracite);
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease;
}
.tour-poster:hover .tour-poster__play { transform: scale(1.08); }
.tour-poster__play svg { width: 36px; height: 36px; margin-left: 4px; }
.tour-poster__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin: 0 0 0.5rem;
    letter-spacing: 0.01em;
}
.tour-poster__sub {
    font-size: 0.95rem;
    color: rgba(250, 247, 244, 0.85);
    margin: 0;
}
.tour-poster.is-hidden { opacity: 0; pointer-events: none; }

/* =========================================================
   FAQ-Sektion
   ========================================================= */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 56rem;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border: 1px solid rgba(48, 31, 23, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-item[open] {
    box-shadow: 0 4px 16px rgba(48, 31, 23, 0.06);
    border-color: rgba(197, 167, 135, 0.4);
}
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--anthracite);
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--anthracite);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 600;
    transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq-item__answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--anthracite);
    line-height: 1.65;
    font-size: 0.9375rem;
}

/* =========================================================
   Breadcrumb-Navigation (sichtbar)
   ========================================================= */
.breadcrumb {
    background: var(--cream);
    border-bottom: 1px solid rgba(48, 31, 23, 0.06);
    padding: 0.625rem 0;
    font-size: 0.8125rem;
}
.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--muted);
}
.breadcrumb__list li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.breadcrumb__list li + li::before {
    content: "›";
    color: var(--muted);
    opacity: 0.6;
}
.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__current { color: var(--anthracite); font-weight: 500; }

/* =========================================================
   Reading time / Meta-Box auf Blogartikeln
   ========================================================= */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    font-size: 0.8125rem;
    color: var(--muted);
    margin: 1rem 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(48, 31, 23, 0.08);
}
.article-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.article-meta svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* =========================================================
   Inhaltsverzeichnis (TOC)
   ========================================================= */
.toc {
    background: var(--cream);
    border: 1px solid rgba(197, 167, 135, 0.3);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0 2rem;
}
.toc__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--anthracite);
    margin: 0 0 0.75rem;
}
.toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.toc__list a {
    color: var(--anthracite);
    text-decoration: none;
    font-size: 0.9375rem;
    border-bottom: 1px dotted transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.toc__list a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* =========================================================
   Karriere / Stellenangebote
   ========================================================= */
.stellen-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .stellen-grid { grid-template-columns: repeat(2, 1fr); }
}
.stelle-card {
    background: var(--white);
    border: 1px solid rgba(48, 31, 23, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(48, 31, 23, 0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.stelle-card:hover {
    box-shadow: 0 8px 24px rgba(48, 31, 23, 0.1);
    transform: translateY(-2px);
}
.stelle-card__icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
}
.stelle-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--anthracite);
    margin: 0;
}
.stelle-card__type {
    display: inline-block;
    background: rgba(197, 167, 135, 0.15);
    color: var(--anthracite);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    width: fit-content;
}
.stelle-card__desc {
    color: var(--anthracite);
    font-size: 0.9375rem;
    line-height: 1.6;
    flex: 1;
}
.stelle-card__btn {
    align-self: flex-start;
}

/* =========================================================
   Bewerbungs-Modal
   ========================================================= */
.bewerbung-modal {
    position: fixed;
    inset: 0;
    background: rgba(48, 31, 23, 0.7);
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem 1rem;
    backdrop-filter: blur(4px);
}
.bewerbung-modal.is-open {
    display: flex;
}
.bewerbung-modal__inner {
    background: var(--cream);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 38rem;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: auto 0;
}
.bewerbung-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(48, 31, 23, 0.1);
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--anthracite);
    transition: background 0.2s ease;
}
.bewerbung-modal__close:hover {
    background: var(--gold);
}
.bewerbung-modal h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    color: var(--anthracite);
}
.bewerbung-modal__lead {
    color: var(--muted);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}
.bewerbung-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.bewerbung-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--anthracite);
    margin-bottom: 0.375rem;
}
.bewerbung-form input[type="text"],
.bewerbung-form input[type="email"],
.bewerbung-form input[type="tel"],
.bewerbung-form select,
.bewerbung-form textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid rgba(48, 31, 23, 0.15);
    border-radius: var(--radius);
    background: var(--white);
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--anthracite);
    transition: border-color 0.2s ease;
}
.bewerbung-form input:focus,
.bewerbung-form select:focus,
.bewerbung-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.bewerbung-form textarea {
    min-height: 5rem;
    resize: vertical;
}
.bewerbung-form input[type="file"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px dashed rgba(48, 31, 23, 0.25);
    border-radius: var(--radius);
    background: var(--white);
    font-family: inherit;
    font-size: 0.875rem;
    cursor: pointer;
}
.bewerbung-form__hint {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.25rem;
}
.bewerbung-form__check {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--anthracite);
    line-height: 1.4;
}
.bewerbung-form__check input { margin-top: 0.2rem; }
.bewerbung-form .req { color: var(--gold); }
.bewerbung-form__status {
    padding: 0.875rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9375rem;
    margin-top: 0.5rem;
    display: none;
}
.bewerbung-form__status.is-success {
    background: #e8f5e9;
    color: #2e7d32;
    display: block;
}
.bewerbung-form__status.is-error {
    background: #ffebee;
    color: #c62828;
    display: block;
}

/* =========================================================
   Cookie-Banner (DSGVO)
   ========================================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--anthracite);
    color: var(--cream);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
    display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner__inner {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 768px) {
    .cookie-banner__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
}
.cookie-banner__text {
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(250, 247, 244, 0.9);
}
.cookie-banner__text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    color: var(--cream);
    margin-bottom: 0.4rem;
    font-weight: 600;
}
.cookie-banner__text a {
    color: var(--gold);
    text-decoration: underline;
}
.cookie-banner__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}
.cookie-banner__btn {
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
}
.cookie-banner__btn--primary {
    background: var(--gold);
    color: var(--anthracite);
    border-color: var(--gold);
}
.cookie-banner__btn--primary:hover { background: #b89968; }
.cookie-banner__btn--secondary {
    background: transparent;
    color: var(--cream);
    border-color: rgba(250, 247, 244, 0.3);
}
.cookie-banner__btn--secondary:hover { border-color: var(--cream); }
.cookie-banner__btn--text {
    background: transparent;
    color: rgba(250, 247, 244, 0.7);
    text-decoration: underline;
    border: none;
    padding: 0.55rem 0.5rem;
}
.cookie-banner__btn--text:hover { color: var(--gold); }

/* Cookie-Settings-Modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(48, 31, 23, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
}
.cookie-modal.is-open { display: flex; }
.cookie-modal__inner {
    background: var(--cream);
    border-radius: var(--radius-lg);
    max-width: 32rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.cookie-modal h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    margin: 0 0 0.5rem;
    color: var(--anthracite);
}
.cookie-modal__intro {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.55;
}
.cookie-cat {
    border-top: 1px solid rgba(48, 31, 23, 0.08);
    padding: 1rem 0;
}
.cookie-cat__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
}
.cookie-cat__name {
    font-weight: 600;
    color: var(--anthracite);
    font-size: 0.9375rem;
}
.cookie-cat__desc {
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.5;
}
.cookie-toggle {
    position: relative;
    width: 40px;
    height: 22px;
    background: rgba(48, 31, 23, 0.2);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
}
.cookie-toggle::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.cookie-toggle.is-on { background: var(--gold); }
.cookie-toggle.is-on::after { transform: translateX(18px); }
.cookie-toggle.is-disabled { cursor: not-allowed; opacity: 0.5; }
.cookie-modal__btns {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.cookie-modal__btns .cookie-banner__btn { flex: 1; min-width: 140px; }

/* Placeholder für blockierte Embeds (YouTube, Maps) */
.cookie-blocked {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    background: var(--cream);
    color: var(--anthracite);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    gap: 0.75rem;
}
.cookie-blocked__icon {
    width: 48px;
    height: 48px;
    color: var(--muted);
}
.cookie-blocked__text {
    font-size: 0.9375rem;
    line-height: 1.5;
    max-width: 28rem;
    color: var(--anthracite);
}
.cookie-blocked__btn {
    margin-top: 0.5rem;
}

/* =========================================================
   Newsletter-Banner (über dem Footer, auf allen Seiten)
   ========================================================= */
.newsletter-banner {
    background: var(--cream);
    padding: 3rem 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(48, 31, 23, 0.06);
}
.newsletter-banner h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 0.5rem;
    color: var(--anthracite);
    line-height: 1.2;
}
.newsletter-banner p {
    color: var(--muted);
    margin: 0 auto 1.5rem;
    max-width: 38rem;
    line-height: 1.55;
    font-size: 0.9375rem;
}

/* =========================================================
   Article CTA-Box (interne Verlinkung am Blog-Ende)
   ========================================================= */
.article-cta {
    margin: 2.5rem 0 2rem;
    padding: 1.75rem 2rem;
    background: var(--cream);
    border: 1px solid rgba(197, 167, 135, 0.3);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.article-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin: 0;
    color: var(--anthracite);
}
.article-cta p {
    margin: 0 0 0.5rem;
    color: var(--anthracite);
    font-size: 0.9375rem;
    line-height: 1.55;
}
.article-cta .btn {
    align-self: flex-start;
}

/* Inline-Links innerhalb des Artikels */
.article p a {
    color: var(--anthracite);
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}
.article p a:hover {
    color: var(--gold);
}

/* =========================================================
   Bewertungs-Badge (Google Reviews — Trust-Signal)
   ========================================================= */
.reviews-badge {
    background: var(--cream);
    padding: 2rem 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(48, 31, 23, 0.06);
    border-bottom: 1px solid rgba(48, 31, 23, 0.06);
}
.reviews-badge__inner {
    max-width: 38rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}
.reviews-badge__inner:hover {
    transform: translateY(-1px);
}
.reviews-badge__inner:hover .reviews-badge__count strong {
    color: var(--gold);
}
@media (min-width: 640px) {
    .reviews-badge__inner {
        flex-direction: row;
        justify-content: center;
        gap: 1.25rem;
    }
}
.reviews-badge__stars {
    display: inline-flex;
    gap: 0.15rem;
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.05em;
}
.reviews-badge__score {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--anthracite);
}
.reviews-badge__count {
    color: var(--muted);
    font-size: 0.9375rem;
}
.reviews-badge__count strong {
    color: var(--anthracite);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}
.reviews-badge__google {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--white);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #3c4043;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.reviews-badge__g {
    display: block;
    flex-shrink: 0;
}

/* =========================================================
   Google-Bewertungs-Slider (Kontaktseite)
   ========================================================= */
.reviews-slider-section .section-head {
    margin-bottom: 2rem;
}
.reviews-slider-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}
.reviews-slider-stars {
    color: var(--gold);
    font-size: 1.25rem;
    letter-spacing: 0.05em;
}
.reviews-slider-score {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
}
.reviews-slider {
    position: relative;
}
.reviews-slider__track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 1rem;
    padding: 0.5rem 0.25rem 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}
.reviews-slider__track::-webkit-scrollbar {
    height: 6px;
}
.reviews-slider__track::-webkit-scrollbar-track {
    background: transparent;
}
.reviews-slider__track::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}
.reviews-slider__hint {
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.5rem;
    font-style: italic;
}
.reviews-slider__cta {
    text-align: center;
    margin-top: 1.5rem;
}
.review-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid rgba(48, 31, 23, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(48, 31, 23, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
@media (min-width: 640px) {
    .review-card {
        flex: 0 0 360px;
    }
}
.review-card__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.review-card__head > div:not(.review-card__avatar) {
    flex: 1;
    min-width: 0;
}
.review-card__avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}
.review-card__name {
    font-weight: 600;
    color: var(--anthracite);
    margin: 0;
    font-size: 0.95rem;
}
.review-card__meta {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0.1rem 0 0;
}
.review-card__g {
    flex-shrink: 0;
}
.review-card__stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    line-height: 1;
}
.review-card__text {
    color: var(--anthracite);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}

/* =========================================================
   Plant-Based Feature-Sektion
   ========================================================= */
.plant-based-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 900px) {
    .plant-based-feature {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}
.plant-based-feature__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(48, 31, 23, 0.12);
    aspect-ratio: 4 / 3;
}
.plant-based-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.plant-based-feature__body .eyebrow {
    color: #5a8033;
    font-weight: 700;
    margin-bottom: 1rem;
}
.plant-based-feature__body h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin: 0 0 1rem;
    color: var(--anthracite);
}
.plant-based-feature__body p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--anthracite);
    margin: 0 0 1.25rem;
}
.plant-based-feature__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.plant-based-feature__list li {
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--anthracite);
}
.plant-based-feature__list li::before {
    content: "🌱";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
}
/* Plant-Based-Sektion: leicht grünlicher Akzent ohne Brand-Bruch */
.section--plant-based {
    background: linear-gradient(180deg, var(--cream) 0%, #f0f1eb 100%);
    border-top: 3px solid #a4c08a;
}

/* =========================================================
   Landingpages (AdWords) — reduzierter Header, fokussierter CTA
   ========================================================= */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.lp-header__inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.lp-header__brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--anthracite);
    text-decoration: none;
}
.lp-header__brand img {
    height: 2.25rem;
    width: auto;
}
.lp-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.lp-header__phone {
    display: none;
    color: var(--anthracite);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}
@media (min-width: 640px) {
    .lp-header__phone {
        display: inline;
    }
}

.lp-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.lp-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(48, 31, 23, 0.55), rgba(48, 31, 23, 0.75));
    z-index: 0;
}
.lp-hero__content {
    position: relative;
    z-index: 1;
    max-width: 56rem;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    text-align: center;
}
.lp-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--white);
}
.lp-hero p.lp-hero__lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.92);
}
.lp-trust {
    background: var(--anthracite);
    color: var(--cream);
    padding: 1.5rem 1rem;
}
.lp-trust__grid {
    max-width: 64rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    text-align: center;
}
@media (min-width: 768px) {
    .lp-trust__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.lp-trust__item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.2rem;
}
.lp-trust__item span {
    font-size: 0.85rem;
    color: rgba(250, 247, 244, 0.82);
}

.lp-form-wrap {
    background: var(--cream);
}
.lp-form {
    max-width: 42rem;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 30px rgba(48, 31, 23, 0.08);
}
.lp-form h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}
.lp-form > p.lp-form__lead {
    text-align: center;
    color: var(--muted);
    margin-bottom: 2rem;
}

/* Galerie auf Landingpages: gleichmäßiges Raster — alle Kacheln quadratisch,
   alle Lücken identisch. Bewusst KEINE is-large/is-wide-Hierarchie. */
.lp-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .lp-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}
@media (min-width: 1024px) {
    .lp-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}
.lp-gallery > div {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.lp-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}
.lp-gallery > div:hover img {
    transform: scale(1.05);
}

.lp-faq {
    max-width: 48rem;
    margin: 0 auto;
}
.lp-faq details {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    border: 1px solid rgba(48, 31, 23, 0.08);
}
.lp-faq summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    color: var(--anthracite);
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq details[open] summary {
    border-bottom: 1px solid rgba(48, 31, 23, 0.08);
}
.lp-faq details > div {
    padding: 1rem 1.25rem;
    color: var(--muted);
    line-height: 1.65;
}

.lp-footer {
    background: var(--anthracite);
    color: rgba(250, 247, 244, 0.75);
    padding: 2rem 1.5rem;
    text-align: center;
    font-size: 0.875rem;
}
.lp-footer a {
    color: var(--gold);
    text-decoration: none;
    margin: 0 0.5rem;
}
.lp-footer a:hover {
    text-decoration: underline;
}
