/* ─── Design Tokens ────────────────────────────────────── */
:root {
    --lp-black: #111111;
    --lp-dark: #1c1c1c;
    --lp-red: #c51119;
    --lp-red-dark: #a00e14;
    --lp-cream: #f5f5f5;
    --lp-cream-2: #ebebeb;
    --lp-sand: #d4d4d4;
    --lp-text: #222222;
    --lp-muted: #666666;
    --lp-border: rgba(0,0,0,0.1);
}

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

body {
    font-family: "barlow-condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: var(--lp-text);
    background: #fff;
    overflow-x: hidden;
    font-size: 1.35rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 800;
    text-transform: uppercase;
    line-height: 1.4rem;
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

p {
    font-weight: 300;
    margin-bottom: 1rem;
}

strong,
b {
    font-weight: 700;
    font-synthesis: weight;
}

a {
    color: var(--lp-red);
    text-decoration: none;
}

a:hover {
    color: var(--lp-red-dark);
    text-decoration: underline;
}

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

/* ─── Navbar — hell ───────────────────────────────────── */
.lp-navbar {
    background: #fff;
    padding: 0;
    border-bottom: 1px solid var(--lp-border);
    box-shadow: 0 1px 0 var(--lp-border);
    transition: box-shadow 0.3s ease;
}

.lp-navbar.scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

.lp-navbar .container {
    display: flex;
    align-items: center;
    min-height: 88px;
    transition: min-height 0.35s ease;
}

.lp-navbar.scrolled .container {
    min-height: 58px;
}

/* Combined logo — schwarze SVGs auf weissem Grund */
.lp-brand {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    padding: 0.6rem 1.5rem 0.6rem 0;
    flex-shrink: 0;
}

.lp-brand img {
    height: 46px;
    width: auto;
    transition: height 0.35s ease;
}

.lp-navbar.scrolled .lp-brand img {
    height: 30px;
}

.lp-brand-sep {
    width: 1px;
    height: 42px;
    background: rgba(0,0,0,0.2);
    margin: 0 1rem;
    flex-shrink: 0;
    transition: height 0.35s ease;
}

.lp-navbar.scrolled .lp-brand-sep {
    height: 26px;
}

/* Nav links — Titelschrift, dunkel */
.lp-navbar .nav-link {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--lp-text) !important;
    padding: 0.55rem 0.85rem !important;
    transition: color 0.2s, font-size 0.35s ease;
}

.lp-navbar.scrolled .nav-link {
    font-size: 0.92rem;
}

.lp-navbar .nav-link:hover,
.lp-navbar .nav-link:focus {
    color: var(--lp-red) !important;
}

.lp-navbar .dropdown-menu {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-top: 2px solid var(--lp-red);
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    margin-top: 0;
    min-width: 240px;
}

.lp-navbar .dropdown-item {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 500;
    color: var(--lp-text);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.6rem 1.3rem;
}

.lp-navbar .dropdown-item:hover {
    background: var(--lp-red);
    color: #fff;
}

/* Aktive Seite in der Navigation hervorheben */
.lp-navbar .nav-link.active {
    color: var(--lp-red) !important;
}

.lp-navbar .dropdown-item.active {
    background: var(--lp-red);
    color: #fff;
}

.btn-lp-nav {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--lp-red);
    color: #fff !important;
    padding: 0.5rem 1.4rem;
    border-radius: 0;
    border: 2px solid var(--lp-red);
    text-decoration: none;
    transition: background 0.2s, font-size 0.35s, padding 0.35s;
    white-space: nowrap;
    align-self: center;
}

.lp-navbar.scrolled .btn-lp-nav {
    font-size: 0.88rem;
    padding: 0.4rem 1.1rem;
}

.btn-lp-nav:hover {
    background: var(--lp-red-dark);
    border-color: var(--lp-red-dark);
}

/* ─── Buttons ─────────────────────────────────────────── */
.btn-lp {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.7rem 2rem;
    border-radius: 0;
    border: 2px solid var(--lp-red);
    background: var(--lp-red);
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.22s;
}

.btn-lp:hover {
    background: var(--lp-red-dark);
    border-color: var(--lp-red-dark);
    color: #fff;
}

.btn-lp-outline {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.7rem 2rem;
    border-radius: 0;
    border: 2px solid var(--lp-red);
    background: transparent;
    color: var(--lp-red);
    text-decoration: none;
    display: inline-block;
    transition: all 0.22s;
}

.btn-lp-outline:hover {
    background: var(--lp-red);
    color: #fff;
}

.btn-lp-dark {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.7rem 2rem;
    border-radius: 0;
    border: 2px solid var(--lp-black);
    background: var(--lp-black);
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.22s;
}

.btn-lp-dark:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

/* ─── Section helpers ─────────────────────────────────── */
.sec-label {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--lp-red);
    margin-bottom: 0.4rem;
    display: block;
}

.sec-title {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 800;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 0;
    color: var(--lp-text);
}

.sec-rule {
    width: 44px;
    height: 3px;
    background: var(--lp-red);
    margin: 1rem 0 3rem;
}

