/* ============================================================
   FONT · Sansation (lokal geladen — 6 Weights)
   ============================================================ */
@font-face {
    font-family: 'Sansation';
    src: url('fonts/Sansation/Sansation-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sansation';
    src: url('fonts/Sansation/Sansation-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Sansation';
    src: url('fonts/Sansation/Sansation-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sansation';
    src: url('fonts/Sansation/Sansation-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Sansation';
    src: url('fonts/Sansation/Sansation-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sansation';
    src: url('fonts/Sansation/Sansation-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Globaler Sansation-Override — überschreibt alle Font-Deklarationen */
html, body,
h1, h2, h3, h4, h5, h6,
p, a, span, em, strong, small, blockquote, li, label,
button, input, textarea, select,
div[class], article, section, header, footer, nav {
    font-family: "Sansation", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

/* ============================================================
   WIREFRAME STYLES – bewusst monochrom / low-fidelity
   Farbe kommt erst im High-Fidelity-Design.
   ============================================================ */

:root {
    --ink: #1a1a1a;
    --ink-2: #4a4a4a;
    --ink-3: #7a7a7a;
    --line: #cfcfcf;
    --line-2: #e5e5e5;
    --bg: #ffffff;
    --bg-2: #f6f6f6;
    --bg-3: #ececec;
    --accent: #2f2f2f;
    --radius: 6px;
    --radius-lg: 10px;
    --gap: 24px;
    --container: 1200px;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-display: "Manrope", "Inter", sans-serif;

    /* Hero-Cinematic Tokens */
    --hero-bg: #eceae4;
    --hero-ink: #141412;
    --acid: #dfff57;
    --hero-line: rgba(255,255,255,.22);
    --ease: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--bg);
}

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

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

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

/* ---------- WIREFRAME BANNER ---------- */
.wf-banner {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 6px 12px;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* ---------- HEADER ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 68px;
}
.logo-placeholder {
    border: 1px dashed var(--ink-3);
    padding: 6px 14px;
    font-size: 12px;
    letter-spacing: .08em;
    color: var(--ink-2);
}
.main-nav ul {
    display: flex;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav a {
    font-size: 14px;
    color: var(--ink-2);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}
.main-nav a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.lang-switch { display: flex; gap: 4px; }
.lang {
    background: transparent;
    border: 1px solid var(--line);
    padding: 4px 8px;
    font-size: 12px;
    color: var(--ink-2);
    border-radius: 4px;
}
.lang.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line);
    border-radius: 4px;
    font-size: 20px;
    padding: 4px 10px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--ink);
    background: var(--ink);
    color: #fff;
    transition: background .15s, color .15s;
    cursor: pointer;
}
.btn:hover { background: #000; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-2); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-large { padding: 14px 22px; font-size: 15px; }
.btn-sticky { }

/* ---------- SECTION BASE ---------- */
.section {
    padding: 72px 0;
    border-bottom: 1px solid var(--line-2);
}
.section-title {
    font-size: 32px;
    line-height: 1.15;
    margin: 0 0 12px;
    font-weight: 600;
    letter-spacing: -.01em;
}
.section-lead {
    font-size: 17px;
    color: var(--ink-2);
    max-width: 640px;
    margin: 0 0 40px;
}
.eyebrow {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin: 0 0 10px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ---------- PLACEHOLDER IMAGES ---------- */
.placeholder-image {
    background: repeating-linear-gradient(
        45deg,
        var(--bg-2),
        var(--bg-2) 10px,
        var(--bg-3) 10px,
        var(--bg-3) 20px
    );
    border: 1px dashed var(--ink-3);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--ink-2);
    font-size: 13px;
    padding: 20px;
    min-height: 180px;
}
.placeholder-image.square { aspect-ratio: 1 / 1; }
.placeholder-image.landscape { aspect-ratio: 16 / 10; }
.placeholder-image.portrait { aspect-ratio: 4 / 5; }
.placeholder-image.big { min-height: 320px; }
.placeholder-image span { max-width: 80%; }
.placeholder-text {
    background: var(--bg-2);
    border-left: 3px solid var(--line);
    padding: 14px 16px;
    color: var(--ink-2);
    font-size: 14px;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.icon-placeholder {
    width: 44px;
    height: 44px;
    border: 1px dashed var(--ink-3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--ink-3);
    margin-bottom: 14px;
}

/* ---------- GRIDS ---------- */
.grid {
    display: grid;
    gap: var(--gap);
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   1. HERO – Cinematic
   ============================================================ */
body { background: #f6f3ed; }

.hero {
    position: relative;
    min-height: 100svh;
    padding: 0;
    background: #141412;
    border-bottom: none;
}
.hero-frame {
    position: relative;
    min-height: 100svh;
    border-radius: 0;
    overflow: hidden;
    background: #141412;
    isolation: isolate;
}

/* Wellen-Übergang unten am Hero */
.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: clamp(110px, 12vw, 200px);
    z-index: 4;
    pointer-events: none;
    line-height: 0;
    filter: drop-shadow(0 -6px 18px rgba(0, 0, 0, 0.25));
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -5;
    overflow: hidden;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 57% center;
    transform: scale(1.07);
    transition: transform 1.5s var(--ease), opacity .3s ease;
    filter: saturate(.85) contrast(1.06) brightness(.91);
}
.hero-frame.loaded .hero-bg img {
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -4;
    background:
        linear-gradient(90deg,
            rgba(8,8,7,.92) 0%,
            rgba(8,8,7,.78) 22%,
            rgba(8,8,7,.42) 48%,
            rgba(8,8,7,.08) 72%),
        linear-gradient(0deg,
            rgba(8,8,7,.84) 0%,
            rgba(8,8,7,0) 48%);
}

.noise {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: .05;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* NAV im Hero */
.hero .nav {
    position: relative;
    z-index: 20;
    height: 90px;
    padding: 0 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,.18);
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -.03em;
}
.brand-symbol {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    display: grid;
    place-items: center;
}
.brand-symbol svg { width: 17px; }
.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 31px;
}
.nav-center a {
    position: relative;
    font-size: 13px;
    color: rgba(255,255,255,.71);
    transition: color .25s ease;
}
.nav-center a:hover { color: white; }
.nav-center a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s var(--ease);
}
.nav-center a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.lang {
    height: 44px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(16px);
    font-size: 12px;
    color: #fff;
}
.nav-button {
    height: 44px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #141412;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    transition: background .3s ease, transform .3s var(--ease);
}
.nav-button:hover { background: var(--acid); }

/* HERO CONTENT */
.hero-content {
    position: relative;
    min-height: calc(100svh - 90px);
    padding: clamp(60px, 8vh, 110px) 42px clamp(160px, 15vw, 230px);
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
    align-items: end;
    gap: 60px;
    color: white;
}
.hero-left {
    position: relative;
    z-index: 8;
    padding-bottom: 8px;
}
.meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(18px);
    animation: reveal .8s .15s var(--ease) forwards;
}
.meta-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--acid);
    box-shadow: 0 0 20px rgba(223,255,87,.55);
}
.meta-row span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: rgba(255,255,255,.68);
}
.headline {
    max-width: 960px;
    font-family: var(--font-display);
    font-size: clamp(58px, 7.4vw, 128px);
    font-weight: 700;
    line-height: .87;
    letter-spacing: -.075em;
    color: #fff;
}
.headline-line {
    display: block;
    overflow: hidden;
    padding-bottom: .08em;
}
.headline-line span {
    display: block;
    color: #fff;
    opacity: 0;
    transform: translateY(110%);
    animation: headlineIn 1.15s var(--ease) forwards;
}
.headline-line:nth-child(1) span { animation-delay: .24s; }
.headline-line:nth-child(2) span { animation-delay: .36s; }

@keyframes headlineIn {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
}

.hero-info {
    margin-top: 30px;
    max-width: 510px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    opacity: 0;
    transform: translateY(20px);
    animation: reveal .9s .72s var(--ease) forwards;
}
.hero-info p {
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.55;
    color: rgba(255,255,255,.69);
}
.hero-info strong {
    color: white;
    font-weight: 500;
}

.main-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: wrap;
}
.discover-button {
    height: 58px;
    padding: 0 25px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    border-radius: 999px;
    background: var(--acid);
    color: #151513;
    font-size: 13px;
    font-weight: 600;
    transition: transform .35s var(--ease), box-shadow .35s ease;
}
.discover-button:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
}
.discover-button svg {
    width: 17px;
    transition: transform .3s var(--ease);
}
.discover-button:hover svg {
    transform: translate(4px, -4px);
}
.watch-link {
    height: 58px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 13px;
    color: rgba(255,255,255,.77);
}
.play-circle {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.28);
    transition: background .3s ease, transform .3s var(--ease), color .3s ease;
}
.watch-link:hover .play-circle {
    background: white;
    color: #141412;
    transform: scale(1.08);
}

/* TOUR MENU */
.tour-menu {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 430px;
    justify-self: end;
    background: rgba(20, 20, 18, 0.28);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 6px 18px 6px;
    opacity: 0;
    animation: reveal .9s .55s var(--ease) forwards;
}
.tour-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 4px 12px;
    border-bottom: 1px solid var(--hero-line);
}
.tour-menu-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
}
.tour-menu-label::before {
    content: "";
    width: 18px;
    height: 1px;
    background: var(--acid);
}
.tour-menu-hint {
    font-size: 10px;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, 0.55);
}
.tour-item {
    position: relative;
    min-height: 88px;
    border-bottom: 1px solid var(--hero-line);
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    color: #fff;
    padding: 0 4px;
    transition: padding .45s var(--ease), background .35s ease;
}
.tour-item:last-child { border-bottom: none; }
.tour-item::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 50%;
    width: 3px;
    height: 0;
    background: var(--acid);
    transform: translateY(-50%);
    transition: height .45s var(--ease);
    border-radius: 3px;
}
.tour-item:hover {
    padding-left: 12px;
}
.tour-item:hover::before { height: 60%; }
.tour-index {
    font-size: 10px;
    letter-spacing: .08em;
    color: rgba(255,255,255,.5);
    font-family: var(--font-display);
    font-weight: 600;
}
.tour-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -.035em;
    transition: color .3s ease;
}
.tour-item:hover .tour-name { color: var(--acid); }
.tour-type {
    margin-top: 4px;
    font-size: 11px;
    color: rgba(255,255,255,.55);
}
.tour-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255,255,255,.28);
    display: grid;
    place-items: center;
    transition: background .35s ease, color .35s ease, transform .45s var(--ease), border-color .3s ease;
}
.tour-arrow svg { width: 15px; }
.tour-preview {
    position: absolute;
    right: 62px;
    top: 50%;
    width: 165px;
    height: 115px;
    border-radius: 16px;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-50%) translateX(30px) rotate(4deg) scale(.92);
    box-shadow: 0 24px 60px rgba(0,0,0,.3);
    transition: opacity .45s ease, transform .5s var(--ease);
}
.tour-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.tour-item:hover .tour-preview {
    opacity: 1;
    transform: translateY(-50%) translateX(0) rotate(-2deg) scale(1);
}
.tour-item:hover .tour-preview img { transform: scale(1.07); }
.tour-item:hover .tour-arrow {
    background: var(--acid);
    color: #141412;
    border-color: var(--acid);
    transform: rotate(-45deg);
}

/* BADGES / COUNTER */
.location-badge {
    position: absolute;
    top: 120px;
    right: 42px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 13px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(20,20,18,.23);
    backdrop-filter: blur(12px);
    color: white;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: 0;
    animation: reveal .9s .9s var(--ease) forwards;
    z-index: 15;
}
.location-badge svg { width: 13px; }
.hero-counter {
    position: absolute;
    left: 42px;
    top: 120px;
    color: rgba(255,255,255,.55);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    opacity: 0;
    animation: reveal .9s .95s var(--ease) forwards;
    z-index: 15;
}

/* BOTTOM BAR */
.bottom-bar {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    pointer-events: none;
    z-index: 5;
}
.location-chips {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    max-width: calc(100% - 480px);
}
.location-chips li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(20, 20, 18, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    color: #fff;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .04em;
}
.chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--acid);
    box-shadow: 0 0 10px rgba(223, 255, 87, 0.65);
}
.scroll {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.5);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.mouse {
    width: 21px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.32);
    position: relative;
}
.mouse::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 7px;
    width: 2px;
    height: 5px;
    border-radius: 999px;
    background: white;
    transform: translateX(-50%);
    animation: wheel 1.8s ease infinite;
}
@keyframes wheel {
    0%   { transform: translate(-50%, 0);  opacity: 0; }
    30%  { opacity: 1; }
    100% { transform: translate(-50%, 9px); opacity: 0; }
}

/* ============================================================
   2. PAIN – Premium Cards mit Lucide Icons
   ============================================================ */
