/*
 * layout.css — orthos-prien.de v4
 * Mobile First — kein Bootstrap, kein Grid-Framework
 * Breakpoints: 600px (sm), 900px (md), 1200px (lg)
 */

/* ═══════════════════════════════════════════════
   TOKENS
   ═══════════════════════════════════════════════ */
:root {
    /* Farben */
    --ink:          #1c1f26;
    --ink-mid:      #4a5060;
    --ink-soft:     #8892a0;
    --paper:        #fafaf8;
    --paper-warm:   #f2ede6;
    --paper-alt:    #eee8e0;
    --line:         #e0d8cf;

    --gold:         #b08a4e;
    --gold-light:   #c9a870;
    --gold-pale:    #f5ede0;
    --gold-glow:    rgba(176,138,78,.15);

    --white:        #ffffff;

    /* Typografie */
    --f-display:    'Playfair Display', Georgia, serif;
    --f-body:       'DM Sans', system-ui, sans-serif;

    --size-xs:      .75rem;
    --size-sm:      .875rem;
    --size-base:    1rem;
    --size-md:      1.125rem;
    --size-lg:      1.375rem;
    --size-xl:      1.75rem;
    --size-2xl:     2.25rem;
    --size-3xl:     3rem;
    --size-4xl:     3.75rem;

    /* Abstände */
    --s-1:  .25rem;
    --s-2:  .5rem;
    --s-3:  .75rem;
    --s-4:  1rem;
    --s-5:  1.25rem;
    --s-6:  1.5rem;
    --s-8:  2rem;
    --s-10: 2.5rem;
    --s-12: 3rem;
    --s-16: 4rem;
    --s-20: 5rem;
    --s-24: 6rem;

    /* Radien */
    --r-sm:  4px;
    --r-md:  10px;
    --r-lg:  20px;
    --r-xl:  32px;
    --r-full: 9999px;

    /* Schatten */
    --sh-sm:  0 1px 4px rgba(28,31,38,.06);
    --sh-md:  0 4px 16px rgba(28,31,38,.08);
    --sh-lg:  0 8px 32px rgba(28,31,38,.10);
    --sh-gold: 0 4px 20px rgba(176,138,78,.3);

    /* Transition */
    --t: .25s ease;

    /* Layout */
    --nav-h: 68px;
    --wrap:  1160px;
    --wrap-pad: clamp(1.25rem, 5vw, 2.5rem);
}

/* ═══════════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--f-body);
    font-size: var(--size-base);
    line-height: 1.7;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ═══════════════════════════════════════════════
   TYPOGRAFIE
   ═══════════════════════════════════════════════ */
h1,h2,h3,h4 {
    font-family: var(--f-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--ink);
}
h1 { font-size: clamp(2.25rem, 7vw, var(--size-4xl)); }
h2 { font-size: clamp(1.75rem, 5vw, var(--size-3xl)); }
h3 { font-size: clamp(1.25rem, 3vw, var(--size-xl)); }
p  { color: var(--ink-mid); line-height: 1.8; }

/* ═══════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════ */
.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--wrap-pad);
}

.label {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    font-size: var(--size-xs);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--s-4);
}
.label::before {
    content: '';
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--gold);
    flex-shrink: 0;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: .5rem 1rem;
    background: var(--ink);
    color: var(--white);
    border-radius: var(--r-sm);
    font-size: var(--size-sm);
    font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    font-size: var(--size-sm);
    font-weight: 600;
    letter-spacing: .03em;
    padding: .875rem 1.75rem;
    border-radius: var(--r-sm);
    border: 1.5px solid transparent;
    transition: all var(--t);
    white-space: nowrap;
}
.btn--primary {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}
.btn--primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: var(--sh-gold);
    transform: translateY(-2px);
}
.btn--outline {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}
.btn--outline:hover {
    background: var(--ink);
    color: var(--white);
    transform: translateY(-2px);
}
.btn--ghost {
    background: transparent;
    border-color: rgba(255,255,255,.4);
    color: var(--white);
}
.btn--ghost:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.8);
}
.btn--full { width: 100%; justify-content: center; }
.btn--gold {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}
.btn--gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--sh-gold);
}