/* ─── Fade-up ─────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: none;
}

.fade-up.delay-1 {
    transition-delay: 0.1s;
}

.fade-up.delay-2 {
    transition-delay: 0.2s;
}

.fade-up.delay-3 {
    transition-delay: 0.3s;
}

/* ─── HERO — 3-Kammer-Layout ──────────────────────────── */
/* Links:        Titel auf Cremefond
            Rechts oben:  Foto
            Rechts unten: 4 Veranstaltungen (dunkel) */
/* ─── Hero-Viewport: Hero + Quicknav füllen genau einen Bildschirm ─── */
/* #content hat keinen .container mehr, daher ist der Hero von Natur aus
   schon volle Breite - kein Breakout-Hack mehr nötig. */
.hero-viewport {
    height: calc(100vh - 88px);
    min-height: 620px;
    display: flex;
    flex-direction: column;
}

.hero {
    flex: 1;
    display: grid;
    grid-template-columns: 4fr 8fr;
    min-height: 0;
}

@media (max-width: 991px)  {
    .hero-viewport {
        height: auto;
        min-height: unset;
    }

    .hero {
        grid-template-columns: 1fr;
    }
}

.hero-text {
    background: var(--lp-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.hero-text-inner {
    width: 100%;
    max-width: 380px;
}

.hero-text::after {
    content: '';
    position: absolute;
    left: 0;
    top: 8%;
    bottom: 8%;
    width: 4px;
    background: var(--lp-red);
}

.hero-eyebrow {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--lp-red);
    margin-bottom: 1.2rem;
}

.hero-title {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 800;
    font-size: clamp(3.8rem, 6.5vw, 7.5rem);
    line-height: 0.88;
    text-transform: uppercase;
    color: var(--lp-text);
    margin-bottom: 1.4rem;
}

.hero-lead {
    font-family: "barlow-condensed", sans-serif;
    font-weight: 300;
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--lp-text);
    max-width: 400px;
    margin-bottom: 2rem;
}

.hero-photo {
    position: relative;
    overflow: hidden;
}

.hero-photo img,
.hero-photo video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991px)  {
    .hero-photo {
        min-height: 55vw;
    }

    .hero-text {
        padding: 4rem 2rem;
    }
}

/* ─── Quicknav — hell ─────────────────────────────────── */
.quicknav {
    background: var(--lp-text);
    flex-shrink: 0;
}

.quicknav-item {
    display: block;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 1.6rem 2.2rem;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s, color 0.2s;
    flex: 1;
}

.quicknav-item:last-child {
    border-right: none;
}

.quicknav-item:hover {
    background: var(--lp-red);
    color: #fff;
}

.quicknav-item:hover .quicknav-desc {
    color: rgba(255,255,255,0.75);
}

.quicknav-micro {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 500;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lp-red);
    display: block;
    margin-bottom: 0.3rem;
}

.quicknav-item:hover .quicknav-micro {
    color: rgba(255,255,255,0.65);
}

.quicknav-name {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 700;
    font-size: 1.7rem;
    text-transform: uppercase;
    display: block;
    line-height: 1.0;
    margin-bottom: 0.45rem;
}

.quicknav-desc {
    font-family: "barlow-condensed", sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
    display: block;
    line-height: 1.4;
}

/* Mobile: Quicklinks untereinander statt nebeneinander, weiterhin sichtbar */
@media (max-width: 767px) {
    .quicknav-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 1.25rem 1.5rem;
    }

    .quicknav-item:last-child {
        border-bottom: none;
    }

    .quicknav-name {
        font-size: 1.45rem;
    }
}

/* ─── About ───────────────────────────────────────────── */
.sec-about {
    background: #fff;
    padding: 7rem 0;
}

.about-img-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
}

.about-img-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--lp-red);
    color: #fff;
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 1rem;
}

.stat-val {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 800;
    font-size: 2.6rem;
    color: var(--lp-red);
    line-height: 1;
}

.stat-lab {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-text);
}

/* ─── Angebote — helle Karten ─────────────────────────── */
.sec-angebote {
    background: var(--lp-cream);
    padding: 7rem 0;
}

.offer-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.offer-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.offer-card-img {
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
}

.offer-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.offer-card:hover .offer-card-img img {
    transform: scale(1.06);
}

.offer-card-body {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offer-micro {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--lp-red);
    margin-bottom: 0.4rem;
}

.offer-title {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 800;
    font-size: 1.6rem;
    text-transform: uppercase;
    color: var(--lp-text);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.offer-desc {
    font-family: "barlow-condensed", sans-serif;
    font-weight: 300;
    color: var(--lp-text);
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    flex: 1;
}

.offer-link {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 0.98rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s;
    margin-top: auto;
}

.offer-link:hover {
    gap: 0.65rem;
    color: var(--lp-red-dark);
}

/* Kombi-Banner — helle Variante */
.kombi-banner {
    background: var(--lp-cream-2);
    border-left: 4px solid var(--lp-red);
    padding: 2rem 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
}

.kombi-logos {
    display: flex;
    align-items: center;
}

.kombi-logos img {
    height: 30px;
    width: auto;
}

.kombi-logos-sep {
    width: 1px;
    height: 26px;
    background: rgba(0,0,0,0.2);
    margin: 0 0.8rem;
}

/* ─── Events — hell ───────────────────────────────────── */
.sec-events {
    background: #fff;
    padding: 7rem 0;
}

.event-row {
    display: grid;
    grid-template-columns: 170px 1fr auto;
    gap: 1.2rem 2rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--lp-border);
    transition: background 0.2s;
}

