/* ============================================================
   HOFSTAETTER DEMO STYLES — als WP-Asset
   :root-Tokens kommen aus custom-properties.php (Settings-driven).
   ============================================================ */

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

html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-mono); color: var(--wavio-text); background: var(--wavio-bg); line-height: 1.5; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container { max-width: var(--wavio-container, 1400px); margin: 0 auto; padding: 0 20px; }

/* ─── Top Bar ────────────────────────────────────── */
.topbar {
    background: var(--wavio-mint);
    padding: 8px 0;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--wavio-dark);
}
.topbar .container { display: flex; justify-content: center; align-items: center; max-width: none; padding: 0 20px; }
.topbar__left { display: flex; gap: 24px; }
.topbar__right { display: flex; gap: 16px; align-items: center; }
.topbar__cta { text-decoration: underline; text-underline-offset: 3px; }
.topbar__cta:hover { text-decoration-thickness: 2px; }

/* ─── Navigation ─────────────────────────────────── */
.nav {
    background: var(--wavio-white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.nav .container {
    display: flex;
    align-items: center;
    height: 54px;
    max-width: none;
    padding: 0 20px;
    gap: 40px;
}
.nav__logo img { height: 33px; }
.nav__links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav__links a {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 16px;
    color: var(--wavio-black);
    transition: color 0.2s;
    letter-spacing: -0.01em;
}
.nav__links a:hover { color: var(--wavio-gray-600); }
.nav__links .jobs-badge {
    background: var(--wavio-mint);
    color: var(--wavio-black);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    padding: 1px 5px;
    border-radius: var(--wavio-radius-pill);
    margin-left: 3px;
    vertical-align: super;
    line-height: 1;
}

/* ─── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 16px;
    padding: 8px 32px;
    border-radius: var(--wavio-radius-pill);
    border: 2px solid var(--wavio-black);
    background: transparent;
    color: var(--wavio-black);
    transition: all 0.25s;
    letter-spacing: -0.01em;
    cursor: pointer;
    text-decoration: none;
}
.btn--white { background: var(--wavio-white); color: var(--wavio-black); }
.btn--white:hover { background: var(--wavio-gray-100); }
.btn--ghost {
    background: rgba(255,255,255,0.15);
    color: var(--wavio-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.25); }
.btn--mint { background: var(--wavio-accent); color: var(--wavio-accent-ink); border-color: var(--wavio-accent); }
.btn--mint:hover { background: var(--wavio-black); color: var(--wavio-white); border-color: var(--wavio-black); }
.btn--dark { background: var(--wavio-black); color: var(--wavio-white); }
.btn--dark:hover { background: var(--wavio-gray-800); }
.btn--red { background: var(--hofstaetter-red); color: var(--wavio-white); border-color: var(--hofstaetter-red); }
.btn--red:hover { background: var(--wavio-black); color: var(--wavio-white); border-color: var(--wavio-black); }
.btn--outline { background: transparent; color: var(--wavio-text); border: 1.5px solid var(--wavio-gray-400); }
.btn--outline:hover { border-color: var(--wavio-text); }
.btn--dark-outline:hover { background: var(--wavio-black); color: var(--wavio-white); }
.btn__arrow { font-size: 16px; transition: transform 0.2s; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ─── Hero (Startseite) — Demo-Pattern, fast voller Viewport ─── */
.hero {
    position: relative;
    height: calc(100vh - 54px - 29px); /* Header + Topbar abziehen */
    overflow: hidden;
    background: var(--wavio-black);
}
body.topbar-hidden .hero { height: calc(100vh - 54px); }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.hero__content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    padding: 0 20px;
    max-width: none;
    z-index: 2;
}
.hero__h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(40px, 3.5vw, 70px);
    line-height: 1;
    color: var(--wavio-white);
    max-width: 800px;
    margin-bottom: 32px;
}
.hero__buttons { display: flex; gap: 12px; position: absolute; bottom: 20px; left: 20px; z-index: 2; }
.hero .btn,
.bild-banner .btn {
    /* Default: leichter Glas-Effekt + minimaler Blur */
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px) saturate(1.2);
    -webkit-backdrop-filter: blur(6px) saturate(1.2);
    color: var(--wavio-white);
    border: 2px solid rgba(255,255,255,0.5);
    font-family: var(--font-mono);
    font-weight: 500;
    padding: 8px 32px;
    font-size: 16px;
    transition: backdrop-filter 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.hero .btn:hover,
.bild-banner .btn:hover {
    /* Hover: deutlich stärkerer Blur */
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.9);
}

/* ─── Job Widget (horizontal) ────────────────────── */
.job-widget {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 490px;
    height: 120px;
    background: rgba(240,240,238,0.55);
    backdrop-filter: blur(32px) saturate(1.6);
    -webkit-backdrop-filter: blur(32px) saturate(1.6);
    border-radius: var(--wavio-radius);
    padding: 8px 10px;
    z-index: 3;
    color: var(--wavio-text);
}
.job-widget__close {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wavio-black);
    color: var(--wavio-white);
    border-radius: var(--wavio-radius-pill);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
}
.job-widget:hover { background: rgba(245,245,243,0.95); }
.job-widget__close:hover { background: var(--wavio-gray-800); }
.job-widget__img {
    width: 163px;
    height: 103px;
    border-radius: var(--wavio-radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}
.job-widget__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
}
.job-widget__heading {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}
.job-widget__title {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 26px;
    line-height: 1;
}
.job-widget__badge {
    background: var(--wavio-mint);
    color: var(--wavio-black);
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: var(--wavio-radius-pill, 999px);
    align-self: flex-start;
    margin-top: -2px;
}
.job-widget__text {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 17px;
    color: var(--wavio-black);
    line-height: 1.2;
}

/* ─── Stack-Container (Job-Widget + Event-Widget gestapelt) ─── */
.hero__widgets-stack {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 490px;
    height: 120px;
    z-index: 3;
}
.hero__widgets-stack .job-widget,
.hero__widgets-stack .event-widget {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}

/* Wenn nur eines aktiv ist → reset auf normale Position */
.hero__widgets-stack:not(.hero__widgets-stack--has-event) .job-widget,
.hero__widgets-stack:not(.hero__widgets-stack--has-event) .event-widget {
    position: relative;
}

/* Stack-Mode aktiv (beide Widgets): Container expandiert beim Hover damit
   Hit-Area auch die transformierte Event-Card erreicht */
.hero__widgets-stack--has-event {
    height: 138px; /* 120 + 18px Peek */
    transition: height 0s 0.4s; /* Höhe shrinkt erst NACH der Slide-Animation */
}
.hero__widgets-stack--has-event:hover {
    height: 280px; /* Erweitern damit Maus zur Event-Card kann */
    transition: height 0s 0s;
}

/* Stack-Mode: Event hinten gepeekt, Job vorne */
.hero__widgets-stack--has-event .job-widget {
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0.0, 1);
}
.hero__widgets-stack--has-event .event-widget {
    z-index: 1;
    transform: translateY(-18px);
    opacity: 0.88;
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0.0, 1), opacity 0.3s;
}

/* Hover: Event nach vorne, Job rutscht leicht zurück */
.hero__widgets-stack--has-event:hover .event-widget {
    transform: translateY(-128px);
    opacity: 1;
    z-index: 4;
}
.hero__widgets-stack--has-event:hover .job-widget {
    transform: translateY(0);
    z-index: 3;
}

/* ─── Event-Widget (gleicher Glas-Look wie Job-Widget) ────────────── */
.event-widget {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 490px;
    height: 120px;
    background: rgba(240,240,238,0.55);
    backdrop-filter: blur(32px) saturate(1.6);
    -webkit-backdrop-filter: blur(32px) saturate(1.6);
    border-radius: var(--wavio-radius);
    padding: 8px 10px;
    color: var(--wavio-text);
    text-decoration: none;
    transition: background 0.2s;
}
.event-widget:hover { background: rgba(245,245,243,0.95); }

.event-widget__img {
    width: 163px;
    height: 103px;
    border-radius: var(--wavio-radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}
.event-widget__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
}
.event-widget__heading {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}
.event-widget__title {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 26px;
    line-height: 1;
    color: var(--wavio-black);
    letter-spacing: -0.01em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.event-widget__text {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 17px;
    color: var(--wavio-black);
    line-height: 1.2;
}

/* Kicker + Close ausgeblendet — User wollte nur Title + "Mehr erfahren" */
.event-widget__kicker,
.event-widget__close { display: none; }

/* ─── MOBILE: Stack fixed an Bildschirm-Unterkante ──────────────────── */
@media (max-width: 700px) {
    /* Hero bleibt normal, CTAs auch */
    .hero { padding-bottom: 0; }
    .hero__buttons { bottom: 20px; }

    /* Mobile: Widgets am Hero-Ende (absolute, NICHT fixed) — scrollen mit dem Hero weg. Beide untereinander, gleiches Styling. */
    .hero__widgets-stack {
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 20px;
        width: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0;
        margin-top: 0;
        z-index: 3;
    }

    /* Beide Widgets statisch, voll breit, kompakt — keine Überlagerung, kein Tap-Flip */
    .hero__widgets-stack .event-widget,
    .hero__widgets-stack .job-widget {
        position: static;
        width: 100%;
        min-height: 56px;
        height: auto;
        transform: none;
        opacity: 1;
        z-index: auto;
        margin: 0;
    }
    /* Verkleinerte Card-Inhalte auf Mobile */
    .event-widget, .job-widget {
        gap: 10px;
        padding: 6px 8px;
    }
    .event-widget__img, .job-widget__img {
        width: 96px;
        height: auto;
        aspect-ratio: 16/9;
        border-radius: 4px;
    }
    .event-widget__title, .job-widget__title { font-size: 16px; }
    .job-widget__close { display: none; }
    .event-widget__text, .job-widget__text { font-size: 12px; }
}

/* ─── Intro Text ─────────────────────────────────── */
.intro { padding: 40px 20px 60px; }
@media (min-width: 1024px) { .intro { padding-bottom: 200px; } }
.intro__text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(22px, 3.2vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.045em;
    color: var(--wavio-text);
    max-width: 75vw;
}

/* ─── Kategorie Cards (Swipe) ────────────────────── */
.kat-cards { padding: 0 0 80px; }
.kat-cards__track { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 0 20px; scroll-padding-left: 20px; }
.kat-cards__track::-webkit-scrollbar { display: none; }
.kat-card { flex: 0 0 calc((100% - 36px) / 4); position: relative; border-radius: var(--wavio-radius); overflow: hidden; aspect-ratio: 4/5; display: flex; text-decoration: none; color: var(--wavio-white); scroll-snap-align: start; }
.kat-card:not(:has(.kat-card__bg)) { background: var(--wavio-accent); }
.kat-card__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, filter 0.5s ease; }
.kat-card:hover .kat-card__bg { transform: scale(1.05); filter: blur(4px); }
.kat-card__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.65) 100%); transition: background 0.4s; }
.kat-card:hover .kat-card__overlay { background: rgba(0,0,0,0.5); }
.kat-card__content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; width: 100%; }
.kat-card__top { display: flex; align-items: center; gap: 10px; }
.kat-card__name { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 2vw, 32px); letter-spacing: -0.02em; line-height: 1.1; }
.kat-card__count { font-family: var(--font-mono); font-weight: 500; font-size: 11px; background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.3); border-radius: var(--wavio-radius-pill); padding: 3px 10px; flex-shrink: 0; }
.kat-card__bottom { margin-top: auto; }
.kat-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.kat-card__tag { font-family: var(--font-mono); font-weight: 500; font-size: 11px; padding: 3px 10px; border-radius: var(--wavio-radius-pill); border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); transition: all 0.2s; }
.kat-card:hover .kat-card__tag { border-color: rgba(255,255,255,0.6); color: var(--wavio-white); }

/* ─── Tour Cards ─────────────────────────────────── */
.tour-section { padding: 80px 0 120px; overflow-x: clip; }
.tour-section__sticky { position: sticky; top: 54px; z-index: 90; background: var(--wavio-bg); padding: 22px 0 18px; margin: 0 calc(-50vw + 50%); padding-left: max(20px, calc(50vw - var(--wavio-container, 1400px) / 2 + 20px)); padding-right: max(20px, calc(50vw - var(--wavio-container, 1400px) / 2 + 20px)); transition: background 0.3s, box-shadow 0.3s, padding 0.3s; }
.tour-section__sticky.is-stuck { background: var(--wavio-white); box-shadow: 0 2px 8px rgba(0,0,0,0.04); border-top: 1px solid var(--wavio-gray-200); }
.tour-section__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.tour-section__sticky .tour-section__header { margin-bottom: 14px; }
.tour-section__count { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-black); }
.tour-section__title { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--wavio-black); letter-spacing: -0.01em; }
.tour-section__title--large { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 30px); color: var(--wavio-black); letter-spacing: -0.03em; line-height: 1.15; }
.tour-section__header .btn { font-size: 14px; padding: 9px 24px; }
.tour-card { position: relative; display: grid; grid-template-columns: 2fr 3fr; align-items: stretch; background: var(--wavio-white); border: 1px solid var(--wavio-gray-200); border-radius: var(--wavio-radius); overflow: hidden; transition: box-shadow 0.25s; margin-bottom: 16px; }
.tour-card:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.09); }
.tour-card__image-wrap { position: relative; overflow: hidden; }
.tour-card__label { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--font-display); font-weight: 700; font-size: 11.5px; letter-spacing: 0.02em; background: var(--wavio-white); color: var(--wavio-black); padding: 6px 12px; border-radius: var(--wavio-radius-pill); display: inline-flex; align-items: center; gap: 5px; box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.tour-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s; }
.tour-card:hover .tour-card__img { transform: scale(1.05); }
.tour-card__body { position: relative; padding: 28px 26px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.tour-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; }
.tour-card__heading { min-width: 0; }
.tour-card__kicker { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--wavio-accent); }
.tour-card__name { font-family: var(--font-display); font-weight: 800; font-size: 23px; line-height: 1.12; letter-spacing: -0.015em; color: var(--wavio-black); margin: 3px 0 0; }
.tour-card__fav { flex-shrink: 0; width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--wavio-gray-100); color: #555; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: color 0.2s, transform 0.2s, background 0.2s; }
.tour-card__fav:hover { color: var(--wavio-accent); transform: scale(1.08); }
.tour-card__fav svg { width: 19px; height: 19px; }
.tour-card__fav.l7-favorite-btn--active { color: var(--wavio-accent); }
.tour-card__fav.l7-favorite-btn--active svg { fill: currentColor; }
.tour-card__badges { display: flex; gap: 7px; flex-wrap: wrap; }
.tour-card__badge { font-family: var(--font-mono); font-weight: 500; font-size: 12px; padding: 4px 11px; border-radius: var(--wavio-radius-pill); background: var(--wavio-gray-100); color: var(--wavio-black); white-space: nowrap; }
.tour-card__badge--land, .tour-card__badge--kat, .tour-card__badge--price { display: none; }
.tour-card__meta { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.tour-card__meta li { display: flex; gap: 10px; align-items: flex-start; font-family: var(--font-mono); font-size: 13.5px; line-height: 1.4; color: #2b2b2b; }
.tour-card__meta li::before { content: '✓'; flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--wavio-accent); color: var(--wavio-accent-ink); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.tour-card__footer { display: flex; align-items: center; gap: 16px; margin-top: 4px; }
.tour-card__foot-price { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--wavio-text-muted); }
.tour-card__foot-price b { font-weight: 700; color: var(--wavio-black); }
.tour-card__cta { margin-left: auto; font-family: var(--font-display); font-weight: 700; font-size: 13px; background: var(--wavio-accent); color: var(--wavio-accent-ink); padding: 10px 22px; border-radius: var(--wavio-radius-pill); white-space: nowrap; transition: filter 0.2s; }
.tour-card:hover .tour-card__cta { filter: brightness(1.1); }
@media (max-width: 760px) { .tour-card { grid-template-columns: 1fr; } .tour-card__image-wrap { aspect-ratio: 16 / 9; } }

/* ─── Tour-Übersicht: Spalten-Grid (Theme-Setting "Tour-Grid Spalten") ─── */
.tour-grid { display: grid; gap: 16px; }
.tour-grid[data-cols="1"] { grid-template-columns: 1fr; }
.tour-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.tour-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.tour-grid .tour-card { margin-bottom: 0; }
/* ab 2 Spalten: Karte vertikal (Bild oben, Body unten) — als Zeile zu schmal */
.tour-grid[data-cols="2"] .tour-card,
.tour-grid[data-cols="3"] .tour-card { grid-template-columns: 1fr; }
.tour-grid[data-cols="2"] .tour-card__image-wrap,
.tour-grid[data-cols="3"] .tour-card__image-wrap { aspect-ratio: 16 / 10; }
.tour-grid[data-cols="2"] .tour-card__body,
.tour-grid[data-cols="3"] .tour-card__body { padding: 22px 22px; }
@media (max-width: 1000px) { .tour-grid[data-cols="3"] { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .tour-grid[data-cols="2"], .tour-grid[data-cols="3"] { grid-template-columns: 1fr; } }

/* ─── Dual Cards (Huel-Style) ────────────────────── */
.showcase-cards { padding: 0 0 100px; }
.showcase-cards .container { max-width: none; }   /* Full-Width — unabhängig von der Container-Breite */
.showcase-cards__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--wavio-gap); }
.showcase-cards__grid--3col { grid-template-columns: repeat(3, 1fr); }
.showcase-cards__grid--1col { grid-template-columns: 1fr; }
@media (max-width: 900px) {
	.showcase-cards__grid--3col { grid-template-columns: 1fr 1fr; }
}
.showcase-card { position: relative; border-radius: var(--wavio-radius); overflow: hidden; aspect-ratio: auto; height: 80vh; min-height: 420px; cursor: pointer; }
.showcase-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.showcase-card:hover .showcase-card__img { transform: scale(1.03); }
.showcase-card__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.18) 45%, rgba(0,0,0,0.6) 100%); }
.showcase-card__content { position: absolute; inset: 0; display: grid; grid-template-rows: auto 1fr auto; align-items: center; justify-items: center; color: var(--wavio-white); padding: 20px 40px 40px; }
.showcase-card__label { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: rgba(255,255,255,0.7); }
.showcase-card__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px, 2.5vw, 48px); line-height: 1.1; letter-spacing: -0.04em; text-align: center; }
.showcase-card .btn {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px) saturate(1.2);
    -webkit-backdrop-filter: blur(6px) saturate(1.2);
    color: var(--wavio-white);
    border: 2px solid rgba(255,255,255,0.5);
    font-family: var(--font-mono);
    font-weight: 500;
    padding: 8px 32px;
    font-size: 16px;
    transition: backdrop-filter 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.showcase-card .btn:hover {
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.9);
}

