:root {
    --bg: #000;
    --text: #f2f2f2;
    --muted: #a9a9a9;
    --line: rgba(255,255,255,.12);
    --accent: #d6b25e;
    --radius: 16px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    cursor: default;
}

.container {
    width: min(1100px,calc(100% - 32px));
    margin: 0 auto
}

/* ===== Header ===== */
.header {
    padding: 20px 0 14px;
    background: #000
}

    .header::after {
        content: "";
        display: block;
        height: 1px;
        background: linear-gradient(to right,transparent,rgba(214,178,94,.4),transparent);
        margin-bottom: 5px;
    }

.header__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px
}

/* decorative lines */
.header__decor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px
}

.line {
    display: block;
    height: 1px;
    background: linear-gradient(to right,transparent,rgba(214,178,94,.55),transparent);
}

.line--long {
    width: 320px
}

.line--short {
    width: 160px
}

/* slogan w/ side lines */
.slogan-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 14px 0 6px;
    width: 100%;
}

.header__slogan {
    margin: 0;
    font-size: 10px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: .85;
    text-align: center;
}

.slogan-line {
    height: 1px;
    width: 110px;
    background: linear-gradient(to right,transparent,rgba(255,255,255,.20),transparent);
}

/* ornament */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 8px 0 6px;
    width: 100%;
    opacity: .9;
}

.ornament__line {
    height: 1px;
    width: 140px;
    background: linear-gradient(to right,transparent,rgba(214,178,94,.35),transparent);
}

.ornament__mark {
    color: rgba(214,178,94,.75);
    font-size: 12px;
    line-height: 1;
    transform: translateY(-1px);
}

/* logo */
.logo img {
    height: 150px;
    width: auto;
    display: block
}

/* logo intro float */
.logo--intro {
    display: inline-block;
    transform: translateY(0);
    opacity: .10;
    transition: transform 900ms ease,opacity 900ms ease;
}

    .logo--intro.is-in {
        opacity: 1
    }

/* nav */
.nav {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 4px
}

.nav__link {
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 12px;
    padding: 8px 2px;
    border-bottom: 2px solid transparent;
    transition: color .2s ease,border-color .2s ease;
}

    .nav__link:hover {
        color: var(--text);
        border-color: rgba(214,178,94,.45)
    }

    .nav__link.is-active {
        color: var(--text);
        border-color: var(--accent)
    }

@media (max-width:520px) {
    .line--long {
        width: 240px
    }

    .line--short {
        width: 130px
    }

    .slogan-line {
        width: 70px
    }

    .ornament__line {
        width: 90px
    }

    .logo img {
        height: 100px
    }

    .nav {
        gap: 14px
    }
}

/* ===== Carousel ===== */
.carousel {
    padding: 18px 0 0
}

.carousel__frame {
    position: relative;
    width: min(1120px,calc(100% - 32px));
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.02);
    height: clamp(240px,48vh,520px);
}

.carousel__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transform: scale(1.03);
    transition-property: opacity,transform;
    transition-duration: 900ms,9000ms;
    transition-timing-function: ease,ease;
    will-change: opacity,transform;
}

    .carousel__img.is-visible {
        opacity: 1;
        transform: scale(1.08)
    }

.carousel__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,rgba(0,0,0,.10),rgba(0,0,0,.60));
    pointer-events: none;
}
/* buttons */
.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(0,0,0,.45);
    color: var(--text);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .carousel__btn:hover {
        border-color: rgba(214,178,94,.55)
    }

    .carousel__btn.prev {
        left: 14px
    }

    .carousel__btn.next {
        right: 14px
    }

/* dots */
.carousel__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(0,0,0,.35);
    cursor: pointer;
}

    .dot.is-active {
        background: var(--accent);
        border-color: var(--accent)
    }

/* ===== Sections / reveal ===== */
.section {
    padding: 54px 0
}

h2 {
    margin: 0 0 10px;
    letter-spacing: .02em
}