/* ═══════════════════════════════════════════════
   ALERT BAR
   ═══════════════════════════════════════════════ */
.alert-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    padding: var(--s-3) var(--wrap-pad);
    background: var(--gold);
    color: var(--white);
    font-size: var(--size-sm);
    font-weight: 500;
}
.alert-bar__close {
    color: rgba(255,255,255,.8);
    padding: var(--s-1);
    flex-shrink: 0;
    transition: color var(--t);
}
.alert-bar__close:hover { color: var(--white); }

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    background: rgba(250,250,248,.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow var(--t);
}
.site-header.scrolled .nav {
    box-shadow: var(--sh-md);
}

.nav__inner {
    display: flex;
    align-items: center;
    gap: var(--s-4);
    height: var(--nav-h);
    padding-inline: var(--wrap-pad);
    max-width: var(--wrap);
    margin-inline: auto;
}

.nav__logo img {
    height: 40px;
    width: auto;
}

/* Desktop links — versteckt auf Mobile */
.nav__links {
    display: none;
    align-items: center;
    gap: var(--s-1);
    list-style: none;
    margin-left: auto;
}

.nav__link {
    font-size: var(--size-sm);
    font-weight: 500;
    color: var(--ink-mid);
    padding: var(--s-2) var(--s-3);
    border-radius: var(--r-sm);
    transition: color var(--t), background var(--t);
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: var(--s-1);
}
.nav__link:hover,
.nav__link.active {
    color: var(--ink);
    background: var(--gold-pale);
}
.nav__link.active {
    font-weight: 600;
}

/* Dropdown */
.nav__item--dropdown { position: relative; }
.nav__dropdown {
    position: absolute;
    top: calc(100% + var(--s-2));
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    box-shadow: var(--sh-lg);
    padding: var(--s-2);
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: all var(--t);
    pointer-events: none;
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}
.nav__dropdown-link {
    display: block;
    padding: var(--s-3) var(--s-4);
    font-size: var(--size-sm);
    color: var(--ink-mid);
    border-radius: var(--r-sm);
    transition: background var(--t), color var(--t);
}
.nav__dropdown-link:hover,
.nav__dropdown-link.active {
    background: var(--gold-pale);
    color: var(--ink);
}

/* CTA Button Nav */
.nav__cta {
    display: none;
    align-items: center;
    gap: var(--s-2);
    font-size: var(--size-sm);
    font-weight: 600;
    color: var(--gold);
    padding: var(--s-2) var(--s-4);
    border: 1.5px solid var(--gold);
    border-radius: var(--r-full);
    transition: all var(--t);
    white-space: nowrap;
    margin-left: var(--s-4);
    flex-shrink: 0;
}
.nav__cta:hover {
    background: var(--gold);
    color: var(--white);
}
.nav__cta-text { display: none; }

/* Burger */
.nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--s-2);
    margin-left: auto;
    border-radius: var(--r-sm);
    transition: background var(--t);
}
.nav__burger:hover { background: var(--paper-warm); }
.nav__burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: var(--r-full);
    transition: all var(--t);
}
.nav__burger.is-open .nav__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav__burger.is-open .nav__burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav__burger.is-open .nav__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    padding-top: var(--nav-h);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    visibility: hidden;
}
.mobile-menu.is-open {
    transform: translateX(0);
    visibility: visible;
}
.mobile-menu__inner {
    flex: 1;
    overflow-y: auto;
    padding: var(--s-8) var(--wrap-pad) var(--s-10);
    display: flex;
    flex-direction: column;
    gap: var(--s-8);
}
.mobile-menu__list { display: flex; flex-direction: column; }
.mobile-menu__link {
    display: block;
    padding: var(--s-5) 0;
    font-size: var(--size-lg);
    font-family: var(--f-display);
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    transition: color var(--t), padding-left var(--t);
}
.mobile-menu__link:hover,
.mobile-menu__link.active {
    color: var(--gold);
    padding-left: var(--s-3);
}
.mobile-menu__footer {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
    padding-top: var(--s-6);
    border-top: 1px solid var(--line);
}
.mobile-menu__address {
    display: flex;
    align-items: flex-start;
    gap: var(--s-2);
    font-size: var(--size-sm);
    color: var(--ink-soft);
    margin-top: var(--s-2);
}
.mobile-menu__address i { margin-top: 3px; color: var(--gold); }