/* ─── Pre-Footer (3er Grid) ──────────────────────── */
.prefooter { padding: 0; background: var(--wavio-bg); }
.prefooter__label { text-align: center; font-family: var(--font-display); font-weight: 500; font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.prefooter__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.prefooter-card { position: relative; overflow: hidden; aspect-ratio: 1/1.15; }
.prefooter-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.prefooter-card:hover .prefooter-card__img { transform: scale(1.03); }
.prefooter-card__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.25); }
.prefooter-card__content { position: absolute; inset: 0; display: grid; grid-template-rows: auto 1fr auto; align-items: center; justify-items: center; color: var(--wavio-white); padding: 20px 40px 40px; }
.prefooter-card__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 2vw, 36px); line-height: 1.1; text-align: center; }
.prefooter-card .btn {
    /* Gleiches Pattern wie .hero .btn — leichter Glas-Default, stärker on Hover */
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px) saturate(1.2);
    -webkit-backdrop-filter: blur(6px) saturate(1.2);
    color: var(--wavio-white);
    border: 2px solid rgba(255,255,255,0.5);
    font-family: var(--font-mono);
    font-weight: 500;
    padding: 8px 32px;
    font-size: 16px;
    transition: backdrop-filter 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.prefooter-card .btn:hover {
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.9);
}
.prefooter-card--gray { background: var(--wavio-gray-100); }
.prefooter-card--gray .prefooter-card__title { color: var(--wavio-black); }
.prefooter-card--gray .btn { color: var(--wavio-black); border: 2px solid rgba(0,0,0,0.3); }
.prefooter-card--gray .btn:hover { border-color: var(--wavio-black); background: transparent; backdrop-filter: none; }
.prefooter__label--dark { color: var(--wavio-gray-600); }
.prefooter__center { text-align: center; margin-top: 32px; }

/* ─── Filter Bar ────────────────────────────────────── */
/* ─── Tour Filter ───────────────────────────────────── */
.tour-filter { display: flex; gap: 8px; padding-bottom: 4px; margin-bottom: 0; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; mask-image: linear-gradient(to right, black 90%, transparent 100%); -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%); }
.tour-filter::-webkit-scrollbar { display: none; }
.tour-filter__btn { font-family: var(--font-mono); font-weight: 500; font-size: 14px; padding: 6px 20px; border-radius: var(--wavio-radius-pill); background: transparent; color: var(--wavio-black); border: 2px solid var(--wavio-gray-200); cursor: pointer; transition: all 0.2s; white-space: nowrap; flex-shrink: 0; }
.tour-filter__btn:hover { border-color: var(--wavio-black); }
.tour-filter__btn--active { background: var(--wavio-black); color: var(--wavio-white); border-color: var(--wavio-black); }

/* ─── Breadcrumb ────────────────────────────────────── */
.breadcrumb { padding: 8px 0; background: var(--wavio-bg); }
.breadcrumb .container { max-width: none; padding: 0 20px; }
.breadcrumb a, .breadcrumb span { font-family: var(--font-mono); font-weight: 500; font-size: 11px; color: var(--wavio-black); }
.breadcrumb a:hover { color: var(--wavio-gray-600); }

/* ─── Kategorie Hero ─────────────────────────────── */
.kat-hero { position: relative; height: 30vh; min-height: 250px; overflow: hidden; background: var(--wavio-black); }
.kat-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.kat-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 40%, transparent 70%); z-index: 1; pointer-events: none; }
.kat-hero__content { position: absolute; top: 50%; transform: translateY(-50%); left: 0; right: 0; padding: 0 20px; max-width: none; z-index: 2; }
.kat-hero__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(40px, 3.5vw, 70px); color: var(--wavio-white); line-height: 1; margin-bottom: 8px; }
.kat-hero__text { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: rgba(255,255,255,0.7); max-width: 600px; line-height: 1.3; margin-bottom: 16px; }
.kat-hero__badges { display: flex; gap: 12px; flex-wrap: wrap; }
.kat-hero__badge { font-family: var(--font-mono); font-weight: 500; font-size: 16px; padding: 8px 32px; border-radius: var(--wavio-radius-pill); background: transparent; color: var(--wavio-white); border: 2px solid rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s; }
.kat-hero__badge:hover { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.8); }
.kat-hero__desc { position: absolute; bottom: 20px; left: 20px; z-index: 2; max-width: 520px; }
.kat-hero__desc p { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.4; }
.kat-hero .hero__buttons { display: flex; gap: 12px; position: absolute; bottom: 20px; left: 20px; z-index: 2; }
.kat-hero .btn {
    background: transparent;
    color: var(--wavio-white);
    border: 2px solid rgba(255,255,255,0.5);
    font-family: var(--font-mono);
    font-weight: 500;
    padding: 8px 32px;
    font-size: 16px;
}
.kat-hero .btn:hover {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.8);
}
.kat-hero--tall { height: 65vh; min-height: 450px; }
.kat-hero--mid { height: 50vh; min-height: 360px; }

/* ─── Kategorie Beschreibung ────────────────────────── */
.kat-desc { padding: 24px 0 20px; }
.kat-desc__grid { display: flex; gap: 60px; align-items: flex-start; }
.kat-desc__text { font-family: var(--font-display); font-weight: 500; font-size: 15px; line-height: 1.4; color: var(--wavio-black); flex: 1; text-align: left; }

/* ─── Contact Widget ─────────────────────────────────── */
.contact-widget { flex-shrink: 0; display: flex; align-items: center; gap: 16px; }
.contact-widget__avatars { display: flex; }
.contact-widget__avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--wavio-white); margin-left: -10px; }
.contact-widget__avatar:first-child { margin-left: 0; }
.contact-widget__info { display: flex; flex-direction: column; gap: 2px; }
.contact-widget__status { display: flex; align-items: center; gap: 8px; }
.contact-widget__dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.contact-widget__label { font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: var(--wavio-black); }
.contact-widget__phone { font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: var(--wavio-gray-600); transition: color 0.2s; }
.contact-widget__phone:hover { color: var(--wavio-black); }

/* ─── Text + Image Block ─────────────────────────── */
.text-image { padding: 100px 0; }
.text-image .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-image__headline { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 2.2vw, 40px); line-height: 1.2; margin-bottom: 24px; }
.text-image__text { font-size: 16px; line-height: 1.7; color: var(--wavio-gray-600); margin-bottom: 28px; }
.text-image__img { width: 100%; border-radius: var(--wavio-radius); object-fit: cover; aspect-ratio: 4/3; }

/* ─── Detail Page ────────────────────────────────── */
.detail { padding: 32px 0 80px; background: var(--wavio-bg); }
.detail__grid { display: grid; grid-template-columns: 7fr 4fr; grid-template-areas: "left right"; gap: 48px; align-items: start; }
.detail__left { grid-area: left; }
.detail__right { grid-area: right; }
.detail__left { }
.detail__gallery { position: relative; border-radius: var(--wavio-radius); overflow: hidden; margin-bottom: 16px; }
.detail__gallery-track { display: flex; transition: transform 0.4s ease; }
.detail__gallery-track .detail__img { flex: 0 0 100%; }
.detail__img { width: 100%; aspect-ratio: 5/4; object-fit: cover; display: block; }
.detail__gallery-dots { display: none; }
.detail__gallery-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; padding: 0; transition: background 0.2s; }
.detail__gallery-dot--active { background: var(--wavio-white); }
.detail__gallery-counter { position: absolute; bottom: 16px; left: 16px; font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: var(--wavio-white); background: rgba(0,0,0,0.5); backdrop-filter: blur(8px); padding: 4px 12px; border-radius: var(--wavio-radius-pill); }
.detail__gallery-prev, .detail__gallery-next { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.5); backdrop-filter: blur(8px); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--wavio-white); transition: background 0.2s; }
.detail__gallery-prev:hover, .detail__gallery-next:hover { background: rgba(0,0,0,0.7); }
.detail__gallery-prev { left: 12px; }
.detail__gallery-next { right: 12px; }
/* Galerie-Stil "dots" (Pfeile + Punkte) — Punkte einblenden */
.detail__gallery--dots .detail__gallery-dots { display: flex; position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); gap: 6px; z-index: 2; }
/* Galerie-Stil "thumbs" (Thumbnail-Leiste unter dem Bild) */
.detail__gallery-thumbs { display: flex; gap: 8px; margin: 10px 0 16px; overflow-x: auto; scrollbar-width: none; }
.detail__gallery-thumbs::-webkit-scrollbar { display: none; }
.detail__gallery-thumb { flex: 0 0 72px; height: 54px; padding: 0; border: 2px solid transparent; border-radius: var(--wavio-radius-sm); overflow: hidden; cursor: pointer; background: none; opacity: 0.55; transition: opacity 0.2s, border-color 0.2s; }
.detail__gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail__gallery-thumb:hover { opacity: 1; }
.detail__gallery-thumb--active { opacity: 1; border-color: var(--wavio-accent); }
.detail__section { background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 28px; margin-bottom: 12px; opacity: 0; transform: translateY(12px); transition: opacity 0.4s ease, transform 0.4s ease; }
.detail__section.is-visible { opacity: 1; transform: translateY(0); }
.detail__section:last-child { margin-bottom: 0; }
.detail__h2 { font-family: var(--font-display); font-weight: 500; font-size: 32px; color: var(--wavio-black); margin-bottom: 16px; letter-spacing: -0.02em; }
.detail__text { font-family: var(--font-display); font-weight: 500; font-size: 16px; line-height: 1.5; color: var(--wavio-black); }
.detail__text--small { font-size: 16px; color: var(--wavio-black); }

/* Itinerary */
.detail__itinerary { display: flex; flex-direction: column; gap: 24px; }
.detail__day { display: flex; gap: 20px; }
.detail__day-label { font-family: var(--font-mono); font-weight: 500; font-size: 11px; color: var(--wavio-white); background: var(--wavio-black); border-radius: var(--wavio-radius-pill); flex-shrink: 0; width: auto; padding: 3px 10px; align-self: flex-start; text-align: center; white-space: nowrap; }
.detail__day-content { flex: 1; }
.detail__day-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--wavio-black); margin-bottom: 6px; letter-spacing: -0.01em; }

/* Checklist */
.detail__checklist { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.detail__checklist li { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--wavio-black); display: flex; align-items: center; gap: 10px; }
.detail__checklist li::before { content: '✓'; width: 16px; height: 16px; border-radius: 50%; background: var(--wavio-accent); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--wavio-accent-ink); }

/* Pricing */
.detail__pricing { display: flex; flex-direction: column; gap: 0; }
.detail__price-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--wavio-gray-100); }
.detail__price-row:last-child { border-bottom: none; }
.detail__price-type { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--wavio-black); }
.detail__price-amount { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--wavio-black); }

/* Hotels */
.detail__hotels { display: flex; flex-direction: column; gap: 0; }
.detail__hotel { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--wavio-gray-100); }
.detail__hotel:last-child { border-bottom: none; }
.detail__hotel-name { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--wavio-black); }
.detail__hotel-info { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-black); }

/* Boarding */
.detail__boarding { display: flex; flex-direction: column; gap: 8px; }
.detail__boarding-row { display: flex; gap: 16px; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--wavio-gray-100); }
.detail__boarding-row:last-child { border-bottom: none; }
.detail__boarding-time { font-family: var(--font-mono); font-weight: 500; font-size: 11px; color: var(--wavio-white); background: var(--wavio-black); border-radius: var(--wavio-radius-pill); padding: 3px 10px; width: auto; flex-shrink: 0; text-align: center; }
.detail__boarding-place { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--wavio-black); }

