:root {
    --ink: #0e0d0c;
    --ink-soft: #2a2725;
    --cream: #f4ede2;
    --cream-deep: #ebe0cc;
    --paper: #faf6ee;
    --royal: #1a3a6c;
    --royal-deep: #122a4f;
    --brass: #a07c3f;
    --brass-soft: #c4a574;
    --line: #dcd3c3;
    --line-soft: #e8e0d0;
    --mute: #6b645a;
    --shadow-md: 0 14px 40px -16px rgba(14,13,12,0.18);
    --shadow-lg: 0 30px 70px -24px rgba(14,13,12,0.28);
    --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
    --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--royal); text-decoration: none; transition: opacity .2s var(--ease); }
a:hover { opacity: 0.7; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 600px) { .container { padding: 0 20px; } }

/* ============ HEADER ============ */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(244, 237, 226, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 24px;
}
.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--ink);
    color: var(--ink);
    border-radius: 999px;
    padding: 9px 12px 9px 14px;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    align-items: center;
    gap: 10px;
}
.nav-toggle__icon {
    position: relative;
    width: 18px; height: 12px;
    display: inline-block;
}
.nav-toggle__icon::before,
.nav-toggle__icon::after,
.nav-toggle__icon span {
    content: "";
    position: absolute; left: 0; right: 0;
    height: 1.5px;
    background: currentColor;
    transition: transform .25s var(--ease), opacity .2s var(--ease), top .25s var(--ease);
}
.nav-toggle__icon::before { top: 0; }
.nav-toggle__icon span    { top: 50%; transform: translateY(-50%); }
.nav-toggle__icon::after  { bottom: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after  { bottom: 50%; transform: translateY(50%) rotate(-45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span    { opacity: 0; }
.brand { display: inline-flex; align-items: center; gap: 16px; color: var(--ink); }
.brand__logo { width: auto; height: 54px; color: var(--royal); }
.brand__sub {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    color: var(--mute);
    padding-left: 16px;
    border-left: 1px solid var(--line);
    line-height: 1.3;
    letter-spacing: 0.01em;
}
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-soft);
}
/* CTA-Button: höhere Spezifität nötig, sonst gewinnt .header-nav a */
.header-nav a.header-cta {
    background: var(--royal);
    color: var(--cream);
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    transition: background .2s var(--ease), transform .2s var(--ease);
}
.header-nav a.header-cta:hover {
    background: var(--royal-deep);
    color: var(--cream);
    opacity: 1;
    transform: translateY(-1px);
}
@media (max-width: 880px) {
    .nav-toggle { display: inline-flex; }
    .brand__logo { height: 46px; }
    .brand__sub { display: none; }
    .header-nav {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(244, 237, 226, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid var(--line);
        padding: 14px 28px 22px;
        box-shadow: 0 24px 50px -28px rgba(14,13,12,0.25);
    }
    .header-nav.is-open { display: flex; }
    .header-nav a {
        padding: 16px 4px;
        border-bottom: 1px solid var(--line-soft);
        font-size: 14px;
    }
    .header-nav a:last-child { border-bottom: none; }
    .header-nav a.header-cta {
        margin-top: 14px;
        text-align: center;
        align-self: stretch;
        border: none;
    }
}

/* ============ HERO ============ */
.hero {
    position: relative;
    padding: 100px 0 90px;
    background:
        radial-gradient(ellipse at 70% -20%, rgba(160,124,63,0.12), transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(26,58,108,0.08), transparent 60%),
        var(--paper);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent 0, transparent 22px, rgba(160,124,63,0.05) 22px, rgba(160,124,63,0.05) 23px);
    pointer-events: none;
}
.hero__inner { position: relative; text-align: center; }
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--brass);
    animation: fade-up .9s var(--ease) both;
}
.hero__eyebrow::before, .hero__eyebrow::after {
    content: ""; width: 36px; height: 1px; background: var(--brass);
}
.hero__title {
    margin: 0 auto;
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 78px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.01em;
    color: var(--ink);
    max-width: 920px;
    animation: fade-up 1s .15s var(--ease) both;
}
.hero__title em { font-style: italic; color: var(--royal); font-weight: 500; }
.hero__lead {
    margin: 30px auto 0;
    max-width: 640px;
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.75;
    color: var(--ink-soft);
    animation: fade-up 1s .3s var(--ease) both;
}
.hero__cta-row {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
    margin-top: 44px;
    animation: fade-up 1s .45s var(--ease) both;
}
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
}
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { background: var(--royal); color: var(--cream); opacity: 1; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); opacity: 1; }