/* Backdrop */
.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(28,31,38,.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--t);
}
.nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

/* ─── Desktop Nav Overrides ─── */
@media (min-width: 900px) {
    .nav__links { display: flex; }
    .nav__cta { display: flex; }
    .nav__cta-text { display: block; }
    .nav__burger { display: none; }
    .mobile-menu { display: none; }
    .nav-backdrop { display: none; }
}

/* ═══════════════════════════════════════════════
   HERO — Mobile First
   ═══════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: calc(100svh - var(--nav-h));
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, var(--ink) 0%, #2d3550 100%);
    overflow: hidden;
    padding: var(--s-12) var(--wrap-pad) var(--s-16);
}

/* Subtiles Muster */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(176,138,78,.12) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(176,138,78,.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.hero .label { color: var(--gold-light); }
.hero .label::before { background: var(--gold-light); }

.hero__title {
    color: var(--white);
    margin-bottom: var(--s-6);
}
.hero__title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero__text {
    color: rgba(255,255,255,.75);
    font-size: var(--size-md);
    margin-bottom: var(--s-8);
    max-width: 460px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-3);
    margin-bottom: var(--s-8);
}

/* Chips */
.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-2);
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    padding: var(--s-2) var(--s-3);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--r-full);
    font-size: var(--size-xs);
    font-weight: 600;
    color: rgba(255,255,255,.8);
    letter-spacing: .04em;
}
.chip i { color: var(--gold-light); font-size: .75em; }

/* Hero Image — erscheint auf Desktop */
.hero__image {
    display: none;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    max-width: 520px;
    z-index: 1;
}
.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--r-xl) 0 0 0;
    mask-image: linear-gradient(to left, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 80%, transparent 100%);
}

/* Floating Card */
.hero__card {
    position: absolute;
    bottom: var(--s-8);
    left: -var(--s-8);
    display: flex;
    align-items: center;
    gap: var(--s-3);
    padding: var(--s-4) var(--s-5);
    background: var(--white);
    border-radius: var(--r-md);
    box-shadow: var(--sh-lg);
    font-size: var(--size-sm);
    white-space: nowrap;
    transform: translateX(-20px);
}
.hero__card strong { display: block; color: var(--ink); font-weight: 600; }
.hero__card span { color: var(--ink-soft); font-size: var(--size-xs); }
.hero__card-icon { color: var(--gold); font-size: 1.25rem; flex-shrink: 0; }

@media (min-width: 900px) {
    .hero {
        flex-direction: row;
        align-items: center;
        padding: var(--s-20) var(--wrap-pad);
        min-height: calc(90vh - var(--nav-h));
    }
    .hero__content { flex: 1; max-width: 50%; }
    .hero__image { display: block; }
}

/* ═══════════════════════════════════════════════
   SECTIONS — Gemeinsam
   ═══════════════════════════════════════════════ */
.section {
    padding: var(--s-16) 0;
}
.section--alt {
    background: var(--paper-warm);
}
@media (min-width: 900px) {
    .section { padding: var(--s-24) 0; }
}

.section__header {
    text-align: center;
    margin-bottom: var(--s-10);
}
.section__title { margin-bottom: var(--s-4); }
.section__text {
    max-width: 540px;
    margin-inline: auto;
    color: var(--ink-mid);
}
.section__cta {
    text-align: center;
    margin-top: var(--s-8);
}

/* ═══════════════════════════════════════════════
   CARDS — Horizontal Scroll auf Mobile
   ═══════════════════════════════════════════════ */