.muted {
    color: var(--muted)
}

.section {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 600ms ease,transform 600ms ease;
    will-change: opacity,transform;
}

    .section.is-visible {
        opacity: 1;
        transform: translateY(0)
    }

/* ===== Back to top ===== */
.to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(0,0,0,.55);
    color: var(--text);
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 26px rgba(0,0,0,.35);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity .2s ease,transform .2s ease,border-color .2s ease;
    z-index: 1000;
}

    .to-top:hover {
        border-color: rgba(214,178,94,.55)
    }

    .to-top.is-visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto
    }

@media (max-width:520px) {
    .to-top {
        right: 14px;
        bottom: 14px;
        width: 44px;
        height: 44px
    }
}

/* ===== Footer ===== */
.footer {
    padding: 34px 0 18px;
    background: #000
}

    .footer::before {
        content: "";
        display: block;
        height: 1px;
        background: linear-gradient(to right,transparent,rgba(214,178,94,.4),transparent);
        margin-bottom: 28px;
    }

.footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 22px;
    align-items: start;
}

.footer__title,
.footer__col h3 {
    margin: 0 0 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--accent);
}

.footer__text {
    margin: 0;
    color: var(--muted)
}

.footer__strong {
    color: var(--muted);
    font-weight: 700
}

.footer__legal {
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding-right: 60px;
}

.footer__link {
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
}

    .footer__link:hover {
        color: var(--accent)
    }

.footer__sep {
    opacity: .6
}

/* social icons row */
.social--icons {
    margin: 1rem 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.social__iconlink {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(214,178,94,.45);
    background: rgba(214,178,94,.08);
    color: var(--accent);
    text-decoration: none;
    transition: color .2s ease,border-color .2s ease,background .2s ease;
}

    .social__iconlink:hover {
        border-color: rgba(214,178,94,.75);
        background: rgba(214,178,94,.12);
    }

/* map */
.map.map--windsor {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(214,178,94,.22);
    background: rgba(255,255,255,.02);
    box-shadow: 0 16px 50px rgba(0,0,0,.35);
    position: relative;
}

    .map.map--windsor::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(120% 80% at 50% 10%, rgba(214,178,94,.10), transparent 55%), linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.22));
        z-index: 1;
        opacity: .85;
    }

    .map.map--windsor iframe {
        width: 100%;
        height: 200px;
        border: 0;
        display: block;
        filter: grayscale(1) contrast(1.05) brightness(.78);
        transform: scale(1.01);
    }

    .map.map--windsor:hover {
        border-color: rgba(214,178,94,.45)
    }

        .map.map--windsor:hover iframe {
            filter: grayscale(.85) contrast(1.05) brightness(.86)
        }

.map__cta {
    position: relative;
    z-index: 2;
    display: block;
    padding: 10px 12px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 11px;
    color: rgba(214,178,94,.95);
    background: rgba(0,0,0,.55);
    border-top: 1px solid rgba(255,255,255,.08);
    transition: color .2s ease,background .2s ease;
}

    .map__cta:hover {
        color: var(--text);
        background: rgba(214,178,94,.10)
    }

.footer__bottom {
    font-style: italic;
    font-size: x-small;
    margin-top: 50px;
    padding-top: 6px;
    border-top: 1px solid rgba(214,178,94,.2);
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    align-items: center;
}

@media (max-width:900px) {
    .footer__grid {
        grid-template-columns: 1fr
    }

    .map.map--windsor iframe {
        height: 240px
    }
}

/* legal link buttons */
.footer__legal-link {
    font-style: italic;
    font-size: x-small;
    appearance: none;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: var(--muted);
    font-weight: 400;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color .2s ease,border-color .2s ease;
}

    .footer__legal-link:hover {
        color: var(--text);
        border-color: rgba(214,178,94,.45)
    }

/* ===== Modal ===== */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 2000
}

    .modal.is-open {
        display: block
    }

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.85)
}