.event-row:first-child {
    border-top: 1px solid var(--lp-border);
}

.event-row:hover {
    background: var(--lp-cream);
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.ev-date {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--lp-red);
    line-height: 1.4;
}

.ev-name {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--lp-text);
    margin-bottom: 0.1rem;
}

.ev-info {
    font-family: "barlow-condensed", sans-serif;
    font-weight: 300;
    color: rgba(0,0,0,0.55);
    font-size: 1.15rem;
}

.btn-ev {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--lp-text);
    border: 1px solid var(--lp-sand);
    padding: 0.4rem 1.1rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-ev:hover {
    background: var(--lp-red);
    border-color: var(--lp-red);
    color: #fff;
}

/* ─── Anlass-Modal ─────────────────────────────────────── */
.anlass-modal .modal-content {
    border-radius: 0;
    border: none;
}

.anlass-modal .modal-header {
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    border-bottom: none;
}

.anlass-modal .modal-header::after {
    content: "";
    position: absolute;
    left: var(--bs-modal-padding-x, 1rem);
    right: var(--bs-modal-padding-x, 1rem);
    bottom: 0;
    border-bottom: 1px solid var(--lp-border);
}

.anlass-modal .modal-title {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 700;
    text-transform: uppercase;
    font-size: 1.6rem;
    margin-top: 0.3rem;
}

.anlass-modal-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.anlass-eckdaten {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    font-size: 1.15rem;
}

.anlass-eckdaten tr:not(:last-child) th,
.anlass-eckdaten tr:not(:last-child) td {
    box-shadow: inset 0 -1px 0 var(--lp-border);
}

.anlass-eckdaten th,
.anlass-eckdaten td {
    padding: 0 0 0.1rem 0;
    vertical-align: top;
    text-align: left;
}

.anlass-eckdaten th {
    width: 160px;
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--lp-red);
    padding-right: 1.5rem;
    font-size: 1rem;
}

.anlass-eckdaten td {
    color: var(--lp-text);
}

.anlass-eckdaten td p:last-child {
    margin-bottom: 0;
}

.anlass-modal .modal-footer {
    position: relative;
    border-top: none;
}

.anlass-modal .modal-footer::before {
    content: "";
    position: absolute;
    left: var(--bs-modal-padding-x, 1rem);
    right: var(--bs-modal-padding-x, 1rem);
    top: 0;
    border-top: 1px solid var(--lp-border);
}

@media (max-width: 575px) {
    .anlass-eckdaten th,
    .anlass-eckdaten td {
        display: block;
        width: 100%;
        padding: 0.2rem 0;
    }

    .anlass-eckdaten tr {
        display: block;
        padding: 0.6rem 0;
    }

    .anlass-eckdaten tr:not(:last-child) th {
        box-shadow: none;
    }
}

/* ─── Schiefertafelfabrik — Creme-Hintergrund ─────────── */
.sec-fabrik {
    background: var(--lp-cream);
}

.fabrik-img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.fabrik-body {
    padding: 5rem 4.5rem;
    display: flex;
    align-items: center;
}

.fabrik-logo {
    height: 48px;
    width: auto;
    margin-bottom: 1.8rem;
}

@media (max-width: 991px)  {
    .fabrik-body {
        padding: 3.5rem 2rem;
    }

    .fabrik-img {
        min-height: 300px;
    }
}

/* ─── Besuch info — Creme ─────────────────────────────── */
.sec-info {
    background: var(--lp-cream-2);
    padding: 7rem 0;
}

.info-card {
    background: #fff;
    border-top: 3px solid var(--lp-red);
    padding: 2rem;
    height: 100%;
}

.info-card h4 {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lp-text);
    margin-bottom: 1.1rem;
}

.info-card p,
.info-card address {
    font-family: "barlow-condensed", sans-serif;
    font-weight: 300;
    color: var(--lp-text);
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 0;
    font-style: normal;
}

.info-card a {
    color: var(--lp-red);
    text-decoration: none;
}

.info-card a:hover {
    color: var(--lp-red-dark);
    text-decoration: underline;
}

/* ─── Partner ─────────────────────────────────────────── */
.sec-partner {
    background: #fff;
    padding: 4rem 0;
    border-top: 1px solid var(--lp-border);
}

.partner-logo-link {
    display: inline-flex;
    align-items: center;
}

.partner-logo {
    height: 52px;
    width: auto;
    max-width: 160px;
    display: block;
}

.partner-label {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 500;
    font-size: 0.88rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lp-text);
}

.partner-thanks {
    font-size: 1rem;
    color: var(--lp-muted);
}

/* ─── Partner-Seite (Kacheln mit Logo + Name) ────────── */
.sec-partner-seite {
    padding: 4rem 0;
}

.partner-seite-kachel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    border: 1px solid var(--lp-border);
    border-radius: 6px;
    background: #fff;
    height: 100%;
    text-decoration: none;
    color: var(--lp-text);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