@keyframes fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============ SECTIONS ============ */
section { padding: 90px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }
.section-eyebrow {
    display: flex; align-items: center; gap: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--brass);
    margin: 0 0 18px;
}
.section-eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--brass); }
.section-title {
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-size: clamp(32px, 4.4vw, 48px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.005em;
    color: var(--ink);
    max-width: 680px;
}
.section-title em { font-style: italic; color: var(--royal); }
.section-lead {
    margin: 0 0 50px;
    max-width: 620px;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.75;
}

/* ============ INTRO ============ */
.intro { background: var(--cream); }
.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}
@media (max-width: 880px) { .intro-grid { grid-template-columns: 1fr; gap: 50px; } }
.intro-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background-color: var(--cream-deep);
    /* Button-Reset, falls als <button> gerendert (Lightbox-Trigger) */
    padding: 0; margin: 0;
    border: 0;
    color: inherit;
    font: inherit;
    width: 100%;
    display: block;
    cursor: zoom-in;
}
.intro-image::after {
    content: "";
    position: absolute; inset: 14px;
    border: 1px solid rgba(244,237,226,0.4);
    pointer-events: none;
}
.intro-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s var(--ease);
}
.intro-image:hover img { transform: scale(1.03); }

/* --------- LQIP (Low Quality Image Placeholder) ---------
   Wrapper-Elemente (.gallery-item, .horse-card__media, .intro-image)
   bekommen pro Bild einen winzigen Base64-Blur als CSS-Variable
   --lqip-src per inline style. Dieser zeigt sich als Background;
   das eigentliche <img> faded erst nach dem load-Event ein.
   Aktivierung über html.has-lqip (von app.js gesetzt) — ohne JS
   ist alles direkt sichtbar wie zuvor. */
.gallery-item,
.horse-card__media,
.intro-image {
    --lqip-src: none;
    background-image: var(--lqip-src);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
html.has-lqip .gallery-item img,
html.has-lqip .horse-card__media img,
html.has-lqip .intro-image img {
    opacity: 0;
    transition: opacity .35s var(--ease);
}
html.has-lqip .gallery-item img.is-loaded,
html.has-lqip .horse-card__media img.is-loaded,
html.has-lqip .intro-image img.is-loaded {
    opacity: 1;
}

.intro-prose {
    font-size: 17px;
    line-height: 1.8;
    color: var(--ink-soft);
    margin: 0 0 18px;
}
.intro-prose:last-child { margin-bottom: 0; }

/* ============ SERVICES ============ */
.services { background: var(--paper); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 880px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
    padding: 40px 32px;
    background: var(--cream);
    border: 1px solid var(--line-soft);
    border-radius: 6px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--brass-soft);
}
.service-card__num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
    color: var(--brass);
    margin-bottom: 18px;
    letter-spacing: 0.06em;
}
.service-card__title {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
}
.service-card__title em { font-style: italic; color: var(--royal); font-weight: 500; }
.service-card__text { margin: 0; font-size: 15px; line-height: 1.7; color: var(--ink-soft); }

/* ============ VERKAUFSPFERDE ============ */
.horses { background: var(--cream); }
.horses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 880px) { .horses-grid { grid-template-columns: 1fr; } }
.horse-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    color: var(--ink-soft);
    display: flex; flex-direction: column;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.horse-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--brass);
    opacity: 1;
}
.horse-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background-color: var(--cream-deep);
    overflow: hidden;
    /* Button-Reset (Lightbox-Trigger) */
    padding: 0; border: 0; margin: 0;
    width: 100%;
    color: inherit; font: inherit;
    cursor: zoom-in;
    display: block;
}
.horse-card__media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s var(--ease);
}
.horse-card:hover .horse-card__media img { transform: scale(1.04); }
.horse-card__media--placeholder::after {
    content: "Foto folgt";
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    color: var(--mute);
}
.horse-card__body {
    padding: 28px 28px 30px;
    display: flex; flex-direction: column;
    flex: 1;
}
.horse-card__tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--ink);
    color: var(--cream);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
    z-index: 1;
}
.horse-card__tag--new {
    background: var(--brass);
    color: var(--ink);
    box-shadow: 0 6px 18px -6px rgba(160, 124, 63, 0.55);
}
.horse-card__title {
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.25;
}
.horse-card__specs {
    list-style: none; padding: 0; margin: 0 0 22px;
    display: flex; flex-wrap: wrap; gap: 8px 0;
    border-top: 1px solid var(--line-soft);
    padding-top: 18px;
}
.horse-card__specs li {
    font-size: 13px;
    color: var(--mute);
    padding-right: 14px;
    margin-right: 14px;
    border-right: 1px solid var(--line-soft);
}
.horse-card__specs li:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.horse-card__specs strong { color: var(--ink); font-weight: 600; }
.horse-card__link {
    margin-top: auto;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--royal);
    text-decoration: none;
    align-self: flex-start;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color .2s var(--ease);
}
.horse-card__link::after { content: "→"; transition: transform .25s var(--ease); }
.horse-card__link:hover { border-bottom-color: var(--royal); opacity: 1; }
.horse-card__link:hover::after { transform: translateX(4px); }