.modal__panel {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-46%);
    width: min(820px,calc(100% - 28px));
    max-height: min(78vh,720px);
    overflow: auto;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #0a0a0a;
    box-shadow: 0 30px 90px rgba(0,0,0,.55);
    opacity: 0;
    transition: transform 220ms ease,opacity 220ms ease;
}

.modal.is-open .modal__panel {
    transform: translate(-50%,-50%);
    opacity: 1
}

.modal__head {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(10,10,10,.92);
    backdrop-filter: blur(8px);
}

.modal__title {
    margin: 0;
    font-size: 16px;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--accent);
}

.modal__close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    color: var(--text);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
}

    .modal__close:hover {
        border-color: rgba(214,178,94,.55)
    }

.modal__body {
    padding: 16px;
    color: var(--text)
}

body.modal-open {
    overflow: hidden
}

/* ===== Intro ===== */
.section--intro {
    padding-top: 20px;
    text-align: center
}

.intro__title {
    margin: 0 0 18px;
    font-size: clamp(22px,2.4vw,30px);
    letter-spacing: .06em;
    font-weight: 600;
}

.intro__text {
    max-width: 600px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.intro__title::after {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    margin: 18px auto 0;
    background: linear-gradient(to right,transparent,rgba(214,178,94,.6),transparent);
}

/* ===== About ===== */
.section--about {
    padding-top: 40px
}

.about__intro {
    text-align: center;
    margin-bottom: 60px
}

.about__title {
    margin: 0;
    font-size: 18px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
}

.about__subtitle {
    margin-top: 14px;
    color: var(--muted);
    font-size: 15px
}

/* Desktop layout: image column left, content right */
.about {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 70px;
}

.about--reverse {
    grid-template-columns: 1fr 300px
}

    .about--reverse .about__content {
        order: 1
    }

    .about--reverse .about__image,
    .about--reverse .about__images--duo {
        order: 2
    }

/* single image card */
.about__image {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.02);
    width: 300px;
    height: clamp(320px,40vw,400px);
    transition: border-color .3s ease,transform .35s ease,box-shadow .35s ease;
}

    .about__image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .6s ease;
    }

    .about__image:hover {
        border-color: var(--accent)
    }

        .about__image:hover img {
            transform: scale(1.05)
        }

/* Duo images (Desktop): left column, stacked */
.about__images--duo {
    width: 250px;
    display: grid;
    grid-template-columns: 1fr; /* untereinander */
    gap: 14px;
}
    /* override sizing for duo-cards */
    .about__images--duo .about__image {
        width: 100%;
        height: clamp(220px,26vw,280px);
    }

/* content */
.about__content h3 {
    margin: 0 0 18px;
    font-size: 20px;
    letter-spacing: .06em;
    color: var(--text);
    position: relative;
}

    .about__content h3::after {
        content: "";
        display: block;
        width: 60px;
        height: 1px;
        margin-top: 10px;
        background: linear-gradient(to right,var(--accent),transparent);
    }

.about__content p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 15px;
}

/* Mobile: Titel -> Bilder nebeneinander -> Text (für Single UND Duo) */
@media (max-width:900px) {
    .about,
    .about--reverse {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        margin-bottom: 54px;
    }

    /* macht h3/p "orderbar" wie direkte Kinder von .about */
    .about__content {
        display: contents
    }

        /* 1) Titel */
        .about__content h3 {
            order: 1;
            margin: 0 0 10px;
            text-align: center
        }

            .about__content h3::after {
                margin-left: auto;
                margin-right: auto
            }

    /* 2) Bildblock (single) */
    .about__image {
        order: 2;
        width: min(320px,100%);
        margin: 0 auto;
    }

    /* 2) Bildblock (duo) */
    .about__images--duo {
        order: 2;
        width: min(450px,100%);
        grid-template-columns: 1fr 1fr; /* nebeneinander */
        gap: 12px;
        margin: 0 auto;
    }

        .about__images--duo .about__image {
            width: 100%;
            height: clamp(180px,32vw,240px);
            margin: 0;
        }

    /* 3) Text */
    .about__content p {
        order: 3;
        text-align: center
    }
}