a.partner-seite-kachel:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transform: translateY(-2px);
    color: var(--lp-red);
}

.partner-seite-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin-bottom: 0.75rem;
}

.partner-seite-logo img {
    max-height: 80px;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.partner-seite-name {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: inherit;
}

/* ─── Anbieter-Liste ──────────────────────────────────── */
.sec-anbieter {
    padding: 4rem 0;
}

.anbieter-sektion-titel {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 500;
    font-size: 0.88rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lp-muted);
    margin-bottom: 1rem;
}

.anbieter-row {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 1.2rem 2rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--lp-border);
    transition: background 0.2s;
}

.anbieter-list .anbieter-row:first-child {
    border-top: 1px solid var(--lp-border);
}

.anbieter-row:hover {
    background: var(--lp-cream);
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.anbieter-name {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--lp-red);
    line-height: 1.4;
}

.anbieter-zusatz {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--lp-text);
    margin-bottom: 0.1rem;
}

.anbieter-info {
    font-family: "barlow-condensed", sans-serif;
    font-weight: 300;
    color: rgba(0,0,0,0.55);
    font-size: 1.1rem;
}

.anbieter-info a {
    color: inherit;
    text-decoration: none;
}

.anbieter-info a:hover {
    color: var(--lp-red);
}

/* ─── Footer — dunkel (Kontrast am Seitenende) ────────── */
footer {
    background: var(--lp-text);
    padding: 4.5rem 0 1.5rem;
    position: relative;
}

.ft-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 1.4rem;
}

.ft-brand img {
    height: 42px;
    width: auto;
}

.ft-brand-sep {
    width: 1px;
    height: 38px;
    background: rgba(255,255,255,0.22);
    margin: 0 0.9rem;
    flex-shrink: 0;
}

.ft-section-title {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--lp-red);
    margin-bottom: 0.9rem;
}

.ft-link {
    display: block;
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 400;
    color: rgba(255,255,255,0.42);
    font-size: 1.12rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    margin-bottom: 0.4rem;
    transition: color 0.2s;
}

.ft-link:hover {
    color: var(--lp-red);
}

.ft-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    margin-top: 2.5rem;
    font-family: "barlow-condensed", sans-serif;
    font-weight: 300;
    font-size: 0.96rem;
    color: rgba(255,255,255,0.28);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
}

.ft-glarnerland-logo {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    opacity: 0.9;
    transition: opacity 0.2s;
    line-height: 0;
}

.ft-glarnerland-logo:hover {
    opacity: 1;
}

.ft-glarnerland-logo img {
    height: 56px;
    width: auto;
    display: block;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 1rem;
    margin-right: 0.4rem;
    transition: all 0.2s;
}

.social-btn:hover {
    background: var(--lp-red);
    border-color: var(--lp-red);
    color: #fff;
}

/* ─── Scroll-to-top mit Fortschrittsring ─────────────── */
#scrollTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 52px;
    height: 52px;
    background: var(--lp-text);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.2s;
    pointer-events: none;
    padding: 0;
}

#scrollTop.visible {
    opacity: 1;
    pointer-events: auto;
}

#scrollTop:hover {
    background: var(--lp-red);
}

#scrollTop:hover .progress-ring-progress {
    stroke: rgba(255,255,255,0.6);
}

.progress-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    border-radius: 50%;
}

.progress-ring-track {
    fill: none;
    stroke: rgba(255,255,255,0.15);
    stroke-width: 2.5;
}

.progress-ring-progress {
    fill: none;
    stroke: rgba(255,255,255,0.8);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 138.2;
    stroke-dashoffset: 138.2;
    transition: stroke-dashoffset 0.1s linear;
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 767px)  {
    .event-row {
        grid-template-columns: 1fr auto;
    }

    .ev-date {
        grid-column: 1 / -1;
        margin-bottom: -0.5rem;
    }
}

@media (max-width: 575px) {
    .event-row {
        grid-template-columns: 1fr;
    }

    .ev-date {
        margin-bottom: 0.3rem;
    }

    .btn-ev {
        margin-top: 0.5rem;
        justify-self: start;
    }
}