/* Right Panel (Sticky) */
.detail__right { position: sticky; top: 70px; }
.detail__panel { background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 28px; }
.detail__title { font-family: var(--font-display); font-weight: 500; font-size: 38px; color: var(--wavio-black); margin-bottom: 4px; letter-spacing: -0.02em; line-height: 1.05; }
.detail__subtitle { font-family: var(--font-display); font-weight: 500; font-size: 20px; line-height: 1.25; color: var(--wavio-black); margin-bottom: 20px; }
.detail__badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.detail__dates { margin-bottom: 24px; }
.detail__date-label { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-black); margin-bottom: 6px; display: block; letter-spacing: -0.01em; }
.detail__date-value { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--wavio-black); }
.detail__highlights { margin-bottom: 24px; }
.detail__hl-label { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-black); margin-bottom: 6px; display: block; letter-spacing: -0.01em; }
.detail__hl-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.detail__hl-list li { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--wavio-black); display: flex; align-items: center; gap: 8px; }
.detail__hl-list li::before { content: '✓'; width: 16px; height: 16px; border-radius: 50%; background: var(--wavio-accent); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--wavio-accent-ink); }
.detail__hl-more {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 10px;
	padding-left: 24px;
	font-family: var(--font-mono);
	font-weight: 500;
	font-size: 12px;
	color: var(--wavio-gray-700, #555);
	text-decoration: none;
	transition: color 0.2s, transform 0.2s;
}
.detail__hl-more:hover { color: var(--wavio-black); }
.detail__hl-more svg { transition: transform 0.2s; }
.detail__hl-more:hover svg { transform: translateY(2px); }
html { scroll-behavior: smooth; }
.detail__price-box { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 2px 16px; margin: 6px 0 16px; padding: 0; }
.detail__price-label { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-black); }
.detail__price { font-family: var(--font-display); font-weight: 500; font-size: 20px; color: var(--wavio-black); letter-spacing: -0.02em; }
.detail__price strong { font-size: inherit; }
.detail__price-sub { width: 100%; font-family: var(--font-mono); font-weight: 400; font-size: 12px; line-height: 1.4; color: var(--wavio-gray-600); margin-top: 2px; }
.detail__cta { display: block; width: 100%; text-align: center; font-family: var(--font-mono); font-weight: 500; font-size: 18px; padding: 14px; background: var(--wavio-accent); color: var(--wavio-accent-ink); border-radius: var(--wavio-radius-pill); transition: background 0.2s, color 0.2s; margin-bottom: 16px; }
.detail__cta:hover { background: var(--wavio-black); color: var(--wavio-white); }
.detail__trust { display: flex; flex-direction: column; gap: 4px; }
.detail__trust span { font-family: var(--font-display); font-weight: 500; font-size: 12px; color: var(--wavio-black); display: flex; align-items: center; gap: 6px; }
.detail__trust span::before { display: none; }
/* Treuepunkte Box mit Popup */
.detail__points { position: relative; margin-top: 12px; }
.detail__points-trigger { display: flex; align-items: center; gap: 14px; width: 100%; padding: 16px 20px; background: var(--wavio-gray-100); border: none; border-radius: var(--wavio-radius); text-align: left; font: inherit; cursor: pointer; transition: background 0.2s; }
.detail__points-trigger:hover { background: var(--wavio-accent-soft); }
.detail__points-icon { flex-shrink: 0; color: var(--wavio-black); }
.detail__points-text { display: flex; flex-direction: column; gap: 2px; }
.detail__points-title { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-black); display: block; }
.detail__points-hint { font-family: var(--font-mono); font-weight: 500; font-size: 11px; color: var(--wavio-gray-600); }
.detail__points-popup { position: fixed; top: 0; left: 0; width: 490px; height: 120px; display: flex; align-items: center; gap: 14px; padding: 8px 10px; background: rgba(245,245,243,0.97); backdrop-filter: blur(32px) saturate(1.6); -webkit-backdrop-filter: blur(32px) saturate(1.6); border-radius: var(--wavio-radius); box-shadow: 0 12px 32px rgba(0,0,0,0.18); opacity: 0; pointer-events: none; transform: scale(0.96); transform-origin: top right; transition: opacity 0.2s, transform 0.2s; z-index: 200; }
.detail__points-popup.is-open { opacity: 1; pointer-events: auto; transform: scale(1); }
.detail__points-close { position: absolute; top: 12px; right: 12px; padding: 4px 12px; display: flex; align-items: center; justify-content: center; background: var(--wavio-black); color: var(--wavio-white); border: none; border-radius: var(--wavio-radius-pill); font-size: 14px; line-height: 1; cursor: pointer; transition: background 0.2s; }
.detail__points-close:hover { background: var(--wavio-gray-800); }
.detail__points-image { width: 163px; height: 103px; border-radius: var(--wavio-radius-sm); object-fit: cover; flex-shrink: 0; }
.detail__points-info { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; padding-right: 40px; }
.detail__points-heading { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.detail__points-heading-title { font-family: var(--font-mono); font-weight: 500; font-size: 26px; line-height: 1; color: var(--wavio-black); }
.detail__points-heading-badge { font-family: var(--font-mono); font-weight: 500; font-size: 13px; padding: 2px 8px; background: var(--wavio-accent-soft); color: var(--wavio-black); border-radius: 8px; align-self: flex-start; margin-top: -2px; }
.detail__points-info-text { font-family: var(--font-display); font-weight: 500; font-size: 17px; color: var(--wavio-black); line-height: 1.2; margin: 0; }

/* PDF Link — Reisebedingungen / Reiseversicherung */
.detail__pdf-link { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: var(--wavio-black); text-decoration: none; padding: 10px 18px; background: var(--wavio-white); border-radius: var(--wavio-radius-pill); margin: 12px 0 8px; transition: background 0.2s; }
.detail__pdf-link:hover { background: var(--wavio-accent-soft); }
.detail__pdf-link svg { flex-shrink: 0; }

/* ─── OLD Detail Page (PDP) ──────────────────────── */
.pdp-hero { padding: 40px 0 80px; }
.pdp-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.pdp__image { width: 100%; border-radius: var(--wavio-radius); aspect-ratio: 4/3; object-fit: cover; }
.pdp__panel { position: sticky; top: 100px; }
.pdp__breadcrumb { font-family: var(--font-mono); font-size: 12px; color: var(--wavio-gray-400); margin-bottom: 12px; }
.pdp__title { font-family: var(--font-display); font-weight: 500; font-size: 32px; margin-bottom: 6px; }
.pdp__sub { font-size: 15px; color: var(--wavio-gray-600); margin-bottom: 24px; }
.pdp__dates { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.pdp__meta { list-style: none; margin-bottom: 24px; padding: 20px 0; border-top: 1px solid var(--wavio-gray-200); border-bottom: 1px solid var(--wavio-gray-200); }
.pdp__meta li { font-size: 14px; color: var(--wavio-gray-600); padding: 5px 0; display: flex; gap: 8px; }
.pdp__meta li strong { color: var(--wavio-text); font-weight: 500; }
.pdp__trust { display: flex; gap: 16px; margin-bottom: 24px; font-size: 13px; color: var(--wavio-gray-600); }
.pdp__trust span { display: flex; align-items: center; gap: 6px; }
.pdp__book-btn { display: block; width: 100%; text-align: center; font-family: var(--font-mono); font-weight: 500; font-size: 16px; padding: 16px; background: var(--wavio-accent); color: var(--wavio-accent-ink); border-radius: var(--wavio-radius-sm); transition: background 0.2s; }
.pdp__book-btn:hover { background: color-mix(in srgb, var(--wavio-accent) 85%, #000); }
.pdp-ablauf { padding: 0 0 100px; }
.pdp-ablauf__title { font-family: var(--font-display); font-weight: 500; font-size: 24px; margin-bottom: 24px; }
.pdp-ablauf__text { font-size: 15px; line-height: 1.8; color: var(--wavio-gray-600); max-width: 720px; }

/* ─── Footer ─────────────────────────────────────── */
.footer { background: var(--wavio-mint); color: var(--wavio-black); padding: 60px 0 40px; font-size: 13px; }
.footer .container { display: flex; justify-content: space-between; align-items: center; }
.footer a { color: var(--wavio-black); }
.footer a:hover { opacity: 0.7; }

/* ─── Full Footer (test variant) ──────────────────────── */
.footer--full .container { display: block; }
.footer--full__grid { display: grid; grid-template-columns: 1.6fr repeat(6, 1fr); gap: 32px; padding-bottom: 48px; border-bottom: 1px solid rgba(0,0,0,0.12); }
.footer--full__brand { display: flex; flex-direction: column; gap: 16px; }
.footer--full__logo img { height: 36px; filter: none; }
.footer--full__intro { font-family: var(--font-display); font-weight: 500; font-size: 13px; color: var(--wavio-black); line-height: 1.5; max-width: 280px; }
.footer--full__contact { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; }
.footer--full__contact a, .footer--full__contact span { font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: var(--wavio-black); }
.footer--full__col-title { font-family: var(--font-mono); font-weight: 500; font-size: 11px; color: rgba(0,0,0,0.55); letter-spacing: 0.08em; margin-bottom: 16px; }
.footer--full__list { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer--full__list a { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-black); transition: opacity 0.2s; }
.footer--full__list a:hover { opacity: 0.65; }
.footer--full__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; }
.footer--full__copy { font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: rgba(0,0,0,0.6); }
.footer--full__legal { display: flex; gap: 24px; }
.footer--full__legal a { font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: rgba(0,0,0,0.6); }
.footer--full__legal a:hover { color: var(--wavio-black); }
@media (max-width: 960px) {
    .footer--full__grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
    .footer--full__brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
    .footer--full__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer--full__bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* ─── Detail Mobile ─────────────────────────────── */
.detail__mobile-bar { display: none; }

@media (max-width: 960px) {
    .detail { padding: 0 0 80px; }
    .detail__grid { display: flex; flex-direction: column; gap: 0; padding: 0; }
    .detail__left { display: contents; }
    .detail__gallery { border-radius: 0; margin: 0 0 16px; order: 1; }
    .detail .container { padding: 0; }
    .detail__right { position: static; order: 2; margin-bottom: 16px; width: 100%; padding: 0 20px; }
    .detail__section { order: 3; margin-left: 20px; margin-right: 20px; align-self: stretch; width: auto; }
    .detail__img { aspect-ratio: 16/10; }
    .detail__panel { width: 100%; }
    .detail__day-label { width: 55px; }
    .detail__mobile-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; background: var(--wavio-white); border-top: 1px solid var(--wavio-gray-200); padding: 12px 20px; align-items: center; justify-content: space-between; gap: 16px; transform: translateY(100%); transition: transform 0.3s; }
    .detail__mobile-bar.is-visible { transform: translateY(0); }
    .detail__mobile-bar__price { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--wavio-black); }
    .detail__mobile-bar__price span { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--wavio-gray-600); }
    .detail__mobile-bar .detail__cta { width: auto; flex: 1; margin-bottom: 0; padding: 12px 24px; }
}

/* Contact Bubble */
/* Contact Bubble — photo toggle + horizontal expand bar */
.contact-bubble { position: fixed; bottom: 24px; right: 24px; z-index: 101; display: flex; align-items: center; transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s; }
.contact-bubble.is-hidden { opacity: 0; visibility: hidden; transform: translateY(20px); pointer-events: none; }
.contact-bubble__toggle { width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer; background: none; padding: 0; position: relative; z-index: 2; box-shadow: 0 4px 20px rgba(0,0,0,0.2); transition: transform 0.2s, box-shadow 0.2s; }
.contact-bubble__toggle:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }
.contact-bubble.is-open .contact-bubble__toggle { transform: scale(1); }
.contact-bubble__toggle-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }
.contact-bubble__toggle-badge { position: absolute; bottom: -2px; right: -2px; width: 22px; height: 22px; background: var(--wavio-mint); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid var(--wavio-white); color: var(--wavio-black); }

/* Horizontal bar — slides left */
.contact-bubble__bar { position: absolute; right: 0; display: flex; align-items: center; gap: 16px; background: var(--wavio-white); border-radius: 32px; box-shadow: 0 4px 32px rgba(0,0,0,0.12); padding: 12px 68px 12px 18px; white-space: nowrap; width: max-content; opacity: 0; visibility: hidden; transform: translateX(20px); transition: opacity 0.3s, transform 0.3s, visibility 0.3s; pointer-events: none; }
.contact-bubble.is-open .contact-bubble__bar { opacity: 1; visibility: visible; transform: translateX(0); pointer-events: auto; }

/* Stacked face circles */
.contact-bubble__bar-faces { display: flex; flex-shrink: 0; }
.contact-bubble__bar-faces img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 3px solid var(--wavio-white); margin-left: -14px; }
.contact-bubble__bar-faces img:first-child { margin-left: 0; }

/* Divider */
.contact-bubble__bar-divider { width: 1px; height: 36px; background: var(--wavio-black); flex-shrink: 0; }

/* Stat blocks (like reference: big number + small label) */
.contact-bubble__bar-stat { display: flex; flex-direction: column; gap: 1px; }
.contact-bubble__bar-number { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--wavio-black); text-decoration: none; letter-spacing: -0.02em; line-height: 1.2; }
.contact-bubble__bar-number:hover { text-decoration: underline; text-underline-offset: 2px; }
.contact-bubble__bar-label { font-family: var(--font-mono); font-weight: 500; font-size: 11px; color: var(--wavio-black); letter-spacing: 0.03em; display: flex; align-items: center; gap: 5px; text-decoration: none; }
a.contact-bubble__bar-label:hover { color: var(--wavio-gray-600); }
.contact-bubble__bar-label--mail { text-transform: none; }

@media (max-width: 960px) {
    .contact-bubble { bottom: 88px; }
    .contact-bubble__bar { right: -12px; bottom: 68px; white-space: normal; width: 260px; border-radius: 16px; padding: 16px; gap: 10px; transform: translateY(10px); flex-wrap: wrap; }
    .contact-bubble.is-open .contact-bubble__bar { transform: translateY(0); }
    .contact-bubble__bar-faces img { width: 36px; height: 36px; margin-left: -10px; }
    .contact-bubble__bar-divider { display: none; }
    .contact-bubble__bar-number { font-size: 15px; }
    .contact-bubble__bar-label { font-size: 10px; }
}

/* ─── Filiale Blocks (Pillar) ────────────────────── */
.filiale { padding: 80px 0; border-bottom: 1px solid var(--wavio-gray-200); }
.filiale__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.filiale--flip .filiale__grid { direction: rtl; }
.filiale--flip .filiale__grid > * { direction: ltr; }
.filiale__img-wrap { border-radius: var(--wavio-radius); overflow: hidden; }
.filiale__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.4s; }
.filiale__img-wrap:hover .filiale__img { transform: scale(1.03); }
.filiale__label { font-family: var(--font-mono); font-weight: 500; font-size: 11px; letter-spacing: 0.06em; color: var(--wavio-accent); background: color-mix(in srgb, var(--wavio-accent) 12%, transparent); padding: 4px 12px; border-radius: var(--wavio-radius-pill); display: inline-block; margin-bottom: 12px; }
.filiale__name { font-family: var(--font-display); font-weight: 500; font-size: clamp(32px, 3vw, 48px); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 16px; }
.filiale__desc { font-size: 16px; line-height: 1.6; color: var(--wavio-gray-600); margin-bottom: 28px; max-width: 480px; }
.filiale__meta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--wavio-gray-200); }
.filiale__meta-block { display: flex; align-items: center; gap: 12px; }
.filiale__meta-label { font-family: var(--font-mono); font-weight: 500; font-size: 11px; letter-spacing: 0.04em; color: var(--wavio-gray-400); width: 64px; flex-shrink: 0; }
.filiale__meta-value { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--wavio-black); display: flex; align-items: center; gap: 6px; }
.filiale__services { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.filiale__service { font-family: var(--font-mono); font-weight: 500; font-size: 12px; padding: 5px 14px; border-radius: var(--wavio-radius-pill); border: 1px solid var(--wavio-gray-200); color: var(--wavio-gray-600); }
.filiale__team-hint { font-size: 14px; color: var(--wavio-gray-500); margin-bottom: 28px; }
.filiale__team-count { font-weight: 500; color: var(--wavio-black); }
.filiale__cta { font-family: var(--font-mono); font-weight: 500; font-size: 14px; color: var(--wavio-black); text-decoration: none; padding: 10px 28px; border: 2px solid var(--wavio-black); border-radius: var(--wavio-radius-pill); display: inline-block; transition: all 0.2s; }
.filiale__cta:hover { background: var(--wavio-black); color: var(--wavio-white); }

/* dark variant (last block) */
.filiale--dark { background: var(--wavio-black); border-bottom: none; }
.filiale--dark .filiale__name { color: var(--wavio-white); }
.filiale--dark .filiale__desc { color: rgba(255,255,255,0.55); }
.filiale--dark .filiale__meta { border-color: rgba(255,255,255,0.12); }
.filiale--dark .filiale__meta-label { color: rgba(255,255,255,0.35); }
.filiale--dark .filiale__meta-value { color: var(--wavio-white); }
.filiale--dark .filiale__service { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.5); }
.filiale--dark .filiale__team-hint { color: rgba(255,255,255,0.4); }
.filiale--dark .filiale__team-count { color: var(--wavio-white); }
.filiale--dark .filiale__cta { border-color: var(--wavio-white); color: var(--wavio-white); }
.filiale--dark .filiale__cta:hover { background: var(--wavio-white); color: var(--wavio-black); }

@media (max-width: 960px) {
    .filiale { padding: 48px 0; }
    .filiale__grid { grid-template-columns: 1fr; gap: 32px; }
    .filiale--flip .filiale__grid { direction: ltr; }
    .filiale__name { font-size: clamp(28px, 5vw, 36px); }
}

/* ─── Page Section (generic) ───────────────────────── */
.page-section { padding: 24px 0 48px; }   /* Section-Padding global −40% (war 40px 0 80px) */
.page-section__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(36px, 3.5vw, 56px); color: var(--wavio-black); margin-bottom: 12px; letter-spacing: -0.03em; line-height: 1; }
.page-section__text { font-family: var(--font-display); font-weight: 500; font-size: 16px; line-height: 1.5; color: var(--wavio-black); max-width: 680px; margin-bottom: 40px; }

/* ─── Dark Section (contrast breaker) ──────────────── */
.dark-section { background: var(--wavio-black); color: var(--wavio-white); padding: 60px 0; }
.dark-section__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 2.5vw, 40px); color: var(--wavio-white); margin-bottom: 16px; letter-spacing: -0.02em; }
.dark-section__text { font-family: var(--font-display); font-weight: 500; font-size: 16px; line-height: 1.5; color: rgba(255,255,255,0.6); }
.dark-section .btn { background: var(--wavio-white); color: var(--wavio-black); border-color: var(--wavio-white); }
.dark-section .btn:hover { background: var(--wavio-mint); border-color: var(--wavio-mint); }
.dark-section--light { background: var(--wavio-bg); color: var(--wavio-black); }
.dark-section--light .dark-section__title { color: var(--wavio-black); }
.dark-section--light .dark-section__text { color: var(--wavio-gray-600); }
.dark-section--light .stat__number { color: var(--wavio-black); }
.dark-section--light .stat__label { color: var(--wavio-gray-600); }
.dark-section--light .stats-grid { border-top-color: var(--wavio-gray-200); }

/* ─── Flow Grid (Laender/Kategorien) ───────────────── */
/* ─── Quick Kat Grid ─────────────────────────────────── */
.kat-quick-section { padding: 60px 0 80px; }
.kat-quick-section__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 2.5vw, 40px); color: var(--wavio-black); margin-bottom: 32px; letter-spacing: -0.02em; }
.kat-quick-section__intro { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--wavio-gray-600); max-width: 640px; margin-bottom: 32px; line-height: 1.5; }
.kat-quick-section + .kat-quick-section { padding-top: 0; }
.kat-quick-grid { display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; }
.kat-quick-btn { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--wavio-black); cursor: pointer; transition: opacity 0.3s ease; padding: 4px 0; }
.kat-quick-btn:hover { opacity: 0.5; }
.kat-quick-btn--active { pointer-events: none; }
.kat-quick-btn--active .kat-quick-name { position: relative; }
.kat-quick-btn--active .kat-quick-name::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0.1em; height: 3px; background: var(--wavio-accent); z-index: -1; }
.kat-quick-icon { display: inline-flex; opacity: 0.4; }
.kat-quick-flag { display: inline-flex; align-items: center; justify-content: center; font-size: clamp(22px, 2.4vw, 32px); line-height: 1; flex-shrink: 0; }
.kat-quick-name { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 36px); font-weight: 700; letter-spacing: -0.03em; white-space: nowrap; line-height: 1.2; }
.kat-quick-img { width: clamp(34px, 3.5vw, 48px); height: clamp(34px, 3.5vw, 48px); border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.kat-quick-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kat-quick-count { display: inline-flex; align-items: center; justify-content: center; min-width: 22px; height: 22px; border-radius: var(--wavio-radius-pill); border: 1.5px solid rgba(0,0,0,0.15); font-family: var(--font-mono); font-size: 10px; font-weight: 500; color: var(--wavio-gray-600); padding: 0 6px; position: relative; top: -0.6em; }

/* Compact variant — nur Überschrift kleiner (matches .tour-section__title) */
.kat-quick-section--compact .kat-quick-section__title { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--wavio-black); letter-spacing: -0.01em; margin-bottom: 20px; }