.cards-scroll {
    display: flex;
    gap: var(--s-4);
    overflow-x: auto;
    padding-bottom: var(--s-4);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Kein Scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.cards-scroll::-webkit-scrollbar { display: none; }

.card {
    flex-shrink: 0;
    width: min(80vw, 280px);
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: var(--s-6);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
    transition: transform var(--t), box-shadow var(--t);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
}

.card__icon {
    width: 48px;
    height: 48px;
    background: var(--gold-pale);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    transition: background var(--t), color var(--t);
}
.card:hover .card__icon {
    background: var(--gold);
    color: var(--white);
}
.card__title {
    font-family: var(--f-display);
    font-size: var(--size-lg);
    color: var(--ink);
}
.card__text {
    font-size: var(--size-sm);
    color: var(--ink-soft);
    line-height: 1.7;
    flex: 1;
}
.card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    font-size: var(--size-sm);
    font-weight: 600;
    color: var(--ink-mid);
    transition: color var(--t), gap var(--t);
    margin-top: auto;
}
.card:hover .card__link,
.card__link:hover {
    color: var(--gold);
    gap: var(--s-3);
}

/* Grid auf Desktop */
@media (min-width: 900px) {
    .cards-scroll {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow: visible;
        padding-bottom: 0;
    }
    .card { width: auto; }
}

/* ═══════════════════════════════════════════════
   SPLIT SECTION — Dr. Baer
   ═══════════════════════════════════════════════ */
.section--split {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.split__image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.split__content {
    padding: var(--s-12) var(--wrap-pad);
    background: var(--paper-alt);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.split__role {
    font-size: var(--size-sm);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: var(--s-4);
}
.split__divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: var(--s-5) 0;
}
.split__text {
    color: var(--ink-mid);
    margin-bottom: var(--s-8);
    max-width: 480px;
}

@media (min-width: 900px) {
    .section--split {
        flex-direction: row;
        min-height: 600px;
    }
    .split__image {
        width: 45%;
        aspect-ratio: unset;
    }
    .split__content {
        width: 55%;
        padding: var(--s-20) var(--s-16);
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════ */
.stats {
    background: var(--ink);
    padding: var(--s-10) 0;
}
.stats__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-8) var(--s-4);
    list-style: none;
}
.stats__item {
    text-align: center;
}
.stats__number {
    display: block;
    font-family: var(--f-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--s-2);
}
.stats__label {
    font-size: var(--size-xs);
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
}
/* Divider-Items ausblenden auf Mobile */
.stats__item:has(.stats__divider) { display: none; }
.stats__divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,.12);
    margin-inline: auto;
}
@media (min-width: 600px) {
    .stats__list {
        grid-template-columns: repeat(7, auto);
        align-items: center;
        justify-content: center;
    }
    .stats__item:has(.stats__divider) { display: block; }
    .stats__item { text-align: center; padding-inline: var(--s-4); }
}

/* ═══════════════════════════════════════════════
   KONTAKT GRID
   ═══════════════════════════════════════════════ */
.contact-grid {
    display: grid;
    gap: var(--s-4);
    grid-template-columns: 1fr;
}
.contact-tile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-2);
    padding: var(--s-6);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.contact-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: var(--gold);
}
.contact-tile__icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: var(--s-2);
}
.contact-tile__title {
    font-size: var(--size-base);
    font-weight: 700;
    color: var(--ink);
}
.contact-tile__value {
    font-size: var(--size-sm);
    color: var(--ink-soft);
    line-height: 1.6;
}
@media (min-width: 600px) {
    .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════
   PRE-FOOTER CTA
   ═══════════════════════════════════════════════ */
.prefooter {
    background: var(--gold);
    padding: var(--s-12) var(--wrap-pad);
    position: relative;
    overflow: hidden;
}
.prefooter::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    pointer-events: none;
}
.prefooter__inner {
    max-width: var(--wrap);
    margin-inline: auto;
}
.prefooter__title {
    font-family: var(--f-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: var(--s-3);
    letter-spacing: -.02em;
}
.prefooter__text {
    color: rgba(255,255,255,.8);
    font-size: var(--size-md);
    margin-bottom: var(--s-6);
    max-width: 520px;
}
.prefooter__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-3);
}
.prefooter .btn--light {
    background: var(--white);
    border-color: var(--white);
    color: var(--gold);
}
.prefooter .btn--light:hover {
    background: var(--gold-pale);
    border-color: var(--gold-pale);
    transform: translateY(-2px);
}
.prefooter .btn--outline-white {
    background: transparent;
    border-color: rgba(255,255,255,.6);
    color: var(--white);
}
.prefooter .btn--outline-white:hover {
    background: rgba(255,255,255,.15);
    border-color: var(--white);
}

