:root {
    --color-bg: #f4efe6;
    --color-surface: #fffdf9;
    --color-text: #1a1714;
    --color-text-muted: #5c574e;
    --color-accent: #1e4a3c;
    --color-accent-mid: #2d6b56;
    --color-accent-soft: #e4efe8;
    --color-warm: #b4532a;
    --color-warm-soft: #f3e6df;
    --color-gold: #b8953c;
    --color-border: #e2d9cb;
    --font-serif: "Cormorant", "Times New Roman", serif;
    --font-sans: "Outfit", system-ui, sans-serif;
    --space-xs: 0.35rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4.5rem;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow: 0 1px 2px rgb(26 23 20 / 5%), 0 10px 28px rgb(26 23 20 / 7%);
    --shadow-hover: 0 4px 12px rgb(26 23 20 / 8%), 0 20px 40px rgb(26 23 20 / 9%);
    --max-width: 68rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    line-height: 1.65;
    font-weight: 400;
    color: var(--color-text);
    background-color: var(--color-bg);
    background-image:
        radial-gradient(ellipse 90% 55% at 0% -5%, rgb(180 83 42 / 9%), transparent 52%),
        radial-gradient(ellipse 70% 45% at 100% 15%, rgb(30 74 60 / 7%), transparent 48%),
        radial-gradient(ellipse 55% 35% at 50% 100%, rgb(184 149 60 / 6%), transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-accent);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    left: var(--space-md);
    top: var(--space-md);
}

.site-header {
    background: rgb(255 253 249 / 78%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgb(226 217 203 / 85%);
    box-shadow: 0 1px 0 rgb(255 255 255 / 55%) inset;
    position: sticky;
    top: 0;
    z-index: 50;
}

.site-header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.site-logo {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-logo__name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.15;
}

.site-logo__tagline {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs) var(--space-md);
    align-items: center;
}

.site-nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: var(--space-xs) var(--space-sm);
    border-radius: 8px;
    transition: color 0.15s ease, background 0.15s ease;
}

.site-nav a:hover {
    color: var(--color-accent);
    background: var(--color-accent-soft);
}

.site-nav a[aria-current="page"] {
    color: var(--color-accent);
    background: var(--color-accent-soft);
    box-shadow: 0 0 0 1px rgb(30 74 60 / 12%);
}

.nav-toggle {
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-surface);
    cursor: pointer;
}

@media (max-width: 52rem) {
    .site-nav {
        width: 100%;
        display: none;
        padding-top: var(--space-sm);
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav a {
        display: block;
        padding: var(--space-sm) var(--space-md);
    }
}

@media (min-width: 52.01rem) {
    .nav-toggle {
        display: none !important;
    }
}

main {
    flex: 1;
}

.hero-wrap {
    margin: 0 0 var(--space-md);
    padding: var(--space-xl) 0 var(--space-2xl);
    background:
        linear-gradient(165deg, rgb(255 253 249 / 92%) 0%, rgb(255 253 249 / 35%) 55%, transparent 100%),
        radial-gradient(ellipse 70% 80% at 85% 20%, rgb(228 239 232 / 65%), transparent 55%);
    border-bottom: 1px solid rgb(226 217 203 / 55%);
}

.hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.hero__grid {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 56rem) {
    .hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

.hero__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-warm);
    margin: 0 0 var(--space-sm);
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.35rem, 5vw, 3.15rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0.02em;
    margin: 0 0 var(--space-md);
    color: var(--color-text);
}

.hero__lead {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin: 0 0 var(--space-lg);
    max-width: 36ch;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.35rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.btn--primary {
    background: linear-gradient(165deg, var(--color-accent-mid) 0%, var(--color-accent) 100%);
    color: #fff;
    box-shadow:
        0 2px 4px rgb(30 74 60 / 22%),
        0 10px 24px rgb(30 74 60 / 18%);
}

.btn--primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow:
        0 4px 8px rgb(30 74 60 / 25%),
        0 16px 32px rgb(30 74 60 / 16%);
}

.btn--ghost {
    background: rgb(255 253 249 / 70%);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    box-shadow: 0 1px 2px rgb(26 23 20 / 4%);
}

.btn--ghost:hover {
    border-color: rgb(30 74 60 / 35%);
    color: var(--color-accent);
    background: var(--color-surface);
}

.hero__visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background:
        linear-gradient(145deg, transparent 35%, rgb(26 23 20 / 18%) 100%),
        linear-gradient(125deg, #eef5f0 0%, #b9d4c7 38%, #6d9a86 72%, #3d6b5c 100%);
    box-shadow:
        var(--shadow),
        0 0 0 1px rgb(255 255 255 / 35%) inset;
}