.pain-section {
    position: relative;
    padding: clamp(90px, 8vw, 150px) 28px clamp(110px, 10vw, 170px);
    background: #f6f3ed;
    overflow: hidden;
    border-bottom: none;
    font-family: "DM Sans", sans-serif;
    color: #171714;
}
.pain-section::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    left: -250px;
    top: -260px;
    background: radial-gradient(
        circle,
        rgba(199, 173, 119, 0.10),
        transparent 67%
    );
    pointer-events: none;
}
.pain-container {
    width: min(100%, 1540px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.pain-section .section-head {
    display: block;
    max-width: 900px;
    margin-bottom: 64px;
}
.pain-section .section-copy {
    max-width: 620px;
    margin: 28px 0 0;
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #706d65;
}
.pain-section .section-number {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #8a867e;
    font-family: "DM Sans", sans-serif;
}
.pain-section .section-number::before {
    content: "";
    width: 28px;
    height: 1px;
    background: #8a867e;
}
.pain-section .section-kicker {
    margin-bottom: 18px;
    font-size: 14px;
    font-style: italic;
    color: #77736b;
}
.pain-section h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 5vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    max-width: 760px;
    font-weight: 700;
    color: #171714;
    margin: 0;
}
.pain-section h2 span {
    color: #918d84;
    font-weight: 500;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.pain-section .card {
    position: relative;
    min-height: 335px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(23, 23, 20, 0.10);
    border-radius: 26px;
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition:
        transform 0.55s var(--ease),
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.55s var(--ease);
}
.pain-section .card::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(199, 173, 119, 0.13),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.45s ease, transform 0.7s var(--ease);
}
.pain-section .card:hover {
    transform: translateY(-9px);
    background: #ffffff;
    border-color: rgba(23, 23, 20, 0.18);
    box-shadow: 0 26px 60px rgba(35, 31, 24, 0.08);
}
.pain-section .card:hover::before {
    opacity: 1;
    transform: scale(1.35);
}

.card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.icon-box {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(199, 173, 119, 0.13);
    color: #8c7245;
    transition:
        transform 0.5s var(--ease),
        background 0.35s ease,
        color 0.35s ease;
}
.icon-box svg {
    width: 25px;
    height: 25px;
    stroke-width: 1.45;
}
.pain-section .card:hover .icon-box {
    transform: translateY(-3px) rotate(-4deg);
    background: #c7ad77;
    color: #ffffff;
}
.card-number {
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: rgba(23, 23, 20, 0.32);
}

.card-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
}
.pain-section .card h3 {
    max-width: 270px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(21px, 1.5vw, 26px);
    line-height: 1.15;
    letter-spacing: -0.035em;
    margin-bottom: 14px;
    font-weight: 600;
    color: #171714;
}
.pain-section .card p {
    max-width: 300px;
    font-size: 15px;
    line-height: 1.65;
    color: #706d65;
}
.card-foot {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #99948a;
    transition: color 0.35s ease;
}
.card-foot::before {
    content: "";
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: width 0.45s var(--ease);
}
.pain-section .card:hover .card-foot { color: #8b7249; }
.pain-section .card:hover .card-foot::before { width: 32px; }

/* Scroll-Reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.85s var(--ease),
        transform 0.85s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.pain-section .card:nth-child(2) { transition-delay: 0.05s; }
.pain-section .card:nth-child(3) { transition-delay: 0.10s; }
.pain-section .card:nth-child(4) { transition-delay: 0.15s; }

/* Pain Responsive */
@media (max-width: 1150px) {
    .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 850px) {
    .pain-section .section-copy {
        max-width: 100%;
        margin-top: 20px;
    }
}
@media (max-width: 620px) {
    .pain-section { padding: 90px 18px; }
    .cards { grid-template-columns: 1fr; }
    .pain-section .card { min-height: 260px; }
    .pain-section .card h3,
    .pain-section .card p { max-width: none; }
}

/* HERO RESPONSIVE */
@media (max-width: 1050px) {
    .nav-center { display: none; }
    .hero-content {
        grid-template-columns: 1fr;
        align-items: center;
    }
    .tour-menu { display: none; }
    .hero-left { padding-bottom: 110px; }
    .headline { max-width: 850px; }
}
@media (max-width: 720px) {
    .hero { padding: 7px; }
    .hero-frame {
        min-height: calc(100svh - 14px);
        border-radius: 23px;
    }
    .hero .nav { height: 72px; padding: 0 20px; }
    .brand-text { display: none; }
    .lang { display: none; }
    .nav-button { height: 40px; }
    .hero-content {
        padding: 60px 21px 28px;
        min-height: calc(100svh - 86px);
    }
    .headline { font-size: clamp(52px, 15vw, 80px); }
    .hero-info { margin-top: 22px; }
    .hero-info p { font-size: 15px; }
    .location-badge,
    .hero-counter { display: none; }
    .bottom-bar {
        left: 21px;
        right: 21px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .location-chips { max-width: 100%; }
    .location-chips li {
        padding: 6px 12px;
        font-size: 11px;
    }
    .main-actions { gap: 8px; }
    .discover-button,
    .watch-link { height: 52px; }
}

/* ---------- 2. PAIN ---------- */
.pain { background: var(--bg); }
.pain-card {
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
    padding: 22px;
}
.pain-card h3 {
    font-size: 16px;
    margin: 0 0 8px;
    font-weight: 600;
}
.pain-card p {
    font-size: 14px;
    color: var(--ink-2);
    margin: 0;
}

/* ---------- 3. VORSTELLUNG ---------- */
.intro-isabella { background: var(--bg-2); }
.intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    align-items: center;
}
.lead-quote {
    font-size: 20px;
    line-height: 1.4;
    color: var(--ink);
    border-left: 3px solid var(--ink);
    padding: 4px 0 4px 18px;
    margin: 0 0 22px;
    font-style: italic;
}
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.check-list li {
    position: relative;
    padding-left: 26px;
    font-size: 15px;
    color: var(--ink-2);
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
}

/* ---------- 4. WHY ---------- */
.why-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.why-card h3 { font-size: 17px; margin: 0; }
.why-card p { font-size: 14px; color: var(--ink-2); margin: 0; }

/* ============================================================
   5. STORY – Meine Geschichte (mit gefadetem Sächsische-Schweiz-Bild)
   ============================================================ */
.story {
    position: relative;
    padding:
        clamp(120px, 11vw, 190px) 28px
        clamp(120px, 10vw, 170px);
    overflow: hidden;
    background: #f5f1e9;
    font-family: "DM Sans", sans-serif;
    color: #171714;
    border-bottom: none;
}
.story::before {
    content: "";
    position: absolute;
    width: 760px;
    height: 760px;
    right: -300px;
    top: -260px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(198, 171, 118, 0.14),
        transparent 68%
    );
    pointer-events: none;
}
.story-container {
    width: min(100%, 1540px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
/* Full-Height Bild rechts, links fadet es in den Section-Hintergrund */
.story-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 68%;
    object-fit: cover;
    object-position: 50% 45%;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image:
        linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, .85) 28%,
            rgba(0, 0, 0, 1) 55%,
            rgba(0, 0, 0, 1) 100%),
        linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 55%,
            rgba(0, 0, 0, 0) 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, .85) 28%,
            rgba(0, 0, 0, 1) 55%,
            rgba(0, 0, 0, 1) 100%),
        linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 55%,
            rgba(0, 0, 0, 0) 100%);
    mask-composite: intersect;
}

.story-top {
    display: block;
    max-width: 620px;
}
.story-copy { position: relative; z-index: 3; }
.story .section-label {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 26px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #9d988f;
}
.story .section-label::before {
    content: "";
    width: 32px;
    height: 1px;
    background: #9d988f;
}
.story .kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.story .kicker-line {
    width: 2px;
    height: 34px;
    background: #171714;
}
.story .kicker span {
    font-size: 14px;
    font-style: italic;
    color: #716d65;
}
.story .title {
    font-family: "Manrope", sans-serif;
    font-size: clamp(50px, 5.4vw, 86px);
    line-height: .98;
    letter-spacing: -.065em;
    max-width: 820px;
    font-weight: 700;
    margin: 0;
    color: #171714;
}
.story .title span {
    color: #98938a;
    font-weight: 500;
}
.story-text {
    margin-top: 32px;
    max-width: 670px;
    font-size: 17px;
    line-height: 1.75;
    color: #716d65;
}
.story-text p { margin: 0; }
.story-text p + p { margin-top: 18px; }
.story-text strong { color: #171714; font-weight: 500; }

/* STORY END – Bild endet vor dem Text, sauberer Übergang */
.story-end {
    position: relative;
    z-index: 5;
    margin-top: clamp(90px, 9vw, 140px);
    padding-top: 60px;
    border-top: 0;
    display: flex;
    justify-content: center;
    background: transparent;
}
.end-copy-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
    max-width: 1000px;
}
.story .end-copy {
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 3.2vw, 48px);
    line-height: 1.15;
    letter-spacing: -.045em;
    color: #171714;
    margin: 0;
}
.story .end-copy span { color: #979289; }

.story-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 27px;
    background: #171714;
    color: #ffffff;
    border-radius: 999px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .01em;
    text-decoration: none;
    transition:
        background .35s ease,
        color .35s ease,
        gap .35s var(--ease),
        transform .35s var(--ease),
        box-shadow .35s ease;
}
.story-cta:hover {
    background: #c6ab76;
    color: #171714;
    gap: 18px;
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(23, 23, 20, 0.12);
}
.story-cta svg {
    width: 18px;
    transition: transform .35s var(--ease);
}
.story-cta:hover svg { transform: translateX(3px); }

/* Story Responsive */
@media (max-width: 1050px) {
    .story-bg-image {
        width: 100%;
        height: 55%;
        top: auto;
        bottom: 0;
        -webkit-mask-image: linear-gradient(
            to top,
            rgba(0, 0, 0, 1) 60%,
            rgba(0, 0, 0, 0) 100%
        );
        mask-image: linear-gradient(
            to top,
            rgba(0, 0, 0, 1) 60%,
            rgba(0, 0, 0, 0) 100%
        );
    }
    .story-top { max-width: 100%; }
}
@media (max-width: 700px) {
    .story { padding: 90px 18px 120px; }
    .end-copy-wrap { gap: 26px; }
    .story-cta {
        padding: 15px 22px;
        font-size: 13px;
    }
}


/* ---------- (Legacy) 5. STORY GRID – nicht mehr benutzt ---------- */
.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

/* ---------- 6. DESTINATIONS ---------- */
.dest-card, .tour-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.dest-card .placeholder-image,
.tour-card .placeholder-image {
    border: none;
    border-radius: 0;
    border-bottom: 1px dashed var(--ink-3);
}
.dest-body, .tour-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.dest-body h3, .tour-body h3 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}
.dest-lead {
    font-size: 14px;
    color: var(--ink-2);
    margin: 0;
}
.motif {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .04em;
    color: var(--ink-2);
    font-style: italic;
    border-left: 2px solid var(--ink);
    padding: 2px 0 2px 10px;
    margin-bottom: 4px;
}
.audience-tags {
    list-style: none;
    padding: 0;
    margin: 4px 0 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.audience-tags li {
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink-3);
    background: transparent;
    border: 1px solid var(--line);
    padding: 3px 8px;
    border-radius: 999px;
}
.audience-hint {
    display: inline-block;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 6px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.meta-list li {
    font-size: 12px;
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--ink-2);
}
.meta-list.inline { margin-bottom: 6px; }
.tour-body .btn { margin-top: auto; }
.dest-body .btn { margin-top: auto; }

/* ---------- 7. SIGNATURE ---------- */
.signature-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px dashed var(--line);
}
.signature-row:last-child { border-bottom: none; }
.signature-row.reversed { grid-template-columns: 1fr 1.2fr; }
.signature-row.reversed .placeholder-image { order: 2; }
.signature-row.reversed .signature-copy { order: 1; }
.signature-copy .tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--ink);
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 10px;
}
.signature-copy h3 {
    font-size: 26px;
    margin: 0 0 10px;
}

/* ---------- 8. TOURS (Reservierung) ---------- */
.tours { background: var(--bg-2); }

/* ---------- 9. HOW ---------- */
.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    counter-reset: step;
}
.steps li {
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
    padding: 22px;
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}
.steps h3 { font-size: 16px; margin: 0 0 6px; }
.steps p { font-size: 14px; color: var(--ink-2); margin: 0; }

/* ---------- 10. REVIEWS ---------- */
.review-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
}
.stars { color: var(--ink); letter-spacing: 2px; margin-bottom: 10px; }
.review-meta { font-size: 13px; color: var(--ink-3); margin: 10px 0 0; }

/* ---------- 11. FAQ ---------- */
.faq-list { max-width: 760px; }
.faq-list details {
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
}
.faq-list summary {
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.faq-list summary::after {
    content: "+";
    font-size: 20px;
    color: var(--ink-2);
    transition: transform .2s;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p {
    margin: 10px 0 0;
    color: var(--ink-2);
    font-size: 15px;
}

/* ---------- 12. FINAL CTA ---------- */
.final-cta { background: var(--bg-2); }
.final-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.final-copy .btn { margin: 20px 0 12px; }
.micro { font-size: 12px; color: var(--ink-3); }

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--ink);
    color: #d0d0d0;
    padding: 56px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
}
.site-footer h4 {
    color: #fff;
    font-size: 14px;
    margin: 0 0 12px;
    letter-spacing: .04em;
}
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}
.site-footer a { color: #d0d0d0; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.site-footer .logo-placeholder { color: #d0d0d0; border-color: #666; }
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 32px;
    padding-top: 16px;
    text-align: center;
}

/* ============================================================
   SIGNATURE – Section 3 (Isabella) + Section 4 (Experience Cards)
   ============================================================ */
.signature {
    position: relative;
    padding:
        clamp(110px, 10vw, 180px) 28px
        clamp(120px, 12vw, 200px);
    overflow: hidden;
    background: #f6f3ed;
    font-family: "DM Sans", sans-serif;
    color: #171714;
}
.signature::before {
    content: "";
    position: absolute;
    width: 750px;
    height: 750px;
    left: -320px;
    top: 160px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(199, 173, 119, 0.12),
        transparent 68%
    );
    pointer-events: none;
}
.signature-container {
    width: min(100%, 1540px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* INTRO GRID */
.signature-intro {
    display: grid;
    grid-template-columns: minmax(420px, .82fr) minmax(500px, 1fr);
    gap: clamp(70px, 8vw, 145px);
    align-items: center;
}

/* PORTRAIT */
.portrait-wrap { position: relative; }
.portrait {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 32px;
    overflow: hidden;
    background: #ddd;
    box-shadow: 0 30px 80px rgba(38, 31, 18, 0.10);
}
.portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.portrait:hover img { transform: scale(1.025); }
.portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(15, 15, 12, 0.28),
        transparent 32%
    );
    pointer-events: none;
}
.portrait-caption {
    position: absolute;
    left: 24px;
    bottom: 22px;
    z-index: 3;
    color: white;
}
.caption-small {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .15em;
    opacity: .66;
}
.caption-name {
    margin-top: 5px;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.03em;
}

/* FLOATING POLEN × SACHSEN CHIP */
.culture-chip {
    position: absolute;
    top: 28px;
    right: -32px;
    z-index: 5;
    padding: 14px 18px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(25, 22, 16, 0.09);
    display: flex;
    align-items: center;
    gap: 11px;
}
.culture-icon {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: #eee5d3;
    display: grid;
    place-items: center;
    color: #8b7147;
}
.culture-icon svg { width: 17px; stroke-width: 1.5; }
.culture-copy span {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: #918d84;
}
.culture-copy strong {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    font-weight: 600;
}

/* COPY */
.signature .section-index {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 28px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #99948a;
}
.signature .section-index::before {
    content: "";
    width: 32px;
    height: 1px;
    background: #9b978e;
}
.eyebrow-block {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
}
.eyebrow-line {
    width: 2px;
    height: 30px;
    background: #171714;
}
.eyebrow-text {
    font-size: 14px;
    font-style: italic;
    color: #77736b;
}
.signature-title {
    max-width: 800px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 5.2vw, 82px);
    line-height: .99;
    letter-spacing: -.065em;
    font-weight: 700;
    margin: 0;
}
.signature-title span {
    color: #9a958b;
    font-weight: 500;
}
.intro-text {
    max-width: 650px;
    margin-top: 27px;
    font-size: 17px;
    line-height: 1.72;
    color: #77736b;
}
.intro-text strong { color: #171714; font-weight: 500; }

/* QUOTE */
.quote {
    margin-top: 34px;
    max-width: 690px;
    padding: 0 0 0 25px;
    border-left: 2px solid #c7ad77;
}
.quote p {
    font-family: "Manrope", sans-serif;
    font-size: clamp(20px, 1.8vw, 27px);
    line-height: 1.48;
    letter-spacing: -.03em;
    font-style: italic;
    margin: 0;
}

/* MINI BENEFITS */
.mini-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 38px;
}
.mini-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 16px;
    border: 1px solid rgba(23, 23, 20, 0.10);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.45);
    transition: transform .4s var(--ease), background .3s ease;
}
.mini-benefit:hover {
    background: white;
    transform: translateY(-3px);
}
.mini-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 10px;
    background: #eee5d3;
    display: grid;
    place-items: center;
    color: #826b43;
}
.mini-icon svg { width: 16px; stroke-width: 1.5; }
.mini-benefit span {
    font-size: 13px;
    font-weight: 500;
}