/* ─── Mobile Burger Button ────────────────────────────── */
.lp-burger  {
    background: none;
    border: none;
    padding: 4px;
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.lp-burger .b1,
.lp-burger .b2,
.lp-burger .b3  {
    width: 20px;
    height: 1.5px;
    background: var(--lp-text);
    border-radius: 2px;
    position: absolute;
    transition: transform 0.3s ease, opacity 0.25s ease;
}

.lp-burger .b1  { transform: translateY(-6px); }
.lp-burger .b2  { transform: translateY(0); }
.lp-burger .b3  { transform: translateY(6px); }

.lp-burger.open .b1  { transform: translateY(0) rotate(45deg); }
.lp-burger.open .b2  { opacity: 0; transform: scaleX(0); }
.lp-burger.open .b3  { transform: translateY(0) rotate(-45deg); }

/* ─── Breadcrumb ───────────────────────────────────────── */
.lp-breadcrumb {
    background: var(--lp-cream);
    border-bottom: 1px solid var(--lp-border);
    padding: 0.45rem 0;
}

.lp-breadcrumb .breadcrumb {
    font-family: "barlow-condensed", sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.lp-breadcrumb .breadcrumb-item a {
    color: var(--lp-muted);
    text-decoration: none;
}

.lp-breadcrumb .breadcrumb-item a:hover {
    color: var(--lp-red);
}

.lp-breadcrumb .breadcrumb-item.active {
    color: var(--lp-text);
}

.lp-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: var(--lp-muted);
}

/* ─── Eigener Backdrop (unterhalb Navbar) ─────────────── */
.lp-backdrop  {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1044;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lp-backdrop.show  {
    opacity: 1;
    pointer-events: all;
}

/* ─── Mobile Offcanvas Nav ────────────────────────────── */
.lp-offcanvas  {
    width: min(88vw, 360px) !important;
    top: 88px !important;
    height: calc(100vh - 88px) !important;
    background: #1c1c1c;
    border-left: none !important;
}

.lp-offcanvas-body  {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    overflow: hidden;
}

.lp-offcanvas-nav  {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.75rem 0 0;
}

.lp-offcanvas-nav::-webkit-scrollbar  { width: 3px; }
.lp-offcanvas-nav::-webkit-scrollbar-thumb  { background: rgba(255,255,255,0.1); border-radius: 2px; }
.lp-offcanvas-nav .lp-oc-cta  { text-align: left; padding-left: 1.25rem; border-left: 2px solid transparent; }

/* Top-Level Accordion */
.lp-oc-top  {
    width: 100%;
    background: none;
    border: none;
    border-left: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 700;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    text-align: left;
}

.lp-oc-top:hover  {
    background: rgba(255,255,255,0.04);
}

.lp-oc-top[aria-expanded="true"],
.lp-oc-top.active  {
    border-left-color: var(--lp-red);
    color: #fff;
}

.lp-oc-arrow  {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    stroke: rgba(255,255,255,0.3);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}

.lp-oc-top[aria-expanded="true"] .lp-oc-arrow  {
    transform: rotate(180deg);
}

/* Submenu */
.lp-oc-sub  {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.lp-oc-sub.open  {
    max-height: 400px;
}

.lp-oc-sub-link  {
    display: block;
    padding: 0.5rem 1.25rem 0.5rem 2.25rem;
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 400;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    border-left: 1px solid rgba(255,255,255,0.1);
    margin-left: 1.25rem;
    text-decoration: none;
    transition: color 0.15s, border-color 0.15s;
}

.lp-oc-sub-link:hover  {
    color: rgba(255,255,255,0.85);
    border-left-color: rgba(197,17,25,0.55);
}

.lp-oc-sub-link.active  {
    color: rgba(255,255,255,0.9);
    border-left-color: var(--lp-red);
}

/* Einfache Links */
.lp-oc-plain  {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.25rem;
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 700;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: border-color 0.2s, background 0.2s;
}

.lp-oc-plain:hover  {
    background: rgba(255,255,255,0.04);
    border-left-color: rgba(197,17,25,0.4);
    color: #fff;
}

.lp-oc-plain.active  {
    border-left-color: var(--lp-red);
    color: #fff;
}

/* Trennlinien */
.lp-oc-divider  {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 0.375rem 1.25rem;
}

/* Footer: CTA + Social */
.lp-offcanvas-footer  {
    flex-shrink: 0;
    padding: 1rem 1rem 0;
}

.lp-oc-cta  {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--lp-red);
    color: #fff;
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 700;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s;
}

.lp-oc-cta:hover  {
    background: var(--lp-red-dark);
    color: #fff;
}

.lp-oc-cta.active  {
    border-left-color: #fff;
}

.lp-oc-footer-divider  {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 1rem 0 0;
}

.lp-oc-social  {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 1.5rem));
}

.lp-oc-social-btn  {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.lp-oc-social-btn:hover  {
    border-color: rgba(197,17,25,0.7);
    background: rgba(197,17,25,0.12);
}

.lp-oc-social-btn svg  {
    width: 20px;
    height: 20px;
    fill: rgba(255,255,255,0.6);
}

/* ─── Touren — Übersicht (Karten) ─────────────────────── */
.sec-touren {
    background: var(--lp-cream);
    padding: 7rem 0;
}

.tour-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.tour-filter-btn {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--lp-border);
    background: transparent;
    color: var(--lp-text);
    cursor: pointer;
    transition: all 0.2s;
}

.tour-filter-btn:hover,
.tour-filter-btn.active {
    border-color: var(--lp-red);
    background: var(--lp-red);
    color: #fff;
}

.tour-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tour-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.tour-card-img {
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.tour-card:hover .tour-card-img img {
    transform: scale(1.06);
}

.tour-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--lp-red);
    color: #fff;
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.8rem;
}