/* ===== Events (Calendar) ===== */
.section--events .events-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.section--events .events-nav {
    margin-top: -42px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section--events .events-btn {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    color: var(--text);
    font-size: 22px;
    cursor: pointer;
    transition: border-color .2s ease,transform .2s ease;
}

    .section--events .events-btn:hover {
        border-color: rgba(214,178,94,.55);
        transform: translateY(-1px)
    }

.section--events .events-month {
    min-width: 180px;
    text-align: center;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--accent);
}

.events-layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 26px;
    align-items: stretch;
}

/* list/table left */
.events-list {
    display: flex;
    flex-direction: column;
    height: 100%
}

    .events-list h3 {
        margin: 0 0 14px;
        font-size: 20px;
        letter-spacing: .06em;
        color: var(--text);
        position: relative;
    }

        .events-list h3::after {
            content: "";
            display: block;
            width: 60px;
            height: 1px;
            margin-top: 10px;
            background: linear-gradient(to right,var(--accent),transparent);
        }

.events-table {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255,255,255,.02);
    box-shadow: 0 14px 40px rgba(0,0,0,.25);
    min-height: 342px;
    cursor: default;
    flex: 1 1 auto;
}

.events-table__row {
    display: grid;
    grid-template-columns: 140px 1fr
}

.events-table__cell {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255,255,255,.06)
}

.events-table__head {
    background: rgba(0,0,0,.35)
}

    .events-table__head .events-table__cell {
        color: rgba(214,178,94,.85);
        letter-spacing: .12em;
        text-transform: uppercase;
        font-size: 12px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

.events-table__row:last-child .events-table__cell {
    border-bottom: 0
}

.events-date {
    color: rgba(255,255,255,.75);
    font-size: 13px
}

.events-title {
    color: var(--text);
    text-decoration: none;
    font-weight: 650;
    line-height: 1.25;
}

    .events-title:hover {
        color: var(--accent)
    }

/* pager */
.events-pager {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
}

.pager-btn {
    width: 23px;
    height: 18px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    color: var(--text);
    cursor: pointer;
    transition: border-color .2s ease,transform .2s ease;
}

    .pager-btn:hover {
        border-color: rgba(214,178,94,.55)
    }

    .pager-btn.is-active {
        border-color: rgba(214,178,94,.75);
        color: var(--accent)
    }

    .pager-btn:disabled {
        opacity: .15;
        cursor: default;
        transform: none
    }

/* calendar right */
.events-cal-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative
}

.events-cal {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.02);
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0,0,0,.25);
    flex: 1 1 auto;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    grid-auto-rows: minmax(40px,auto)
}

.cal-dow {
    padding: 12px 10px;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(214,178,94,.85);
    background: rgba(0,0,0,.35);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.cal-cell {
    min-height: 120px;
    padding: 10px 10px 12px;
    border-right: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
    position: relative;
    transition: background .15s ease,border-color .15s ease,transform .15s ease;
}

    .cal-cell:nth-child(7n) {
        border-right: 0
    }

.cal-empty {
    background: rgba(0,0,0,.18);
    border-right: 1px solid rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.04)
}