/* ─── Stat Numbers ─────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 48px 0; }
.stat { text-align: center; border-right: 1px solid rgba(255,255,255,0.1); padding: 0 20px; }
.stat:last-child { border-right: none; }
.stat__number { font-family: var(--font-display); font-weight: 500; font-size: clamp(36px, 3vw, 56px); color: var(--wavio-white); letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; }
.stat__label { font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }

/* ─── Archive Filters ──────────────────────────────── */
.tour-archive { padding: 32px 0 80px; }
.archive-filters { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; align-items: center; }
.archive-filters__search { display: flex; align-items: center; gap: 8px; background: var(--wavio-white); border: 1.5px solid var(--wavio-gray-200); border-radius: var(--wavio-radius-pill); padding: 8px 16px; flex: 1; min-width: 200px; }
.archive-filters__search svg { flex-shrink: 0; color: var(--wavio-gray-400); }
.archive-filters__input { border: none; outline: none; background: none; font-family: var(--font-display); font-weight: 500; font-size: 14px; width: 100%; color: var(--wavio-black); }
.archive-filters__input::placeholder { color: var(--wavio-gray-400); }
.archive-filters__selects { display: flex; gap: 8px; flex-wrap: wrap; }
.archive-filters__select { font-family: var(--font-mono); font-weight: 500; font-size: 13px; padding: 8px 16px; border-radius: var(--wavio-radius-pill); border: 1.5px solid var(--wavio-gray-200); background: var(--wavio-white); color: var(--wavio-black); cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.archive-filters__select:hover { border-color: var(--wavio-black); }
.archive-pagination { display: flex; align-items: center; gap: 8px; justify-content: center; padding-top: 40px; }
.archive-pagination__current { font-family: var(--font-mono); font-weight: 500; font-size: 14px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--wavio-radius-pill); background: var(--wavio-black); color: var(--wavio-white); }
.archive-pagination__link { font-family: var(--font-mono); font-weight: 500; font-size: 14px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--wavio-radius-pill); border: 1.5px solid var(--wavio-gray-200); color: var(--wavio-black); transition: border-color 0.2s; }
.archive-pagination__link:hover { border-color: var(--wavio-black); }
.archive-pagination__next { font-family: var(--font-mono); font-weight: 500; font-size: 14px; padding: 8px 20px; border-radius: var(--wavio-radius-pill); border: 1.5px solid var(--wavio-gray-200); color: var(--wavio-black); transition: all 0.2s; }
.archive-pagination__next:hover { border-color: var(--wavio-black); }

/* ─── Standorte Overview ───────────────────────────── */
.standorte-overview { padding: 40px 0 0; }
.standorte-overview__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(32px, 3vw, 48px); color: var(--wavio-black); margin-bottom: 8px; letter-spacing: -0.02em; }
.standorte-overview__text { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--wavio-black); margin-bottom: 32px; }
.standorte-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 48px; }
.standort-card { display: block; background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 24px; text-decoration: none; color: var(--wavio-black); transition: box-shadow 0.2s, transform 0.2s; }
.standort-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.standort-card--active { background: var(--wavio-black); color: var(--wavio-white); }
.standort-card--active .standort-card__name { color: var(--wavio-white); }
.standort-card--active .standort-card__address { color: rgba(255,255,255,0.6); }
.standort-card--active .standort-card__phone { color: var(--wavio-white); }
.standort-card__live { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-weight: 500; font-size: 11px; margin-bottom: 12px; }
.standort-card__dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.standort-card__dot--open { background: #22c55e; }
.standort-card__dot--closed { background: var(--wavio-gray-400); }
.standort-card__name { font-family: var(--font-display); font-weight: 500; font-size: 20px; color: var(--wavio-black); margin-bottom: 6px; letter-spacing: -0.01em; }
.standort-card__address { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-gray-600); margin-bottom: 8px; line-height: 1.3; }
.standort-card__phone { font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: var(--wavio-black); }

/* ─── Standort Detail ──────────────────────────────── */
.standort-detail { padding: 0 0 80px; }
.standort-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.standort-detail__section { background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 28px; margin-bottom: 12px; }
.standort-detail__h2 { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--wavio-black); margin-bottom: 20px; letter-spacing: -0.02em; }
.standort-detail__live-big { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 500; font-size: 15px; color: #16a34a; margin-bottom: 24px; padding: 12px 16px; background: #f0fdf4; border-radius: var(--wavio-radius); }
.standort-detail__contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.standort-detail__block { display: flex; flex-direction: column; gap: 4px; }
.standort-detail__label { font-family: var(--font-display); font-weight: 500; font-size: 13px; color: var(--wavio-black); opacity: 0.55; }
.standort-detail__value { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--wavio-black); text-decoration: none; }
.standort-detail__value--link { text-decoration: underline; text-underline-offset: 2px; }
.standort-detail__hours { display: flex; flex-direction: column; gap: 0; }
.standort-detail__hour-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 4px 12px; padding: 10px 0; border-bottom: 1px solid var(--wavio-gray-100); }
.standort-detail__hour-row:last-child { border-bottom: none; }
.standort-detail__hour-day { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-black); flex-shrink: 0; }
.standort-detail__hour-time { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-black); text-align: right; }
.standort-detail__hour-row--closed .standort-detail__hour-time { color: var(--wavio-gray-400); }
.standort-detail__map { position: sticky; top: 70px; }
.standort-detail__map-placeholder { background: var(--wavio-gray-100); border-radius: var(--wavio-radius); aspect-ratio: 1/1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--wavio-gray-400); font-family: var(--font-mono); font-size: 14px; }

/* ─── Team Grid ────────────────────────────────────── */
.team-department { margin-bottom: 48px; }
.team-department__title { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--wavio-black); margin-bottom: 16px; letter-spacing: -0.01em; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.team-grid--compact { grid-template-columns: repeat(4, 1fr); }
.linien-info .team-grid { grid-template-columns: repeat(3, 1fr); }
/* Standort-Pages (Reisebüros): 3-spaltig — passt zur engeren Main-Spalte */
.standort-page__main .team-grid { grid-template-columns: repeat(3, 1fr); }
.team-card { background: var(--wavio-white); border-radius: var(--wavio-radius); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.team-card__photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; background: var(--wavio-gray-100); }
.team-card__info { padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.team-card__header { display: flex; justify-content: space-between; align-items: center; gap: 8px; width: 100%; margin-bottom: 8px; }
.team-card__name { font-family: var(--font-display); font-weight: 500; font-size: 17px; color: var(--wavio-black); line-height: 1.2; letter-spacing: -0.01em; }
.team-card__position { display: inline-flex; align-items: center; font-family: var(--font-mono); font-weight: 500; font-size: 11px; color: var(--wavio-black); background: var(--wavio-mint); border-radius: var(--wavio-radius-pill); padding: 3px 10px; white-space: nowrap; flex-shrink: 0; }
.team-card__phone,
.team-card__detail { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: var(--wavio-black); text-decoration: none; max-width: 100%; }
.team-card__phone svg,
.team-card__detail svg { flex-shrink: 0; opacity: 0.5; transition: opacity 0.2s; }
.team-card__phone:hover svg,
.team-card__detail:hover svg { opacity: 1; }
.team-card__phone:hover,
.team-card__detail:hover { color: var(--wavio-black); text-decoration: underline; text-underline-offset: 2px; }
.team-card__detail span { overflow: hidden; text-overflow: ellipsis; }
.team-card__contact { font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: var(--wavio-black); text-decoration: none; }
.team-card__contact:hover { text-decoration: underline; }

/* ─── Jobs Cards (tour-card Pattern) ───────────────── */
.jobs-list-section { padding: 32px 0 80px; }
.joblist__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.joblist__headline { font-family: var(--font-display); font-weight: 500; font-size: 28px; color: var(--wavio-black); letter-spacing: -0.01em; margin: 0; }
.joblist__count { font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: var(--wavio-gray-600); }
.jobcards { display: flex; flex-direction: column; gap: 12px; }
.jobcard { display: flex; align-items: center; gap: 24px; background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 24px 28px; text-decoration: none; color: var(--wavio-black); transition: box-shadow 0.3s; }
.jobcard:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.jobcard__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 12px; }
.jobcard__title { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--wavio-black); margin: 0; letter-spacing: -0.01em; line-height: 1.2; }
.jobcard__gender { color: var(--wavio-black); font-size: 0.75em; font-weight: 500; margin-left: 4px; }
.jobcard__excerpt { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-gray-600); line-height: 1.45; margin: 0; max-width: 640px; }
.jobcard__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.jobcard__badge { font-family: var(--font-mono); font-weight: 500; font-size: 13px; padding: 6px 14px; border-radius: var(--wavio-radius-pill); background: var(--wavio-gray-100); color: var(--wavio-black); }
.jobcard__badge--accent { background: var(--wavio-accent); color: var(--wavio-accent-ink); }
.jobcard__cta { display: inline-flex; align-items: center; font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: var(--wavio-black); background: transparent; border: 2px solid var(--wavio-black); padding: 9px 20px; border-radius: var(--wavio-radius-pill); transition: all 0.25s; white-space: nowrap; flex-shrink: 0; }
.jobcard:hover .jobcard__cta { border-color: var(--wavio-accent); background: var(--wavio-accent); color: var(--wavio-accent-ink); }

/* ─── Old Job Cards (kept for compat) ──────────────── */
.jobs-count { font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: var(--wavio-gray-600); margin-bottom: 16px; }
.job-card { display: flex; align-items: center; gap: 20px; background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 24px 28px; margin-bottom: 8px; text-decoration: none; color: var(--wavio-black); transition: box-shadow 0.2s; }
.job-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.job-card__main { flex: 1; min-width: 0; }
.job-card__title { font-family: var(--font-display); font-weight: 500; font-size: 20px; color: var(--wavio-black); margin-bottom: 8px; letter-spacing: -0.01em; }
.job-card__facts { display: flex; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.job-card__fact { font-family: var(--font-mono); font-weight: 500; font-size: 12px; padding: 4px 12px; border-radius: var(--wavio-radius-pill); background: var(--wavio-gray-100); color: var(--wavio-black); }
.job-card__excerpt { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-gray-600); line-height: 1.4; }
.job-card__badges { display: flex; gap: 6px; flex-shrink: 0; }
.job-card__badge { font-family: var(--font-mono); font-weight: 500; font-size: 11px; padding: 4px 10px; border-radius: var(--wavio-radius-pill); background: var(--wavio-mint); color: var(--wavio-black); }
.job-card__arrow { font-size: 20px; color: var(--wavio-gray-400); transition: transform 0.2s, color 0.2s; flex-shrink: 0; }
.job-card:hover .job-card__arrow { transform: translateX(4px); color: var(--wavio-black); }
.jobs-initiative { background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 32px; margin-top: 32px; text-align: center; }
.jobs-initiative__title { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--wavio-black); margin-bottom: 8px; }
.jobs-initiative__text { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--wavio-gray-600); margin-bottom: 20px; }

/* Initiativbewerbung schlicht (Linienverkehr-Stil) */
.jobs-initiative-block { margin-top: 48px; max-width: 560px; }
.jobs-initiative-block__title { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--wavio-black); margin: 0 0 10px; letter-spacing: -0.01em; }
.jobs-initiative-block__text { font-family: var(--font-display); font-weight: 500; font-size: 16px; line-height: 1.5; color: var(--wavio-black); margin: 0 0 16px; }

/* GF-Kontakt Block: Card 1/4 links + Info 3/4 rechts */
.jobs-hr { display: grid; grid-template-columns: 1fr 3fr; gap: 48px; align-items: center; margin-top: 80px; }
.jobs-hr__intro { max-width: 640px; }
.jobs-hr__h3 { font-family: var(--font-display); font-weight: 500; font-size: 24px; color: var(--wavio-black); margin: 0 0 14px; letter-spacing: -0.015em; line-height: 1.15; }
.jobs-hr__note { font-family: var(--font-display); font-weight: 500; font-size: 16px; line-height: 1.55; color: var(--wavio-black); margin: 0; max-width: 560px; }
.jobs-hr__card { margin: 0; }

/* ─── Job Detail ───────────────────────────────────── */
.job-detail { display: block; }
.job-detail__content { display: flex; flex-direction: column; max-width: 760px; }
.job-detail__apply { margin-top: 8px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.job-detail__apply .detail__cta { display: inline-block; width: auto; padding: 14px 32px; margin: 0; }
.job-detail__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(32px, 4vw, 48px); color: var(--wavio-black); margin: 0 0 16px; letter-spacing: -0.02em; line-height: 1.05; }
.job-detail__facts { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.job-detail__badges { display: flex; gap: 6px; margin-bottom: 32px; }
.job-detail__section { margin-bottom: 32px; }
.job-detail__h2 { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--wavio-black); margin-bottom: 16px; letter-spacing: -0.02em; }
.job-detail__text { font-family: var(--font-display); font-weight: 500; font-size: 16px; line-height: 1.5; color: var(--wavio-black); margin-bottom: 12px; }
.job-detail__sidebar { position: sticky; top: 70px; }
.job-detail__panel { background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 28px; margin-bottom: 12px; }
.job-detail__panel-title { font-family: var(--font-display); font-weight: 500; font-size: 20px; color: var(--wavio-black); margin-bottom: 8px; }
.job-detail__panel-text { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-gray-600); margin-bottom: 20px; line-height: 1.4; }
.job-detail__kontakt { margin-bottom: 20px; }
.job-detail__phone { display: block; text-align: center; font-family: var(--font-mono); font-weight: 500; font-size: 14px; color: var(--wavio-black); padding: 10px; border: 1.5px solid var(--wavio-gray-200); border-radius: var(--wavio-radius-pill); transition: border-color 0.2s; }
.job-detail__phone:hover { border-color: var(--wavio-black); }
.job-detail__back { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: var(--wavio-gray-600); text-decoration: none; padding: 12px 0; transition: color 0.2s; }
.job-detail__back:hover { color: var(--wavio-black); }

/* ─── Fuhrpark ─────────────────────────────────────── */
.fuhrpark-category { margin-bottom: 48px; }
.fuhrpark-category__title { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--wavio-black); margin-bottom: 16px; letter-spacing: -0.01em; }
.fuhrpark-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
/* Wenn die Page eine Sticky-Sidebar hat (Content-Spalte schmaler), wird's 3-spaltig */
.standort-page__main .fuhrpark-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px) {
	.fuhrpark-grid,
	.standort-page__main .fuhrpark-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.fuhrpark-grid,
	.standort-page__main .fuhrpark-grid { grid-template-columns: 1fr; }
}
.fuhrpark-card { display: flex; flex-direction: column; background: var(--wavio-white); border-radius: var(--wavio-radius); overflow: hidden; transition: box-shadow 0.2s; text-decoration: none; color: inherit; }
.fuhrpark-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.fuhrpark-card:hover .fuhrpark-card__cta { color: var(--wavio-black); }
.fuhrpark-card:hover .fuhrpark-card__cta span { transform: translateX(3px); }
.fuhrpark-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-mono);
	font-weight: 500;
	font-size: 13px;
	color: var(--wavio-gray-700, #555);
	margin-top: 14px;
	transition: color 0.2s;
}
.fuhrpark-card__cta span { display: inline-block; transition: transform 0.2s; }
.fuhrpark-card__image { aspect-ratio: 16/9; overflow: hidden; }
.fuhrpark-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.fuhrpark-card:hover .fuhrpark-card__image img { transform: scale(1.03); }
.fuhrpark-card__body { padding: 20px; }
.fuhrpark-card__name { font-family: var(--font-display); font-weight: 500; font-size: 20px; color: var(--wavio-black); margin-bottom: 8px; letter-spacing: -0.01em; }
.fuhrpark-card__specs { display: flex; gap: 8px; margin-bottom: 10px; }
.fuhrpark-card__spec { font-family: var(--font-mono); font-weight: 500; font-size: 12px; padding: 4px 12px; border-radius: var(--wavio-radius-pill); background: var(--wavio-gray-100); color: var(--wavio-black); }
.fuhrpark-card__features { display: flex; gap: 6px; flex-wrap: wrap; }
.fuhrpark-card__feature { font-family: var(--font-mono); font-weight: 500; font-size: 11px; padding: 3px 10px; border-radius: var(--wavio-radius-pill); background: var(--wavio-mint); color: var(--wavio-black); }
.fuhrpark-cta { background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 32px; text-align: center; }
.fuhrpark-cta__title { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--wavio-black); margin-bottom: 8px; }
.fuhrpark-cta__text { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--wavio-gray-600); margin-bottom: 20px; }