.tour-card-body {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-title {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 800;
    font-size: 1.6rem;
    text-transform: uppercase;
    color: var(--lp-text);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.tour-subtitle {
    font-family: "barlow-condensed", sans-serif;
    font-weight: 500;
    color: var(--lp-red);
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.tour-desc {
    font-family: "barlow-condensed", sans-serif;
    font-weight: 300;
    color: var(--lp-text);
    font-size: 1.15rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    flex: 1;
}

.tour-card-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: auto;
}

.tour-link {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 0.98rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s, color 0.2s;
}

.tour-card:hover .tour-link {
    gap: 0.65rem;
    color: var(--lp-red-dark);
}

.tour-link:hover {
    color: var(--lp-red-dark);
    gap: 0.65rem;
}

/* ─── Touren — Modal ───────────────────────────────────── */
.tour-modal .modal-content {
    border-radius: 0;
    border: none;
}

.tour-modal .modal-footer {
    justify-content: flex-start;
    border-top: none;
    padding: var(--bs-modal-padding, 1rem);
}

/* Info-Tab-Pane hat keinen eigenen Bottom-Abstand, der Footer übernimmt ihn */
.tour-modal [id^="tour-panel-info-"] {
    padding-bottom: 0;
}

.tour-modal .tab-content {
    border-bottom: none;
}

/* Footer-Button und Form-Submit-Button auf volle Breite, zentriert */
.tour-modal .modal-footer .btn-lp {
    width: 100%;
    text-align: center;
}

.tour-modal .tour-modal-form .frame-type-form_formframework button[type="submit"],
.tour-modal .tour-modal-form .frame-type-form_formframework .btn-primary {
    width: 100%;
}

.tour-modal .modal-header {
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    border-bottom: none;
}

.tour-modal .modal-header::after {
    content: "";
    position: absolute;
    left: var(--bs-modal-padding-x, 1rem);
    right: var(--bs-modal-padding-x, 1rem);
    bottom: 0;
    border-bottom: 1px solid var(--lp-border);
}

/* Header-Linie unterdrücken wenn Tabs folgen (die haben eigene Border) */
.tour-modal .modal-content:has(.tour-modal-tabs) .modal-header::after {
    display: none;
}

/* Tab-Navigation */
.tour-modal-tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0 var(--bs-modal-padding-x, 1rem);
    border-bottom: 1px solid var(--lp-border);
    gap: 0;
}

.tour-modal-tab {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--lp-muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.85rem 1rem;
    margin-bottom: -1px;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
}

.tour-modal-tab:hover {
    color: var(--lp-text);
}

.tour-modal-tab.active,
.tour-modal-tab[aria-selected="true"] {
    color: var(--lp-red);
    border-bottom-color: var(--lp-red);
}


.tour-modal .modal-title {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 700;
    text-transform: uppercase;
    font-size: 1.6rem;
    margin-top: 0.3rem;
}

.tour-modal-subtitle {
    font-family: "barlow-condensed", sans-serif;
    font-weight: 500;
    color: var(--lp-red);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.tour-modal .modal-body h2 {
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.tour-modal .modal-body h3 {
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.tour-modal .modal-body ul,
.tour-modal .modal-body ol {
    font-size: 1.15rem;
    padding-left: 1.2em;
}

.tour-modal .modal-body ul li::marker,
.tour-modal .modal-body ol li::marker {
    color: var(--lp-red);
}

.tour-modal-img,
.tour-gallery .carousel-item {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.tour-modal-img img,
.tour-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-gallery .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tour-gallery .carousel-control-prev,
.tour-gallery .carousel-control-next {
    width: 10%;
}

.tour-table-title {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    color: var(--lp-red);
    margin-bottom: 0.8rem;
}

.tour-table,
figure.table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    font-size: 1.15rem;
}

figure.table {
    margin: 1.5rem 0;
}

.tour-table tr:not(:last-child) th,
.tour-table tr:not(:last-child) td,
figure.table table tr:not(:last-child) th,
figure.table table tr:not(:last-child) td {
    box-shadow: inset 0 -1px 0 var(--lp-border);
}

.tour-table th,
.tour-table td,
figure.table table th,
figure.table table td {
    padding: 0 0.8rem 0.1rem 0;
    vertical-align: top;
    text-align: left;
}

.tour-table thead th,
figure.table table thead th {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--lp-muted);
    font-size: 1rem;
    box-shadow: inset 0 -1px 0 var(--lp-border);
}

.tour-table tbody td,
figure.table table tbody td {
    color: var(--lp-text);
}

.tour-table tbody td:first-child {
    font-weight: 700;
}

.tour-table th p,
.tour-table td p,
figure.table table th p,
figure.table table td p {
    margin-bottom: 0;
}

.tour-table-programm th:first-child,
.tour-table-programm td:first-child {
    width: 30%;
}

@media (max-width: 575px) {
    .tour-table th,
    .tour-table td,
    .tour-table-programm th:first-child,
    .tour-table-programm td:first-child,
    figure.table table th,
    figure.table table td {
        display: block;
        width: 100%;
        padding: 0.2rem 0;
    }

    .tour-table tr,
    figure.table table tr {
        display: block;
        padding: 0.1rem 0;
    }

    .tour-table tr:not(:last-child) th,
    .tour-table tr:not(:last-child) td,
    figure.table table tr:not(:last-child) th,
    figure.table table tr:not(:last-child) td {
        box-shadow: none;
    }
}

/* ═══════════════════════════════════════════════ INHALT (Lauftext / Akkordeon / Formular) */
.sec-inhalt {
    padding: 4rem 0;
}

/* ─── Lauftext ─────────────────────────────────────────── */
.lp-richtext {
    color: var(--lp-text);
}

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

.lp-richtext hr {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* ─── Bilder im Inhalt (links/rechts neben dem Text bzw. ganze Breite) */
.lp-inhalt-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.2rem;
}

.lp-inhalt-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.lp-inhalt-img figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--lp-red);
    color: #fff;
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.7rem;
}

.lp-inhalt-img-left {
    float: left;
    max-width: 45%;
    margin: 10px 1.5rem 1rem 0;
}

.lp-inhalt-img-right {
    float: right;
    max-width: 45%;
    margin: 10px 0 1rem 1.5rem;
}

.lp-inhalt-img-full {
    clear: both;
    max-width: 100%;
}

.lp-inhalt-img-top {
    clear: both;
    max-width: 100%;
}

.lp-inhalt-img-bottom {
    clear: both;
    max-width: 100%;
    margin-top: 1rem;
}

.lp-abschnitt + .lp-abschnitt {
    margin-top: 1.5rem;
}

.lp-abschnitt:last-child p:last-of-type,
.lp-abschnitt:last-child figure:last-of-type {
    margin-bottom: 0;
}

.lp-abschnitt .lp-inhalt-img-top {
    margin-top: 1rem;
}

.lp-img-bw-25 { max-width: 25%; }
.lp-img-bw-33 { max-width: 33%; }
.lp-img-bw-45 { max-width: 45%; }
.lp-img-bw-50 { max-width: 50%; }

@media (max-width: 575px) {
    .lp-inhalt-img-left,
    .lp-inhalt-img-right {
        float: none;
        max-width: 100%;
        margin: 0 0 1.2rem 0;
    }
}

/* ─── Akkordeon ────────────────────────────────────────── */
.lp-accordion .accordion-item {
    border: 1px solid var(--lp-border);
    border-radius: 4px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.lp-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.lp-accordion .accordion-button {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 1.1rem;
    color: var(--lp-text);
    background: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lp-accordion .accordion-button:not(.collapsed) {
    color: var(--lp-red);
    background: var(--lp-cream);
    box-shadow: none;
}

.lp-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--lp-border);
}

.lp-accordion .accordion-button::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c51119'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.lp-accordion .accordion-body {
    padding: 1.1rem 1.25rem 1.25rem;
    font-size: 1.15rem;
}