.hero__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 70% at 30% 20%, rgb(255 255 255 / 35%), transparent 55%);
    pointer-events: none;
}

.hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath fill='%231a1714' fill-opacity='0.04' d='M0 0h36v36H0zm36 36h36v36H36z'/%3E%3C/svg%3E");
    opacity: 0.85;
    pointer-events: none;
}

.hero__visual--photo {
    margin: 0;
    background: var(--color-text);
}

.hero__visual--photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero__visual--photo::after {
    display: none;
}

.hero__visual--photo::before {
    background: linear-gradient(145deg, transparent 40%, rgb(26 23 20 / 35%) 100%),
        radial-gradient(ellipse 80% 60% at 70% 30%, rgb(255 255 255 / 12%), transparent 50%);
}

.hero__visual-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(transparent, rgb(15 22 18 / 82%));
    color: #faf8f4;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    z-index: 1;
}

.section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg) var(--space-2xl);
}

.section--tight-top {
    padding-top: 0;
}

/* Überschriften in Sektionen zentriert (Hero bleibt linksbündig) */
.section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
    font-weight: 700;
    margin: 0 0 var(--space-md);
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: var(--space-sm);
    color: var(--color-text);
    text-align: center;
}

.section h2:not(.visually-hidden)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 2.75rem;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--color-warm), var(--color-gold));
}

.prose {
    color: var(--color-text-muted);
    max-width: 65ch;
}

.prose p {
    margin: 0 0 var(--space-md);
}

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

.prose a {
    color: var(--color-accent);
    font-weight: 500;
    text-underline-offset: 3px;
}

/* Fließtext & Blöcke sinnvoll zentriert (nicht: Header-Navigation, Hero) */
main .section .prose {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section__intro {
    margin: 0 auto var(--space-lg);
    max-width: 65ch;
    color: var(--color-text-muted);
    text-align: center;
}

main .section .card p {
    text-align: center;
}

main .section .two-col .prose {
    text-align: center;
}

.callout {
    text-align: center;
    align-items: center;
}

.price-panel {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.price-list dt,
.price-list dd {
    text-align: center;
}

main .section .booking-notes {
    margin-left: auto;
    margin-right: auto;
    max-width: 65ch;
    text-align: center;
}

.feature-grid {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 40rem) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 56rem) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: var(--color-surface);
    border: 1px solid rgb(226 217 203 / 90%);
    border-radius: var(--radius);
    padding: var(--space-lg);
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

@media (hover: hover) {
    .card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
        border-color: rgb(30 74 60 / 18%);
    }
}

.card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 var(--space-sm);
    letter-spacing: 0.02em;
    text-align: center;
}

.card p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.page-intro {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg) var(--space-md);
    text-align: center;
}

.page-intro h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 3.2vw, 2.45rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0 0 var(--space-sm);
    line-height: 1.15;
}

.page-intro .lead {
    margin: 0 auto;
    color: var(--color-text-muted);
    max-width: 50ch;
}

.site-footer {
    border-top: 1px solid var(--color-border);
    background: linear-gradient(180deg, rgb(235 228 216 / 55%) 0%, rgb(255 253 249 / 95%) 100%);
    margin-top: auto;
}

.site-footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-lg);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-align: center;
}

.site-footer__copy {
    margin: 0;
}

.site-footer__legal {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
    justify-content: center;
}

.site-footer a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
}

.site-footer a:hover {
    color: var(--color-accent);
}

/* —— Impressum / Rechtstexte —— */
.section--legal h2 {
    text-align: left;
}

.section--legal h2::after {
    left: 0;
    transform: none;
}

.legal-subhead {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    margin: var(--space-lg) 0 var(--space-sm);
    color: var(--color-text);
    text-align: left;
}