/* TRANSITION */
.experience-transition {
    margin-top: clamp(120px, 11vw, 180px);
    padding-top: 38px;
    border-top: 1px solid rgba(23, 23, 20, 0.18);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}
.transition-small {
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #969188;
    flex-shrink: 0;
}
.transition-title {
    max-width: 900px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 4.5vw, 68px);
    line-height: 1.02;
    letter-spacing: -.055em;
    font-weight: 700;
    margin: 0;
}
.transition-title span { color: #98938a; font-weight: 500; }

/* EXPERIENCE GRID */
.experience-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.experience-card { position: relative; min-width: 0; }
.experience-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 24px;
    background: #ddd;
}
.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .85s var(--ease);
}
.experience-card:hover .experience-image img {
    transform: scale(1.055);
}
.experience-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(14, 14, 12, 0.48),
        transparent 45%
    );
    transition: background .4s ease;
}
.experience-card:hover .experience-image::after {
    background: linear-gradient(
        0deg,
        rgba(14, 14, 12, 0.58),
        transparent 55%
    );
}
.card-index {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 4;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(15px);
    font-size: 10px;
    font-weight: 600;
    color: #27251f;
}
.image-icon {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 4;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: rgba(20, 20, 17, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(16px);
    color: white;
    display: grid;
    place-items: center;
    transition:
        background .35s ease,
        transform .45s var(--ease),
        color .35s ease;
}
.image-icon svg { width: 18px; stroke-width: 1.45; }
.experience-card:hover .image-icon {
    background: #c7ad77;
    color: #181612;
    transform: rotate(-7deg) scale(1.07);
}
.image-label {
    position: absolute;
    left: 20px;
    bottom: 19px;
    z-index: 5;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: rgba(255, 255, 255, 0.72);
}
.experience-copy { padding: 21px 4px 0; }
.audience {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #aaa49a;
    font-family: "DM Sans", sans-serif;
}
.experience-copy h3 {
    margin-top: 10px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(20px, 1.6vw, 26px);
    line-height: 1.15;
    letter-spacing: -.035em;
    font-weight: 600;
    color: #171714;
}
.experience-copy p {
    margin-top: 12px;
    max-width: 330px;
    font-size: 14px;
    line-height: 1.65;
    color: #77736b;
}
.detail {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 17px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #8d754d;
    opacity: .55;
    transition: opacity .4s ease, transform .45s var(--ease);
}
.detail::before {
    content: "";
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: width .4s var(--ease);
}
.experience-card:hover .detail {
    opacity: 1;
    transform: translateX(3px);
}
.experience-card:hover .detail::before { width: 29px; }

/* FINAL STATEMENT */
.signature-end {
    margin-top: clamp(100px, 9vw, 145px);
    padding-top: 0;
    border-top: 0;
    display: flex;
    justify-content: center;
    text-align: center;
}
.signature-end .end-copy {
    margin: 0 auto;
    text-align: center;
}
.end-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .15em;
    line-height: 1.7;
    color: #9b968d;
}
.end-copy {
    max-width: 950px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(29px, 3.2vw, 50px);
    letter-spacing: -.045em;
    line-height: 1.15;
    color: #171714;
}
.end-copy span { color: #9a958c; }

/* Signature Responsive */
@media (max-width: 1150px) {
    .signature-intro {
        grid-template-columns: .85fr 1fr;
        gap: 60px;
    }
    .experience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 850px) {
    .signature-intro { grid-template-columns: 1fr; }
    .portrait-wrap { max-width: 600px; }
    .culture-chip { right: 20px; }
    .experience-transition {
        display: block;
    }
    .transition-title { margin-top: 20px; }
    .signature-end {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}
@media (max-width: 620px) {
    .signature { padding: 90px 18px 120px; }
    .portrait { border-radius: 22px; }
    .culture-chip { top: 18px; right: 14px; }
    .mini-benefits { grid-template-columns: 1fr; }
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }
    .experience-image { aspect-ratio: 4/4.7; }
}
/* ============================================================
   6. DESTINATIONEN – Dresden · Meißen · Sächsische Schweiz
   3 Cards nebeneinander, cleane weiße Section, keine Wolken
   ============================================================ */
:root {
    --destination-text: #191916;
    --destination-muted: #69675f;
    --destination-gold: #a88658;
    --destination-ease: cubic-bezier(.16, 1, .3, 1);
}

.destinations {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: var(--destination-text);
    padding:
        clamp(90px, 8vw, 140px) 0
        clamp(100px, 9vw, 160px);
    border-bottom: none;
    font-family: "DM Sans", sans-serif;
}
.destinations-inner {
    position: relative;
    width: min(92%, 1400px);
    margin: 0 auto;
}

/* HEADER */
.destination-header {
    max-width: 720px;
    margin-bottom: clamp(60px, 6vw, 100px);
}
.destinations .section-index {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: #817d74;
}
.destinations .section-index > span {
    color: var(--destination-gold);
}
.destinations .section-index::after {
    content: "";
    width: 34px;
    height: 1px;
    background: rgba(39, 36, 30, 0.25);
}
.destinations .section-kicker {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 14px;
}
.destinations .kicker-line {
    width: 2px;
    height: 30px;
    background: var(--destination-gold);
}
.destinations .section-kicker em {
    font-family: Georgia, serif;
    font-size: 15px;
    font-style: italic;
    color: #5f5b54;
}
.destination-header h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 4.8vw, 76px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -.055em;
}
.destination-header h2 span {
    font-family: Georgia, serif;
    font-weight: 400;
    font-style: italic;
    color: #716b61;
}
.destination-header > p {
    max-width: 560px;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--destination-muted);
}

/* 3-COL GRID */
.destination-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */
.destination-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(23, 23, 20, 0.06);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(46, 38, 22, 0.06);
    cursor: pointer;
    transition:
        transform .55s var(--destination-ease),
        box-shadow .55s var(--destination-ease),
        filter .45s ease,
        opacity .45s ease;
    will-change: transform, filter;
}

/* HOVER-CHOREOGRAFIE:
   1) Wenn die Maus über die Liste geht, alle Cards zurücknehmen (Blur + kleiner)
   2) Die spezifisch überhoverte Card wird nach vorne gezogen und scharfgestellt */
.destination-list:hover .destination-card {
    filter: blur(4px) brightness(0.96);
    transform: scale(0.97);
    opacity: 0.72;
}
.destination-list:hover .destination-card:hover {
    filter: none;
    transform: translateY(-10px) scale(1.03);
    opacity: 1;
    box-shadow: 0 34px 80px rgba(46, 38, 22, 0.16);
    z-index: 3;
}

/* IMAGE */
.destination-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    filter: saturate(0.9);
    transition:
        transform 1s var(--destination-ease),
        filter .6s ease;
}
.destination-card:hover .destination-image img {
    transform: scale(1.06);
    filter: saturate(1);
}
/* Weicher Fade am Bildunterrand → verschmilzt mit weißer Content-Fläche */
.destination-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 45%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 55%,
        rgba(255, 255, 255, 0.85) 82%,
        #ffffff 100%
    );
    pointer-events: none;
    z-index: 2;
}
.destination-number {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(250, 247, 240, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    color: #75684f;
}

/* CONTENT */
.destination-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 clamp(24px, 2vw, 32px) 28px;
    margin-top: -32px;
    flex: 1;
}
.destination-eyebrow {
    position: relative;
    padding-left: 14px;
    font-family: Georgia, serif;
    font-size: 13px;
    font-style: italic;
    line-height: 1.5;
    color: #5f5a51;
    margin: 0;
}
.destination-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 2px;
    height: 20px;
    background: var(--destination-gold);
}
.destination-content h3 {
    margin: 4px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(26px, 2.2vw, 34px);
    font-weight: 600;
    letter-spacing: -.04em;
    line-height: 1.05;
    color: var(--destination-text);
}
.destination-content > p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #5e5b54;
}

/* FACTS */
.facts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}
.facts span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border: 1px solid rgba(40, 37, 31, 0.10);
    border-radius: 6px;
    background: rgba(250, 248, 244, 0.6);
    font-size: 10px;
    color: #555149;
}
.facts svg {
    width: 12px;
    height: 12px;
    stroke-width: 1.5;
    color: #947448;
}

/* TAGS */
.destinations .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
    padding: 0;
    list-style: none;
}
.destinations .tags span {
    padding: 5px 9px;
    border-radius: 999px;
    border: 1px solid rgba(40, 37, 31, 0.13);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #716c63;
    background: transparent;
}

/* LINK */
.destination-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    margin-top: auto;
    padding-top: 16px;
    color: #24231f;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}
.link-arrow {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(38, 35, 30, 0.15);
    transition:
        background .35s ease,
        color .35s ease,
        transform .45s var(--destination-ease);
}
.link-arrow svg {
    width: 13px;
    height: 13px;
    stroke-width: 1.5;
}
.destination-link:hover .link-arrow {
    transform: rotate(45deg);
    background: #1d1d1a;
    color: white;
}

/* ENDING */
.destination-ending {
    position: relative;
    margin: clamp(70px, 7vw, 120px) auto 0;
    text-align: center;
}
.ending-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 19px;
    display: grid;
    place-items: center;
    color: #9b7a4f;
}
.ending-icon svg {
    width: 25px;
    height: 25px;
    stroke-width: 1.2;
}
.destination-ending p {
    font-family: Georgia, serif;
    font-size: clamp(26px, 2.6vw, 40px);
    line-height: 1.2;
    color: #292722;
    margin: 0;
}
.destination-ending em {
    display: block;
    font-weight: 400;
    font-style: italic;
    color: #967453;
}

/* Reveal */
.destinations .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .9s var(--destination-ease),
        transform .9s var(--destination-ease);
}
.destinations .reveal.visible {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 980px) {
    .destination-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .destinations { padding: 70px 0 80px; }
    .destinations-inner { width: calc(100% - 28px); }
    .destination-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .destination-header h2 { font-size: 44px; }
}


/* ============================================================
   7. SIGNATURE ADVENTURES – Running & Rundflug
   Section-Farbe wechselt beim Hover zwischen Dark (Running)
   und Warm-Light (Flight).
   ============================================================ */
.adventure {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #2a2a26;
    color: #f4f0e8;
    font-family: "DM Sans", sans-serif;
    border-bottom: none;
    transition: background-color .95s var(--ease), color .75s ease;
}
.adventure.running-active {
    background: #2a2a26;
    color: #f4f0e8;
}
.adventure.flight-active {
    background: #f4f0e7;
    color: #171714;
}
/* End-Copy Farbe passt sich dem Theme an */
.adventure.running-active .end-copy { color: #f4f0e8; }
.adventure.flight-active .end-copy { color: #171714; }
.adventure.running-active .end-copy span { color: #c8ad78; }
.adventure.flight-active .end-copy span { color: #a48450; }

/* AMBIENT */
.adventure .ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    transition: opacity .8s ease;
}
.adventure .ambient::before {
    content: "";
    position: absolute;
    width: 850px;
    height: 850px;
    left: -330px;
    top: -500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(223, 255, 92, 0.11),
        transparent 67%
    );
}
.adventure .ambient::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    right: -330px;
    bottom: -500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.07),
        transparent 67%
    );
}
.adventure.flight-active .ambient::before {
    background: radial-gradient(
        circle,
        rgba(189, 163, 109, 0.13),
        transparent 67%
    );
}
.adventure.flight-active .ambient::after {
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.7),
        transparent 67%
    );
}

/* HEAD */
.adventure-head {
    position: relative;
    z-index: 10;
    width: min(calc(100% - 10vw), 1680px);
    margin: auto;
    padding: clamp(70px, 6vw, 110px) 0 clamp(38px, 4vw, 60px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.adventure .section-index {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 27px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    opacity: .43;
}
.adventure .section-index::before {
    content: "";
    width: 31px;
    height: 1px;
    background: currentColor;
}
.adventure .kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
}
.adventure .kicker-line {
    width: 2px;
    height: 33px;
    background: var(--acid);
    transition: background .7s ease;
}
.adventure.flight-active .kicker-line {
    background: #a48450;
}
.adventure .kicker span {
    font-size: 14px;
    font-style: italic;
    opacity: .62;
}
.adventure-title {
    max-width: 900px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 5vw, 80px);
    font-weight: 600;
    line-height: .95;
    letter-spacing: -.065em;
    margin: 0;
}
.adventure-title .muted {
    opacity: .34;
    font-weight: 500;
}
.head-copy {
    max-width: 470px;
    font-size: 16px;
    line-height: 1.7;
    opacity: .58;
    margin: 0;
}
.head-copy strong {
    font-weight: 500;
    color: inherit;
    opacity: 1;
}

/* STAGE */
.adventure .stage {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 clamp(18px, 2vw, 34px);
    display: flex;
    gap: clamp(10px, 1vw, 16px);
}

/* CARD */
.experience {
    position: relative;
    min-width: 0;
    height: clamp(440px, 52vw, 620px);
    max-height: 620px;
    flex: 1;
    border: none;
    padding: 0;
    overflow: hidden;
    border-radius: 26px;
    cursor: pointer;
    color: #ffffff;
    text-align: left;
    background: #181914;
    isolation: isolate;
    transition:
        flex .9s var(--ease),
        transform .7s var(--ease);
}
.adventure .stage:hover .experience { flex: .72; }
.adventure .stage .experience:hover,
.adventure .stage .experience.active { flex: 1.28; }

/* IMAGE */
.experience .image {
    position: absolute;
    inset: 0;
    z-index: -4;
    overflow: hidden;
}
.experience .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.035);
    transition:
        transform 1.35s var(--ease),
        filter .7s ease;
}
.experience:hover .image img,
.experience.active .image img {
    transform: scale(1.075);
}
.running-card .image img {
    filter: brightness(.7) saturate(.85) contrast(1.07);
}
.flight-card .image img {
    filter: brightness(.82) saturate(.8);
}

/* OVERLAY */
.experience .overlay {
    position: absolute;
    inset: 0;
    z-index: -3;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 7, 0.04),
        rgba(8, 8, 7, 0.08) 38%,
        rgba(8, 8, 7, 0.88) 100%
    );
}

/* TOP */
.experience .card-top {
    position: absolute;
    left: 30px;
    right: 30px;
    top: 28px;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.experience .number {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(15, 15, 12, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    font-size: 10px;
    letter-spacing: .1em;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
}
.experience .signature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(15, 15, 12, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.21);
    backdrop-filter: blur(15px);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: #fff;
}
.experience .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--acid);
    box-shadow: 0 0 16px rgba(223, 255, 92, 0.6);
}

/* GIANT LABEL */
.experience .giant {
    position: absolute;
    top: 88px;
    right: 26px;
    z-index: 1;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 5vw, 88px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.075em;
    color: rgba(255, 255, 255, 0.13);
    writing-mode: vertical-rl;
    pointer-events: none;
}