/* ─── Kontakt Form ─────────────────────────────────── */
.kontakt-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.kontakt-form-wrap { }
.kontakt-form__intro { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--wavio-gray-600); margin-bottom: 28px; }
.kontakt-form { display: flex; flex-direction: column; gap: 16px; }
.kontakt-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kontakt-form__field { display: flex; flex-direction: column; gap: 6px; }
.kontakt-form__label { font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: var(--wavio-black); }
.kontakt-form__input { font-family: var(--font-display); font-weight: 500; font-size: 15px; padding: 10px 14px; border: 1.5px solid var(--wavio-gray-200); border-radius: var(--wavio-radius); background: var(--wavio-white); color: var(--wavio-black); outline: none; transition: border-color 0.2s; }
.kontakt-form__input:focus { border-color: var(--wavio-black); }
.kontakt-form__input::placeholder { color: var(--wavio-gray-400); }
.kontakt-form__textarea { font-family: var(--font-display); font-weight: 500; font-size: 15px; padding: 10px 14px; border: 1.5px solid var(--wavio-gray-200); border-radius: var(--wavio-radius); background: var(--wavio-white); color: var(--wavio-black); outline: none; resize: vertical; transition: border-color 0.2s; }
.kontakt-form__textarea:focus { border-color: var(--wavio-black); }
.kontakt-form__textarea::placeholder { color: var(--wavio-gray-400); }
.kontakt-info { position: sticky; top: 70px; }
.kontakt-info__block { background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 24px; margin-bottom: 12px; }
.kontakt-info__title { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--wavio-black); margin-bottom: 12px; letter-spacing: -0.01em; }
.kontakt-info__text { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--wavio-black); line-height: 1.4; margin-bottom: 8px; }
.kontakt-info__link { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: var(--wavio-black); text-decoration: none; margin-bottom: 4px; }
.kontakt-info__link:hover { text-decoration: underline; }
.kontakt-standorte { display: flex; flex-direction: column; gap: 0; }
.kontakt-standort { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--wavio-gray-100); text-decoration: none; color: var(--wavio-black); transition: color 0.2s; }
.kontakt-standort:last-child { border-bottom: none; }
.kontakt-standort:hover { color: var(--wavio-gray-600); }
.kontakt-standort__name { font-family: var(--font-display); font-weight: 500; font-size: 15px; }
.kontakt-standort__live { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-weight: 500; font-size: 11px; }
.kontakt-main { min-width: 0; }
.kontakt-faq { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.kontakt-faq .detail__section { margin-bottom: 0; opacity: 1; transform: none; }

/* ─── Anfrage Form ──────────────────────────────────── */
.anfrage-section { padding: 0 0 80px; }
.anfrage-form { display: flex; flex-direction: column; gap: 12px; }
.anfrage-block { border: none; padding: 28px; background: var(--wavio-white); border-radius: var(--wavio-radius); display: flex; flex-direction: column; gap: 16px; }
.anfrage-block__legend { display: flex; align-items: center; gap: 14px; padding: 0; margin: 0 0 8px; font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--wavio-black); letter-spacing: -0.015em; line-height: 1.2; }
.anfrage-block__step { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--wavio-mint); color: var(--wavio-black); font-family: var(--font-mono); font-weight: 500; font-size: 12px; letter-spacing: -0.01em; flex-shrink: 0; }
.anfrage-block .kontakt-form__row { margin: 0; }
.anfrage-block > div[data-show] { display: flex; flex-direction: column; gap: 16px; }
.anfrage-block > div[data-show] > * { margin: 0; }
.anfrage-checks { display: flex; flex-wrap: wrap; gap: 8px; }
.anfrage-check { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: var(--wavio-gray-100); border-radius: var(--wavio-radius-pill); font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: var(--wavio-black); cursor: pointer; transition: background 0.2s; user-select: none; }
.anfrage-check:hover { background: var(--wavio-gray-200); }
.anfrage-check input { margin: 0; accent-color: var(--wavio-black); }
.anfrage-check:has(input:checked) { background: var(--wavio-mint); }
.anfrage-submit { display: inline-block; width: auto; align-self: flex-start; margin: 8px 0 0; padding: 14px 32px; }
.anfrage-note { font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: var(--wavio-gray-600); margin: 0; }

/* Filter-Pills im Anfrage-Block auch mit Mint-Aktive */
.anfrage-block .tour-filter__btn--active { background: var(--wavio-accent); color: var(--wavio-accent-ink); border-color: var(--wavio-accent); }
.kontakt-quick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.kontakt-quick__item { display: flex; flex-direction: column; gap: 14px; padding: 24px 28px; background: var(--wavio-white); border-radius: var(--wavio-radius); text-decoration: none; color: var(--wavio-black); font-family: var(--font-display); font-weight: 500; font-size: 16px; letter-spacing: -0.01em; line-height: 1.3; transition: box-shadow 0.2s, transform 0.2s; }
.kontakt-quick__item:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); transform: translateY(-2px); }
.kontakt-quick__icon { flex-shrink: 0; color: var(--wavio-black); display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--wavio-mint); }

/* ─── Schulreisen ──────────────────────────────────── */
.schulreisen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.schulreisen-section { margin-bottom: 32px; }
.schulreisen-section__title { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--wavio-black); margin-bottom: 16px; letter-spacing: -0.02em; }
.schulreisen-pakete { display: flex; flex-direction: column; gap: 16px; }
.schulreisen-paket { display: flex; gap: 16px; align-items: flex-start; background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 20px; }
.schulreisen-paket__icon { flex-shrink: 0; color: var(--wavio-black); }
.schulreisen-paket__name { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--wavio-black); margin-bottom: 6px; letter-spacing: -0.01em; }
.schulreisen-paket__text { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--wavio-black); line-height: 1.5; }
.schulreisen-anfrage { position: sticky; top: 70px; }
.schulreisen-anfrage__panel { background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 28px; }
.schulreisen-anfrage__title { font-family: var(--font-display); font-weight: 500; font-size: 20px; color: var(--wavio-black); margin-bottom: 8px; }
.schulreisen-anfrage__text { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-gray-600); margin-bottom: 20px; line-height: 1.4; }
.anfrage-cta__tel { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--wavio-gray-200); display: flex; flex-direction: column; gap: 4px; }
.anfrage-cta__tel-label { font-family: var(--font-mono); font-weight: 500; font-size: 11px; color: var(--wavio-gray-600); letter-spacing: 0.05em; }
.anfrage-cta__tel-number { font-family: var(--font-mono); font-weight: 500; font-size: 20px; color: var(--wavio-black); text-decoration: none; letter-spacing: -0.02em; }
.anfrage-cta__tel-number:hover { text-decoration: underline; text-underline-offset: 2px; }

/* ─── Tabs ─────────────────────────────────────────── */
.tab-nav { display: flex; gap: 4px; margin-bottom: 32px; border-bottom: 1.5px solid var(--wavio-gray-200); }
.tab-nav__btn { font-family: var(--font-mono); font-weight: 500; font-size: 14px; padding: 10px 20px; background: none; color: var(--wavio-gray-600); border: none; border-bottom: 2px solid transparent; cursor: pointer; transition: color 0.2s, border-color 0.2s; margin-bottom: -1.5px; }
.tab-nav__btn:hover { color: var(--wavio-black); }
.tab-nav__btn--active { color: var(--wavio-black); border-bottom-color: var(--wavio-black); }
.tab-panel { display: none; }
.tab-panel--active { display: block; }

/* ─── Linien & Taxi ────────────────────────────────── */
.linien-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.linien-section { margin-bottom: 48px; }
.linien-section:has(.linien-offer) { margin-bottom: 80px; }
.linien-section__title { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--wavio-black); margin-bottom: 20px; letter-spacing: -0.01em; }
.linien-section__text { font-family: var(--font-display); font-weight: 500; font-size: 16px; line-height: 1.5; color: var(--wavio-black); margin-bottom: 16px; }
.linien-section__rich p { font-family: var(--font-display); font-weight: 500; font-size: 16px; line-height: 1.5; color: var(--wavio-black); margin-bottom: 16px; }
.linien-section__rich p:last-child { margin-bottom: 0; }
.linien-section__rich a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.linien-section__rich strong { font-weight: 600; }
.linien-section__rich ul, .linien-section__rich ol { margin: 0 0 16px; padding-left: 1.25em; }
.linien-section__rich ul:last-child, .linien-section__rich ol:last-child { margin-bottom: 0; }
.linien-section__rich li { font-family: var(--font-display); font-weight: 500; font-size: 16px; line-height: 1.5; color: var(--wavio-black); margin-bottom: 6px; }
.linien-section__rich li:last-child { margin-bottom: 0; }
.linien-offer { margin-top: 48px; }
.linien-offer__sub { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--wavio-black); letter-spacing: -0.01em; margin-bottom: 20px; }
.linien-list { display: flex; flex-direction: column; gap: 8px; }
.linien-route { display: flex; align-items: center; gap: 16px; padding: 14px 20px; background: var(--wavio-white); border-radius: var(--wavio-radius); }
.linien-route__nr { font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: var(--wavio-white); background: var(--wavio-black); border-radius: var(--wavio-radius-pill); padding: 3px 12px; min-width: 48px; text-align: center; }
.linien-route__name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--wavio-black); letter-spacing: -0.01em; }
.linien-contact { display: flex; flex-direction: column; gap: 12px; }
.linien-contact__item { display: flex; flex-direction: column; gap: 2px; }
.linien-contact__label { font-family: var(--font-display); font-weight: 500; font-size: 12px; color: var(--wavio-black); }
.linien-contact__value { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--wavio-black); text-decoration: none; }
.linien-contact__value:hover { text-decoration: underline; }
.linien-sidebar { position: sticky; top: 70px; }
.linien-sidebar__card { background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 20px; margin-bottom: 12px; }
.linien-sidebar__card--highlight { background: var(--wavio-mint); color: var(--wavio-black); }
.linien-sidebar__card--highlight .linien-sidebar__title { color: var(--wavio-black); }
.linien-sidebar__card--highlight .taxi-hotline { color: var(--wavio-black); }
.linien-sidebar__card--highlight .open-now__status { color: var(--wavio-black); }
.linien-sidebar__card--highlight .open-now__today { color: rgba(0,0,0,0.65); }
.linien-sidebar__card--highlight .open-now__bar { background: rgba(0,0,0,0.15); }
.linien-sidebar__card--highlight .open-now__bar-fill { background: var(--wavio-black); }
.linien-sidebar__card--highlight .open-now__bar-now { background: var(--wavio-black); }
.linien-sidebar__card--highlight .open-now__bar-gap { background: rgba(255,255,255,0.45); }
.linien-sidebar__card--highlight .standort-detail__hours { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.15); }
.linien-sidebar__card--highlight .standort-detail__hour-row { border-bottom-color: rgba(0,0,0,0.08); }
.linien-sidebar__card--highlight .standort-detail__hour-day,
.linien-sidebar__card--highlight .standort-detail__hour-time { color: var(--wavio-black); }
.linien-sidebar__card--highlight .standort-detail__hour-row--closed .standort-detail__hour-time { color: rgba(0,0,0,0.45); }
.linien-sidebar__title { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-black); margin-bottom: 10px; }
.linien-sidebar__text { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-black); line-height: 1.5; margin-bottom: 16px; }
.linien-sidebar__phone { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 18px; color: var(--wavio-black); text-decoration: none; margin-bottom: 4px; }
.linien-sidebar__mail { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: rgba(255,255,255,0.75); text-decoration: none; margin-bottom: 12px; }
.linien-sidebar__mail:hover { color: var(--wavio-white); }
.linien-sidebar__hours { font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: var(--wavio-gray-600); }
.open-now { display: flex; flex-direction: column; gap: 8px; margin-top: 0; }
.open-now__line { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.open-now__status { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 500; font-size: 13px; color: var(--wavio-white); }
.open-now__today { font-family: var(--font-display); font-weight: 500; font-size: 13px; color: rgba(255,255,255,0.65); }
.open-now__bar { position: relative; width: 100%; height: 3px; background: rgba(255,255,255,0.12); border-radius: 2px; }
.open-now__bar-fill { height: 100%; background: #4ade80; border-radius: 2px; transition: width 0.4s ease; }
.open-now__bar-now { position: absolute; top: -2px; width: 2px; height: 7px; background: var(--wavio-white); border-radius: 1px; transform: translateX(-50%); }
.open-now__bar-gap { position: absolute; top: 0; height: 100%; background: rgba(255,255,255,0.25); }
.open-now--closed .open-now__bar-fill { background: #f87171; }
.linien-sidebar__link { font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: var(--wavio-black); text-decoration: underline; text-underline-offset: 2px; }
.taxi-hotline { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 22px; color: var(--wavio-white); text-decoration: none; margin-bottom: 16px; letter-spacing: -0.01em; }
.taxi-services { display: flex; flex-direction: column; gap: 12px; }
.taxi-service { display: flex; gap: 16px; align-items: flex-start; background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 20px; }
a.taxi-service, .taxi-service--link { text-decoration: none; color: inherit; transition: box-shadow 0.2s; }
a.taxi-service:hover, .taxi-service--link:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.taxi-service svg { flex-shrink: 0; color: var(--wavio-black); margin-top: 2px; }
.taxi-service__name { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--wavio-black); margin-bottom: 6px; letter-spacing: -0.01em; }
.taxi-service__text { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--wavio-black); line-height: 1.5; }
.taxi-customers { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.taxi-customers li { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--wavio-black); padding: 14px 20px; background: var(--wavio-white); border-radius: var(--wavio-radius); }
.taxi-prices { display: flex; flex-direction: column; gap: 0; }
.taxi-price { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--wavio-gray-100); }
.taxi-price:last-child { border-bottom: none; }
.taxi-price__route { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-black); }
.taxi-price__amount { font-family: var(--font-mono); font-weight: 500; font-size: 14px; color: var(--wavio-black); }

/* Bus Charter Preise */
.charter-prices { background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 20px 24px; display: flex; flex-direction: column; }
.charter-price { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--wavio-gray-100); }
.charter-price:first-child { padding-top: 0; }
.charter-price:last-child { border-bottom: none; padding-bottom: 0; }
.charter-price__route { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--wavio-black); }
.charter-price__amount { font-family: var(--font-mono); font-weight: 500; font-size: 14px; color: var(--wavio-black); white-space: nowrap; }
.charter-prices__note { font-family: var(--font-mono); font-weight: 500; font-size: 11px; color: var(--wavio-gray-600); margin: 10px 0 0; }
.rufmi-steps { display: flex; flex-direction: column; gap: 16px; }
.rufmi-step { display: flex; gap: 16px; align-items: flex-start; background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 20px; }
.rufmi-step__nr { font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: var(--wavio-white); background: var(--wavio-black); border-radius: 50%; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rufmi-step__name { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--wavio-black); margin-bottom: 6px; letter-spacing: -0.01em; }
.rufmi-step__text { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--wavio-black); line-height: 1.5; }

/* ─── Fullwidth Image Hero ──────────────────────────── */
.img-hero { position: relative; height: 520px; overflow: hidden; }
.img-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.img-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%); }
.img-hero__content { position: absolute; bottom: 0; left: 0; right: 0; padding: 0 20px 40px; }
.img-hero__content { max-width: var(--wavio-container, 1400px); margin: 0 auto; }
.img-hero__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(48px, 5vw, 80px); color: var(--wavio-white); letter-spacing: -0.03em; line-height: 1; margin-bottom: 20px; }
.img-hero__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.img-hero__badge { font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: var(--wavio-white); background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-radius: var(--wavio-radius-pill); padding: 8px 20px; text-decoration: none; transition: background 0.2s; }
.img-hero__badge:hover { background: rgba(255,255,255,0.3); }

/* ─── Standort Image Cards (blur hover) ─────────────── */
.standort-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.standort-imgcard { position: relative; border-radius: var(--wavio-radius); overflow: hidden; aspect-ratio: 4/5; display: flex; text-decoration: none; color: var(--wavio-white); }
.standort-imgcard__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, filter 0.5s ease; }
.standort-imgcard:hover .standort-imgcard__bg { transform: scale(1.05); filter: blur(4px); }
.standort-imgcard__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.65) 100%); transition: background 0.4s; }
.standort-imgcard:hover .standort-imgcard__overlay { background: rgba(0,0,0,0.5); }
.standort-imgcard__content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; width: 100%; }
.standort-imgcard__top { display: flex; align-items: flex-start; gap: 10px; justify-content: space-between; }
.standort-imgcard__status { margin-top: 6px; }
.standort-imgcard__name { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 2vw, 32px); letter-spacing: -0.02em; line-height: 1.1; }
.standort-imgcard__status { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-weight: 500; font-size: 11px; color: rgba(255,255,255,0.8); background: transparent; border: 1px solid rgba(255,255,255,0.3); border-radius: var(--wavio-radius-pill); padding: 3px 10px; white-space: nowrap; flex-shrink: 0; }
.standort-imgcard__bottom { margin-top: auto; display: flex; flex-wrap: wrap; gap: 6px; }
.standort-imgcard__tag { font-family: var(--font-mono); font-weight: 500; font-size: 11px; padding: 3px 10px; border-radius: var(--wavio-radius-pill); border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); transition: all 0.2s; }
.standort-imgcard:hover .standort-imgcard__tag { border-color: rgba(255,255,255,0.6); color: var(--wavio-white); }

/* ─── Reiseangebote Embed ────────────────────────────── */
.angebote-embed { padding: 60px 0 80px; }
.angebote-embed__head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.angebote-embed__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(22px, 2vw, 28px); color: var(--wavio-black); letter-spacing: -0.02em; }
.angebote-embed__sub { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--wavio-black); margin: 0; line-height: 1.5; }

/* ─── Schulreisen CTA (unten) ──────────────────────── */
.schulreisen-cta { margin-top: 64px; padding: 48px; background: var(--wavio-white); border-radius: var(--wavio-radius); max-width: 720px; }
.schulreisen-cta__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 2.5vw, 32px); color: var(--wavio-black); letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 14px; }
.schulreisen-cta__text { font-family: var(--font-display); font-weight: 500; font-size: 16px; line-height: 1.55; color: var(--wavio-black); margin: 0 0 24px; }
.schulreisen-cta__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── Reisekatalog ─────────────────────────────────── */
.katalog-card { display: grid; grid-template-columns: minmax(260px, 1fr) 1.4fr; gap: 40px; background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 24px; align-items: center; }
.katalog-card__image-wrap { position: relative; }
.katalog-card__image { width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--wavio-radius-sm); box-shadow: 0 12px 32px rgba(0,0,0,0.12); display: block; }
.katalog-card__body { display: flex; flex-direction: column; }
.katalog-card__kicker { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 12px; letter-spacing: 0.06em; color: var(--wavio-gray-600); margin-bottom: 14px; }
.katalog-card__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3vw, 40px); color: var(--wavio-black); letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 16px; }
.katalog-card__text { font-family: var(--font-display); font-weight: 500; font-size: 16px; line-height: 1.5; color: var(--wavio-black); margin: 0 0 20px; }
.katalog-card__meta { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.katalog-card__meta li { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--wavio-black); display: flex; align-items: center; gap: 10px; }
.katalog-card__meta li::before { content: '✓'; width: 16px; height: 16px; border-radius: 50%; background: var(--wavio-accent); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--wavio-accent-ink); }
.katalog-card__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.angebote-embed__frame { position: relative; width: 100%; aspect-ratio: 4/3; min-height: 600px; max-height: 900px; border-radius: var(--wavio-radius); overflow: hidden; background: var(--wavio-white); border: 1px solid var(--wavio-gray-200); }
.angebote-embed__iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.angebote-embed__link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: var(--wavio-black); text-decoration: none; margin-top: 16px; padding: 8px 16px; border: 1.5px solid var(--wavio-gray-200); border-radius: var(--wavio-radius-pill); transition: border-color 0.2s; }
.angebote-embed__link:hover { border-color: var(--wavio-black); }