.legal-list {
    margin: 0 0 var(--space-md);
    padding-left: 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

.legal-list li {
    margin-bottom: var(--space-xs);
}

main .section.section--legal .prose {
    text-align: left;
}

/* —— Appartement (wohnung.php) —— */
.page-banner {
    max-width: 100%;
    margin: 0 auto;
    min-height: clamp(140px, 22vw, 240px);
    background:
        linear-gradient(120deg, rgb(30 74 60 / 12%) 0%, transparent 58%),
        linear-gradient(165deg, #e8f1eb 0%, #c5d9ce 45%, #8fb0a0 100%);
    border-bottom: 1px solid rgb(226 217 203 / 80%);
}

.page-banner--photo {
    margin: 0;
    border-bottom: 1px solid var(--color-border);
}

.page-banner--photo .page-banner__img {
    display: block;
    width: 100%;
    height: clamp(140px, 22vw, 260px);
    object-fit: cover;
    object-position: center;
}

.two-col {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 48rem) {
    .two-col {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

.prose__h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 var(--space-sm);
    color: var(--color-text);
    text-align: center;
}

.callout-row {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 40rem) {
    .callout-row {
        grid-template-columns: 1fr 1fr;
    }
}

.grundriss-embed {
    margin: var(--space-xl) auto 0;
    max-width: 48rem;
}

.grundriss-embed img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid rgb(226 217 203 / 88%);
    box-shadow: var(--shadow);
    background: var(--color-surface);
}

.grundriss-embed figcaption {
    margin-top: var(--space-sm);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-align: center;
}

.callout {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-lg);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.callout--link:hover {
    border-color: var(--color-accent);
    box-shadow: 0 1px 2px rgb(45 90 72 / 8%), 0 12px 28px rgb(45 90 72 / 10%);
}

.callout__title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
}

.callout__text {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.callout--badge .callout__title {
    color: var(--color-accent);
}

.inline-code {
    font-family: ui-monospace, monospace;
    font-size: 0.9em;
    background: var(--color-accent-soft);
    padding: 0.12em 0.35em;
    border-radius: 4px;
}

.gallery-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--space-md);
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

.gallery-grid__link {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
    background: var(--color-border);
}

.gallery-grid__link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.gallery-grid__link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
    display: block;
}

.gallery-empty {
    padding: var(--space-xl);
    border-radius: var(--radius);
    border: 1px dashed var(--color-border);
    background: var(--color-surface);
    color: var(--color-text-muted);
    text-align: center;
    max-width: 42rem;
}

.gallery-empty p {
    margin: 0;
    line-height: 1.6;
}

.section--cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
    justify-content: center;
    padding-bottom: var(--space-2xl);
}

/* —— Startseite unter dem Hero (willkommen.php) —— */
.home-intro .home-intro__title {
    margin-bottom: var(--space-lg);
}

.home-intro__layout {
    display: grid;
    gap: var(--space-xl);
    align-items: start;
}

@media (min-width: 52rem) {
    .home-intro__layout {
        grid-template-columns: 1fr minmax(240px, 320px);
        gap: var(--space-2xl);
        align-items: stretch;
    }
}

.home-intro__text {
    margin: 0 auto var(--space-md);
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-text);
    max-width: 42ch;
    text-align: center;
}

.home-intro__text:last-child {
    margin-bottom: 0;
}

.home-intro__text--muted {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 48ch;
}

.home-highlights {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 22rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgb(226 217 203 / 90%);
    box-shadow: var(--shadow);
    background: var(--color-surface);
}

.home-highlights__item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
    align-items: center;
}

.home-highlights__item:last-child {
    border-bottom: none;
}

.home-highlights__value {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--color-accent);
    line-height: 1.1;
}

.home-highlights__label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.45;
}

.section.home-gallery-band {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    background:
        linear-gradient(180deg, rgb(255 253 249 / 0.55) 0%, rgb(228 239 232 / 0.4) 42%, rgb(244 239 230 / 0.9) 100%);
    border-top: 1px solid rgb(226 217 203 / 65%);
    border-bottom: 1px solid rgb(226 217 203 / 65%);
}

.home-gallery-head {
    margin-bottom: var(--space-xl);
}

.home-gallery-head h2 {
    margin-bottom: 0;
}

.gallery-grid--home {
    gap: var(--space-md);
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
}