/* Empty-State, wenn aktuell keine Inserate */
.horses-empty {
    text-align: center;
    padding: 60px 30px;
    background: var(--paper);
    border: 1px dashed var(--line);
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 22px;
    font-style: italic;
    color: var(--mute);
}
.horses-empty__phone {
    color: var(--royal);
    border-bottom: 1px solid var(--royal);
}

/* Inline-Link mit royal-Underline (z. B. Instagram-Link in section-lead) */
.inline-link {
    border-bottom: 1px solid var(--royal);
}
.horses-all-link {
    margin-top: 32px;
    text-align: center;
    font-size: 14px;
}
.horses-all-link a {
    color: var(--royal);
    border-bottom: 1px solid var(--royal);
    padding-bottom: 2px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* ============ GALLERY ============ */
.gallery { background: var(--paper); border-top: 1px solid var(--line-soft); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--cream-deep);
    /* Button-Reset (Lightbox-Trigger) */
    padding: 0; border: 0; margin: 0;
    color: inherit; font: inherit;
    cursor: zoom-in;
    display: block;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 1; }
@media (max-width: 880px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
}

/* ============ ANREISE ============ */
.location { background: var(--ink); color: var(--cream); }
.location .section-title { color: var(--cream); }
.location .section-title em { color: var(--brass-soft); }
.location .section-eyebrow { color: var(--brass-soft); }
.location .section-eyebrow::before { background: var(--brass-soft); }
.location .section-lead { color: rgba(244,237,226,0.75); }
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
}
@media (max-width: 880px) { .location-grid { grid-template-columns: 1fr; } }
.location-info dl {
    margin: 0;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px 24px;
    border-top: 1px solid rgba(244,237,226,0.18);
    padding-top: 28px;
}
.location-info dt {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brass-soft);
    font-weight: 600;
    padding-top: 4px;
}
.location-info dd {
    margin: 0;
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.4;
}
.location-info dd a { color: var(--cream); border-bottom: 1px solid rgba(244,237,226,0.4); }
.location-info dd.dd--prose {
    font-size: 15px; font-family: var(--font-body); line-height: 1.7;
    color: rgba(244,237,226,0.85);
}
.location-map {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4 / 3;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(160,124,63,0.16), transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(244,237,226,0.06), transparent 60%),
        #1a1816;
    border: 1px solid rgba(244,237,226,0.12);
}
.location-map iframe {
    width: 100%; height: 100%; border: 0;
    filter: grayscale(0.3) contrast(0.95);
}
.map-placeholder {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 18px; padding: 28px;
    text-align: center;
}
.map-placeholder__pin {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--brass);
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 30px -8px rgba(160,124,63,0.55);
}
.map-placeholder__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--cream);
    line-height: 1.3;
}
.map-placeholder__hint {
    margin: 0;
    max-width: 360px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(244,237,226,0.65);
}
.map-placeholder__btn {
    margin-top: 6px;
    background: var(--brass);
    color: var(--ink);
    border: 0;
    padding: 12px 22px;
    border-radius: 999px;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: transform .2s var(--ease), background .2s var(--ease);
}
.map-placeholder__btn:hover { background: var(--brass-soft); transform: translateY(-1px); }
.map-placeholder__btn:focus-visible { outline: 2px solid var(--cream); outline-offset: 3px; }
.map-placeholder__links {
    margin: -2px 0 0;
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 4px 16px;
    font-size: 13px;
}
.map-placeholder__link {
    color: var(--brass-soft);
    border-bottom: 1px solid rgba(196, 165, 116, 0.4);
    text-decoration: none;
}
.map-placeholder__link:hover {
    color: var(--cream);
    border-bottom-color: var(--cream);
    opacity: 1;
}