/* CONTENT */
.experience .card-content {
    position: absolute;
    left: clamp(24px, 3vw, 44px);
    right: clamp(24px, 3vw, 44px);
    bottom: clamp(24px, 3vw, 42px);
    z-index: 5;
}
.experience .card-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: rgba(255, 255, 255, 0.58);
}
.experience .card-kicker::before {
    content: "";
    width: 23px;
    height: 1px;
    background: var(--acid);
}
.experience .card-title {
    max-width: 650px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 3.6vw, 56px);
    font-weight: 600;
    line-height: .95;
    letter-spacing: -.055em;
    margin: 0;
    color: #fff;
}
.experience .card-description {
    max-width: 560px;
    margin-top: 18px;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.66);
}

/* MORE (hover reveal) */
.experience .more {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(20px);
    transition:
        max-height .75s var(--ease),
        opacity .55s ease,
        transform .7s var(--ease);
}
.experience:hover .more,
.experience.active .more {
    max-height: 180px;
    opacity: 1;
    transform: translateY(0);
}
.experience .pills {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.experience .pill {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.74);
}
.experience .pill svg {
    width: 13px;
    stroke-width: 1.5;
}

/* CTA */
.experience .card-bottom {
    margin-top: 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.experience .card-link {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.experience .arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--acid);
    color: #11120e;
    transition: transform .45s var(--ease);
}
.experience .card-link:hover .arrow {
    transform: rotate(-45deg) scale(1.07);
}
.experience .arrow svg { width: 16px; }
.experience .audience {
    max-width: 260px;
    text-align: right;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: rgba(255, 255, 255, 0.42);
}

/* INDICATOR */
.adventure .active-indicator {
    position: relative;
    z-index: 20;
    margin: 24px auto 0;
    display: flex;
    justify-content: center;
    gap: 7px;
}
.adventure .active-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(128, 128, 128, 0.4);
    transition:
        width .5s var(--ease),
        background .4s ease;
}
.adventure .active-indicator span.active {
    width: 27px;
    border-radius: 999px;
    background: var(--acid);
}
.adventure.flight-active .active-indicator span.active {
    background: #9b7c49;
}

/* END */
.adventure .section-end {
    position: relative;
    z-index: 10;
    width: min(calc(100% - 10vw), 1680px);
    margin: auto;
    padding: clamp(60px, 6vw, 90px) 0 clamp(70px, 7vw, 100px);
    display: flex;
    justify-content: center;
    text-align: center;
    border-bottom: 0;
}
.adventure .end-small {
    font-size: 10px;
    line-height: 1.7;
    text-transform: uppercase;
    letter-spacing: .14em;
    opacity: .4;
}
.adventure .end-copy {
    max-width: 1050px;
    margin: 0 auto;
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 3.2vw, 52px);
    line-height: 1.12;
    letter-spacing: -.05em;
    color: #f4f0e8;
    text-align: center;
}
.adventure .end-copy span { color: #c8ad78; opacity: 1; }

/* Adventure Responsive */
@media (max-width: 1000px) {
    .adventure-head {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .adventure .stage {
        display: grid;
        grid-template-columns: 1fr;
    }
    .experience,
    .adventure .stage:hover .experience,
    .adventure .stage .experience:hover,
    .adventure .stage .experience.active { flex: auto; }
    .experience { height: 700px; }
    .experience .more {
        max-height: 190px;
        opacity: 1;
        transform: none;
    }
}
@media (max-width: 700px) {
    .adventure-head {
        width: calc(100% - 36px);
        padding: 80px 0 50px;
    }
    .adventure .stage { padding: 0 8px; }
    .experience {
        height: 590px;
        border-radius: 22px;
    }
    .experience .card-top { left: 18px; right: 18px; }
    .experience .card-content {
        left: 22px;
        right: 22px;
        bottom: 25px;
    }
    .experience .giant { display: none; }
    .experience .card-title { font-size: clamp(42px, 12vw, 62px); }
    .experience .card-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
    .experience .audience { text-align: left; }
    .adventure .section-end {
        width: calc(100% - 36px);
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* ============================================================
   8. BELIEBTE TOUREN – Live-Reservierung, Mitte = Bestseller
   Hover-Choreografie wie bei Destinations
   ============================================================ */
.tours-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f5f2eb;
    padding: clamp(70px, 6vw, 110px) 0 clamp(70px, 6vw, 110px);
    color: #191916;
    font-family: "DM Sans", sans-serif;
    border-bottom: none;
}
.tours-container {
    position: relative;
    width: min(92%, 1400px);
    margin: 0 auto;
    z-index: 2;
}

/* HEADER */
.tours-header {
    max-width: 780px;
    margin-bottom: clamp(40px, 4vw, 70px);
}
.tours-index {
    margin-bottom: 24px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .17em;
    color: #99938a;
}
.tours-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
}
.tours-eyebrow > span {
    width: 2px;
    height: 32px;
    background: #a88655;
    display: block;
}
.tours-eyebrow em {
    font-family: Georgia, serif;
    font-size: 15px;
    font-style: italic;
    color: #68635b;
}
.tours-header h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.055em;
    color: #191916;
}
.tours-header h2 span {
    display: block;
    color: #9b958b;
    font-family: Georgia, serif;
    font-weight: 400;
    font-style: italic;
}
.tours-header > p {
    max-width: 620px;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.7;
    color: #706b62;
}

/* GRID – gleichmäßiger, Mitte optisch durch Farbe hervorgehoben */
.tour-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 20px;
    align-items: stretch;
    padding: 22px 0 12px;
}

/* CARD */
.tour-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(23, 23, 20, 0.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(46, 38, 22, 0.06);
    cursor: pointer;
    transition:
        transform .55s cubic-bezier(.16, 1, .3, 1),
        box-shadow .55s cubic-bezier(.16, 1, .3, 1),
        filter .45s ease,
        opacity .45s ease;
}
/* Hover: Geschwister zurücknehmen, hovered nach vorn */
.tour-grid:hover .tour-card {
    filter: blur(4px) brightness(0.96);
    transform: scale(0.97);
    opacity: 0.72;
}
.tour-grid:hover .tour-card:hover {
    filter: none;
    transform: translateY(-10px) scale(1.03);
    opacity: 1;
    box-shadow: 0 34px 80px rgba(46, 38, 22, 0.16);
    z-index: 5;
}

/* IMAGE */
.tour-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 1s cubic-bezier(.16, 1, .3, 1);
}
.tour-card:hover .tour-image img {
    transform: scale(1.06);
}
.tour-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 40%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 55%,
        rgba(255, 255, 255, 0.9) 82%,
        #ffffff 100%
    );
    pointer-events: none;
}

/* CONTENT */
.tour-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 22px 22px;
    margin-top: -28px;
    flex: 1;
}
.tour-motif {
    position: relative;
    padding-left: 14px;
    font-family: Georgia, serif;
    font-size: 13px;
    font-style: italic;
    line-height: 1.5;
    color: #5f5a51;
}
.tour-motif::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 2px;
    height: 18px;
    background: #a88655;
}
.tour-body h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(20px, 1.7vw, 26px);
    line-height: 1.1;
    letter-spacing: -.035em;
    font-weight: 600;
    color: #191916;
}
.tour-body > p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #5e5b54;
}
.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin: 4px 0 0;
    list-style: none;
}
.tour-meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 6px;
    border: 1px solid rgba(40, 37, 31, 0.10);
    background: rgba(250, 248, 244, 0.6);
    font-size: 10px;
    color: #555149;
}
.tour-meta li svg {
    width: 12px;
    height: 12px;
    stroke-width: 1.5;
    color: #947448;
}

/* PRICE + CTA */
.tour-price-row {
    margin-top: auto;
    padding-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.tour-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.price-from {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #9a938a;
}
.price-value {
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #191916;
    letter-spacing: -.02em;
}
.price-per {
    font-size: 10px;
    color: #9a938a;
}
.tour-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px 10px 16px;
    border-radius: 999px;
    border: 1px solid #191916;
    background: transparent;
    color: #191916;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .02em;
    cursor: pointer;
    transition: background .3s ease, color .3s ease, gap .3s ease;
}
.tour-cta svg {
    width: 13px;
    stroke-width: 1.8;
}
.tour-cta:hover {
    background: #191916;
    color: #ffffff;
    gap: 12px;
}
.tour-cta-primary {
    background: #191916;
    color: #ffffff;
}
.tour-cta-primary:hover {
    background: #a88655;
    color: #ffffff;
    border-color: #a88655;
}

/* BESTSELLER — DUNKLE PREMIUM CARD */
.tour-bestseller {
    position: relative;
    background:
        linear-gradient(
            180deg,
            #1c1a15 0%,
            #14130f 100%
        );
    border: 1px solid rgba(168, 134, 85, 0.35);
    border-radius: 24px;
    box-shadow:
        0 28px 60px rgba(20, 18, 14, 0.28),
        0 0 0 1px rgba(168, 134, 85, 0.06);
    color: #ffffff;
    z-index: 3;
}
.tour-bestseller .tour-image::after {
    background: linear-gradient(
        to bottom,
        rgba(28, 26, 21, 0) 0%,
        rgba(28, 26, 21, 0.5) 55%,
        rgba(28, 26, 21, 0.92) 82%,
        #1c1a15 100%
    );
}
.tour-bestseller .tour-motif {
    color: #d4b982;
}
.tour-bestseller .tour-motif::before {
    background: #d4b982;
}
.tour-bestseller .tour-body h3 {
    color: #ffffff;
}
.tour-bestseller .tour-body > p {
    color: rgba(255, 255, 255, 0.65);
}
.tour-bestseller .tour-meta li {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
}
.tour-bestseller .tour-meta li svg {
    color: #d4b982;
}
.tour-bestseller .price-from,
.tour-bestseller .price-per {
    color: rgba(255, 255, 255, 0.5);
}
.tour-bestseller .price-value {
    color: #ffffff;
}

/* CTA im Bestseller — Gold statt Dark */
.tour-bestseller .tour-cta-primary {
    background: linear-gradient(135deg, #d9b26a 0%, #a88655 100%);
    border-color: transparent;
    color: #1c1a15;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(168, 134, 85, 0.35);
}
.tour-bestseller .tour-cta-primary:hover {
    background: linear-gradient(135deg, #e6c07a 0%, #b8946a 100%);
    color: #1c1a15;
}

/* Bestseller-Badge — oben in der Card, INNERHALB damit nichts abschneidet */
.bestseller-badge {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        #e6c07a 0%,
        #c8a15b 50%,
        #a88655 100%
    );
    color: #1c1a15;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    box-shadow:
        0 10px 24px rgba(168, 134, 85, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    white-space: nowrap;
}
.bestseller-badge svg {
    width: 13px;
    height: 13px;
    stroke-width: 2;
}

/* Highlight-Box im dunklen Bestseller */
.bestseller-highlight {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(212, 185, 130, 0.08);
    border: 1px solid rgba(212, 185, 130, 0.22);
}
.highlight-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #d4b982;
    font-weight: 500;
}
.highlight-row svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.7;
    color: #d4b982;
    flex-shrink: 0;
}

/* Footnote */
.tours-note {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 36px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(23, 23, 20, 0.06);
    font-size: 12px;
    line-height: 1.5;
    color: #756f65;
    max-width: 720px;
}
.tours-note svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.6;
    color: #a88655;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 1050px) {
    .tour-grid {
        grid-template-columns: 1fr 1fr;
        padding: 40px 0 20px;
    }
    .tour-bestseller {
        grid-column: 1 / -1;
        transform: translateY(0) scale(1);
    }
    .tour-grid:hover .tour-bestseller {
        transform: translateY(0) scale(1);
    }
    .tour-grid:hover .tour-bestseller:hover {
        transform: translateY(-6px) scale(1);
    }
}
@media (max-width: 700px) {
    .tours-section { padding: 70px 0 90px; }
    .tours-container { width: calc(100% - 28px); }
    .tour-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .tour-bestseller { grid-column: auto; transform: none; }
    .tour-grid:hover .tour-bestseller { transform: none; }
    .tours-header h2 { font-size: 40px; }
}


/* ============================================================
   9. JOURNEY – Dein Weg (Timeline mit animiertem Pfad)
   ============================================================ */
:root {
    --j-bg: #ffffff;
    --j-paper: #ffffff;
    --j-ink: #191916;
    --j-muted: #777168;
    --j-gold: #a88655;
    --j-gold-soft: #ebe0cb;
    --j-line: rgba(25, 25, 22, 0.10);
    --j-ease: cubic-bezier(.16, 1, .3, 1);
}

.journey-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    padding: clamp(90px, 8vw, 140px) 0 clamp(100px, 9vw, 160px);
    color: var(--j-ink);
    font-family: "DM Sans", sans-serif;
    border-bottom: none;
}
.journey-container {
    width: min(90%, 1580px);
    margin: 0 auto;
    position: relative;
    z-index: 4;
}

/* Riesiges Deko-Wort im Hintergrund */
.journey-bg-word {
    position: absolute;
    left: -3vw;
    top: 320px;
    z-index: 0;
    font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(150px, 21vw, 390px);
    font-weight: 600;
    letter-spacing: -.08em;
    color: rgba(30, 28, 23, 0.028);
    pointer-events: none;
    user-select: none;
}

/* HEADER */
.journey-header {
    max-width: 1050px;
    margin-bottom: clamp(70px, 7vw, 110px);
}
.journey-index {
    margin-bottom: 24px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .17em;
    color: #99938a;
}
.journey-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
}
.journey-eyebrow > span {
    width: 2px;
    height: 32px;
    background: var(--j-gold);
    display: block;
}
.journey-eyebrow em {
    font-family: Georgia, serif;
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    color: #68635b;
}
.journey-header h2 {
    margin: 0;
    max-width: 1050px;
    font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(44px, 5.2vw, 82px);
    font-weight: 500;
    line-height: .96;
    letter-spacing: -.06em;
}
.journey-header h2 span {
    display: block;
    color: #9b958b;
    font-family: Georgia, serif;
    font-weight: 400;
    font-style: italic;
}
.journey-header > p {
    max-width: 680px;
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--j-muted);
}

/* ROUTE WORLD */
.route-world {
    position: relative;
    width: 100%;
    height: 1300px;
    margin-top: 30px;
}

/* SVG – LIEGT HINTER DEN CARDS */
.route-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
    z-index: 1;
}
.route-path-ghost {
    fill: none;
    stroke: rgba(35, 32, 27, 0.10);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 3 9;
}
.route-path {
    fill: none;
    stroke: var(--j-gold);
    stroke-width: 2.5;
    stroke-linecap: round;
}

/* TRAVELER – LIEGT HINTER DEN CARDS */
.traveler {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    pointer-events: none;
    transform: translate(-50%, -50%);
}
.traveler-ring {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--j-ink);
    border: 5px solid #ffffff;
    box-shadow: 0 10px 30px rgba(35, 29, 20, 0.15);
    transition: transform .3s ease;
}
.traveler-ring svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.5;
}

/* STATION – LIEGT VOR DEM PFAD */
.station {
    position: absolute;
    z-index: 10;
    width: min(340px, 24vw);
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.station-1 { left: 4%; top: 40px; }
.station-2 { right: 6%; top: 240px; }
.station-3 { left: 12%; top: 610px; }
.station-4 { right: 8%; top: 900px; }

/* PIN */
.station-pin {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--j-ink);
    color: #fff;
    box-shadow: 0 0 0 8px #ffffff;
    font-size: 10px;
    letter-spacing: .08em;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    transition:
        background .4s ease,
        color .4s ease,
        transform .5s var(--j-ease);
}
.station:hover .station-pin {
    background: var(--j-gold);
    color: #fff;
    transform: scale(1.08);
}