@media (min-width: 900px) {
    .prefooter {
        padding: var(--s-16) var(--wrap-pad);
    }
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
    background: var(--ink);
    color: rgba(255,255,255,.6);
}
.footer__top { padding: var(--s-12) 0 var(--s-10); }
.footer__grid {
    display: grid;
    gap: var(--s-8);
    grid-template-columns: 1fr;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--wrap-pad);
}
.footer__brand {}
.footer__tagline {
    margin-top: var(--s-4);
    font-size: var(--size-sm);
    color: rgba(255,255,255,.45);
    line-height: 1.7;
}
.footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--s-4);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.5);
    font-size: .9rem;
    transition: all var(--t);
}
.footer__social:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(176,138,78,.1);
}
.footer__heading {
    font-family: var(--f-body);
    font-size: var(--size-xs);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: var(--s-4);
    padding-bottom: var(--s-3);
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__list { display: flex; flex-direction: column; gap: var(--s-3); }
.footer__list a {
    font-size: var(--size-sm);
    color: rgba(255,255,255,.55);
    transition: color var(--t), padding-left var(--t);
    display: inline-block;
}
.footer__list a:hover {
    color: var(--gold-light);
    padding-left: var(--s-2);
}
.footer__contact-list { display: flex; flex-direction: column; gap: var(--s-4); }
.footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--s-3);
    font-size: var(--size-sm);
}
.footer__contact-list i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: .85rem;
}
.footer__contact-list a,
.footer__contact-list span {
    color: rgba(255,255,255,.6);
    transition: color var(--t);
}
.footer__contact-list a:hover { color: var(--gold-light); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: var(--s-5) 0;
}
.footer__bottom .wrap {
    display: flex;
    flex-direction: column;
    gap: var(--s-2);
    font-size: var(--size-xs);
    color: rgba(255,255,255,.3);
}
.footer__bottom a {
    color: rgba(255,255,255,.45);
    transition: color var(--t);
}
.footer__bottom a:hover { color: var(--gold); }

@media (min-width: 600px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
    .footer__grid { grid-template-columns: 2fr 1fr 1fr 2fr; }
    .footer__bottom .wrap { flex-direction: row; justify-content: space-between; }
}

/* ═══════════════════════════════════════════════
   PAGE HERO (Unterseiten)
   ═══════════════════════════════════════════════ */
.page-hero {
    background: var(--paper-warm);
    padding: var(--s-12) var(--wrap-pad) var(--s-10);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    right: -5%;
    top: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-pale), transparent 70%);
    opacity: .6;
    pointer-events: none;
}
.page-hero__inner {
    max-width: var(--wrap);
    margin-inline: auto;
    position: relative;
    z-index: 1;
}
.page-hero__title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    margin-bottom: var(--s-3);
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-2);
    font-size: var(--size-sm);
    color: var(--ink-soft);
}
.breadcrumb a { color: var(--gold); transition: color var(--t); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb__sep { color: var(--line); }

/* ═══════════════════════════════════════════════
   FORMULARE
   ═══════════════════════════════════════════════ */
.form-group { display: flex; flex-direction: column; gap: var(--s-2); }
.form-label {
    font-size: var(--size-sm);
    font-weight: 600;
    color: var(--ink-mid);
    letter-spacing: .02em;
}
.form-control {
    padding: var(--s-4) var(--s-5);
    border: 1.5px solid var(--line);
    border-radius: var(--r-sm);
    font-family: var(--f-body);
    font-size: var(--size-base);
    color: var(--ink);
    background: var(--white);
    transition: border-color var(--t), box-shadow var(--t);
    width: 100%;
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-control::placeholder { color: rgba(72,80,96,.4); }
textarea.form-control { resize: vertical; min-height: 140px; }

/* ═══════════════════════════════════════════════
   FOCUS / ACCESSIBILITY
   ═══════════════════════════════════════════════ */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: var(--r-sm);
}

/* ═══════════════════════════════════════════════
   WOW ANIMATIONS
   ═══════════════════════════════════════════════ */
.wow { visibility: hidden; }