@media (min-width: 60rem) {
    .gallery-grid--home {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 200px;
        gap: var(--space-md);
    }

    .gallery-grid--home .gallery-grid__item--hero {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-grid--home .gallery-grid__item--hero .gallery-grid__link {
        aspect-ratio: unset;
        height: 100%;
        min-height: 0;
        border-radius: var(--radius-lg);
    }
}

.gallery-grid--home .gallery-grid__link {
    border-radius: var(--radius);
}

@media (min-width: 60rem) {
    .gallery-grid--home .gallery-grid__item {
        min-height: 0;
    }

    .gallery-grid--home .gallery-grid__item:not(.gallery-grid__item--hero) .gallery-grid__link {
        height: 100%;
        aspect-ratio: unset;
        min-height: 0;
    }
}

.gallery-empty--home {
    max-width: none;
    border-style: solid;
    border-color: rgb(30 74 60 / 15%);
    background: rgb(255 253 249 / 85%);
}

.home-gallery-foot {
    margin: var(--space-xl) auto 0;
    text-align: center;
    max-width: 42rem;
}

.text-link {
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 2px solid rgb(30 74 60 / 25%);
    padding-bottom: 1px;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.text-link:hover {
    color: var(--color-warm);
    border-bottom-color: rgb(180 83 42 / 45%);
}

.home-outro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    padding-bottom: var(--space-2xl);
    text-align: center;
}

.home-outro__sign-off {
    width: 100%;
    max-width: 36rem;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
    background:
        linear-gradient(165deg, rgb(255 253 249 / 98%) 0%, rgb(255 253 249 / 55%) 55%, rgb(228 239 232 / 0.35) 100%);
    border: 1px solid rgb(226 217 203 / 88%);
    border-radius: var(--radius-lg);
    box-shadow:
        var(--shadow),
        0 0 0 1px rgb(255 255 255 / 65%) inset;
}

.home-outro__text {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 3vw, 1.8rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.48;
    letter-spacing: 0.02em;
    color: var(--color-text);
}

.home-outro__text em {
    font-style: italic;
    font-weight: 700;
    color: var(--color-accent);
}

.home-outro__rule {
    width: 4rem;
    height: 3px;
    margin: var(--space-lg) auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--color-warm), var(--color-gold));
    opacity: 0.9;
}

.home-outro__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

/* —— Links (links.php) —— */
.links-page-hero .hero__visual--photo img {
    object-position: center 38%;
}

.links-disclaimer {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.link-list {
    list-style: none;
    margin: 0 auto var(--space-xl);
    padding: 0;
    max-width: 42rem;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.link-list__item {
    margin: 0;
    padding: var(--space-md) var(--space-lg);
    background: var(--color-surface);
    border: 1px solid rgb(226 217 203 / 88%);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: left;
}

.link-list__link {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-accent);
    text-decoration: none;
    line-height: 1.35;
}

.link-list__link:hover {
    color: var(--color-warm);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.link-list__desc {
    display: block;
    margin-top: var(--space-sm);
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

/* —— Buchung (buchung.php) —— */
.buchung-page-hero .hero__visual--photo img {
    height: clamp(220px, 42vw, 400px);
    object-position: center 40%;
}

.booking-form {
    position: relative;
    max-width: 40rem;
    margin: var(--space-xl) auto var(--space-xl);
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-surface);
    border: 1px solid rgb(226 217 203 / 88%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: left;
}

.booking-form__grid {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 36rem) {
    .booking-form__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-field {
    margin: 0;
}

.form-field--full {
    margin-top: var(--space-md);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.form-required {
    color: var(--color-warm);
}

.form-input {
    display: block;
    width: 100%;
    padding: 0.65rem 0.85rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.4;
    color: var(--color-text);
    background: rgb(255 253 249 / 95%);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input:focus {
    outline: none;
    border-color: rgb(30 74 60 / 45%);
    box-shadow: 0 0 0 3px rgb(30 74 60 / 12%);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235c574e' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2.25rem;
}

.form-textarea {
    min-height: 8rem;
    resize: vertical;
}

.form-hint {
    margin: var(--space-md) 0 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.form-actions {
    margin-top: var(--space-lg);
}

.form-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-feedback {
    max-width: 40rem;
    margin: var(--space-lg) auto 0;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    line-height: 1.55;
    text-align: center;
}

.form-feedback--success {
    border: 1px solid rgb(30 74 60 / 35%);
    background: var(--color-accent-soft);
    color: var(--color-text);
}

.form-feedback--error {
    border: 1px solid rgb(180 83 42 / 45%);
    background: rgb(243 230 223 / 85%);
    color: var(--color-text);
}

.form-feedback--error ul {
    margin: 0;
    padding-left: 1.2rem;
    text-align: left;
}

.notice-banner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius);
    border: 1px solid rgb(45 90 72 / 35%);
    background: var(--color-accent-soft);
    color: var(--color-text);
    font-size: 0.9375rem;
    line-height: 1.55;
    text-align: center;
}

.price-panel {
    max-width: 36rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: var(--space-lg);
}

.price-list {
    margin: 0;
    padding: 0;
}

.price-list__row {
    display: grid;
    gap: var(--space-xs);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border);
}

.price-list__row:first-child {
    padding-top: 0;
}

.price-list__row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.price-list dt {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin: 0;
}

.price-list dd {
    margin: 0;
    font-size: 1.0625rem;
    color: var(--color-text);
    line-height: 1.45;
}

.price-list__meta {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
}

.check-list {
    margin: 0 auto;
    padding-left: 0;
    max-width: 38rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    text-align: center;
    list-style-position: inside;
}

.check-list li {
    margin-bottom: var(--space-sm);
}

.check-list li:last-child {
    margin-bottom: 0;
}

.muted-label {
    display: block;
    margin: 0 auto var(--space-sm);
    max-width: 42rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-align: center;
}

.pill-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    max-width: 42rem;
}

.pill-list li {
    padding: 0.4rem 0.85rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    box-shadow: 0 1px 2px rgb(28 27 25 / 4%);
}

.contact-cards {
    display: grid;
    gap: var(--space-md);
    max-width: 36rem;
    margin: 0 auto var(--space-xl);
}

@media (min-width: 36rem) {
    .contact-cards {
        grid-template-columns: 1fr 1fr;
        max-width: 42rem;
    }
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-lg);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    text-align: center;
}

.contact-card:hover {
    border-color: var(--color-accent);
}

.contact-card--primary {
    border-color: rgb(45 90 72 / 40%);
    background: linear-gradient(160deg, var(--color-accent-soft) 0%, var(--color-surface) 65%);
}

.contact-card__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.contact-card__value {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-accent);
}

.contact-card:not(.contact-card--primary) .contact-card__value {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
}

.booking-notes p:last-child {
    margin-bottom: 0;
}

/* —— Service (service.php) —— */
.service-page-hero .hero__visual--photo img {
    height: clamp(220px, 42vw, 400px);
    object-position: center 38%;
}

.price-panel--wide {
    max-width: 40rem;
}

.service-transfer .price-panel {
    margin-top: var(--space-sm);
}

.service-more > h2 {
    margin-bottom: var(--space-xl);
}

.service-split {
    display: grid;
    gap: var(--space-lg);
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 44rem) {
    .service-split {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
        max-width: 56rem;
        align-items: stretch;
    }
}

.service-feature-card {
    position: relative;
    margin: 0;
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    background: linear-gradient(168deg, rgb(255 253 249 / 98%) 0%, rgb(228 239 232 / 0.22) 55%, rgb(255 253 249 / 90%) 100%);
    border: 1px solid rgb(226 217 203 / 88%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
    .service-feature-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-hover);
    }
}