/* CONTENT — OPAK WEISS damit Pfad NICHT durchscheint */
.station-content {
    position: relative;
    width: 100%;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(25, 25, 22, 0.08);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(61, 50, 31, 0.06);
    transition:
        transform .55s var(--j-ease),
        box-shadow .55s var(--j-ease);
}
.station:hover .station-content {
    transform: translateY(-7px);
    box-shadow: 0 30px 70px rgba(61, 50, 31, 0.10);
}

/* BILD in der Card */
.station-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eee;
}
.station-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .8s var(--j-ease);
}
.station:hover .station-image img {
    transform: scale(1.06);
}
.station-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 30%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),
        #ffffff 100%
    );
    pointer-events: none;
}

.station-body {
    padding: 20px 22px 22px;
}
.station-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    margin-bottom: 20px;
    margin-top: -32px;
    position: relative;
    z-index: 2;
    color: #896b41;
    background: var(--j-gold-soft);
    box-shadow: 0 6px 20px rgba(61, 50, 31, 0.08);
    transition:
        background .4s ease,
        color .4s ease,
        transform .5s var(--j-ease);
}
.station-icon svg {
    width: 18px;
    stroke-width: 1.45;
}
.station:hover .station-icon {
    transform: rotate(-7deg) scale(1.07);
    background: var(--j-gold);
    color: white;
}
.station-small {
    margin-bottom: 8px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #9d978e;
}
.station h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(20px, 1.8vw, 26px);
    line-height: 1.1;
    letter-spacing: -.035em;
    font-weight: 600;
    color: var(--j-ink);
}
.station p {
    margin: 12px 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--j-muted);
}
.station-tag {
    display: inline-flex;
    margin-top: 18px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(32, 30, 25, 0.12);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #767168;
}

/* MAP DECORATIONS */
.map-note {
    position: absolute;
    z-index: 3;
    font-size: 9px;
    letter-spacing: .15em;
    color: rgba(55, 50, 43, 0.25);
    writing-mode: vertical-rl;
    font-family: "DM Sans", sans-serif;
}
.map-note-a { left: 46%; top: 100px; }
.map-note-b { right: 34%; top: 505px; }
.map-note-c { left: 42%; bottom: 70px; }

.decor-compass {
    position: absolute;
    left: 49%;
    top: 48%;
    width: 90px;
    height: 90px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(45, 40, 33, 0.10);
    border-radius: 50%;
    color: rgba(82, 72, 58, 0.16);
    transform: translate(-50%, -50%);
    z-index: 2;
}
.decor-compass::before,
.decor-compass::after {
    content: "";
    position: absolute;
    background: rgba(45, 40, 33, 0.08);
}
.decor-compass::before {
    width: 1px;
    height: 130%;
}
.decor-compass::after {
    width: 130%;
    height: 1px;
}
.decor-compass svg {
    width: 30px;
    height: 30px;
    stroke-width: .9;
}

/* ENDING – zentriert, klarer Abstand zur Timeline, kein Kasten */
.journey-ending {
    margin-top: clamp(140px, 14vw, 220px);
    padding: 0;
    border-top: 0;
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 5;
    background: transparent;
}
.ending-copy {
    max-width: 900px;
    margin: 0 auto;
    font-family: "Manrope", sans-serif;
    font-size: clamp(26px, 3vw, 46px);
    line-height: 1.15;
    letter-spacing: -.045em;
    color: var(--j-ink);
}
.ending-copy span { color: #9c978d; }

/* Responsive */
@media (max-width: 1000px) {
    .route-world {
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .route-svg,
    .traveler,
    .decor-compass,
    .map-note { display: none; }
    .station {
        position: relative;
        inset: auto !important;
        width: 100%;
    }
}
@media (max-width: 650px) {
    .journey-section { padding: 70px 0 90px; }
    .journey-container { width: calc(100% - 28px); }
    .journey-header h2 { font-size: 44px; }
    .route-world {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .station { gap: 12px; }
    .station-pin {
        width: 36px;
        height: 36px;
        box-shadow: 0 0 0 5px #ffffff;
    }
    .journey-ending {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}


/* ============================================================
   10. BEWERTUNGEN – Bento Grid
   ============================================================ */
:root {
    --rv-bg: #f5f1e8;
    --rv-card: #fffdf9;
    --rv-ink: #191916;
    --rv-muted: #777168;
    --rv-line: rgba(25, 24, 21, 0.10);
    --rv-gold: #aa8857;
    --rv-gold-soft: #efe4d2;
    --rv-ease: cubic-bezier(.16, 1, .3, 1);
}
.reviews-bento {
    width: 100%;
    padding: clamp(90px, 8vw, 140px) 0 clamp(100px, 9vw, 160px);
    background: linear-gradient(180deg, #faf7f1, var(--rv-bg));
    color: var(--rv-ink);
    font-family: "DM Sans", sans-serif;
    border-bottom: none;
}
.reviews-wrap {
    width: min(90%, 1580px);
    margin: 0 auto;
}

/* HEADER */
.reviews-header { margin-bottom: clamp(60px, 6vw, 90px); }
.reviews-index {
    margin-bottom: 23px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .17em;
    color: #98928a;
}
.reviews-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
}
.reviews-kicker > span {
    width: 2px;
    height: 31px;
    background: var(--rv-gold);
    display: block;
}
.reviews-kicker em {
    font-family: Georgia, serif;
    font-size: 15px;
    font-style: italic;
    color: #666159;
}
.reviews-header-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}
.reviews-header h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 5vw, 76px);
    font-weight: 500;
    line-height: .95;
    letter-spacing: -.06em;
}
.reviews-header h2 span {
    display: block;
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: #989288;
}
.reviews-header > .reviews-header-grid > p {
    margin: 0;
    max-width: 480px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--rv-muted);
}

/* BENTO GRID */
.bento-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    grid-template-rows: 300px 300px;
    gap: 18px;
}
.bento-card {
    position: relative;
    border-radius: 26px;
    border: 1px solid var(--rv-line);
    background: rgba(255, 253, 249, 0.82);
    overflow: hidden;
    transition:
        transform .55s var(--rv-ease),
        box-shadow .55s var(--rv-ease),
        background .35s ease;
}
.bento-card:hover {
    transform: translateY(-7px);
    background: #fffefa;
    box-shadow: 0 28px 70px rgba(55, 45, 29, 0.08);
}

/* MAIN */
.bento-main {
    grid-row: 1 / 3;
    padding: clamp(30px, 3.5vw, 48px);
    display: flex;
    flex-direction: column;
}
.main-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.review-tag {
    margin-bottom: 14px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #8e887f;
}
.reviews-bento .stars {
    display: flex;
    gap: 4px;
    color: var(--rv-gold);
}
.reviews-bento .stars svg {
    width: 16px;
    fill: currentColor;
    stroke-width: 1;
}
.quote-symbol {
    font-family: Georgia, serif;
    font-size: 110px;
    line-height: .7;
    color: rgba(170, 136, 87, 0.15);
}
.bento-main blockquote {
    max-width: 720px;
    margin: auto 0 20px;
    font-family: Georgia, serif;
    font-size: clamp(24px, 2.6vw, 40px);
    line-height: 1.27;
    letter-spacing: -.025em;
    color: #191916;
}
.main-copy {
    max-width: 600px;
    margin: 0 0 30px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--rv-muted);
}
.review-person {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: auto;
}
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--rv-gold-soft);
    color: #876c42;
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 600;
}
.review-person strong {
    display: block;
    font-size: 13px;
    color: #191916;
}
.review-person span {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    color: #969087;
}

/* SCORE CARD (schwarz) */
.score-card {
    padding: 28px;
    background: #1b1b18;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    border-color: rgba(255, 255, 255, 0.08);
}
/* Score-Card behält Schwarz beim Hover */
.score-card:hover {
    background: #1b1b18;
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(20, 18, 14, 0.35);
}
.score-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, 0.52);
}
.score-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #d8b879;
}
.score-icon svg { width: 17px; stroke-width: 1.7; }
.score-number {
    margin-top: auto;
    font-family: Georgia, serif;
    font-size: 76px;
    line-height: .9;
    letter-spacing: -.06em;
    color: #ffffff;
}
.score-stars {
    display: flex;
    gap: 4px;
    margin-top: 12px;
    color: #d8b879;
}
.score-stars svg { width: 14px; fill: currentColor; stroke-width: 1; }
.score-card p {
    margin: 16px 0 0;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.58);
}
.score-foot {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, 0.42);
}

/* SMALL REVIEWS */
.review-small {
    padding: 28px;
    display: flex;
    flex-direction: column;
}
.review-small-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #918b82;
}
.small-no {
    color: #b2aca3;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
}
.small-stars {
    margin-top: 16px;
    display: flex;
    gap: 4px;
    color: var(--rv-gold);
}
.small-stars svg { width: 13px; fill: currentColor; stroke-width: 1; }
.review-small blockquote {
    margin: auto 0 18px;
    font-family: Georgia, serif;
    font-size: clamp(16px, 1.3vw, 21px);
    line-height: 1.45;
    color: #191916;
}
.small-source {
    padding-top: 16px;
    border-top: 1px solid var(--rv-line);
    font-size: 10px;
    color: #918b82;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* SOURCE CARD */
.source-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
}
.source-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: var(--rv-gold-soft);
    color: #876c42;
}
.source-icon svg { width: 18px; stroke-width: 1.6; }
.source-card h3 {
    margin: 24px 0 8px;
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    letter-spacing: -.035em;
    font-weight: 600;
    color: #191916;
}
.source-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: var(--rv-muted);
}
.source-list {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.source-list span {
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid var(--rv-line);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #7d786f;
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1100px) {
    .reviews-header-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .bento-main {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 460px;
    }
}
@media (max-width: 700px) {
    .reviews-bento { padding: 70px 0 90px; }
    .reviews-wrap { width: calc(100% - 28px); }
    .reviews-header h2 { font-size: 46px; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-main {
        grid-column: auto;
        min-height: 420px;
    }
}


/* ============================================================
   11. FAQ – Editorial Split, sticky Intro + animiertes Accordion
   ============================================================ */
:root {
    --faq-bg: #f5f1e8;
    --faq-paper: #fffdf9;
    --faq-text: #191916;
    --faq-muted: #757067;
    --faq-line: rgba(26, 25, 22, 0.10);
    --faq-gold: #a88655;
    --faq-gold-soft: #eee4d1;
    --faq-ease: cubic-bezier(.16, 1, .3, 1);
}

.faq-section {
    position: relative;
    width: 100%;
    padding: clamp(90px, 8vw, 150px) 0 clamp(100px, 9vw, 160px);
    background: linear-gradient(180deg, #faf7f1 0%, var(--faq-bg) 100%);
    color: var(--faq-text);
    font-family: "DM Sans", sans-serif;
    border-bottom: none;
    overflow: hidden;
}
.faq-decor {
    position: absolute;
    top: -260px;
    right: -220px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(168, 134, 85, 0.16),
        transparent 65%
    );
    pointer-events: none;
    z-index: 0;
}

.faq-inner {
    position: relative;
    z-index: 1;
    width: min(90%, 1400px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, .55fr) minmax(560px, 1fr);
    gap: clamp(70px, 7vw, 130px);
    align-items: start;
}

/* LEFT INTRO */
.faq-intro {
    position: sticky;
    top: 100px;
}
.faq-index {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(168, 134, 85, 0.10);
    color: #8a6a3e;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.faq-index-num {
    padding-right: 10px;
    border-right: 1px solid rgba(168, 134, 85, 0.3);
}
.faq-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.faq-kicker-line {
    width: 2px;
    height: 32px;
    background: var(--faq-gold);
    display: block;
}
.faq-kicker em {
    font-family: Georgia, serif;
    font-size: 15px;
    font-style: italic;
    color: #666159;
}
.faq-intro h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 5vw, 76px);
    font-weight: 500;
    line-height: .96;
    letter-spacing: -.06em;
    color: var(--faq-text);
}
.faq-intro h2 span {
    display: block;
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: #9b958b;
}
.faq-lead {
    max-width: 440px;
    margin: 25px 0 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--faq-muted);
}

/* HELP CARD */
.faq-help-card {
    position: relative;
    margin-top: 45px;
    padding: 26px 26px 22px;
    border-radius: 22px;
    background: linear-gradient(155deg, #ffffff 0%, #fdfaf3 100%);
    border: 1px solid rgba(168, 134, 85, 0.22);
    overflow: hidden;
    box-shadow: 0 24px 55px rgba(46, 38, 22, 0.06);
    isolation: isolate;
}
.faq-help-halo {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(168, 134, 85, 0.18),
        transparent 70%
    );
    z-index: -1;
    pointer-events: none;
}
.faq-help-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: flex-start;
}
.faq-help-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--faq-gold);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(168, 134, 85, 0.32);
}
.faq-help-icon svg { width: 18px; stroke-width: 1.6; }
.faq-help-copy small {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #a09a91;
    font-weight: 600;
}
.faq-help-copy strong {
    display: block;
    margin-top: 6px;
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    letter-spacing: -.02em;
    color: var(--faq-text);
}
.faq-help-copy p {
    margin: 6px 0 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--faq-muted);
}
.faq-help-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 22px auto 0;
    width: max-content;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--faq-text);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
    text-decoration: none;
    transition:
        background .3s ease,
        gap .3s var(--faq-ease),
        transform .3s ease;
}
.faq-help-link:hover {
    background: var(--faq-gold);
    gap: 14px;
    transform: translateY(-2px);
}
.faq-help-arrow {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}
.faq-help-arrow svg { width: 12px; stroke-width: 1.8; }

/* LIST */
.faq-list {
    border-top: 1px solid var(--faq-line);
}
.faq-item {
    position: relative;
    border-bottom: 1px solid var(--faq-line);
    overflow: hidden;
    transition: background .4s ease;
}
.faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        90deg,
        rgba(168, 134, 85, 0.06),
        transparent 50%
    );
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
}
.faq-item.open::before,
.faq-item:hover::before {
    opacity: 1;
}
/* Animierter Rand-Akzent links */
.faq-item::after {
    content: "";
    position: absolute;
    top: 22px;
    bottom: 22px;
    left: 0;
    width: 2px;
    background: var(--faq-gold);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform .5s var(--faq-ease);
    pointer-events: none;
    border-radius: 2px;
}
.faq-item.open::after {
    transform: scaleY(1);
}