/* ============ KONTAKT CTA ============ */
.contact { background: var(--cream); padding: 120px 0; }
.contact-card {
    max-width: 880px;
    margin: 0 auto;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 70px 60px;
    text-align: center;
    position: relative;
}
.contact-card::before, .contact-card::after {
    content: "";
    position: absolute;
    width: 50px; height: 1px;
    background: var(--brass);
}
.contact-card::before { top: 36px; left: 50%; transform: translateX(-50%); }
.contact-card::after { bottom: 36px; left: 50%; transform: translateX(-50%); }
.contact-card__diamond {
    width: 8px; height: 8px;
    background: var(--brass);
    margin: 0 auto 24px;
    transform: rotate(45deg);
}
.contact-card__title {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--ink);
}
.contact-card__title em { font-style: italic; color: var(--royal); }
.contact-card__text {
    margin: 0 auto 36px;
    max-width: 480px;
    color: var(--ink-soft);
    line-height: 1.7;
}
.contact-card__address {
    margin: 0;
    color: var(--mute);
    font-size: 13px;
}
.contact-card__rows {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
    max-width: 600px;
    margin: 0 auto 36px;
}
@media (max-width: 600px) { .contact-card__rows { grid-template-columns: 1fr; } .contact-card { padding: 50px 28px; } }
.contact-row {
    display: flex; flex-direction: column;
    text-align: left;
    padding: 18px 22px;
    background: var(--cream);
    border: 1px solid var(--line-soft);
    border-radius: 4px;
    text-decoration: none;
    transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.contact-row:hover { border-color: var(--brass); opacity: 1; transform: translateY(-2px); }
.contact-row__label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mute);
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-row__value {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--ink);
    font-weight: 600;
    word-break: break-word;
}

/* ============ FOOTER ============ */
.site-footer {
    background: #0a0908;
    color: rgba(244,237,226,0.6);
    padding: 60px 0 36px;
    font-size: 13px;
}
.site-footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(244,237,226,0.1);
}
@media (max-width: 720px) { .site-footer__inner { grid-template-columns: 1fr; gap: 32px; } }
.site-footer__brand { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.site-footer__brand-logo { width: auto; height: 130px; max-width: 100%; color: var(--cream); flex: 0 0 auto; }
.site-footer__brand-claim { margin: 0; line-height: 1.7; max-width: 320px; flex: 1 1 200px; }
@media (max-width: 480px) {
    .site-footer__brand { gap: 16px; }
    .site-footer__brand-logo { height: 90px; }
}
.site-footer__col h4 {
    margin: 0 0 16px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brass-soft);
    font-weight: 600;
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; }
.site-footer__col li { margin-bottom: 8px; }
.site-footer__col a { color: var(--cream); }
.site-footer__col a:hover { color: var(--brass-soft); opacity: 1; }
.site-footer__bottom {
    padding-top: 28px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 12px;
    color: rgba(244,237,226,0.4);
}

/* ============ LIGHTBOX ============ */
.lightbox[hidden] { display: none !important; }
.lightbox {
    position: fixed; inset: 0;
    z-index: 100;
    background: rgba(14,13,12,0.94);
    display: flex; align-items: center; justify-content: center;
    padding: 60px 20px 30px;
    animation: lb-fade .2s var(--ease);
}
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__figure {
    margin: 0;
    max-width: 96vw;
    max-height: calc(100vh - 110px);
    display: flex; flex-direction: column;
    align-items: center; gap: 14px;
}
.lightbox__img {
    max-width: 100%;
    max-height: calc(100vh - 160px);
    width: auto; height: auto;
    object-fit: contain;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
    background: #1a1816;
}
.lightbox__caption {
    font-family: var(--font-display);
    font-style: italic;
    color: rgba(244,237,226,0.85);
    font-size: 16px;
    text-align: center;
    margin: 0;
    padding: 0 12px;
}
.lightbox__btn {
    position: absolute;
    background: rgba(244,237,226,0.08);
    border: 1px solid rgba(244,237,226,0.18);
    color: var(--cream);
    width: 48px; height: 48px;
    border-radius: 50%;
    font: inherit;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s var(--ease), transform .2s var(--ease);
}
.lightbox__btn:hover { background: rgba(244,237,226,0.18); }
.lightbox__btn:focus-visible { outline: 2px solid var(--cream); outline-offset: 3px; }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
    position: absolute; top: 28px; left: 50%; transform: translateX(-50%);
    font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(244,237,226,0.6);
}
@media (max-width: 600px) {
    .lightbox { padding: 70px 12px 20px; }
    .lightbox__btn { width: 40px; height: 40px; font-size: 18px; }
    .lightbox__close { top: 14px; right: 14px; }
    .lightbox__prev  { left: 10px; }
    .lightbox__next  { right: 10px; }
}

/* ============ ACCESSIBILITY ============ */
.skip-link {
    position: absolute;
    top: -100px; left: 12px;
    background: var(--ink);
    color: var(--cream);
    padding: 12px 18px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 999;
    text-decoration: none;
    transition: top .2s var(--ease);
}
.skip-link:focus {
    top: 12px;
    outline: 2px solid var(--brass);
    outline-offset: 2px;
    color: var(--cream);
    opacity: 1;
}

/* Konsistente Fokus-Hervorhebung (nur Tastatur) */
:focus-visible {
    outline: 2px solid var(--royal);
    outline-offset: 3px;
    border-radius: 2px;
}
.btn:focus-visible,
.header-cta:focus-visible {
    outline-offset: 4px;
}

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

/* Visually-hidden Helper (für Screenreader-only Texte) */
.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;
}