/* ─── Status Dot (Hero CTAs) ─────────────────────────── */
.status-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.status-dot--open { background: #4ade80; box-shadow: 0 0 6px rgba(74,222,128,0.5); }
.status-dot--closed { background: #f87171; }

/* ─── Standort Pillar ───────────────────────────────── */
.standort-pillar { padding: 0 0 40px; }
.standort-block { padding: 60px 0; border-bottom: 1px solid var(--wavio-gray-200); }
.standort-block:last-child { border-bottom: none; }
.standort-block__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.standort-block__image { position: sticky; top: 70px; }
.standort-block__image img { width: 100%; border-radius: var(--wavio-radius); aspect-ratio: 4/3; object-fit: cover; }
.standort-block__info { display: flex; flex-direction: column; gap: 32px; }
.standort-block__header { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.standort-block__name { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 2.5vw, 38px); color: var(--wavio-black); letter-spacing: -0.02em; line-height: 1.1; }
.standort-block__tag { font-family: var(--font-mono); font-weight: 500; font-size: 11px; background: var(--wavio-mint); color: var(--wavio-black); border-radius: var(--wavio-radius-pill); padding: 3px 12px; }
.standort-block__live { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-weight: 500; font-size: 13px; padding: 10px 16px; border-radius: var(--wavio-radius); }
.standort-block__live--open { background: #f0fdf4; color: #16a34a; }
.standort-block__live--closed { background: #fef2f2; color: #dc2626; }
.standort-block__section-title { font-family: var(--font-mono); font-weight: 500; font-size: 11px; color: var(--wavio-gray-600); letter-spacing: 0.05em; margin-bottom: 12px; }
.standort-block__team { display: flex; gap: 24px; flex-wrap: wrap; }
.standort-block__person { display: flex; align-items: center; gap: 12px; }
.standort-block__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--wavio-gray-200); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--wavio-gray-600); flex-shrink: 0; }
.standort-block__person-info { display: flex; flex-direction: column; }
.standort-block__person-name { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--wavio-black); }
.standort-block__person-role { font-family: var(--font-mono); font-weight: 500; font-size: 11px; color: var(--wavio-gray-600); }
.standort-block__address { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--wavio-black); line-height: 1.5; }
.standort-block__contact-row { display: flex; gap: 32px; flex-wrap: wrap; }
.standort-block__contact-item { display: flex; flex-direction: column; gap: 4px; }
.standort-block__contact-label { font-family: var(--font-mono); font-weight: 500; font-size: 11px; color: var(--wavio-gray-600); letter-spacing: 0.05em; }
.standort-block__contact-value { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--wavio-black); text-decoration: none; }
.standort-block__contact-value:hover { color: var(--wavio-gray-600); }
.standort-block__phone { font-family: var(--font-mono); font-weight: 500; font-size: clamp(18px, 1.5vw, 22px); color: var(--wavio-black); text-decoration: none; }

/* ─── Standorte Hero + Badges ───────────────────────── */
.standorte-badges { display: flex; gap: 8px; margin-top: 32px; flex-wrap: wrap; }
.standorte-badge__dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.standorte-badge__dot--open { background: #4ade80; box-shadow: 0 0 6px rgba(74,222,128,0.5); }
.standorte-badge__dot--closed { background: var(--wavio-gray-400); }
.standorte-badge__name { font-family: var(--font-display); font-weight: 500; font-size: 15px; }
.standorte-badge__status { font-family: var(--font-mono); font-weight: 500; font-size: 11px; color: rgba(255,255,255,0.5); }

/* ─── Standorte Why Section ─────────────────────────── */
.standorte-why { display: flex; flex-direction: column; gap: 32px; }
.standorte-why__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 2.5vw, 40px); color: var(--wavio-black); letter-spacing: -0.02em; margin-bottom: 8px; }
.standorte-why__text { font-family: var(--font-display); font-weight: 500; font-size: 17px; color: var(--wavio-gray-600); line-height: 1.5; max-width: 680px; }
.standorte-why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.standorte-why__item { background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 24px; }
.standorte-why__nr { font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: var(--wavio-gray-400); display: block; margin-bottom: 12px; }
.standorte-why__name { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--wavio-black); margin-bottom: 6px; }
.standorte-why__desc { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-gray-600); line-height: 1.4; }

/* ─── Standorte Preview Cards (dark) ────────────────── */
.standorte-preview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.standorte-preview { display: flex; flex-direction: column; gap: 16px; background: rgba(255,255,255,0.05); border-radius: var(--wavio-radius); padding: 28px; text-decoration: none; color: var(--wavio-white); transition: background 0.2s; position: relative; }
.standorte-preview:hover { background: rgba(255,255,255,0.1); }
.standorte-preview__head { display: flex; align-items: center; gap: 12px; }
.standorte-preview__name { font-family: var(--font-display); font-weight: 500; font-size: 24px; letter-spacing: -0.02em; }
.standorte-preview__tag { font-family: var(--font-mono); font-weight: 500; font-size: 11px; background: var(--wavio-mint); color: var(--wavio-black); border-radius: var(--wavio-radius-pill); padding: 2px 10px; }
.standorte-preview__body { display: flex; flex-direction: column; gap: 4px; }
.standorte-preview__live { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.standorte-preview__address { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: rgba(255,255,255,0.5); }
.standorte-preview__phone { font-family: var(--font-mono); font-weight: 500; font-size: 14px; color: var(--wavio-white); }
.standorte-preview__services { display: flex; gap: 6px; flex-wrap: wrap; }
.standorte-preview__services span { font-family: var(--font-mono); font-weight: 500; font-size: 11px; background: rgba(255,255,255,0.08); border-radius: var(--wavio-radius-pill); padding: 3px 10px; color: rgba(255,255,255,0.5); }
.standorte-preview__arrow { position: absolute; top: 28px; right: 28px; font-size: 20px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.standorte-preview:hover .standorte-preview__arrow { color: var(--wavio-white); }

/* ─── Standort Subpage Hero ─────────────────────────── */
.standort-hero { background: var(--wavio-black); color: var(--wavio-white); padding: 40px 0 48px; }
.standort-hero__nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.standort-hero__back { font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.standort-hero__back:hover { color: var(--wavio-white); }
.standort-hero__siblings { display: flex; gap: 16px; }
.standort-hero__siblings a { font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.standort-hero__siblings a:hover { color: var(--wavio-white); }
.standort-hero__head { display: flex; justify-content: space-between; align-items: flex-end; }
.standort-hero__live { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: rgba(255,255,255,0.6); }

/* ─── Standort Subpage Layout (alte Demo-Klassen — durch standort-page__wrap ersetzt) ─── */
.standort-page-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; }
/* .standort-page__main wird unten in der Wrapper-Sektion definiert (kollidiert sonst) */
.standort-page__section { display: flex; flex-direction: column; gap: 16px; }
.standort-page__h2 { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--wavio-black); letter-spacing: -0.02em; }
.standort-page__sidebar { position: sticky; top: 70px; align-self: start; display: flex; flex-direction: column; gap: 12px; }
.standort-page__cta-card { background: var(--wavio-black); color: var(--wavio-white); border-radius: var(--wavio-radius); padding: 24px; }
.standort-page__cta-title { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--wavio-white); margin-bottom: 8px; }
.standort-page__cta-text { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.4; margin-bottom: 16px; }
.standort-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.standort-service { background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 20px; }
.standort-service__name { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--wavio-black); margin-bottom: 6px; }
.standort-service__text { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-gray-600); line-height: 1.4; }

/* ─── Standort Live Bar ─────────────────────────────── */
.standort-live-bar { display: flex; justify-content: space-between; align-items: center; background: var(--wavio-black); color: var(--wavio-white); border-radius: var(--wavio-radius); padding: 16px 24px; }
.standort-live-bar__status { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: rgba(255,255,255,0.7); }
.standort-live-bar__phone { font-family: var(--font-mono); font-weight: 500; font-size: 18px; color: var(--wavio-white); text-decoration: none; }
.standort-live-bar__phone:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ─── Standort Content Grid (2-col) ────────────────── */
.standort-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.standort-content__h2 { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--wavio-black); letter-spacing: -0.02em; margin-bottom: 16px; }
.standort-services-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ─── Team Photo Cards ──────────────────────────────── */
.team-photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.team-photo-card { border-radius: var(--wavio-radius); overflow: hidden; background: rgba(255,255,255,0.05); }
.team-photo-card__img { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.team-photo-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-photo-card:hover .team-photo-card__img img { transform: scale(1.05); }
.team-photo-card__info { padding: 16px; }
.team-photo-card__name { display: block; font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--wavio-white); margin-bottom: 2px; }
.team-photo-card__role { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; margin-bottom: 10px; }
.team-photo-card__phone { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: rgba(255,255,255,0.7); text-decoration: none; margin-bottom: 2px; }
.team-photo-card__phone:hover { color: var(--wavio-white); }
.team-photo-card__email { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; }
.team-photo-card__email:hover { color: var(--wavio-white); }

/* ─── Standort CTA Bar ──────────────────────────────── */
.standort-cta-bar { display: flex; justify-content: space-between; align-items: center; background: var(--wavio-gray-100); border-radius: var(--wavio-radius); padding: 32px; }
.standort-cta-bar__title { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--wavio-black); letter-spacing: -0.02em; margin-bottom: 4px; }
.standort-cta-bar__text { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--wavio-gray-600); }
.standort-cta-bar__actions { display: flex; gap: 8px; }

/* ─── Über uns ──────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
.about-content { display: flex; flex-direction: column; gap: 40px; }
.about-block__title { font-family: var(--font-display); font-weight: 500; font-size: 24px; color: var(--wavio-black); margin-bottom: 16px; letter-spacing: -0.02em; }
.about-block__text { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--wavio-gray-600); line-height: 1.5; margin-bottom: 12px; }
.about-block__text:last-child { margin-bottom: 0; }
.about-services { display: flex; flex-direction: column; gap: 16px; }
.about-service { display: flex; gap: 16px; align-items: flex-start; background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 20px; }
.about-service__nr { font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: var(--wavio-gray-400); flex-shrink: 0; }
.about-service__name { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--wavio-black); margin-bottom: 4px; }
.about-service__text { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-gray-600); line-height: 1.4; }
.about-sidebar { position: sticky; top: 70px; align-self: start; }
.about-sidebar__card { background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 24px; margin-bottom: 12px; }
.about-sidebar__title { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--wavio-black); margin-bottom: 16px; }
.about-sidebar__link { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: var(--wavio-black); text-decoration: underline; text-underline-offset: 2px; margin-top: 8px; }

/* ─── Stats Grid ────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.stat__number { font-family: var(--font-display); font-weight: 500; font-size: clamp(36px, 3vw, 56px); color: var(--wavio-white); letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; }
.stat__label { font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }

/* ─── Service ───────────────────────────────────────── */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1200px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 28px; display: flex; flex-direction: column; gap: 12px; color: var(--wavio-black); text-decoration: none; border: 1px solid transparent; transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
a.service-card:hover { background: color-mix(in srgb, var(--wavio-mint) 40%, var(--wavio-white)); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.07); }
a.service-card:focus-visible { outline: 2px solid var(--wavio-mint); outline-offset: 2px; }
.service-card__icon { color: var(--wavio-black); }
.service-card__title { font-family: var(--font-display); font-weight: 500; font-size: 20px; color: var(--wavio-black); letter-spacing: -0.02em; }
.service-card__text { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-gray-600); line-height: 1.5; flex-grow: 1; }
.service-newsletter .kontakt-form__input { flex: 1; }
.kontakt-form__input--pill { border-radius: var(--wavio-radius-pill); padding: 10px 20px; }

/* ─── Notfall / Dark Section ────────────────────────── */
.notfall-grid { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.notfall__meta { display: inline-block; font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 12px; letter-spacing: 0.05em; }
.notfall-phone { text-align: right; }
.notfall-number { display: block; font-family: var(--font-mono); font-weight: 500; font-size: clamp(28px, 3vw, 44px); color: var(--wavio-white); text-decoration: none; letter-spacing: -0.02em; }
.notfall-number:hover { text-decoration: underline; text-underline-offset: 4px; }
.notfall-label { font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }

/* Notfall-Kontakt (Mint-Card, kompakt) */
.notfall-section { padding: 24px 0 48px; }
.notfall-card { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; background: var(--wavio-mint); border-radius: var(--wavio-radius); padding: 28px 32px; }
.notfall-card__icon { width: 56px; height: 56px; border-radius: 50%; background: var(--wavio-black); color: var(--wavio-mint); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.notfall-card__body { min-width: 0; }
.notfall-card__badge { display: inline-block; font-family: var(--font-mono); font-weight: 500; font-size: 11px; letter-spacing: 0.06em; color: var(--wavio-black); background: rgba(0,0,0,0.1); padding: 3px 10px; border-radius: var(--wavio-radius-pill); margin-bottom: 10px; }
.notfall-card__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(20px, 2vw, 24px); color: var(--wavio-black); letter-spacing: -0.015em; line-height: 1.2; margin: 0 0 6px; }
.notfall-card__text { font-family: var(--font-display); font-weight: 500; font-size: 15px; line-height: 1.5; color: var(--wavio-black); margin: 0; max-width: 520px; }
.notfall-card__phone { font-family: var(--font-mono); font-weight: 500; font-size: 16px; background: var(--wavio-black); color: var(--wavio-white); padding: 10px 22px; border-radius: var(--wavio-radius-pill); text-decoration: none; white-space: nowrap; letter-spacing: -0.01em; transition: background 0.2s; }
.notfall-card__phone:hover { background: var(--wavio-gray-800); }

/* Legal Grid (wie Reisedetail Sections — 7/12 Breite) */
.legal-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 12px; max-width: 760px; }
.legal-grid .detail__section { margin-bottom: 0; opacity: 1; transform: none; }

/* Legal kompakte Links (Storno, Datenschutz, Impressum) */
.legal-sub-grid { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; max-width: 760px; }
.legal-sub-link { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 24px; background: var(--wavio-white); border-radius: var(--wavio-radius); text-decoration: none; color: var(--wavio-black); transition: box-shadow 0.2s; }
.legal-sub-link:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.legal-sub-link__title { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--wavio-black); margin: 0 0 4px; letter-spacing: -0.01em; display: block; }
.legal-sub-link__meta { font-family: var(--font-display); font-weight: 500; font-size: 13px; color: var(--wavio-gray-600); line-height: 1.4; }
.legal-sub-link__action { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: var(--wavio-black); white-space: nowrap; flex-shrink: 0; }

/* ─── Legal Links ───────────────────────────────────── */
.legal-links { display: flex; flex-direction: column; gap: 0; }
.legal-link { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--wavio-gray-200); text-decoration: none; transition: padding-left 0.2s; }
.legal-link:hover { padding-left: 8px; }
.legal-link__title { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--wavio-black); }
.legal-link__meta { font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: var(--wavio-gray-400); }

/* ─── Charter Vehicles ──────────────────────────────── */
.charter-grid { display: grid; grid-template-columns: 1fr 400px; gap: 48px; }
.charter-info { display: flex; flex-direction: column; gap: 40px; }
.charter-vehicles { display: flex; flex-direction: column; gap: 12px; }
.charter-vehicle { background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 20px; }
.charter-vehicle__header { display: flex; gap: 16px; align-items: center; margin-bottom: 12px; }
.charter-vehicle__size { font-family: var(--font-display); font-weight: 500; font-size: 28px; color: var(--wavio-black); letter-spacing: -0.03em; line-height: 1; min-width: 56px; }
.charter-vehicle__name { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--wavio-black); }
.charter-vehicle__sub { font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: var(--wavio-gray-400); }
.charter-vehicle__features { display: flex; gap: 6px; flex-wrap: wrap; }