/* QUESTION */
.faq-question {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 26px 22px 26px 24px;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    text-align: left;
    font-family: inherit;
    color: inherit;
}
.faq-question-left {
    display: grid;
    grid-template-columns: 32px 48px 1fr;
    gap: 16px;
    align-items: center;
}
.faq-number {
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    color: #b4aea4;
    transition:
        color .4s ease,
        transform .5s var(--faq-ease);
}
.faq-item.open .faq-number {
    color: var(--faq-gold);
    transform: translateX(3px);
}
.faq-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--faq-gold-soft);
    color: #876b41;
    transition:
        background .35s ease,
        color .35s ease,
        transform .5s var(--faq-ease),
        box-shadow .4s ease;
}
.faq-icon svg { width: 19px; stroke-width: 1.5; }
.faq-item.open .faq-icon {
    background: var(--faq-gold);
    color: #ffffff;
    transform: rotate(-5deg);
    box-shadow: 0 12px 26px rgba(168, 134, 85, 0.35);
}
.faq-label {
    display: block;
    margin-bottom: 6px;
    font-family: "Manrope", sans-serif;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #a09a91;
    font-weight: 600;
}
.faq-question h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(19px, 1.4vw, 24px);
    font-weight: 600;
    letter-spacing: -.025em;
    line-height: 1.25;
    color: var(--faq-text);
    transition: color .3s ease;
}
.faq-item:hover .faq-question h3 {
    color: #191916;
}

/* TOGGLE (Plus that morphs to X) */
.faq-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid var(--faq-line);
    background: rgba(255, 253, 249, 0.6);
    transition:
        background .35s ease,
        border-color .35s ease,
        transform .5s var(--faq-ease);
}
.faq-toggle-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 1.5px;
    background: currentColor;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform .5s var(--faq-ease);
}
.faq-toggle-bar:nth-child(2) {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item.open .faq-toggle {
    background: var(--faq-text);
    border-color: var(--faq-text);
    color: #ffffff;
}
.faq-item.open .faq-toggle-bar:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}
.faq-item.open .faq-toggle-bar:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.faq-item:not(.open):hover .faq-toggle {
    border-color: var(--faq-gold);
    background: rgba(168, 134, 85, 0.08);
}

/* ANSWER */
.faq-answer {
    position: relative;
    z-index: 2;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height .7s var(--faq-ease),
        opacity .4s ease;
}
.faq-item.open .faq-answer {
    opacity: 1;
}
.faq-answer-inner {
    max-width: 720px;
    padding: 0 90px 30px 96px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--faq-muted);
    position: relative;
}
.faq-answer-inner::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 4px;
    width: 20px;
    height: 1px;
    background: var(--faq-gold);
    opacity: .5;
}

/* Responsive */
@media (max-width: 1000px) {
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 55px;
    }
    .faq-intro {
        position: relative;
        top: auto;
        max-width: 700px;
    }
    .faq-answer-inner {
        padding: 0 20px 26px 96px;
    }
}
@media (max-width: 700px) {
    .faq-section { padding: 70px 0 90px; }
    .faq-inner { width: calc(100% - 28px); }
    .faq-intro h2 { font-size: 44px; }
    .faq-question {
        padding: 20px 14px 20px 16px;
        gap: 12px;
    }
    .faq-question-left {
        grid-template-columns: 26px 40px 1fr;
        gap: 12px;
    }
    .faq-icon { width: 40px; height: 40px; }
    .faq-icon svg { width: 16px; }
    .faq-toggle { width: 38px; height: 38px; }
    .faq-answer-inner {
        padding: 0 14px 24px 82px;
        font-size: 14px;
    }
    .faq-answer-inner::before { display: none; }
}


/* ============================================================
   12. FINAL CTA – Contact Wizard (hell, warm)
   ============================================================ */
:root {
    --cta-bg: #f5f1e8;
    --cta-cream: #fdfaf3;
    --cta-ink: #191916;
    --cta-muted: #6b6659;
    --cta-line: rgba(25, 24, 21, 0.10);
    --cta-gold: #a88655;
    --cta-gold-light: #d4b982;
    --cta-gold-soft: #eee4d1;
    --cta-ease: cubic-bezier(.16, 1, .3, 1);
}

.final-cta {
    width: 100%;
    padding: 18px;
    background: var(--cta-bg);
    font-family: "DM Sans", sans-serif;
    border-bottom: none;
}

.final-shell {
    position: relative;
    width: 100%;
    min-height: 720px;
    overflow: hidden;
    border-radius: 32px;
    color: var(--cta-ink);
    background: linear-gradient(135deg, #fdfaf3 0%, var(--cta-bg) 100%);
    isolation: isolate;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(30px, 3vw, 60px);
    padding: clamp(50px, 5vw, 80px);
    align-items: center;
}

/* Media – nur dezent links visible */
.final-media {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 46%;
    z-index: 0;
    overflow: hidden;
    border-radius: 32px 0 0 32px;
    pointer-events: none;
}
.final-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 1s var(--cta-ease);
    filter: saturate(0.95);
    -webkit-mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.9) 45%,
        rgba(0, 0, 0, 0.35) 78%,
        rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.9) 45%,
        rgba(0, 0, 0, 0.35) 78%,
        rgba(0, 0, 0, 0) 100%
    );
    opacity: 0.65;
}
.final-overlay {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 46%;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(253, 250, 243, 0.1) 0%,
        rgba(253, 250, 243, 0.6) 70%,
        rgba(253, 250, 243, 1) 100%
    );
    pointer-events: none;
}

/* LEFT COPY */
.final-copy {
    position: relative;
    z-index: 5;
    max-width: 520px;
}
.final-index {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(168, 134, 85, 0.14);
    color: #8a6a3e;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.final-eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
}
.final-eyebrow > span {
    width: 2px;
    height: 34px;
    background: var(--cta-gold);
    display: block;
}
.final-eyebrow em {
    max-width: 420px;
    font-family: Georgia, serif;
    font-size: 15px;
    line-height: 1.5;
    color: #6b6659;
    font-style: italic;
}
.final-copy h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 4.6vw, 68px);
    font-weight: 500;
    line-height: .96;
    letter-spacing: -.06em;
    color: var(--cta-ink);
}
.final-copy h2 span {
    display: block;
    color: #9b958b;
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 400;
}
.final-copy > p {
    max-width: 480px;
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--cta-muted);
}
.final-copy p strong { color: var(--cta-ink); font-weight: 500; }

/* TRUST */
.final-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
}
.trust-point {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 18px;
    border-right: 1px solid var(--cta-line);
}
.trust-point:last-child { border-right: 0; }
.trust-point svg {
    width: 16px;
    stroke-width: 1.5;
    color: var(--cta-gold);
}
.trust-point span {
    font-size: 11px;
    line-height: 1.5;
    color: #8a857c;
}
.trust-point strong {
    color: var(--cta-ink);
    font-weight: 600;
}

/* PERSONAL NOTE LEFT */
.personal-note-left {
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--cta-line);
}
.personal-note-left .note-line {
    width: 28px;
    height: 1px;
    margin-bottom: 13px;
    background: var(--cta-gold);
}
.personal-note-left p {
    max-width: 460px;
    margin: 0;
    font-family: Georgia, serif;
    font-size: 13px;
    font-style: italic;
    line-height: 1.55;
    color: #6b6659;
}
.personal-note-left > span {
    display: block;
    margin-top: 7px;
    font-size: 9px;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: #a19b91;
}

/* CONTACT CARD */
.contact-card {
    position: relative;
    z-index: 5;
    padding: clamp(28px, 3vw, 40px);
    border-radius: 24px;
    color: var(--cta-ink);
    background: #ffffff;
    border: 1px solid rgba(168, 134, 85, 0.18);
    box-shadow: 0 30px 70px rgba(46, 38, 22, 0.10);
}
.contact-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 26px;
}
.contact-label {
    display: block;
    margin-bottom: 8px;
    font-family: "Manrope", sans-serif;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #9a948a;
    font-weight: 600;
}
.contact-top h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.1;
    letter-spacing: -.04em;
    font-weight: 700;
    color: var(--cta-ink);
}
.contact-avatar {
    position: relative;
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #d4b982, #a88655);
    box-shadow: 0 8px 20px rgba(168, 134, 85, 0.28);
}
.contact-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.online-dot {
    position: absolute;
    right: 2px;
    bottom: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2.5px solid #ffffff;
    background: #77a56c;
}

/* MINI STEPS */
.wizard-mini-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 10px 14px;
    background: rgba(168, 134, 85, 0.06);
    border: 1px solid rgba(168, 134, 85, 0.12);
    border-radius: 999px;
}
.mini-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 3px;
    color: #b4aea4;
    font-size: 11px;
    font-weight: 500;
    transition: color .3s ease;
}
.mini-dot {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(23, 23, 20, 0.06);
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;
    transition: background .3s ease, color .3s ease;
}
.mini-connector {
    width: 22px;
    height: 1px;
    background: rgba(23, 23, 20, 0.12);
}
.mini-step.is-active .mini-dot {
    background: var(--cta-ink);
    color: #ffffff;
}
.mini-step.is-active { color: var(--cta-ink); }
.mini-step.is-done .mini-dot {
    background: var(--cta-gold);
    color: #ffffff;
}
.mini-step.is-done { color: #6a4f24; }

/* CTA STEPS */
.cta-step {
    animation: ctaFadeIn .35s var(--cta-ease);
}
@keyframes ctaFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-card .field-label {
    display: block;
    margin-bottom: 10px;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #8f8a80;
    font-weight: 600;
}

/* INTEREST */
.contact-card .interest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.contact-card .interest {
    min-height: 74px;
    border: 1px solid var(--cta-line);
    border-radius: 15px;
    background: rgba(253, 250, 243, 0.5);
    color: #24231f;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 500;
    transition:
        transform .4s var(--cta-ease),
        background .35s ease,
        color .35s ease,
        border-color .35s ease;
}
.contact-card .interest svg {
    width: 18px;
    stroke-width: 1.4;
    color: var(--cta-gold);
    transition: color .3s ease;
}
.contact-card .interest:hover {
    transform: translateY(-3px);
    background: #ffffff;
    border-color: var(--cta-gold);
}
.contact-card .interest.active {
    color: #ffffff;
    background: var(--cta-ink);
    border-color: var(--cta-ink);
    transform: translateY(-3px);
}
.contact-card .interest.active svg { color: var(--cta-gold-light); }

/* TOUR SUB-OPTIONS */
.tour-sub {
    display: none;
    margin-top: 22px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(168, 134, 85, 0.06);
    border: 1px solid rgba(168, 134, 85, 0.16);
    animation: ctaFadeIn .4s var(--cta-ease);
}
.tour-sub.is-visible { display: block; }
.tour-sub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    gap: 12px;
}
.tour-sub-header .field-label { margin: 0; }
.tour-sub-bestseller {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d4b982, #a88655);
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.tour-sub-bestseller svg { width: 12px; stroke-width: 1.8; }
.tour-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.tour-sub-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    background: #ffffff;
    border: 1px solid var(--cta-line);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    transition:
        transform .35s var(--cta-ease),
        border-color .3s ease,
        box-shadow .3s ease;
}
.tour-sub-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--cta-ease);
}
.tour-sub-item:hover {
    transform: translateY(-3px);
    border-color: var(--cta-gold);
    box-shadow: 0 12px 25px rgba(168, 134, 85, 0.15);
}
.tour-sub-item:hover img { transform: scale(1.05); }
.tour-sub-item.active {
    border-color: var(--cta-ink);
    box-shadow: 0 0 0 2px var(--cta-ink);
}
.tour-sub-body {
    padding: 4px 12px 12px;
}
.tour-sub-body strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--cta-ink);
    letter-spacing: -.01em;
}
.tour-sub-body span {
    display: block;
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.4;
    color: #8f8a80;
    font-style: italic;
    font-family: Georgia, serif;
}
.sub-bestseller-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d4b982, #a88655);
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(168, 134, 85, 0.4);
}
.sub-bestseller-tag svg { width: 10px; stroke-width: 2; }

/* WIZARD ACTIONS */
.wizard-actions {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.wizard-actions .wizard-btn-primary {
    margin-left: auto;
}

/* CTA SUMMARY */
.cta-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(168, 134, 85, 0.10), rgba(168, 134, 85, 0.03));
    border: 1px solid rgba(168, 134, 85, 0.22);
    font-size: 13px;
    font-weight: 500;
    color: var(--cta-ink);
}
.cta-summary svg {
    width: 16px;
    stroke-width: 1.8;
    color: var(--cta-gold);
    flex-shrink: 0;
}

/* CTA CALENDAR — kompakt */
.contact-card .calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.contact-card .calendar-header h4 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.01em;
    color: var(--cta-ink);
}
.contact-card .cal-nav {
    width: 32px;
    height: 32px;
    border: 1px solid var(--cta-line);
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    display: grid;
    place-items: center;
    color: var(--cta-ink);
    transition: background .2s ease;
}
.contact-card .cal-nav:hover {
    background: var(--cta-ink);
    color: #ffffff;
    border-color: var(--cta-ink);
}
.contact-card .cal-nav svg { width: 13px; }
.contact-card .calendar-weekdays,
.contact-card .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.contact-card .calendar-weekdays {
    margin-bottom: 4px;
}
.contact-card .calendar-weekdays span {
    text-align: center;
    font-size: 9px;
    color: #a9a49b;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 500;
}
/* Day cells inherit .day styles but scale down */
.contact-card .day {
    font-size: 11px;
    border-radius: 8px;
}
.contact-card .day .num { font-size: 12px; }
.contact-card .day .cap { font-size: 8px; }