/* ═══════════════════════════════════════════════ GRUPPENFÜHRER/INNEN */
.sec-fuehrer {
    background: var(--lp-cream);
    padding: 7rem 0;
}

.fuehrer-card {
    background: #fff;
    border-top: 3px solid var(--lp-red);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fuehrer-foto {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--lp-cream-2);
}

.fuehrer-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.fuehrer-foto-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fuehrer-team-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--lp-red);
    color: #fff;
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.7rem;
}

.fuehrer-body {
    padding: 1rem 1.1rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fuehrer-name {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--lp-text);
    line-height: 1.05;
    margin-bottom: 0.25rem;
}

.fuehrer-rolle {
    font-family: "barlow-condensed", sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: var(--lp-muted);
    line-height: 1.4;
}

.fuehrer-seit {
    font-family: "barlow-condensed", sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--lp-red);
    margin-top: 0.2rem;
}

/* ═══════════════════════════════════════════════ STANDORT */
.sec-standort {
    padding: 4rem 0;
}

.standort-name {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 800;
    font-size: 1.6rem;
    text-transform: uppercase;
    color: var(--lp-text);
    margin-bottom: 1.5rem;
}

.standort-block {
    margin-bottom: 1.25rem;
}

.standort-label {
    display: block;
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-red);
    margin-bottom: 0.25rem;
}

.standort-text {
    font-size: 1.05rem;
    color: var(--lp-text);
    margin: 0;
    font-style: normal;
}

.standort-text a {
    color: var(--lp-text);
    text-decoration: none;
}

.standort-text a:hover {
    color: var(--lp-red);
}

.standort-zeiten {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.1rem 1.25rem;
    font-size: 1.05rem;
    margin: 0;
}

.standort-zeiten dt {
    font-weight: 500;
    color: var(--lp-text);
}

.standort-zeiten dd {
    color: var(--lp-muted);
    margin: 0;
}

.standort-map {
    width: 100%;
    height: 420px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 991px) {
    .standort-map {
        height: 320px;
    }
}

/* ═══════════════════════════════════════════════ TYPO3 FRAME-WRAPPER (Abstand vor/nach) */
.frame-space-before-extra-small { margin-top: 10px; }
.frame-space-before-small       { margin-top: 20px; }
.frame-space-before-medium      { margin-top: 40px; }
.frame-space-before-large       { margin-top: 80px; }
.frame-space-before-extra-large { margin-top: 160px; }
.frame-space-before-none        { margin-top: 0; }

.frame-space-after-extra-small  { margin-bottom: 10px; }
.frame-space-after-small        { margin-bottom: 20px; }
.frame-space-after-medium       { margin-bottom: 40px; }
.frame-space-after-large        { margin-bottom: 80px; }
.frame-space-after-extra-large  { margin-bottom: 160px; }
.frame-space-after-none         { margin-bottom: 0; }