.cal-date {
    font-size: 12px;
    color: rgba(255,255,255,.75);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

/* minimal calendar: no inline event list / no "today" pill */
.events-cal .cal-events {
    display: none !important
}

.events-cal .cal-today {
    display: none !important
}

/* non-event days muted */
.events-cal .cal-cell,
.events-cal .cal-date span:first-child {
    color: rgba(255,255,255,.35)
}

/* event day highlight */
.cal-has-event {
    border: 1px solid rgba(214,178,94,.18);
    background: rgba(214,178,94,.04);
    box-shadow: inset 0 0 0 1px rgba(214,178,94,.06);
}

.events-cal .cal-has-event .cal-date span:first-child {
    color: rgba(214,178,94,.95);
    text-shadow: 0 0 12px rgba(214,178,94,.18);
    position: relative;
    padding-right: 12px;
}

    .events-cal .cal-has-event .cal-date span:first-child::after {
        content: "";
        position: absolute;
        right: 2px;
        top: 50%;
        transform: translateY(-45%);
        width: 6px;
        height: 6px;
        border-radius: 999px;
        background: var(--accent);
        box-shadow: 0 0 10px rgba(214,178,94,.30);
    }

/* hover only on event days that have tooltip data */
.events-cal .cal-cell[data-tt]:hover {
    background: rgba(255,255,255,.02);
    border-color: rgba(214,178,94,.22);
    transform: translateY(-1px);
}

.events-cal .cal-cell:not([data-tt]):hover {
    background: transparent;
    border-color: rgba(255,255,255,.06);
    transform: none
}

/* calendar smaller cells inside right column */
.events-cal-wrap .events-cal .cal-cell {
    min-height: 60px;
    cursor: default
}

/* tooltip */
.cal-tooltip {
    position: absolute;
    inset: auto auto 16px 16px;
    display: none;
    min-width: 220px;
    max-width: 320px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(214,178,94,.28);
    background: rgba(10,10,10,.96);
    box-shadow: 0 18px 70px rgba(0,0,0,.55);
    color: var(--text);
    font-size: 13px;
    line-height: 1.35;
    z-index: 5;
    pointer-events: none;
}

    .cal-tooltip .tt-date {
        color: rgba(214,178,94,.95);
        letter-spacing: .08em;
        text-transform: uppercase;
        font-size: 11px;
        margin-bottom: 8px;
    }

    .cal-tooltip .tt-item {
        padding: 6px 8px;
        border-radius: 12px;
        background: rgba(214,178,94,.06);
        border: 1px solid rgba(214,178,94,.18);
        margin-top: 6px;
    }

    .cal-tooltip .tt-time {
        display: block;
        color: rgba(255,255,255,.70);
        font-size: 12px;
        margin-bottom: 2px;
    }

/* nav placement */
@media (min-width:901px) {
    .events-nav--cal {
        display: none
    }
}

@media (max-width:900px) {
    .section--events .events-head .events-nav {
        display: none
    }

    .section--events .events-nav {
        margin-top: 0
    }

    .events-nav--cal {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 12px;
    }

    .events-layout {
        grid-template-columns: 1fr
    }

    .events-list {
        height: auto;
        text-align: center
    }

        .events-list h3::after {
            margin-left: auto;
            margin-right: auto
        }

    .events-table__row {
        grid-template-columns: 120px 1fr
    }

    .events-pager {
        margin-top: 14px
    }
}

/* ===== Gallery (Filmstrip) ===== */
.gallery {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 12px;
    align-items: center;
}

.gallery__btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    color: var(--text);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: border-color .2s ease,transform .2s ease,opacity .2s ease;
}

    .gallery__btn:hover {
        border-color: rgba(214,178,94,.55);
        transform: translateY(-1px)
    }

    .gallery__btn:disabled {
        opacity: .18;
        cursor: default;
        transform: none
    }

.gallery__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .gallery__viewport::-webkit-scrollbar {
        display: none
    }

.gallery__track {
    display: flex;
    gap: 12px;
    padding: 2px 2px
}

.gallery__item {
    flex: 0 0 auto;
    width: 220px;
    height: 160px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.02);
    cursor: pointer;
    transition: border-color .2s ease,transform .2s ease;
    position: relative;
    display: grid;
    place-items: center;
}

    .gallery__item:hover {
        border-color: rgba(214,178,94,.55);
        transform: translateY(-1px)
    }

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width:900px) {
    .gallery {
        grid-template-columns: 40px 1fr 40px
    }

    .gallery__btn {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 26px
    }

    .gallery__item {
        width: 200px;
        height: 150px
    }
}