/* ─── Mobile Responsive (new pages) ───────────────── */
@media (max-width: 960px) {
    .kat-card { flex: 0 0 calc((100% - 24px) / 3); }
    .standorte-grid { grid-template-columns: 1fr 1fr; }
    .standort-detail__grid { grid-template-columns: 1fr; }
    .standort-detail__map { order: -1; }
    .standort-detail__map-placeholder { aspect-ratio: 16/9; }
    .job-detail { grid-template-columns: 1fr; }
    .job-detail__sidebar { position: static; }
    .kontakt-grid { grid-template-columns: 1fr; }
    .kontakt-info { position: static; }
    .kontakt-quick { grid-template-columns: 1fr; }
    .schulreisen-grid { grid-template-columns: 1fr; }
    .schulreisen-anfrage { position: static; }
    .fuhrpark-grid { grid-template-columns: repeat(2, 1fr); }
    .archive-filters { flex-direction: column; }
    .archive-filters__search { width: 100%; }
    .archive-filters__selects { width: 100%; overflow-x: auto; flex-wrap: nowrap; }
    .job-card { flex-direction: column; align-items: flex-start; }
    .job-card__badges { flex-wrap: wrap; }
    .job-card__arrow { display: none; }

    /* Jobs Cards mobile */
    .jobcard { flex-direction: column; align-items: stretch; padding: 18px 20px; gap: 14px; }
    .jobcard__title { font-size: 19px; }
    .jobcard__cta { width: 100%; justify-content: center; }

    /* GF-Box mobile */
    .jobs-hr { grid-template-columns: 1fr; gap: 24px; }
    .jobs-hr__card { max-width: 260px; }

    /* Reisekatalog mobile — Bild seitenbreit + 1:1 Format */
    .katalog-card { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
    .katalog-card__image-wrap { max-width: none; }
    .katalog-card__image { aspect-ratio: 1 / 1; }
    .katalog-card__actions .btn { flex: 1 1 auto; text-align: center; }

    /* Home Katalog Quick-Teaser mobile */
    .home-katalog__grid { grid-template-columns: repeat(2, 1fr); }

    /* Service Notfall-Card mobile */
    .notfall-card { grid-template-columns: 1fr; gap: 16px; padding: 24px; text-align: left; }
    .notfall-card__phone { justify-self: flex-start; }

    /* Legal Grid mobile */
    .legal-grid { grid-template-columns: 1fr; }
    .legal-sub-grid { grid-template-columns: 1fr; }

    /* Anfrage mobile */
    .anfrage-block { padding: 20px; }
    .anfrage-block__legend { font-size: 18px; gap: 10px; }
    .anfrage-block__step { width: 28px; height: 28px; font-size: 11px; }
    .anfrage-submit { width: 100%; }

    /* Service Newsletter mobile */
    .service-newsletter { flex-direction: column; align-items: stretch; }
    .service-newsletter .btn { align-self: stretch; justify-content: center; }
    .linien-grid { grid-template-columns: 1fr; }
    .linien-sidebar { position: static; }
    .tab-nav { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
    .tab-nav__btn { white-space: nowrap; flex-shrink: 0; }
    .about-grid { grid-template-columns: 1fr; }
    .about-sidebar { position: static; }
    .service-grid { grid-template-columns: 1fr 1fr; }
    .notfall-grid { grid-template-columns: 1fr; text-align: center; }
    .notfall-phone { text-align: center; }
    .charter-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .standorte-why__grid { grid-template-columns: 1fr 1fr; }
    .standorte-preview-grid { grid-template-columns: 1fr; }
    .standort-cards-grid { grid-template-columns: 1fr 1fr; }
    .standort-block__grid { grid-template-columns: 1fr; gap: 24px; }
    .standort-block__image { position: static; }
    .standort-block { padding: 40px 0; }
    .img-hero { height: 400px; }
    .standort-page-grid { grid-template-columns: 1fr; }
    .standort-page__sidebar { position: static; }
    .standort-hero__head { flex-direction: column; align-items: flex-start; gap: 16px; }
    .standort-hero__siblings { flex-wrap: wrap; }
    .standort-content-grid { grid-template-columns: 1fr; }
    .standort-services-grid--4 { grid-template-columns: 1fr 1fr; }
    .team-photo-grid { grid-template-columns: 1fr 1fr; }
    .standort-cta-bar { flex-direction: column; gap: 20px; text-align: center; }
    .standort-cta-bar__actions { justify-content: center; }
    .standort-live-bar { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 640px) {
    .kat-card { flex: 0 0 75%; max-width: 300px; }
    .kat-quick-grid { gap: 4px 16px; }
    .kat-quick-name { font-size: 24px; }
    .kat-quick-img { width: 30px; height: 30px; border-radius: 6px; }
    .kat-quick-count { min-width: 18px; height: 18px; font-size: 9px; }
    .standorte-grid { grid-template-columns: 1fr; }
    .fuhrpark-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .team-grid,
    .linien-info .team-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .standort-page__main .team-grid { grid-template-columns: 1fr; gap: 10px; }
    .team-card__info { padding: 12px; }
    .team-card__header { flex-direction: column-reverse; align-items: flex-start; gap: 6px; margin-bottom: 6px; }
    .team-card__position { font-size: 10px; padding: 2px 8px; }
    .team-card__name { font-size: 15px; }
    .team-card__phone,
    .team-card__detail { font-size: 11px; }
    .standort-detail__contact-grid { grid-template-columns: 1fr; }
    .kontakt-form__row { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .standorte-why__grid { grid-template-columns: 1fr; }
    .standorte-badges { flex-direction: column; }
    .standort-cards-grid { grid-template-columns: 1fr; }
    .standort-imgcard { aspect-ratio: 16/9; }
    .img-hero { height: 320px; }
    .standort-services-grid { grid-template-columns: 1fr; }
    .standort-services-grid--4 { grid-template-columns: 1fr; }
    .team-photo-grid { grid-template-columns: 1fr; }
    .standort-hero__nav { flex-direction: column; gap: 8px; }

    /* Home Hero mobile */
    .hero__h1 { font-size: 36px; line-height: 1.05; margin-bottom: 16px; }
    .hero__h1 br { display: none; }
    .hero { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 0 20px; }
    .hero__content { position: relative; top: auto; transform: none; padding: 0; }
    .hero__buttons { position: relative; bottom: auto; left: auto; gap: 10px; }
    .hero .btn,
    .bild-banner .btn { padding: 8px 20px; font-size: 14px; white-space: nowrap; }
    .event-widget, .job-widget { width: 100%; height: auto; padding: 8px; gap: 10px; }
    .event-widget__img, .job-widget__img { width: 96px; height: auto; aspect-ratio: 16/9; border-radius: 4px; }
    .event-widget__title, .job-widget__title { font-size: 16px; }
    .event-widget__text, .job-widget__text { font-size: 12px; line-height: 1.3; }
    .event-widget__heading, .job-widget__heading { margin-bottom: 4px; }
    .job-widget__badge { font-size: 11px; padding: 1px 6px; }

    /* Tour section header */
    .tour-section__header { flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
    .tour-section__title { font-size: 26px; }
    .tour-section__header .btn { font-size: 12px; padding: 8px 18px; }

    /* Tour cards stacked */
    .tour-card { flex-direction: column; }
    .tour-card__image-wrap { flex: none; width: 100%; padding: 8px 8px 0; }
    .tour-card__img { aspect-ratio: 1/1; width: 100%; height: auto; }
    .tour-card__body { padding: 16px; }
    .tour-card__name { font-size: 22px; }
    .tour-card__badges { gap: 6px; }
    .tour-card__badge { font-size: 12px; padding: 4px 10px; }
    .tour-card__meta li { font-size: 13px; }

    /* Dual cards + Prefooter stacked */
    .showcase-cards__grid { grid-template-columns: 1fr; }
    .showcase-card { height: 60vh; min-height: 360px; }
    .prefooter__grid { grid-template-columns: 1fr; }
}

/* ─── Scroll Reveal ─────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    /* Hardening: falls JS/IntersectionObserver nicht greift, nach 1.5s sicher sichtbar machen */
    animation: wavio-reveal-fallback 0.7s 1.5s forwards;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    animation: none;
}
.wavio-section-wrap.wavio-layout--container.reveal.is-visible { padding-top: 0px !important; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
@keyframes wavio-reveal-fallback {
    to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ─── Home Reisekatalog Quick-Teaser ───────────────── */
.home-katalog { padding: 40px 0 80px; }
.home-katalog__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.home-katalog__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 2.5vw, 34px); color: var(--wavio-black); letter-spacing: -0.02em; margin: 0 0 6px; }
.home-katalog__sub { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--wavio-black); margin: 0; }
.home-katalog__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.home-katalog__card { position: relative; aspect-ratio: 4/5; border-radius: var(--wavio-radius); overflow: hidden; color: var(--wavio-white); text-decoration: none; }
.home-katalog__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.home-katalog__card:hover .home-katalog__img { transform: scale(1.05); }
.home-katalog__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%); transition: background 0.3s; }
.home-katalog__card:hover .home-katalog__overlay { background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 70%); }
.home-katalog__content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; gap: 4px; }
.home-katalog__label { font-family: var(--font-mono); font-weight: 500; font-size: 11px; color: rgba(255,255,255,0.85); letter-spacing: 0.02em; }
.home-katalog__name { font-family: var(--font-display); font-weight: 500; font-size: 20px; line-height: 1.1; letter-spacing: -0.01em; margin: 0; color: var(--wavio-white); }
.home-katalog__meta { font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: rgba(255,255,255,0.85); margin-top: 6px; }