.service-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: linear-gradient(90deg, var(--color-accent-mid), var(--color-gold));
}

.service-feature-card__eyebrow {
    margin: 0 0 var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-warm);
}

.service-feature-card__title {
    margin: 0 0 var(--space-md);
    padding-bottom: var(--space-sm);
    position: relative;
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.3vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--color-text);
    text-align: center;
}

.service-feature-card__title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 2.25rem;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-accent-mid), var(--color-gold));
    opacity: 0.85;
}

.service-feature-card__text {
    margin: 0 auto;
    max-width: 36ch;
    font-size: 1rem;
}

/* —— Kontakt (kontakt.php) —— */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.kontakt-page-hero .hero__visual--photo img {
    height: clamp(220px, 42vw, 400px);
    object-position: center 32%;
}

.kontakt-layout {
    display: grid;
    gap: var(--space-xl);
    align-items: start;
}

.kontakt-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    min-width: 0;
}

.kontakt-map-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    min-width: 0;
}

@media (min-width: 56rem) {
    .kontakt-layout {
        grid-template-columns: minmax(280px, 1fr) minmax(0, 1.35fr);
        gap: var(--space-2xl);
        align-items: start;
    }
}

.kontakt-panel {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: var(--space-lg);
    text-align: center;
}

.kontakt-brand {
    margin: 0 auto var(--space-md);
    font-style: normal;
    font-size: 1.0625rem;
    line-height: 1.45;
    color: var(--color-text);
    max-width: 24rem;
}

.kontakt-brand__sub {
    font-weight: 500;
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

.kontakt-address {
    margin: 0 auto var(--space-lg);
    font-style: normal;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 18rem;
}

.kontakt-details {
    margin: 0 auto var(--space-lg);
    padding: 0;
    max-width: 22rem;
}

.kontakt-details__row {
    display: grid;
    gap: 2px;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.kontakt-details__row:first-child {
    padding-top: 0;
}

.kontakt-details__row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.kontakt-details dt {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-align: center;
}

.kontakt-details dd {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.kontakt-details a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
}

.kontakt-details a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.kontakt-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin: 0 auto var(--space-lg);
    justify-content: center;
}

.kontakt-actions:last-child {
    margin-bottom: 0;
}

.kontakt-qr {
    margin: 0;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.kontakt-qr img {
    display: block;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.kontakt-map-foot {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    text-align: center;
}

.kontakt-map-foot a {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
}

.kontakt-map-foot a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.kontakt-map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    background: var(--color-border);
    min-height: 320px;
}

.kontakt-map {
    display: block;
    width: 100%;
    height: min(420px, 55vh);
    border: 0;
}