@media (max-width:520px) {
    .gallery {
        grid-template-columns: 34px 1fr 34px;
        gap: 10px
    }

    .gallery__btn {
        width: 34px;
        height: 34px;
        border-radius: 12px;
        font-size: 24px
    }

    .gallery__item {
        width: 78vw;
        height: 46vw;
        max-height: 260px
    }
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 3000;
    background: rgba(0,0,0,.88);
}

    .lightbox.is-open {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 18px;
    }

.lightbox__img {
    max-width: calc(100vw - 36px);
    max-height: calc(100vh - 36px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    border: 1px solid rgba(214,178,94,.22);
    box-shadow: 0 30px 90px rgba(0,0,0,.55);
}

.lightbox__close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    color: var(--text);
    font-size: 26px;
    cursor: pointer;
}

    .lightbox__close:hover {
        border-color: rgba(214,178,94,.55)
    }

/* ===== Footer: Mobile zentriert, Desktop unverändert ===== */
@media (max-width: 900px) {

    /* Grid bleibt 1 Spalte (hast du schon), jetzt sauber zentrieren */
    .footer__grid {
        grid-template-columns: 1fr; /* nur zur Sicherheit */
        justify-items: center; /* Grid-Items mittig */
        text-align: center; /* Text in den Spalten mittig */
    }

    /* Spaltenbreite kontrollieren (damit es nicht zu breit/komisch wirkt) */
    .footer__col {
        width: 100%;
        max-width: 520px;
    }

    /* Social Icons mittig */
    .social--icons {
        justify-content: center;
    }

    /* Map-Card in der Mitte */
    .map.map--windsor {
        margin-left: auto;
        margin-right: auto;
    }

    /* Bottom-Leiste untereinander + mittig */
    .footer__bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }

    /* Rechts-Block (Impressum/Datenschutz) mittig + ohne rechten Padding */
    .footer__legal {
        justify-content: center;
        padding-right: 0;
    }

    /* Section Titles allgemein */
    .section h2 {
        text-align: center;
    }

    /* Untertitel unter Galerie */
    .section--gallery .muted {
        text-align: center;
    }

    /* Events: Head mittig */
    .section--events .events-head {
        justify-content: center;
    }

    /* Kalender Monatsnavigation mittig */
    .section--events .events-nav {
        justify-content: center;
    }

    /* Monatslabel sauber zentrieren */
    .section--events .events-month {
        text-align: center;
    }

    .events-list h3::after {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== Premium Private Event Section ===== */

.section--private {
    padding: 80px 0;
    background: linear-gradient( to bottom, rgba(0,0,0,.6), rgba(0,0,0,.85) );
    text-align: center;
    }
    .section--private::before {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(to right,transparent,rgba(214,178,94,.4),transparent);
    margin-bottom: 28px;
}

.private__title {
    margin: 0;
    font-size: 22px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    position: relative;
}

    .private__title::after {
        content: "";
        display: block;
        width: 80px;
        height: 1px;
        margin: 18px auto 0;
        background: linear-gradient(to right, transparent, var(--accent), transparent);
    }

.private__text {
    max-width: 720px;
    margin: 26px auto 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 15px;
}

.private__cta {
    margin-top: 40px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 12px;
    color: rgba(255,255,255,.7);
}

    .private__cta a {
        display: inline-block;
        margin-top: 10px;
        font-size: 14px;
        letter-spacing: .12em;
        color: var(--accent);
        text-decoration: none;
        border-bottom: 1px solid rgba(214,178,94,.35);
        padding-bottom: 4px;
        transition: all .25s ease;
    }

        .private__cta a:hover {
            border-color: rgba(214,178,94,.75);
            color: #fff;
        }

/* Mobile Feinschliff */
@media (max-width: 900px) {
    .section--private {
        padding: 60px 0;
    }

    .private__text {
        font-size: 14px;
        line-height: 1.7;
    }
}