/* ═══════════════════════════════════════════════ EXT:FORM */
.frame-type-form_formframework {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 1.5rem;
}

.frame-type-form_formframework form {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Formular-Titel – gleiche Struktur wie .sec-label + .sec-title */
.frame-type-form_formframework h2::before {
    content: "Anmeldung";
    display: block;
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--lp-red);
    margin-bottom: 0.4rem;
}

.frame-type-form_formframework h2 {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 800;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    text-transform: uppercase;
    line-height: 0.95;
    color: var(--lp-text);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Fieldset-Bereiche hellgrau; kein padding-top – Legend bringt es selbst mit */
.frame-type-form_formframework fieldset {
    background: var(--lp-cream);
    padding: 0 1.75rem 1.5rem;
    margin-bottom: 1.5rem;
    border: none;
}

/* Fieldset-Titel – wie .sec-label; eigener Hintergrund überbrückt Browser-Positionierungsquirk */
.frame-type-form_formframework legend {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--lp-red);
    text-align: left;
    background: var(--lp-cream);
    width: calc(100% + 3.5rem);
    margin: 0 -1.75rem 1.2rem;
    float: none;
    padding: 1.75rem 1.75rem 0.6rem;
    position: relative;
}
.frame-type-form_formframework legend::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 1.75rem;
    right: 1.75rem;
    height: 2px;
    background: var(--lp-red);
}

/* Labels */
.frame-type-form_formframework .form-label {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lp-muted);
    margin-bottom: 0.3rem;
    display: block;
}

/* Inputs, Selects, Textareas */
.frame-type-form_formframework .form-control,
.frame-type-form_formframework .form-select {
    font-family: "barlow-condensed", sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    color: var(--lp-text);
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 0;
    padding: 0.55rem 0.85rem;
    transition: border-color 0.18s, box-shadow 0.18s;
}

.frame-type-form_formframework .form-control:focus,
.frame-type-form_formframework .form-select:focus {
    border-color: var(--lp-red);
    box-shadow: 0 0 0 3px rgba(197, 17, 25, 0.12);
    outline: none;
}

.frame-type-form_formframework .form-control.is-invalid,
.frame-type-form_formframework .form-select.is-invalid {
    border-color: var(--lp-red);
}

.frame-type-form_formframework .invalid-feedback {
    font-size: 0.88rem;
    color: var(--lp-red);
}

/* Textarea */
.frame-type-form_formframework textarea.form-control {
    min-height: 8rem;
    resize: vertical;
}

/* Radio & Checkbox */
.frame-type-form_formframework .form-check {
    padding-left: 1.6rem;
    margin-bottom: 0.4rem;
}

.frame-type-form_formframework .form-check-input {
    width: 1.1em;
    height: 1.1em;
    margin-top: 0.25em;
    border: 1px solid var(--lp-sand);
    border-radius: 0;
    cursor: pointer;
    accent-color: var(--lp-red);
}

.frame-type-form_formframework .form-check-input[type="radio"] {
    border-radius: 50%;
}

.frame-type-form_formframework .form-check-input:checked {
    background-color: var(--lp-red);
    border-color: var(--lp-red);
}

.frame-type-form_formframework .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(197, 17, 25, 0.12);
    border-color: var(--lp-red);
}

.frame-type-form_formframework .form-check-label {
    font-family: "barlow-condensed", sans-serif;
    font-size: 1.15rem;
    cursor: pointer;
}

/* Field groups / spacing */
.frame-type-form_formframework .mb-3 {
    margin-bottom: 1.4rem !important;
}

/* Submit button */
.frame-type-form_formframework .btn-primary,
.frame-type-form_formframework button[type="submit"] {
    font-family: "big-shoulders-text-variable", sans-serif;
    font-variation-settings: "wght" 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.7rem 2rem;
    border-radius: 0;
    border: 2px solid var(--lp-red);
    background: var(--lp-red);
    color: #fff;
    transition: all 0.22s;
    box-shadow: none;
}

.frame-type-form_formframework .btn-primary:hover,
.frame-type-form_formframework button[type="submit"]:hover {
    background: var(--lp-red-dark);
    border-color: var(--lp-red-dark);
    color: #fff;
}

.frame-type-form_formframework .btn-primary:focus,
.frame-type-form_formframework button[type="submit"]:focus {
    box-shadow: 0 0 0 3px rgba(197, 17, 25, 0.25);
    outline: none;
}

/* Form eingebettet im Inhalt-Block und Tour-Modal: Padding, Breiten-Limit und hardcoded Label aufheben */
.lp-inhalt-form .frame-type-form_formframework,
.tour-modal-form .frame-type-form_formframework {
    max-width: none;
    padding: 0;
}
.lp-inhalt-form .frame-type-form_formframework form,
.tour-modal-form .frame-type-form_formframework form {
    max-width: none;
}
.lp-inhalt-form .frame-type-form_formframework h2::before,
.tour-modal-form .frame-type-form_formframework h2::before {
    content: none;
}