/* ─── Defensive: Reise-Detail Grid (Demo .detail__grid greift sicher) ─── */
@media (min-width: 961px) {
    .detail__grid {
        display: grid !important;
        grid-template-columns: 7fr 4fr !important;
        grid-template-areas: "left right" !important;
        gap: 48px !important;
        align-items: start !important;
    }
    .detail__left  {
        grid-area: left !important;
        min-width: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        position: relative !important;
        z-index: 1 !important;
    }
    .detail__right {
        grid-area: right !important;
        position: sticky !important;
        top: 70px;
        align-self: start;
        z-index: 2 !important;
    }

    /* Sections nehmen die volle linke Spalte ein, sind sichtbar */
    .detail__left .detail__section,
    .detail__left .detail__gallery {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    .detail__left .detail__day { display: flex !important; }
}

/* Auch unter dem Mobile-Breakpoint sicher: nichts wird unsichtbar gemacht */
.detail__section,
.detail__day,
.detail__h2,
.detail__text,
.detail__checklist {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Topbar: Demo-Style — Mint, kompakt, mittig */
.wavio-topbar {
    font-family: var(--font-mono, var(--wavio-font-body));
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.02em;
    line-height: 1;
    padding: 8px 0;
}
.wavio-topbar--link { display: block; text-decoration: none; }
.wavio-topbar--link:hover { background: color-mix(in srgb, var(--wavio-accent) 34%, #ffffff); }

/* ─── Kategorie-Seite: FAQ + SEO-Block (Demo-Akkordeon, Mint-Akzent) ─── */
.kat-faq-section { padding: 60px 0; }
.kat-faq         { display: flex; flex-direction: column; gap: 8px; max-width: 900px; }
.kat-faq__item   { background: var(--wavio-white); border-radius: var(--wavio-radius); padding: 16px 20px; border: 1px solid var(--wavio-gray-200); transition: border-color 0.2s; }
.kat-faq__item[open] { border-color: var(--wavio-accent); }
.kat-faq__q      { font-family: var(--font-display); font-weight: 500; font-size: 17px; color: var(--wavio-black); cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; line-height: 1.3; }
.kat-faq__q::-webkit-details-marker { display: none; }
.kat-faq__q::after  { content: '+'; font-family: var(--font-mono); font-size: 22px; font-weight: 400; color: var(--wavio-gray-600); transition: transform 0.2s, color 0.2s; flex-shrink: 0; }
.kat-faq__item[open] .kat-faq__q::after { content: '−'; color: var(--wavio-black); }
.kat-faq__a      { font-family: var(--font-display); font-size: 15px; color: var(--wavio-gray-800); line-height: 1.5; padding-top: 14px; }
.kat-faq__a p    { margin: 0 0 10px; }
.kat-faq__a p:last-child { margin-bottom: 0; }

.kat-seo-section { padding: 60px 0 80px; }
.kat-seo-section__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(22px, 2vw, 28px); color: var(--wavio-black); letter-spacing: -0.02em; margin: 32px 0 14px; max-width: 900px; }
.kat-seo-section__title:first-child { margin-top: 0; }
.kat-seo-section__text  { font-family: var(--font-display); font-size: 15px; color: var(--wavio-gray-800); line-height: 1.6; max-width: 900px; }
.kat-seo-section__text p { margin: 0 0 12px; }

/* ─── Detail Zustiegsmöglichkeiten (im single-l7_tour.php) ─── */
.detail__zustiege { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.detail__zustiege li { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--wavio-gray-100); font-family: var(--font-display); font-size: 15px; color: var(--wavio-black); }
.detail__zustiege li:last-child { border-bottom: none; }
.detail__zustiege li > span:first-child { flex: 1; min-width: 0; }
.detail__zustiege li strong { font-weight: 500; color: var(--wavio-black); }
.detail__zustiege-price { font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: var(--wavio-gray-600); white-space: nowrap; flex-shrink: 0; }

/* ─── Standort-Page Wrapper: 2-Spalten-Grid (Content + Sticky Kontakt-Sidebar) ─── */
.standort-page__wrap {
	padding: 0 0 60px;
}
.standort-page__wrap > .container {
	max-width: var(--wavio-container, 1400px);   /* folgt dem Container-Setting wie die globale .container */
	margin: 0 auto;
	padding: 0 20px;
}
.standort-page__grid {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 48px;
	align-items: start;
}
.standort-page__main {
	min-width: 0;
	display: block;            /* override: alte Demo-Regel hatte flex */
	margin: 0;
	padding: 0;
}
/* Sections in der linken Spalte: outer container/padding entfernen, da bereits im Wrapper */
.standort-page__main > .wavio-section-wrap > .page-section,
.standort-page__main > .wavio-section-wrap > section.page-section {
	padding: 0;
	margin: 0 0 40px;
}
.standort-page__main .container,
.standort-page__main > .wavio-section-wrap > .page-section > .container,
.standort-page__main > .wavio-section-wrap > section.page-section > .container,
.standort-page__main > .wavio-section-wrap > .kat-quick-section > .container {
	padding: 0 !important;
	max-width: none !important;
	margin: 0 !important;
	width: 100%;
}
.standort-page__main > .wavio-section-wrap > .kat-quick-section {
	padding: 0;
	margin: 0 0 40px;
}
.standort-page__main > .wavio-section-wrap:last-child > .page-section,
.standort-page__main > .wavio-section-wrap:last-child > .kat-quick-section {
	margin-bottom: 0;
}

@media (max-width: 960px) {
	.standort-page__grid { grid-template-columns: 1fr; }
	.standort-page__sidebar { position: static; }
}

/* ─── Taxi-Service: Image-Variante (Bild links als ~25% Card-Spalte) ─── */
.taxi-service--with-image { padding: 0; overflow: hidden; align-items: stretch; gap: 0; }
.taxi-service--with-image .taxi-service__image {
	flex: 0 0 25%;
	max-width: 220px;
	min-height: 100%;
	object-fit: cover;
	display: block;
	align-self: stretch;
	background: var(--wavio-gray-100);
}
.taxi-service--with-image .taxi-service__body { flex: 1; padding: 20px 24px; min-width: 0; }

@media (max-width: 600px) {
	.taxi-service--with-image .taxi-service__image { flex: 0 0 33%; max-width: 120px; }
	.taxi-service--with-image .taxi-service__body { padding: 16px; }
}

/* ─── Team-Card Rollen-Badges (mehrere Rollen pro Mitarbeiter) ─── */
.team-card__roles {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-top: 4px;
	margin-bottom: 8px;
}
.team-card__role {
	font-family: var(--font-mono);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.01em;
	padding: 4px 10px;
	border-radius: var(--wavio-radius-pill);
	background: var(--wavio-mint);
	color: var(--wavio-black);
	white-space: nowrap;
	line-height: 1.2;
}
/* Falls die Card sehr eng ist (z.B. Sidebar-Standort): Badges können wrappen */
.standort-page__main .team-card__role,
.linien-info .team-card__role {
	font-size: 10px;
	padding: 3px 8px;
}

/* ─── Page-Tabs Section: dicht an page-hero kleben (kein doppeltes Padding) ─── */
.wavio-section-wrap[data-section="page-tabs"] {
	padding: 0 0 24px;
}
/* -32px nur bei page-hero OHNE Bild (Text-Hero). Bei Bild-Hero (.page-hero--image)
   würde es die Tabs ins Bild ziehen → dort kein negatives Margin. */
.wavio-section-wrap[data-section="page-hero"]:not(:has(.page-hero--image)) + .wavio-section-wrap[data-section="page-tabs"],
.wavio-section-wrap[data-section="page-hero"]:not(:has(.page-hero--image)) + .wavio-section-wrap[data-section="fuhrpark-grid"] {
	margin-top: -32px;
}
/* Bild-Hero: Folge-Section (Tabs/Grid) bekommt sauberen Abstand unter dem Bild */
.wavio-section-wrap[data-section="page-hero"]:has(.page-hero--image) + .wavio-section-wrap[data-section="page-tabs"] {
	margin-top: 32px;
}
.page-tabs-wrap {
	padding: 0;
}
.page-tabs-wrap > .container {
	padding: 0 20px;
}
.page-tabs-wrap .tour-filter {
	margin: 0;
}

/* Generell: page-section direkt nach page-hero oder page-tabs schmiegt sich an (kein doppeltes Padding) */
.wavio-section-wrap[data-section="page-hero"] + .wavio-section-wrap > .page-section,
.wavio-section-wrap[data-section="page-tabs"] + .wavio-section-wrap > .page-section {
	padding-top: 0;
}

/* Fuhrpark: zwischen Anchor-Tabs und erster Kategorie ordentlichen Abstand */
.wavio-section-wrap[data-section="fuhrpark-grid"] .page-tabs-wrap + .page-section,
.wavio-section-wrap[data-section="fuhrpark-grid"] .page-tabs-wrap + section.page-section {
	padding-top: 60px;
}
/* page-hero hat eigenes Bottom-Padding über main.css; reduziere wenn page-tabs folgt (siehe oben) */

/* ─── Mega-Footer (footer--full) ─────────────────────── */
.footer--full {
	background: var(--wavio-black, #1a1a1a);
	color: rgba(255,255,255,0.88);
	padding: 80px 0 32px;
	margin-top: 80px;
}
/* Pre-Footer-Cards (randlose Bilder) schließen nahtlos an den Footer an — kein Gap */
.prefooter + .footer--full,
body:has( .prefooter ) .footer--full { margin-top: 0; }
.footer--full .container {
	max-width: var(--wavio-container, 1400px);
	margin: 0 auto;
	padding: 0 20px;
}
.footer--full__grid {
	display: grid;
	grid-template-columns: 2fr repeat(6, 1fr);
	gap: 32px;
	margin-bottom: 60px;
}
.footer--full__brand {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.footer--full__logo img {
	max-height: 56px;
	width: auto;
	filter: brightness(0) invert(1);   /* Logo auf dunklem BG → weiß */
}
.footer--full__intro {
	font-family: var(--font-display);
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255,255,255,0.78);
	margin: 0;
	max-width: 280px;
}
.footer--full__contact {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 8px;
}
.footer--full__contact a,
.footer--full__contact span {
	font-family: var(--font-mono);
	font-size: 14px;
	color: rgba(255,255,255,0.88);
	text-decoration: none;
	line-height: 1.4;
}
.footer--full__contact a:hover {
	color: var(--wavio-mint, #b8d9b8);
}
.footer--full__col-title {
	font-family: 'Montserrat', var(--font-display);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.02em;
	color: var(--wavio-white, #fff);
	margin-bottom: 16px;
	text-transform: uppercase;
}
.footer--full__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer--full__list a {
	font-family: var(--font-display);
	font-size: 14px;
	color: rgba(255,255,255,0.85);
	text-decoration: none;
	line-height: 1.5;
	transition: color 0.15s;
}
.footer--full__list a:hover {
	color: var(--wavio-mint, #b8d9b8);
}
.footer--full__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding-top: 28px;
	border-top: 1px solid rgba(255,255,255,0.08);
}
.footer--full__copy {
	font-family: var(--font-mono);
	font-size: 13px;
	color: rgba(255,255,255,0.78);
	text-decoration: none;
}
.footer--full__credit {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-mono);
	font-weight: 500;
	font-size: 13px;
	color: rgba(255,255,255,0.4);   /* dezent grau, wird on hover voll weiss */
	text-decoration: none;
	transition: color 0.2s;
}
/* Lab7-Mark outline — dezent, Stroke bleibt auch klein sichtbar */
.footer--full__credit svg {
	height: 10px;
	width: auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;          /* überschreibt SVG-internes 1.25 — sichtbar bei kleiner Größe */
	color: inherit;
	transition: color 0.2s;
}
.footer--full__credit svg path {
	stroke: currentColor;
}
.footer--full__credit:hover,
.footer--full__credit:hover .footer--full__credit-text {
	color: var(--wavio-white, #fff);
}
.footer--full__credit:hover svg,
.footer--full__credit:hover svg path {
	stroke: var(--wavio-white, #fff);
	color: var(--wavio-white, #fff);
}

@media (max-width: 1100px) {
	.footer--full__grid { grid-template-columns: 1fr 1fr 1fr; }
	.footer--full__brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
	.footer--full__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
	.footer--full__brand { grid-column: 1 / -1; }
	.footer--full__bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── Service-Cards Grid (4 Spalten Demo-Look) ─── */
.service-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 16px;
}
@media (max-width: 1024px) {
	.service-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.service-cards { grid-template-columns: 1fr; gap: 12px; }
}

/* ─── Bild-Banner (full-bleed Bild, H2 oben, 1 CTA unten — Hero-Mechanik) ─── */
.bild-banner {
	position: relative;
	height: 80vh;
	min-height: 420px;
	overflow: hidden;
	background: var(--wavio-black);
}
.bild-banner--full { height: calc(100vh - 54px - 29px); }
body.topbar-hidden .bild-banner--full { height: calc(100vh - 54px); }

.bild-banner__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.bild-banner__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to bottom, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 58%, rgba(0,0,0,0.48) 100%);
}
.bild-banner__content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 48px 20px 0;
	z-index: 2;
}
.bild-banner__title {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(28px, 2.8vw, 46px);
	line-height: 1.08;
	color: var(--wavio-white);
	max-width: 900px;
	margin: 0;
}
.bild-banner__buttons {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 2;
	display: flex;
	gap: 12px;
}

@media (max-width: 640px) {
	.bild-banner { height: 60vh; min-height: 360px; }
	.bild-banner__content { padding: 28px 20px 0; }
}

/* ─── Kategorie-Cards: Kopf (H2 + Unterzeile) + Feature-Zeile ─── */
.kat-cards__head {
	padding: 0 20px;
	margin-bottom: 28px;
}
.kat-cards__title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(30px, 3vw, 48px);
	line-height: 1.05;
	letter-spacing: -0.045em;
	color: var(--wavio-black);
	margin: 0 0 8px;
}
.kat-cards__subline {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 15px;
	color: var(--wavio-black);
	margin: 0;
}
.kat-cards__features {
	list-style: none;
	margin: 0;
	padding: 32px 20px 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.kat-cards__feature {
	display: flex;
	align-items: baseline;
	gap: 8px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(14px, 1vw, 17px);
	line-height: 1.2;
	color: var(--wavio-black);
}
.kat-cards__feature::before {
	content: "→";
	color: var(--wavio-accent);
	font-weight: 700;
	flex-shrink: 0;
}
@media (max-width: 1024px) {
	.kat-cards__features { grid-template-columns: repeat(2, 1fr); row-gap: 14px; }
}
@media (max-width: 640px) {
	.kat-cards__features { grid-template-columns: 1fr; }
}

/* ─── Headlines bold (Montserrat 700) — nur echte große Headlines, keine Mini-Labels ─── */
.hero__h1, .kat-hero__title, .img-hero__title, .page-section__title,
.kat-cards__title, .kat-card__name, .bild-banner__title,
.detail__title, .detail__h2, .pdp__title, .pdp-ablauf__title,
.katalog-card__title, .dark-section__title, .kat-quick-section__title, .kat-seo-section__title,
.home-katalog__title, .prefooter-card__title, .about-block__title,
.angebote-embed__title, .notfall-card__title, .event-widget__title, .job-widget__title,
.filiale__name, .joblist__headline, .job-detail__title, .job-detail__h2,
.jobcard__title, .jobs-hr__h3, .jobs-initiative__title, .fuhrpark-cta__title {
	font-weight: 700;
}
/* Garantie: jedes <h2> mit Klasse ist bold (deckt auch Reisen-Grid .tour-section__title ab) */
h2[class] { font-weight: 700; }

/* ─── Reise-Cards · Variante "Minimal" (kompaktes vertikales Grid) ─── */
.tour-section--cards-minimal .container {
	display: grid;
	grid-template-columns: repeat(var(--wavio-tour-cols, 3), 1fr);
	gap: 36px 28px;
}
.tour-section--cards-minimal .tour-section__header {
	grid-column: 1 / -1;
}
.tour-section--cards-minimal .tour-card {
	display: flex;
	flex-direction: column;
	background: transparent;
	border: 0;
	border-radius: 0;
	overflow: visible;
	margin-bottom: 0;
}
.tour-section--cards-minimal .tour-card__image-wrap {
	flex: none;
	width: 100%;
	padding: 0;
	border-radius: var(--wavio-radius);
	aspect-ratio: 4 / 3;
}
.tour-section--cards-minimal .tour-card__img {
	height: 100%;
	aspect-ratio: 4 / 3;
	border-radius: var(--wavio-radius);
}
.tour-section--cards-minimal .tour-card__body {
	flex: none;
	padding: 16px 2px 0;
	justify-content: flex-start;
}
.tour-section--cards-minimal .tour-card__name {
	font-size: 21px;
	font-weight: 700;
	line-height: 1.18;
	margin-bottom: 10px;
	transition: color 0.2s ease;
}
.tour-section--cards-minimal .tour-card:hover .tour-card__name {
	color: var(--wavio-accent);
}
/* Badges → schlanke Mono-Zeile mit ·-Trennern statt gefüllter Pills */
.tour-section--cards-minimal .tour-card__badges {
	gap: 0;
	margin-bottom: 0;
	align-items: baseline;
}
.tour-section--cards-minimal .tour-card__badge {
	background: none;
	padding: 0;
	border-radius: 0;
	font-size: 13px;
	color: var(--wavio-text-muted);
}
.tour-section--cards-minimal .tour-card__badge:not(:last-child)::after {
	content: "·";
	margin: 0 8px;
	color: var(--wavio-gray-400);
}
.tour-section--cards-minimal .tour-card__badge--price {
	color: var(--wavio-accent);
	font-weight: 700;
}
/* V8-Standard blendet Land/Kat/Preis als Chip aus — in der Minimal-·-Zeile wieder zeigen, Kicker dafür raus */
.tour-section--cards-minimal .tour-card__badge--land,
.tour-section--cards-minimal .tour-card__badge--kat,
.tour-section--cards-minimal .tour-card__badge--price { display: inline-block; }
.tour-section--cards-minimal .tour-card__kicker { display: none; }
/* Minimal: Leistungen + Button raus — ganze Karte ist klickbar */
.tour-section--cards-minimal .tour-card__meta,
.tour-section--cards-minimal .tour-card__footer {
	display: none;
}
.tour-section--cards-minimal .tour-card:hover .tour-card__img {
	transform: scale(1.05);
}
@media (max-width: 1024px) {
	.tour-section--cards-minimal .container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.tour-section--cards-minimal .container { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── Reise-Liste (Termin-Stil: Datum · Bild · Titel · Highlights · Info) ─── */
.reise-liste { padding: 0 0 80px; }

/* Termine als schlichte Auflistung (Detail-Panel + Reisetermine-Section) — ohne Häkchen, ohne Preis */
.detail__termine-list { list-style: none; margin: 0; padding: 0; }
.detail__termine-list li { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 7px 0; font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--wavio-black); border-bottom: 1px solid rgba(0,0,0,0.06); }
.detail__termine-book { font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: var(--wavio-accent); text-decoration: none; white-space: nowrap; flex-shrink: 0; }
.detail__termine-book:hover { text-decoration: underline; }
.detail__termine-list li:last-child { border-bottom: none; }

/* Panel-Teaser: Termine nebeneinander als Standard-Badges (Items tragen .tour-card__badge im Markup) */
.detail__termine-chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.detail__termine-chips a.tour-card__badge { text-decoration: none; cursor: pointer; transition: background 0.15s, color 0.15s; }
.detail__termine-chips a.tour-card__badge:hover { background: var(--wavio-accent); color: var(--wavio-accent-ink); }
.reise-liste__head { margin-bottom: 24px; }
.reise-liste__title {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(26px, 2.6vw, 40px);
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--wavio-black);
	margin: 0 0 8px;
}
.reise-liste__subline {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 15px;
	color: var(--wavio-black);
	margin: 0;
}

/* Fahrplan-Stil (Version A): weiße Karte, kompakte Zeilen, Datum-Kachel führt */
.reise-liste__rows {
	background: var(--wavio-white);
	border: 1px solid var(--wavio-gray-200);
	border-radius: var(--wavio-radius);
	box-shadow: 0 4px 18px rgba(0,0,0,0.05);
	overflow: hidden;
}
.reise-liste__row {
	position: relative;
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 22px;
	padding: 16px 24px;
	border-top: 1px solid var(--wavio-gray-200);
	color: inherit;
	text-decoration: none;
	transition: background 0.16s ease;
}
.reise-liste__row:first-child { border-top: none; }
.reise-liste__row:hover { background: color-mix(in srgb, var(--wavio-accent) 8%, #fff); }
.reise-liste__date { text-align: center; line-height: 1; }
.reise-liste__weekday {
	display: block;
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	color: var(--wavio-accent);
}
.reise-liste__day {
	display: block;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 24px;
	line-height: 1.1;
	color: var(--wavio-black);
}
.reise-liste__month {
	display: block;
	font-family: var(--font-mono);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--wavio-text-muted);
}
.reise-liste__name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 17px;
	line-height: 1.2;
	margin: 0;
}
.reise-liste__name a {
	color: var(--wavio-black);
	text-decoration: none;
	transition: color 0.2s ease;
}
.reise-liste__name a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.reise-liste__row:hover .reise-liste__name a { color: var(--wavio-accent); }
.reise-liste__meta {
	margin-top: 2px;
	font-family: var(--font-mono);
	font-size: 12.5px;
	color: var(--wavio-text-muted);
}
.reise-liste__price {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 13px;
	color: var(--wavio-text-muted);
	white-space: nowrap;
}
.reise-liste__price b { font-weight: 700; color: var(--wavio-black); }
.reise-liste__book {
	position: relative;
	z-index: 2;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 13px;
	background: var(--wavio-accent);
	color: var(--wavio-accent-ink);
	padding: 10px 22px;
	border-radius: var(--wavio-radius-pill);
	text-decoration: none;
	white-space: nowrap;
	transition: filter 0.2s ease;
}
.reise-liste__book:hover { filter: brightness(1.1); }
.reise-liste__cta { margin-top: 28px; text-align: center; }

@media (max-width: 600px) {
	.reise-liste__row {
		grid-template-columns: 52px minmax(0, 1fr) auto;
		grid-template-areas:
			"date main book"
			"date price book";
		column-gap: 14px;
		row-gap: 4px;
		padding: 14px 16px;
	}
	.reise-liste__date  { grid-area: date; }
	.reise-liste__main  { grid-area: main; }
	.reise-liste__price { grid-area: price; }
	.reise-liste__book  { grid-area: book; align-self: center; }
	.reise-liste__day   { font-size: 21px; }
}

/* ─── Merkliste-Icon im Header ──────────────────── */
.wavio-merk { display: inline-block; padding: 6px 12px; border-radius: var(--wavio-radius-pill); line-height: 1; color: var(--wavio-black); transition: background-color 0.2s ease, color 0.2s ease; }
.wavio-merk:hover { background-color: var(--wavio-gray-100); }
.wavio-merk svg { width: 20px; height: 20px; vertical-align: middle; }
.wavio-merk__count { background: var(--wavio-mint); color: var(--wavio-black); font-family: var(--font-mono); font-size: 10px; font-weight: 500; padding: 1px 5px; border-radius: var(--wavio-radius-pill); margin-left: -6px; vertical-align: super; line-height: 1; }
.wavio-merk__count[data-merk-count="0"] { display: none; }

/* ─── Reise-Liste mit Banner (Bild + überlappende Karte) ─── */
.wavio-section-wrap:has(.reise-liste--banner) { padding-top: 0 !important; }
.reise-liste__banner { position: relative; margin: 0 calc(-50vw + 50%); min-height: 70vh; background-size: cover; background-position: center; display: flex; align-items: flex-end; }
.reise-liste--full .reise-liste__banner { min-height: 100vh; }
.reise-liste__banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,28,13,0.62), rgba(0,28,13,0.10) 52%, rgba(0,28,13,0.16)); }
.reise-liste__banner-inner { position: relative; z-index: 1; width: 100%; max-width: var(--wavio-container, 1200px); margin: 0 auto; padding: 0 24px 104px; color: var(--wavio-white); }
.reise-liste__banner-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 4.2vw, 54px); line-height: 1.06; letter-spacing: -0.035em; color: var(--wavio-white); margin: 0; }
.reise-liste__banner-sub { font-family: var(--font-mono); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.4; color: var(--wavio-white); opacity: 0.92; margin: 12px 0 0; max-width: 640px; }
.reise-liste__card { position: relative; z-index: 2; margin-top: -68px; background: var(--wavio-white); border: 1px solid var(--wavio-gray-200); border-radius: var(--wavio-radius); box-shadow: 0 18px 48px rgba(0,0,0,0.14); padding: 6px 28px 22px; }
.reise-liste__label { font-family: var(--font-mono); font-weight: 500; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--wavio-accent); margin: 0; padding: 18px 4px 12px; border-bottom: 1px solid var(--wavio-gray-200); }
.reise-liste__rows--flat { background: none; border: 0; border-radius: 0; box-shadow: none; }
.reise-liste__rows--flat .reise-liste__row { padding-left: 4px; padding-right: 4px; }
@media (max-width: 640px) {
	.reise-liste__banner { min-height: 56vh; }
	.reise-liste__banner-inner { padding-bottom: 76px; }
	.reise-liste__card { margin-top: -44px; padding: 4px 14px 16px; border-radius: var(--wavio-radius); }
}

/* Merken-Button (Lesezeichen) auf Job-Cards */
.jobcard__fav { flex-shrink: 0; width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--wavio-gray-100); color: #555; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: color 0.2s, transform 0.2s, background 0.2s; }
.jobcard__fav:hover { color: var(--wavio-accent); transform: scale(1.08); }
.jobcard__fav svg { width: 19px; height: 19px; }
.jobcard__fav.l7-favorite-btn--active { color: var(--wavio-accent); }
.jobcard__fav.l7-favorite-btn--active svg { fill: currentColor; }

/* Tour-Card: Hinweis auf weitere Termine */
.tour-card__badge--more { background: var(--wavio-mint); color: var(--wavio-accent); font-weight: 700; }

/* Taxonomie-Hero ohne Bild (Land/Kategorie): schlanker Container-Header statt schwarzem Full-Bleed */
.kat-hero--text { position: static; height: auto; min-height: 0; background: transparent; overflow: visible; }
.kat-hero--text::after { content: none; }
.kat-hero--text .kat-hero__content { position: static; transform: none; max-width: var(--wavio-container, 1200px); margin: 0 auto; padding: 56px 20px 4px; }
.kat-hero--text .kat-hero__title { color: var(--wavio-black); font-size: clamp(32px, 4vw, 52px); }
.kat-hero--text .kat-hero__desc { position: static; max-width: var(--wavio-container, 1200px); margin: 0 auto; padding: 4px 20px 26px; }
.kat-hero--text .kat-hero__desc p { color: var(--wavio-text-muted); font-size: 17px; }