/* CTA Slot Area */
.cta-slot-area {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff8ea 0%, #ffffff 100%);
    border: 1px solid rgba(168, 134, 85, 0.18);
    animation: ctaFadeIn .35s var(--cta-ease);
}
.cta-slot-area .slot-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.cta-slot-area .slot-heading svg {
    width: 16px;
    color: var(--cta-gold);
    stroke-width: 1.7;
}
.cta-slot-area .slot-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 6px;
}
.cta-slot-area .slot {
    padding: 10px 12px;
    background: #ffffff;
    border: 1px solid var(--cta-line);
    border-radius: 10px;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    transition: border-color .2s ease, background .2s ease, transform .3s var(--cta-ease);
}
.cta-slot-area .slot strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--cta-ink);
}
.cta-slot-area .slot .cap {
    display: block;
    font-size: 9px;
    color: var(--cta-gold);
    margin-top: 3px;
    letter-spacing: .04em;
}
.cta-slot-area .slot:hover {
    background: var(--cta-ink);
    border-color: var(--cta-ink);
    transform: translateY(-2px);
}
.cta-slot-area .slot:hover strong,
.cta-slot-area .slot:hover .cap { color: #ffffff; }
.cta-slot-area .slot.selected {
    background: var(--cta-ink);
    border-color: var(--cta-ink);
}
.cta-slot-area .slot.selected strong,
.cta-slot-area .slot.selected .cap { color: #ffffff; }
.cta-slot-area .slot.full {
    color: #c7c1b8;
    cursor: not-allowed;
}
.cta-slot-area .slot.full strong { text-decoration: line-through; color: #c7c1b8; }

/* FORM (Step 3) */
.contact-card .contact-form { margin-top: 4px; }
.contact-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.contact-card .field { display: block; }
.contact-card .field > span {
    display: block;
    margin: 0 0 6px 2px;
    font-family: "Manrope", sans-serif;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #979187;
    font-weight: 600;
}
.contact-card .input-wrap {
    position: relative;
}
.contact-card .input-wrap svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    color: #979187;
    stroke-width: 1.5;
}
.contact-card .input-wrap input {
    width: 100%;
    height: 46px;
    padding: 0 14px 0 38px;
    outline: 0;
    border: 1px solid var(--cta-line);
    border-radius: 12px;
    background: rgba(253, 250, 243, 0.5);
    color: var(--cta-ink);
    font: inherit;
    font-size: 13px;
    transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.contact-card .input-wrap input:focus {
    background: #ffffff;
    border-color: var(--cta-gold);
    box-shadow: 0 0 0 3px rgba(168, 134, 85, 0.15);
}
.contact-card .message-field { margin-top: 12px; }
.contact-card .message-field textarea {
    width: 100%;
    min-height: 100px;
    resize: vertical;
    padding: 14px;
    outline: 0;
    border: 1px solid var(--cta-line);
    border-radius: 12px;
    background: rgba(253, 250, 243, 0.5);
    font: inherit;
    font-size: 13px;
    line-height: 1.55;
    color: var(--cta-ink);
    transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.contact-card .message-field textarea:focus {
    background: #ffffff;
    border-color: var(--cta-gold);
    box-shadow: 0 0 0 3px rgba(168, 134, 85, 0.15);
}
.contact-card .form-footer {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.contact-card .privacy-note {
    max-width: 220px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.contact-card .privacy-note svg {
    width: 13px;
    flex: 0 0 auto;
    color: var(--cta-gold);
    stroke-width: 1.6;
}
.contact-card .privacy-note span {
    font-size: 10px;
    line-height: 1.5;
    color: #8f897f;
}
.form-footer-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}
.submit-button {
    height: 52px;
    padding: 0 6px 0 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: none;
    border-radius: 999px;
    background: var(--cta-ink);
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: transform .4s var(--cta-ease), background .3s ease;
}
.submit-button > span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--cta-gold);
    transition: transform .45s var(--cta-ease);
}
.submit-button svg { width: 15px; stroke-width: 1.7; }
.submit-button:hover { background: #292720; }
.submit-button:hover > span { transform: rotate(45deg); }

/* SUCCESS (Step 4) */
.cta-success {
    text-align: center;
    padding: 20px 0;
}
.success-icon-cta {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4b982, #a88655);
    color: #ffffff;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 30px rgba(168, 134, 85, 0.35);
    animation: successPopCta .6s var(--cta-ease) .1s backwards;
}
.success-icon-cta svg { width: 30px; }
@keyframes successPopCta {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.cta-success h4 {
    margin: 0 0 10px;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--cta-ink);
    letter-spacing: -.02em;
}
.cta-success p {
    color: var(--cta-muted);
    margin: 0 auto;
    max-width: 420px;
    font-size: 14px;
    line-height: 1.6;
}

/* Location Mark unten */
.final-cta .location-mark {
    position: absolute;
    left: clamp(28px, 3vw, 60px);
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Manrope", sans-serif;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: #a9a49b;
    z-index: 5;
}
.final-cta .location-mark svg {
    width: 13px;
    stroke-width: 1.6;
    color: var(--cta-gold);
}

/* Responsive */
@media (max-width: 1100px) {
    .final-shell {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }
    .final-media,
    .final-overlay {
        width: 100%;
        height: 260px;
        position: relative;
        border-radius: 24px;
    }
    .final-media img {
        -webkit-mask-image: linear-gradient(to bottom, black, transparent);
        mask-image: linear-gradient(to bottom, black, transparent);
    }
    .final-overlay { display: none; }
    .final-cta .location-mark { display: none; }
}
@media (max-width: 700px) {
    .final-cta { padding: 10px; }
    .final-shell {
        padding: 24px;
        border-radius: 22px;
    }
    .contact-card .interest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tour-sub-grid { grid-template-columns: 1fr; }
    .contact-card .form-row { grid-template-columns: 1fr; }
    .contact-card .form-footer { flex-direction: column; align-items: stretch; }
    .form-footer-actions { width: 100%; justify-content: space-between; }
}


/* ============================================================
   WIZARD MODAL – Reservierungs-Kalender (neu, premium)
   ============================================================ */
.modal.wizard {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: "DM Sans", sans-serif;
    animation: wizardFadeIn .35s cubic-bezier(.16, 1, .3, 1);
}
.modal[hidden] { display: none; }
@keyframes wizardFadeIn { from { opacity: 0; } to { opacity: 1; } }

.wizard .modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 18, 14, 0.6);
    backdrop-filter: blur(6px);
}
.wizard .modal-panel {
    position: relative;
    background: linear-gradient(180deg, #fdfbf5 0%, #ffffff 45%);
    border-radius: 24px;
    width: 100%;
    max-width: 620px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 34px 36px 30px;
    box-shadow:
        0 40px 90px rgba(20, 18, 14, 0.35),
        0 0 0 1px rgba(168, 134, 85, 0.10);
    animation: wizardSlideIn .5s cubic-bezier(.16, 1, .3, 1);
}
@keyframes wizardSlideIn {
    from { transform: translateY(20px) scale(.98); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
.wizard .modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(23, 23, 20, 0.05);
    border: 1px solid rgba(23, 23, 20, 0.10);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #57534b;
    cursor: pointer;
    transition: background .2s ease, transform .3s ease;
}
.wizard .modal-close:hover {
    background: #191916;
    color: #fff;
    transform: rotate(90deg);
}
.wizard .modal-close svg { width: 14px; height: 14px; }

/* HEADER */
.wizard .modal-header { margin-bottom: 22px; padding-right: 40px; }
.wizard .modal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(168, 134, 85, 0.10);
    color: #8a6a3e;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.wizard .modal-eyebrow svg { width: 13px; height: 13px; stroke-width: 1.7; }
.wizard #modal-title {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -.03em;
    color: #191916;
    line-height: 1.15;
}
.wizard .modal-tour-name { color: #191916; }
.wizard .modal-sub {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #706b62;
}

/* STEP-INDIKATOR */
.wizard-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 26px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(23, 23, 20, 0.06);
    border-radius: 999px;
}
.wizard-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    color: #a9a49b;
    transition: color .3s ease;
    font-size: 12px;
    font-weight: 500;
}
.wstep-dot {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(23, 23, 20, 0.05);
    border: 1px solid rgba(23, 23, 20, 0.08);
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 600;
    transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.wizard-connector {
    flex: 0 0 auto;
    width: 30px;
    height: 1px;
    background: rgba(23, 23, 20, 0.12);
}
.wizard-step.is-active .wstep-dot {
    background: #191916;
    color: #ffffff;
    border-color: #191916;
}
.wizard-step.is-active { color: #191916; }
.wizard-step.is-done .wstep-dot {
    background: #a88655;
    color: #ffffff;
    border-color: #a88655;
}
.wizard-step.is-done { color: #6a4f24; }

/* MONTH NAV */
.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.calendar-header h4 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #191916;
    letter-spacing: -.01em;
}
.cal-nav {
    background: #ffffff;
    border: 1px solid rgba(23, 23, 20, 0.10);
    border-radius: 10px;
    width: 36px;
    height: 36px;
    color: #191916;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .2s ease, border-color .2s ease;
}
.cal-nav:hover {
    background: #191916;
    color: #ffffff;
    border-color: #191916;
}
.cal-nav svg { width: 14px; height: 14px; }

/* WEEKDAYS + DAY GRID */
.calendar-weekdays,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}
.calendar-weekdays { margin-bottom: 6px; }
.calendar-weekdays span {
    text-align: center;
    font-size: 10px;
    color: #a9a49b;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 6px 0;
    font-weight: 500;
}
.day {
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(23, 23, 20, 0.06);
    border-radius: 10px;
    background: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #191916;
    padding: 4px;
    position: relative;
    cursor: pointer;
    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .3s cubic-bezier(.16, 1, .3, 1);
}
.day.empty {
    border-color: transparent;
    background: transparent;
    cursor: default;
}
.day.past {
    color: #d3ceca;
    background: rgba(23, 23, 20, 0.015);
    cursor: not-allowed;
    border-color: transparent;
}
.day.status-free {
    background: rgba(76, 138, 74, 0.06);
    border-color: rgba(76, 138, 74, 0.25);
    color: #2d5a2c;
}
.day.status-free .num { color: #2d5a2c; }
.day.status-free .cap { color: #4a8a4a; }

.day.status-limited {
    background: rgba(181, 138, 47, 0.07);
    border-color: rgba(181, 138, 47, 0.30);
    color: #7a5e30;
}
.day.status-limited .num { color: #7a5e30; }
.day.status-limited .cap { color: #a88655; }

.day.status-full {
    background: rgba(23, 23, 20, 0.03);
    color: #b8b3ab;
    cursor: not-allowed;
    border-color: transparent;
}
.day.status-full .num {
    text-decoration: line-through;
    text-decoration-color: rgba(184, 179, 171, 0.6);
}

.day.status-free:hover,
.day.status-limited:hover {
    background: #191916;
    color: #ffffff;
    border-color: #191916;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(20, 18, 14, 0.15);
}
.day.status-free:hover .num,
.day.status-free:hover .cap,
.day.status-limited:hover .num,
.day.status-limited:hover .cap { color: #ffffff; }

.day.selected {
    background: #191916 !important;
    color: #ffffff !important;
    border-color: #191916 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(20, 18, 14, 0.25);
}
.day.selected .num,
.day.selected .cap { color: #ffffff !important; }
.day .num { font-weight: 600; font-size: 14px; }
.day .cap { font-size: 9px; opacity: .95; }

/* LEGEND */
.calendar-legend {
    display: flex;
    gap: 18px;
    margin: 18px 0 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(23, 23, 20, 0.06);
    font-size: 11px;
    color: #706b62;
    flex-wrap: wrap;
    justify-content: center;
}
.calendar-legend .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
    border: 1.5px solid;
}
.dot-free { border-color: #4a8a4a; background: rgba(76, 138, 74, 0.15); }
.dot-limited { border-color: #b58a2f; background: rgba(181, 138, 47, 0.15); }
.dot-full { border-color: #b8b3ab; background: rgba(184, 179, 171, 0.2); }

/* SLOT AREA */
.slot-area {
    margin-top: 22px;
    padding: 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff8ea 0%, #ffffff 100%);
    border: 1px solid rgba(168, 134, 85, 0.18);
    animation: slotFadeIn .4s cubic-bezier(.16, 1, .3, 1);
}
@keyframes slotFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
.slot-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.slot-heading svg {
    width: 18px;
    height: 18px;
    color: #a88655;
    stroke-width: 1.7;
    flex-shrink: 0;
}
.slot-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #a9a49b;
    margin-bottom: 2px;
}
.slot-date-line {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #191916;
    letter-spacing: -.01em;
}
.slot-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
}
.slot {
    background: #ffffff;
    border: 1px solid rgba(23, 23, 20, 0.10);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    cursor: pointer;
    text-align: left;
    transition: border-color .2s ease, background .2s ease, transform .3s cubic-bezier(.16, 1, .3, 1);
}
.slot strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #191916;
    letter-spacing: -.01em;
}
.slot .cap {
    display: block;
    font-size: 10px;
    color: #a88655;
    margin-top: 4px;
    letter-spacing: .04em;
}
.slot:hover {
    border-color: #191916;
    background: #191916;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(20, 18, 14, 0.15);
}
.slot:hover strong,
.slot:hover .cap { color: #ffffff; }
.slot.full {
    color: #c7c1b8;
    background: rgba(23, 23, 20, 0.02);
    cursor: not-allowed;
}
.slot.full strong { color: #c7c1b8; text-decoration: line-through; }
.slot.full .cap { color: #c7c1b8; }
.slot.full:hover {
    transform: none;
    box-shadow: none;
    background: rgba(23, 23, 20, 0.02);
    border-color: rgba(23, 23, 20, 0.10);
}

/* SUMMARY (Step 2) */
.selected-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(168, 134, 85, 0.10), rgba(168, 134, 85, 0.03));
    border: 1px solid rgba(168, 134, 85, 0.22);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #191916;
    font-weight: 500;
    margin: 0 0 18px;
}
.selected-summary svg {
    width: 18px;
    height: 18px;
    color: #a88655;
    stroke-width: 1.7;
    flex-shrink: 0;
}

.reserve-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.reserve-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
}
.reserve-form .full { grid-column: 1 / -1; }
.field-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #706b62;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.field-opt {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: #a9a49b;
    font-size: 10px;
}
.reserve-form input,
.reserve-form select,
.reserve-form textarea {
    font: inherit;
    padding: 11px 14px;
    border: 1px solid rgba(23, 23, 20, 0.12);
    border-radius: 10px;
    color: #191916;
    background: #ffffff;
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.reserve-form input::placeholder,
.reserve-form textarea::placeholder { color: #b8b3ab; }
.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
    outline: none;
    border-color: #a88655;
    box-shadow: 0 0 0 3px rgba(168, 134, 85, 0.15);
}
.reserve-form textarea { resize: vertical; min-height: 72px; }
.reserve-form .checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(23, 23, 20, 0.02);
    font-size: 12px;
    color: #706b62;
}
.reserve-form .checkbox input {
    width: 18px;
    height: 18px;
    accent-color: #a88655;
}
.modal-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

/* WIZARD BUTTONS */
.wizard-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background .2s ease, color .2s ease, gap .3s cubic-bezier(.16, 1, .3, 1), transform .3s ease;
}
.wizard-btn svg { width: 14px; height: 14px; }
.wizard-btn-primary {
    background: #191916;
    color: #ffffff;
}
.wizard-btn-primary:hover {
    background: #a88655;
    gap: 12px;
    transform: translateY(-1px);
}
.wizard-btn-ghost {
    background: transparent;
    color: #706b62;
    border-color: rgba(23, 23, 20, 0.15);
}
.wizard-btn-ghost:hover {
    background: rgba(23, 23, 20, 0.05);
    color: #191916;
    gap: 12px;
}

/* SUCCESS (Step 3) */
.modal-success {
    text-align: center;
    padding: 8px 0 4px;
}
.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4b982 0%, #a88655 100%);
    color: #ffffff;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 30px rgba(168, 134, 85, 0.35);
    animation: successPop .6s cubic-bezier(.16, 1, .3, 1) .1s backwards;
}
.success-icon svg { width: 32px; height: 32px; }
@keyframes successPop {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.modal-success h4 {
    margin: 0 0 10px;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #191916;
    letter-spacing: -.02em;
}
.modal-success p {
    color: #706b62;
    margin: 0 auto 24px;
    max-width: 420px;
    font-size: 14px;
    line-height: 1.6;
}
.modal-success .wizard-btn-primary {
    justify-content: center;
    min-width: 160px;
}

@media (max-width: 640px) {
    .wizard .modal-panel {
        padding: 24px 22px 22px;
        border-radius: 20px;
    }
    .wizard #modal-title { font-size: 22px; }
    .wizard-steps {
        padding: 12px;
        gap: 6px;
    }
    .wstep-label { display: none; }
    .wizard-connector { width: 20px; }
    .reserve-form { grid-template-columns: 1fr; }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-grid,
    .intro-grid,
    .story-grid,
    .final-grid,
    .signature-row,
    .signature-row.reversed { grid-template-columns: 1fr; }
    .signature-row.reversed .placeholder-image { order: 0; }
    .signature-row.reversed .signature-copy { order: 0; }
    .hero h1 { font-size: 40px; }
    .section-title { font-size: 26px; }
}

@media (max-width: 720px) {
    .section { padding: 56px 0; }
    .hero { padding: 64px 0; }
    .main-nav,
    .header-right .btn-sticky { display: none; }
    .mobile-menu-toggle { display: inline-flex; }
    .grid-3,
    .grid-4,
    .steps { grid-template-columns: 1fr; }
    .hero h1 { font-size: 32px; }
    .subline { font-size: 16px; }
    .reserve-form { grid-template-columns: 1fr; }
    .modal-panel { padding: 22px; }
}


/* ============================================================
   GLOBAL H2 STYLE – vereinheitlicht wie Adventure-Title
   ============================================================ */
main > section h2,
main > section > * h2,
main .adventure-title,
main .signature-title,
main .transition-title,
main .story .title,
main .journey-container h2,
main .reviews-header h2,
main .faq h2,
main .final-cta h2 {
    font-family: "Manrope", sans-serif !important;
    font-size: clamp(44px, 5vw, 80px) !important;
    font-weight: 600 !important;
    line-height: .95 !important;
    letter-spacing: -.065em !important;
    margin: 0 !important;
}
/* Zweite Zeile / Highlight-Span in H2 = leichteres Weight + gedämpft */
main > section h2 span,
main > section > * h2 span,
main .adventure-title .muted,
main .signature-title span,
main .transition-title span,
main .story .title span,
main .journey-container h2 span,
main .reviews-header h2 span,
main .faq h2 span,
main .final-cta h2 span {
    font-family: "Manrope", sans-serif !important;
    font-weight: 500 !important;
    font-style: normal !important;
    letter-spacing: -.065em !important;
    color: inherit !important;
    opacity: .38 !important;
}

/* ============================================================
   SUBPAGE H2 (adventures.html / destinations.html – ohne <main>)
   ============================================================ */
body.destinations-page h2,
.truth-head h2,
.showcase-head,
.showcase-head h2,
.solution-headline,
.adrenalin-headline,
.merged-left h2,
.merged-right h3,
.final-meissen-top h2,
.final-cta h2,
.hero-panel-title {
    font-family: "Manrope", sans-serif !important;
    font-size: clamp(44px, 5vw, 80px) !important;
    font-weight: 600 !important;
    line-height: .95 !important;
    letter-spacing: -.065em !important;
    color: var(--dest-ink, #171714) !important;
    margin: 0 !important;
    max-width: 100% !important;
}
body.destinations-page h2 span,
body.destinations-page h2 em,
.truth-head h2 span,
.truth-head h2 em,
.showcase-head span,
.showcase-head em,
.showcase-head h2 span,
.showcase-head h2 em,
.solution-headline span,
.solution-headline em,
.adrenalin-headline span,
.adrenalin-headline em,
.merged-left h2 span,
.merged-left h2 em,
.merged-right h3 span,
.merged-right h3 em,
.final-meissen-top h2 span,
.final-meissen-top h2 em,
.final-cta h2 span,
.hero-panel-title span {
    font-family: "Manrope", sans-serif !important;
    font-weight: 500 !important;
    font-style: normal !important;
    letter-spacing: -.065em !important;
    color: inherit !important;
    opacity: .38 !important;
    display: inline !important;
    margin: 0 !important;
    font-size: inherit !important;
}
/* Truth-Head: Second-Line-Span als eigene Zeile (Design-Absicht) */
.truth-head h2 span {
    display: block !important;
    margin-top: 6px !important;
}
/* Hero-Panel-Titel liegen auf dunklen Bildern → weiß, ohne Opacity-Dim
   Spezifität hoch (body.destinations-page h2.hero-panel-title) damit sie
   die breite Subpage-H2-Regel schlägt. */
body.destinations-page h2.hero-panel-title,
body.destinations-page h2.hero-panel-title span,
body.destinations-page h2.hero-panel-title em,
body.destinations-page .hero-panel-sub,
.hero-panel-title,
.hero-panel-title span,
.hero-panel-title em,
.hero-panel-sub {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* Adventure hat kein Verlust: Muted-Span ist von Anfang an Design-Absicht */

/* ============================================================
   SITE HEADER (einheitlich, fixed, alle Seiten)
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 18px 40px;
    background: rgba(244, 240, 231, 0.78);
    -webkit-backdrop-filter: saturate(140%) blur(16px);
    backdrop-filter: saturate(140%) blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease, border-color .3s ease;
}
.site-header.is-scrolled {
    background: rgba(244, 240, 231, 0.97);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .07);
    padding: 12px 40px;
    border-bottom-color: rgba(0, 0, 0, .08);
}
.site-header-inner {
    width: 100%;
    max-width: 1580px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.site-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.site-brand img {
    height: 48px;
    width: auto;
    display: block;
    transition: height .3s ease;
}
.site-header.is-scrolled .site-brand img { height: 40px; }

.site-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}
.site-nav a {
    font-family: "Manrope", sans-serif !important;
    color: #191916;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .01em;
    position: relative;
    padding: 6px 0;
    transition: color .2s ease;
}
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 1.5px;
    background: #a67836;
    transition: right .3s ease;
}
.site-nav a:hover { color: #a67836; }
.site-nav a:hover::after,
.site-nav a.is-active::after { right: 0; }
.site-nav a.is-active { color: #a67836; }

.site-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: #191916;
    color: #f4f0e7 !important;
    text-decoration: none;
    border-radius: 999px;
    font-family: "Manrope", sans-serif !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .02em;
    transition: background .25s ease, transform .2s ease, color .2s ease;
    flex-shrink: 0;
}
.site-cta:hover {
    background: #a67836;
    transform: translateY(-1px);
}
.site-cta svg { width: 16px; height: 16px; }

.site-lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Manrope", sans-serif !important;
    font-size: 11.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #6f6a5f;
    flex-shrink: 0;
}
.site-lang button {
    background: transparent;
    border: 0;
    padding: 4px 4px;
    color: inherit;
    font-family: inherit !important;
    font-size: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    cursor: pointer;
    font-weight: 500;
    transition: color .2s ease;
}
.site-lang button:hover { color: #191916; }
.site-lang button.is-active {
    color: #a67836;
    font-weight: 700;
}
.site-lang span {
    opacity: .35;
    user-select: none;
}

.site-menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}
.site-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #191916;
    display: block;
    transition: all .3s ease;
}
.site-menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.site-menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
    .site-header { padding: 12px 20px; }
    .site-header.is-scrolled { padding: 10px 20px; }
    .site-header-inner { gap: 16px; }
    .site-brand img { height: 40px; }
    .site-header.is-scrolled .site-brand img { height: 36px; }
    .site-nav {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(244, 240, 231, .98);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
        padding: 32px 24px 28px;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
        border-bottom: 1px solid rgba(0, 0, 0, .06);
    }
    .site-nav.is-open { display: flex; }
    .site-nav a { font-size: 20px; }
    .site-cta { display: none; }
    .site-menu-toggle { display: inline-flex; }
    .site-lang { font-size: 10.5px; gap: 4px; }
    .site-lang button { padding: 4px 2px; }
}

/* ============================================================
   SITE FOOTER (einheitlich, alle Seiten)
   ============================================================ */
.site-footer-new {
    background: #191916;
    color: #d8d3c8;
    padding: 100px 40px 40px;
    font-family: "Sansation", "DM Sans", sans-serif !important;
    position: relative;
    z-index: 1;
}
.site-footer-inner {
    width: 100%;
    max-width: 1580px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.site-footer-brand p {
    margin: 20px 0 24px;
    color: #a8a397;
    line-height: 1.7;
    max-width: 380px;
    font-size: 15px;
}
.site-footer-logo {
    height: 54px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: .95;
}
.site-footer-langs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.site-footer-langs span {
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    font-size: 13px;
    color: #d8d3c8;
    letter-spacing: .02em;
}
.site-footer-col h4 {
    font-family: "Manrope", sans-serif !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #a67836 !important;
    margin: 0 0 22px !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    line-height: 1 !important;
    letter-spacing: .14em !important;
}
.site-footer-col a,
.site-footer-col > span {
    display: block;
    color: #d8d3c8;
    text-decoration: none;
    padding: 6px 0;
    font-size: 15px;
    transition: color .2s ease;
}
.site-footer-col a:hover { color: #f4f0e7; }
.site-footer-col > span {
    font-size: 13px;
    color: #6f6a5f;
    padding-top: 14px;
    line-height: 1.5;
}
.site-footer-bottom {
    max-width: 1580px;
    margin: 60px auto 0;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
    color: #6f6a5f;
}
.site-footer-bottom a {
    color: #d4a15b;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s ease;
}
.site-footer-bottom a:hover { color: #f4f0e7; }

@media (max-width: 860px) {
    .site-footer-new { padding: 70px 22px 30px; }
    .site-footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .site-footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; margin-top: 40px; }
}

/* Hero-Panel-Titel & Nav-Overrides falls Alte Nav-Klassen greifen */
.site-header nav.site-nav { font-family: "Manrope", sans-serif !important; }

/* ============================================================
   COOKIE-BANNER (fixed unten, i18n-verkabelt)
   ============================================================ */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 300;
    background: #f4f0e7;
    color: #191916;
    border-radius: 20px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .18),
        0 0 0 1px rgba(0, 0, 0, .04);
    padding: 22px 28px;
    font-family: "Sansation", "DM Sans", sans-serif;
    transform: translateY(140%);
    opacity: 0;
    transition: transform .55s cubic-bezier(.2,.9,.3,1), opacity .35s ease;
    pointer-events: none;
}
.cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.cookie-banner.is-hidden {
    transform: translateY(140%);
    opacity: 0;
    pointer-events: none;
}
.cookie-inner {
    max-width: 1580px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.cookie-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}
.cookie-logo {
    height: 46px;
    width: auto;
    display: block;
    flex-shrink: 0;
}
.cookie-copy strong {
    display: block;
    font-family: "Manrope", sans-serif !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.005em;
    color: #191916;
    margin-bottom: 4px;
    line-height: 1.2;
}
.cookie-copy p {
    margin: 0 0 6px;
    font-size: 13.5px;
    line-height: 1.55;
    color: #4a4640;
    max-width: 620px;
}
.cookie-link {
    font-family: "Manrope", sans-serif !important;
    font-size: 12px;
    color: #a67836;
    text-decoration: underline;
    text-decoration-color: rgba(166, 120, 54, .35);
    text-underline-offset: 3px;
    transition: color .2s ease;
}
.cookie-link:hover { color: #191916; }

.cookie-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 12px 22px;
    border-radius: 999px;
    font-family: "Manrope", sans-serif !important;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: .01em;
    cursor: pointer;
    border: 0;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    white-space: nowrap;
}
.cookie-btn-ghost {
    background: transparent;
    color: #4a4640;
    border: 1px solid rgba(0,0,0,.14);
}
.cookie-btn-ghost:hover {
    background: rgba(0,0,0,.04);
    color: #191916;
}
.cookie-btn-primary {
    background: #191916;
    color: #f4f0e7;
}
.cookie-btn-primary:hover {
    background: #a67836;
    transform: translateY(-1px);
}

@media (max-width: 860px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 18px 20px;
        border-radius: 16px;
    }
    .cookie-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
    .cookie-left { align-items: flex-start; }
    .cookie-logo { height: 40px; }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
}

/* ============================================================
   TOUR-ITEM BESTSELLER BADGE (Hero-Menu index.html)
   ============================================================ */
/* Selber Stil wie .bestseller-badge in der beliebte-touren Card */
.tour-bestseller-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 12px;
    padding: 6px 12px;
    background: linear-gradient(
        135deg,
        #e6c07a 0%,
        #c8a15b 50%,
        #a88655 100%
    );
    color: #1c1a15;
    font-family: "Manrope", sans-serif !important;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    border-radius: 999px;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    box-shadow:
        0 8px 20px rgba(168, 134, 85, .35),
        inset 0 1px 0 rgba(255, 255, 255, .35);
    animation: bestsellerGlow 2.8s ease-in-out infinite;
}
.tour-bestseller-tag i,
.tour-bestseller-tag svg {
    width: 12px !important;
    height: 12px !important;
    stroke-width: 2;
}
@keyframes bestsellerGlow {
    0%, 100% { box-shadow: 0 8px 20px rgba(168, 134, 85, .35), inset 0 1px 0 rgba(255,255,255,.35); }
    50%      { box-shadow: 0 10px 28px rgba(212, 161, 91, .6),  inset 0 1px 0 rgba(255,255,255,.4); }
}

/* ============================================================
   DUNKLE SUBPAGE-SECTIONS – Headlines MÜSSEN hell bleiben
   Override der breiten subpage-H2 Regel (color dark) für:
     .secret-story  – Geheimtipp
     .solution-headline  – dunkles Foto-Overlay
     .adrenalin-headline – cinematic dark
   ============================================================ */
body.destinations-page .secret-story h2,
body.destinations-page .secret-story h2 span,
body.destinations-page .secret-story h2 em,
body.destinations-page .solution-headline,
body.destinations-page .solution-headline em,
body.destinations-page .solution-headline span,
body.destinations-page .adrenalin-headline,
body.destinations-page .adrenalin-headline em,
body.destinations-page .adrenalin-headline span {
    color: #f5f3ed !important;
}
body.destinations-page .secret-story h2 span,
body.destinations-page .secret-story h2 em,
body.destinations-page .solution-headline em,
body.destinations-page .adrenalin-headline em {
    color: #d5b475 !important;
    font-style: italic !important;
    font-family: "Playfair Display", Georgia, serif !important;
    opacity: 1 !important;
    font-weight: 500 !important;
}

/* ============================================================
   SHOWCASE-HEAD Abstand zu Cards wiederherstellen
   (globale H2-Regel überschrieb margin auf .showcase-head → 0)
   ============================================================ */
body.destinations-page .showcase-head,
body.destinations-page .showcase-section .showcase-head,
body.destinations-page .fusion-section .showcase-head {
    margin: 0 auto clamp(70px, 7vw, 110px) !important;
    max-width: 900px;
}
/* Mehr Luft zwischen Adventure-Headers und Card-Grid */
body.destinations-page .showcase-inner .showcase-head { margin-bottom: clamp(80px, 8vw, 120px) !important; }
body.destinations-page .fusion-inner .fusion-head    { margin-bottom: clamp(70px, 7vw, 110px) !important; }

/* Adrenalin-Headline: kompakter als die Standard-Section-H2 */
body.destinations-page .adrenalin-headline {
    font-size: clamp(32px, 3.6vw, 54px) !important;
    line-height: 1.05 !important;
    letter-spacing: -.045em !important;
}
/* Bestseller-Zeile bekommt einen dezenten Gold-Ton links */
.tour-item.is-bestseller::before {
    background: #d4a15b !important;
    height: 40% !important;
}
.tour-item.is-bestseller:hover::before { height: 70% !important; }
