/* ============================================================
   DESTINATIONS SUBPAGE – Dresden · Meißen · Sächsische Schweiz
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,400&family=Playfair+Display:ital,wght@1,500&family=DM+Sans:wght@400;500;600&display=swap");

:root {
    --dest-bg:        #f5f1e8;
    --dest-bg-warm:   #fdfaf3;
    --dest-cream:     #efe9dc;
    --dest-ink:       #191916;
    --dest-ink-soft:  #4a4740;
    --dest-mute:      #78736a;
    --dest-line:      rgba(25,25,22,.10);
    --dest-line-2:    rgba(25,25,22,.18);
    --dest-gold:      #a88655;
    --dest-gold-2:    #c8ad78;
    --dest-gold-soft: rgba(168,134,85,.10);
    --dest-dark:      #10110f;
    --dest-serif:     "Georgia", "Times New Roman", serif;
    --dest-ease:      cubic-bezier(.16,1,.3,1);
}

/* Overrides gegen die Wireframe-Basis */
body.destinations-page {
    background: var(--dest-bg);
    color: var(--dest-ink);
    font-family: "Manrope", "Inter", sans-serif;
}

.destinations-page a { color: inherit; }

/* ============================================================
   HERO – Triptychon: Dresden · Meißen · Sächsische Schweiz
   ============================================================ */
.hero-triptych {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 100vh;
    min-height: 720px;
    background: #10110f;
    overflow: hidden;
}
.hero-triptych.hero-diptych { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
    .hero-triptych.hero-diptych { grid-template-columns: 1fr; }
}

/* Wizard interest-grid: 2-Spalten für Adventures-Page */
.contact-card .interest-grid.interest-grid-duo {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.contact-card .interest-grid-duo .interest { min-height: 92px; }
.hero-panel {
    position: relative;
    display: block;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    isolation: isolate;
}
.hero-panel + .hero-panel::before {
    content: "";
    position: absolute;
    top: 8%;
    bottom: 8%;
    left: 0;
    width: 1px;
    background: rgba(255,255,255,.12);
    z-index: 6;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.02);
    transition: transform 1.6s var(--dest-ease), filter .6s var(--dest-ease);
    filter: saturate(.92) contrast(1.02);
}
.hero-panel:hover .hero-bg {
    transform: scale(1.07);
    filter: saturate(1) contrast(1.05);
}
.hero-panel-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg,
            rgba(16,17,15,.55) 0%,
            rgba(16,17,15,.15) 22%,
            rgba(16,17,15,.10) 55%,
            rgba(16,17,15,.75) 100%);
    pointer-events: none;
}
.hero-panel-shade::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        transparent 60%,
        rgba(16,17,15,.35) 100%);
    mix-blend-mode: multiply;
}

/* Foliage-Foreground am unteren Rand (dekorativ, aus Gradient simuliert) */
.hero-foliage {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    z-index: 4;
    pointer-events: none;
    background:
        radial-gradient(ellipse 40% 60% at 8% 100%, rgba(30,42,20,.55), transparent 60%),
        radial-gradient(ellipse 30% 50% at 60% 105%, rgba(30,42,20,.45), transparent 65%),
        radial-gradient(ellipse 25% 40% at 92% 100%, rgba(30,42,20,.5), transparent 60%);
    filter: blur(2px);
}

/* --- Top-Slots --- */
.hero-panel-top {
    position: absolute;
    top: clamp(28px, 4vh, 44px);
    left: clamp(28px, 3.5vw, 48px);
    right: clamp(28px, 3.5vw, 48px);
    z-index: 6;
    color: #fff;
}

/* Left tagline */
.hero-top-tagline {
    display: block;
    font-family: "DM Sans", "Manrope", sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    text-align: left;
}
.hero-top-tagline .dot { margin: 0 .5em; opacity: .55; }
.hero-top-tagline::after {
    content: "";
    display: block;
    margin-top: 14px;
    height: 1px;
    width: 62%;
    background: linear-gradient(90deg, rgba(255,255,255,.55), transparent);
}

/* Middle brand */
.hero-brand {
    text-align: center;
}
.hero-brand-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 14px;
    color: #fff;
    opacity: .95;
}
.hero-brand-icon svg { width: 40px; height: 40px; }
.hero-brand-name {
    font-family: "Cormorant Garamond", "Georgia", serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: .3em;
    color: #fff;
    line-height: 1;
    padding-left: .3em; /* opt. Ausgleich Letter-Spacing */
}
.hero-brand-sub {
    margin-top: 10px;
    font-family: "DM Sans", "Manrope", sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
}

/* Right nav */
.hero-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(24px, 3.5vw, 44px);
    font-family: "DM Sans", "Manrope", sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .28em;
    text-transform: uppercase;
}
.hero-nav a {
    color: rgba(255,255,255,.92);
    transition: color .25s var(--dest-ease);
    position: relative;
    padding: 4px 0;
}
.hero-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: rgba(255,255,255,0);
    transition: background .25s var(--dest-ease);
}
.hero-nav a:hover::after { background: rgba(255,255,255,.7); }
.hero-nav .lang {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,.75);
    padding-bottom: 3px;
}
.hero-nav .lang::after { background: transparent !important; }

/* --- Content Block --- */
.hero-panel-content {
    position: absolute;
    left: clamp(24px, 3vw, 48px);
    right: clamp(24px, 3vw, 48px);
    bottom: clamp(24%, 26%, 28%);
    z-index: 6;
    text-align: center;
    color: #fff;
}
.hero-panel-title {
    font-family: "Cormorant Garamond", "Georgia", serif;
    font-size: clamp(2.6rem, 4.6vw, 4.75rem);
    font-weight: 400;
    letter-spacing: .045em;
    text-transform: uppercase;
    margin: 0 0 18px;
    line-height: 1;
    text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.hero-panel-title.two-line { font-size: clamp(2.15rem, 3.8vw, 3.85rem); line-height: 1.02; }
.hero-panel-sub {
    font-family: "DM Sans", "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: rgba(255,255,255,.92);
}
.hero-panel-line {
    height: 1px;
    width: 68px;
    background: rgba(255,255,255,.55);
    margin: 30px auto;
}
.hero-panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "DM Sans", "Manrope", sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255,255,255,.95);
    transition: gap .3s var(--dest-ease), color .3s var(--dest-ease);
}
.hero-panel:hover .hero-panel-cta { gap: 18px; color: #fff; }
.hero-panel-cta i { width: 14px; height: 14px; }

/* --- Middle Footer --- */
.hero-panel-footer {
    position: absolute;
    bottom: clamp(28px, 4vh, 44px);
    left: clamp(24px, 3vw, 48px);
    right: clamp(24px, 3vw, 48px);
    z-index: 6;
    text-align: center;
    color: rgba(255,255,255,.95);
}
.hero-panel-footer p {
    font-family: "Cormorant Garamond", "Georgia", serif;
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.55;
    margin: 0 0 20px;
    color: rgba(255,255,255,.98);
}
.hero-panel-footer p em {
    font-style: italic;
    color: rgba(255,255,255,.85);
}
.hero-scroll-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    transition: all .35s var(--dest-ease);
    color: #fff;
}
.hero-scroll-arrow:hover {
    background: rgba(255,255,255,.15);
    transform: translateY(3px);
    border-color: rgba(255,255,255,.85);
}
.hero-scroll-arrow i { width: 18px; height: 18px; }

/* Responsive – mobile: gestapelt */
@media (max-width: 900px) {
    .hero-triptych {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }
    .hero-panel { aspect-ratio: 4/5; }
    .hero-panel + .hero-panel::before {
        top: 0; bottom: auto; left: 8%; right: 8%;
        width: auto; height: 1px;
    }
    .hero-panel-content { bottom: 18%; }
    .hero-panel-footer { position: static; padding: 32px 0; }
}

/* ---------- Top Sub-Nav ---------- */
.dest-topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(245,241,232,.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--dest-line);
}
.dest-topbar-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.dest-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: .04em;
    color: var(--dest-ink-soft);
    transition: color .2s var(--dest-ease);
}
.dest-back:hover { color: var(--dest-ink); }
.dest-back i { width: 16px; height: 16px; }

.dest-topnav {
    display: flex;
    gap: 4px;
    align-items: center;
    background: rgba(255,255,255,.6);
    border: 1px solid var(--dest-line);
    border-radius: 999px;
    padding: 4px;
}
.dest-topnav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    font-size: 12.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--dest-ink-soft);
    border-radius: 999px;
    transition: all .25s var(--dest-ease);
}
.dest-topnav a:hover { color: var(--dest-ink); }
.dest-topnav a.active {
    background: var(--dest-ink);
    color: #fff;
}
.dest-topnav a .num {
    font-family: var(--dest-serif);
    font-style: italic;
    font-size: 11px;
    font-weight: 400;
    opacity: .6;
}

.dest-topbrand {
    display: none;
    font-family: var(--dest-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--dest-ink);
}
@media (min-width: 900px) {
    .dest-topbrand { display: block; }
}

/* ---------- Section Wrapper ---------- */
.dest-block { position: relative; }
.dest-block + .dest-block {
    border-top: 1px dashed var(--dest-line);
}

.dest-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================================
   1. FEATURE – Full-Image Intro pro Destination (dfeature-*)
   ============================================================ */
.dfeature {
    position: relative;
    width: 100%;
    min-height: clamp(720px, 78vh, 900px);
    overflow: hidden;
    background: var(--dest-bg);
    color: var(--dest-ink);
}
.dfeature-image {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    width: 64%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,.05) 7%,
        rgba(0,0,0,.25) 18%,
        rgba(0,0,0,.62) 34%,
        #000 52%,
        #000 100%);
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,.05) 7%,
        rgba(0,0,0,.25) 18%,
        rgba(0,0,0,.62) 34%,
        #000 52%,
        #000 100%);
}
.dfeature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.035);
    filter: saturate(.82) contrast(1.02) brightness(.94);
    transition: transform 1.4s var(--dest-ease);
}
.dfeature-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(15,14,11,.04),
            transparent 46%,
            rgba(15,14,11,.19)),
        linear-gradient(90deg,
            rgba(245,241,232,.22),
            transparent 45%);
    pointer-events: none;
}

.dfeature-inner {
    position: relative;
    z-index: 5;
    width: min(90%, 1580px);
    min-height: inherit;
    margin: auto;
    display: flex;
    align-items: center;
}
.dfeature-content {
    width: min(48%, 720px);
    padding: clamp(80px, 8vw, 140px) 0;
}

.dfeature-meta {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 10px;
}
.dfeature-meta-line {
    width: 34px;
    height: 1px;
    background: var(--dest-gold);
}
.dfeature-meta-small {
    font-family: Georgia, serif;
    font-style: italic;
    text-transform: none;
    letter-spacing: normal;
    color: #8e887f;
}
.dfeature-meta-city {
    color: var(--dest-gold);
    font-weight: 600;
}

.dfeature-content h2 {
    margin: 0;
    font-family: "Helvetica Neue", "Manrope", Arial, sans-serif;
    font-size: clamp(70px, 7.8vw, 128px);
    font-weight: 500;
    line-height: .82;
    letter-spacing: -.078em;
    color: var(--dest-ink);
}
.dfeature-content h2.dfeature-h2-tight {
    font-size: clamp(56px, 6vw, 96px);
    line-height: .88;
}
.dfeature-content h2 span {
    display: block;
    max-width: 650px;
    margin-top: 22px;
    font-family: Georgia, serif;
    font-size: .46em;
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    letter-spacing: -.04em;
    color: var(--dest-gold);
}

.dfeature-lead {
    max-width: 560px;
    margin: 38px 0 0;
    font-size: 18px;
    line-height: 1.55;
    color: #46433d;
}
.dfeature-desc {
    max-width: 590px;
    margin: 14px 0 0;
    font-size: 15px;
    line-height: 1.75;
    color: var(--dest-mute);
}

.dfeature-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 47px;
    padding: 25px 0;
    border-top: 1px solid var(--dest-line);
    border-bottom: 1px solid var(--dest-line);
}
.dfeature-fact {
    display: flex;
    align-items: center;
    gap: 11px;
}
.dfeature-fact-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #eee3d0;
    color: #876b42;
}
.dfeature-fact-icon svg {
    width: 16px;
    stroke-width: 1.4;
}
.dfeature-fact span {
    display: block;
    margin-bottom: 5px;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: #99938a;
}
.dfeature-fact strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--dest-ink);
}

.dfeature-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
    text-decoration: none;
    color: var(--dest-ink);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}
.dfeature-cta > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--dest-ink);
    color: #fff;
    transition:
        transform .45s var(--dest-ease),
        background .35s ease;
}
.dfeature-cta:hover > span {
    background: var(--dest-gold);
    transform: rotate(45deg);
}
.dfeature-cta svg { width: 15px; }

.dfeature-label {
    position: absolute;
    z-index: 7;
    right: clamp(30px, 4vw, 70px);
    bottom: 31px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(20,20,17,.36);
    border: 1px solid rgba(255,255,255,.20);
    backdrop-filter: blur(14px);
    color: #fff;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 500;
}
.dfeature-label svg { width: 13px; }

@media (max-width: 1000px) {
    .dfeature { min-height: auto; }
    .dfeature-image {
        position: relative;
        width: 100%;
        height: 600px;
        -webkit-mask-image: linear-gradient(
            to bottom, #000 0%, #000 66%, transparent 100%);
        mask-image: linear-gradient(
            to bottom, #000 0%, #000 66%, transparent 100%);
    }
    .dfeature-inner { margin-top: -130px; }
    .dfeature-content { width: 100%; max-width: 760px; }
}
@media (max-width: 700px) {
    .dfeature-inner { width: calc(100% - 28px); }
    .dfeature-image { height: 470px; }
    .dfeature-content h2 { font-size: 70px; }
    .dfeature-facts { grid-template-columns: 1fr; gap: 15px; }
    .dfeature-label { right: 18px; top: 20px; bottom: auto; }
}

/* ============================================================
   2. WAS DICH ERWARTET – Route-Timeline mit Stops
   ============================================================ */
.route-section {
    position: relative;
    width: 100%;
    padding: clamp(110px, 10vw, 170px) 0 clamp(120px, 11vw, 180px);
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 5%,
            rgba(255,255,255,.95),
            transparent 28%),
        linear-gradient(180deg, #faf7f1 0%, var(--dest-bg) 100%);
}
.route-section::before {
    content: "";
    position: absolute;
    width: 760px;
    height: 760px;
    right: -330px;
    bottom: -420px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(168,134,85,.08),
        transparent 68%);
    pointer-events: none;
}
.route-inner {
    position: relative;
    z-index: 3;
    width: min(90%, 1580px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(480px, .82fr) minmax(620px, 1fr);
    gap: clamp(80px, 8vw, 145px);
    align-items: start;
}

/* Left intro */
.route-intro {
    position: sticky;
    top: 90px;
    max-width: 700px;
}
.route-index {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 27px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .17em;
    color: #969087;
    font-weight: 600;
}
.route-index-line {
    width: 34px;
    height: 1px;
    background: var(--dest-gold);
}
.route-intro h2 {
    margin: 0;
    max-width: 700px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(54px, 6vw, 96px);
    font-weight: 600;
    line-height: .94;
    letter-spacing: -.07em;
    color: var(--dest-ink);
}
.route-intro h2 span {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--dest-gold);
}
.route-copy {
    margin-top: 38px;
    max-width: 620px;
}
.route-copy p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: var(--dest-mute);
    font-family: "DM Sans", "Manrope", sans-serif;
}
.route-copy p + p { margin-top: 20px; }
.route-copy strong {
    color: var(--dest-ink);
    font-weight: 600;
}
.route-note {
    margin-top: 42px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid var(--dest-line);
    background: rgba(255,255,255,.38);
    color: #716b62;
    font-size: 11px;
    font-family: "DM Sans", sans-serif;
    letter-spacing: .02em;
}
.route-note svg {
    width: 15px;
    height: 15px;
    stroke-width: 1.5;
    color: var(--dest-gold);
}

/* Right timeline */
.route-timeline {
    position: relative;
    padding-left: 92px;
}
.route-line {
    position: absolute;
    left: 29px;
    top: 34px;
    bottom: 34px;
    width: 1px;
    background: var(--dest-line);
    overflow: hidden;
}
.route-progress {
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--dest-gold), #d6c09a);
    transition: height 1.55s var(--dest-ease);
}

/* Route stop */
.route-stop {
    position: relative;
    min-height: 245px;
}
.route-stop + .route-stop { margin-top: 26px; }

.route-marker {
    position: absolute;
    left: -92px;
    top: 8px;
    z-index: 8;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--dest-bg);
    border: 1px solid rgba(32,29,25,.14);
    box-shadow: 0 0 0 8px var(--dest-bg);
    transition:
        background .4s ease,
        border-color .4s ease,
        transform .5s var(--dest-ease);
}
.roman {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-style: italic;
    color: var(--dest-gold);
    transition: color .4s ease;
}
.route-stop:hover .route-marker {
    transform: scale(1.08);
    background: var(--dest-gold);
    border-color: var(--dest-gold);
}
.route-stop:hover .roman { color: #fff; }

/* Card */
.route-card {
    position: relative;
    min-height: 245px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(35,31,25,.08);
    background: #fffdf9;
    isolation: isolate;
    box-shadow: 0 15px 45px rgba(52,43,29,.035);
    transition:
        transform .6s var(--dest-ease),
        box-shadow .6s var(--dest-ease),
        border-color .45s ease;
}
.route-stop:hover .route-card {
    transform: translateX(7px);
    border-color: rgba(168,134,85,.17);
    box-shadow: 0 30px 70px rgba(52,43,29,.08);
}

/* Image */
.route-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -3;
    width: 55%;
    overflow: hidden;
}
.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(.80) contrast(.98) brightness(.94);
    transition:
        transform 1.2s var(--dest-ease),
        filter .7s ease;
}
.route-stop:hover .route-image img {
    transform: scale(1.085);
    filter: saturate(.95) contrast(1) brightness(.98);
}
.route-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg,
        #fffdf9 0%,
        rgba(255,253,249,.99) 12%,
        rgba(255,253,249,.91) 25%,
        rgba(255,253,249,.66) 40%,
        rgba(255,253,249,.30) 56%,
        rgba(255,253,249,.07) 74%,
        transparent 100%);
    transition: background .65s ease;
}
.route-stop:hover .route-image::before {
    background: linear-gradient(90deg,
        #fffdf9 0%,
        rgba(255,253,249,.98) 9%,
        rgba(255,253,249,.84) 23%,
        rgba(255,253,249,.54) 39%,
        rgba(255,253,249,.20) 55%,
        rgba(255,253,249,.03) 72%,
        transparent 100%);
}
.route-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(180deg,
        rgba(255,253,249,.05),
        transparent 50%,
        rgba(245,241,232,.14));
}

/* Card body */
.route-card-body {
    position: relative;
    z-index: 5;
    width: 68%;
    min-height: 245px;
    padding: 29px 30px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.route-stop-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
}
.route-small {
    display: block;
    margin-bottom: 8px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #9f998f;
    font-weight: 600;
}
.route-stop h3 {
    margin: 0;
    max-width: 430px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(22px, 1.8vw, 29px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -.04em;
    color: var(--dest-ink);
}
.route-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #eee3d0;
    color: #876b42;
    transition:
        background .4s ease,
        color .4s ease,
        transform .5s var(--dest-ease);
}
.route-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.45;
}
.route-stop:hover .route-icon {
    background: var(--dest-gold);
    color: #fff;
    transform: rotate(-6deg) scale(1.07);
}
.route-card-body > p {
    margin: 15px 0 0;
    max-width: 520px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--dest-mute);
    font-family: "DM Sans", sans-serif;
}
.route-card-body > p strong {
    color: var(--dest-ink);
    font-weight: 600;
}

/* Hidden details (open on hover) */
.route-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(9px);
    transition:
        margin .45s var(--dest-ease),
        max-height .55s var(--dest-ease),
        opacity .35s ease,
        transform .5s var(--dest-ease);
}
.route-stop:hover .route-detail {
    margin-top: 18px;
    max-height: 80px;
    opacity: 1;
    transform: none;
}
.route-detail span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid var(--dest-line);
    background: rgba(255,255,255,.58);
    backdrop-filter: blur(8px);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #7d776e;
    font-weight: 600;
}
.route-detail svg {
    width: 13px;
    height: 13px;
    stroke-width: 1.5;
    color: var(--dest-gold);
}

/* Image label */
.route-image-label {
    position: absolute;
    z-index: 6;
    right: 14px;
    bottom: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    border-radius: 999px;
    background: rgba(18,18,15,.29);
    border: 1px solid rgba(255,255,255,.21);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .10em;
    font-weight: 600;
    opacity: .85;
    transition:
        opacity .4s ease,
        transform .45s var(--dest-ease);
}
.route-image-label svg {
    width: 12px;
    height: 12px;
    stroke-width: 1.4;
}
.route-stop:hover .route-image-label {
    opacity: 1;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1080px) {
    .route-inner { grid-template-columns: 1fr; gap: 70px; }
    .route-intro { position: relative; top: auto; max-width: 760px; }
    .route-timeline { max-width: 900px; }
}
@media (max-width: 720px) {
    .route-section { padding: 85px 0 100px; }
    .route-inner { width: calc(100% - 28px); }
    .route-intro h2 { font-size: 56px; }
    .route-timeline { padding-left: 64px; }
    .route-line { left: 22px; }
    .route-marker {
        left: -64px;
        width: 46px;
        height: 46px;
        box-shadow: 0 0 0 5px var(--dest-bg);
    }
    .roman { font-size: 16px; }
    .route-card { min-height: 350px; }
    .route-image {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 58%;
    }
    .route-image::before {
        background: linear-gradient(180deg,
            #fffdf9 0%,
            rgba(255,253,249,.97) 12%,
            rgba(255,253,249,.78) 32%,
            rgba(255,253,249,.24) 60%,
            transparent 100%);
    }
    .route-stop:hover .route-image::before {
        background: linear-gradient(180deg,
            #fffdf9 0%,
            rgba(255,253,249,.95) 10%,
            rgba(255,253,249,.70) 30%,
            rgba(255,253,249,.18) 58%,
            transparent 100%);
    }
    .route-card-body {
        width: 100%;
        min-height: 350px;
        justify-content: flex-start;
        padding: 24px 20px 155px;
    }
    .route-detail {
        max-height: 100px;
        opacity: 1;
        margin-top: 16px;
        transform: none;
    }
    .route-image-label { bottom: 11px; right: 11px; }
}

/* ============================================================
   3. BESONDERHEITEN – Editorial-Grid mit Foto-Fenstern
   ============================================================ */
.special-section {
    position: relative;
    width: 100%;
    padding: clamp(110px, 10vw, 170px) 0 clamp(120px, 11vw, 180px);
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 10%,
            rgba(255,255,255,.82),
            transparent 28%),
        linear-gradient(180deg, #faf7f1, var(--dest-bg));
}
.special-inner {
    width: min(90%, 1580px);
    margin: 0 auto;
}
.special-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .4fr);
    gap: 70px;
    align-items: end;
    margin-bottom: clamp(70px, 8vw, 110px);
}
.special-index {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 24px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .17em;
    color: #99938a;
    font-weight: 600;
}
.special-index::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--dest-gold);
}
.special-head h2 {
    margin: 0;
    max-width: 1000px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(50px, 5.7vw, 86px);
    font-weight: 600;
    line-height: .95;
    letter-spacing: -.066em;
    color: var(--dest-ink);
}
.special-head h2 span {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--dest-gold);
}
.special-side-note {
    max-width: 390px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    line-height: 1.45;
    font-style: italic;
    color: #7b746b;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 1.7vw, 26px);
    align-items: start;
}
.special-card:nth-child(2),
.special-card:nth-child(4) { margin-top: 34px; }

.special-card {
    position: relative;
    min-width: 0;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255,253,249,.82);
    border: 1px solid var(--dest-line);
    box-shadow: 0 18px 50px rgba(51,42,29,.04);
    transition:
        transform .6s var(--dest-ease),
        box-shadow .6s var(--dest-ease),
        background .4s ease,
        border-color .4s ease;
}
.special-card:hover {
    transform: translateY(-10px);
    background: #fffefa;
    border-color: rgba(168,134,85,.17);
    box-shadow: 0 34px 80px rgba(51,42,29,.09);
}

.special-image {
    position: relative;
    height: clamp(150px, 13vw, 210px);
    overflow: hidden;
    margin: 14px 14px 0;
    border-radius: 17px;
}
.special-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.035);
    filter: saturate(.8) contrast(.98);
    transition:
        transform 1s var(--dest-ease),
        filter .7s ease;
}
.special-card:hover .special-image img {
    transform: scale(1.085);
    filter: saturate(.95) contrast(1);
}
.special-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(15,14,12,.04),
        transparent 55%,
        rgba(15,14,12,.18));
}
.special-no {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(12px);
    font-size: 9px;
    letter-spacing: .08em;
    color: #655e53;
    font-weight: 600;
}

.special-content {
    padding: 25px 26px 28px;
}
.special-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 14px;
    background: #eee3d0;
    color: #886c43;
    transition:
        background .35s ease,
        color .35s ease,
        transform .5s var(--dest-ease);
}
.special-icon svg {
    width: 19px;
    height: 19px;
    stroke-width: 1.45;
}
.special-card:hover .special-icon {
    background: var(--dest-gold);
    color: #fff;
    transform: rotate(-6deg) scale(1.06);
}
.special-content h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(21px, 1.7vw, 27px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -.04em;
    color: var(--dest-ink);
}
.special-content p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.68;
    color: var(--dest-mute);
    font-family: "DM Sans", sans-serif;
}

.special-foot {
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid var(--dest-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.special-foot em {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 13px;
    font-style: italic;
    color: var(--dest-gold);
}
.special-arrow {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--dest-line);
    transition:
        background .35s ease,
        color .35s ease,
        transform .45s var(--dest-ease);
    color: var(--dest-ink);
}
.special-arrow svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.5;
}
.special-card:hover .special-arrow {
    background: var(--dest-ink);
    color: #fff;
    transform: rotate(45deg);
}

.special-hidden {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transform: translateY(8px);
    transition:
        max-height .5s var(--dest-ease),
        opacity .35s ease,
        margin .45s var(--dest-ease),
        transform .5s var(--dest-ease);
}
.special-card:hover .special-hidden {
    max-height: 80px;
    opacity: 1;
    margin-top: 16px;
    transform: none;
}
.special-hidden span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(168,134,85,.08);
    color: #826b49;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}
.special-hidden svg {
    width: 12px;
    height: 12px;
    stroke-width: 1.5;
}

@media (max-width: 1100px) {
    .special-grid { grid-template-columns: repeat(2, 1fr); }
    .special-card:nth-child(2),
    .special-card:nth-child(4) { margin-top: 0; }
    .special-card:nth-child(even) { margin-top: 26px; }
}
@media (max-width: 760px) {
    .special-section { padding: 85px 0 100px; }
    .special-inner { width: calc(100% - 28px); }
    .special-head { grid-template-columns: 1fr; gap: 24px; }
    .special-head h2 { font-size: 50px; }
    .special-grid { grid-template-columns: 1fr; }
    .special-card,
    .special-card:nth-child(even) { margin-top: 0; }
    .special-image { height: 220px; }
    .special-hidden {
        max-height: 80px;
        opacity: 1;
        margin-top: 16px;
        transform: none;
    }
}

/* ============================================================
   4. SECRET – Dunkles Editorial-Panel mit Artifact
   ============================================================ */
.secret-section {
    position: relative;
    width: 100%;
    padding: clamp(110px, 10vw, 170px) 0 clamp(120px, 11vw, 180px);
    overflow: hidden;
    background:
        radial-gradient(circle at 86% 20%,
            rgba(213,180,117,.08),
            transparent 28%),
        radial-gradient(circle at 12% 90%,
            rgba(255,255,255,.03),
            transparent 28%),
        #10110f;
    color: #f5f3ed;
    isolation: isolate;
}
.secret-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,.012) 50%,
        transparent 100%);
    pointer-events: none;
}
.secret-inner {
    position: relative;
    z-index: 3;
    width: min(90%, 1580px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(500px, .86fr) minmax(560px, 1fr);
    gap: clamp(80px, 8vw, 145px);
    align-items: center;
}

/* Left story */
.secret-story { max-width: 700px; }

.secret-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 999px;
    border: 1px solid rgba(213,180,117,.36);
    color: #d5b475;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 600;
}
.secret-badge svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.5;
}

.secret-story h2 {
    margin-top: 34px;
    max-width: 760px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(50px, 5.8vw, 90px);
    font-weight: 600;
    line-height: .95;
    letter-spacing: -.068em;
    color: #f5f3ed;
}
.secret-story h2 span {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: #d5b475;
}

.secret-quote {
    position: relative;
    max-width: 660px;
    margin-top: 34px;
    padding-left: 26px;
    border-left: 2px solid #d5b475;
}
.secret-quote p {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.55;
    font-style: italic;
    color: rgba(245,243,237,.82);
}
.secret-copy {
    max-width: 650px;
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(245,243,237,.62);
    font-family: "DM Sans", sans-serif;
}
.secret-copy strong {
    color: #fff;
    font-weight: 500;
}

/* Author */
.secret-author {
    margin-top: 42px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,.10);
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-avatar {
    position: relative;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(213,180,117,.34);
}
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author-copy strong {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: 17px;
    color: #d5b475;
    font-weight: 500;
}
.author-copy span {
    display: block;
    margin-top: 5px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(255,255,255,.38);
    font-weight: 600;
}

/* Right artifact panel */
.artifact {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(213,180,117,.24);
    background:
        linear-gradient(180deg,
            rgba(255,255,255,.025),
            rgba(255,255,255,.015)),
        #171815;
    box-shadow: 0 35px 100px rgba(0,0,0,.25);
    isolation: isolate;
    transition:
        transform .7s var(--dest-ease),
        border-color .5s ease,
        box-shadow .7s var(--dest-ease);
}
.artifact:hover {
    transform: translateY(-8px);
    border-color: rgba(213,180,117,.42);
    box-shadow: 0 50px 120px rgba(0,0,0,.34);
}

.artifact-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 58%;
    z-index: -3;
    overflow: hidden;
}
.artifact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(.42) saturate(.45) contrast(1.05);
    transform: scale(1.05);
    transition:
        transform 1.3s var(--dest-ease),
        filter .8s ease;
}
.artifact:hover .artifact-image img {
    transform: scale(1.10);
    filter: brightness(.54) saturate(.62) contrast(1.04);
}
.artifact-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg,
        #171815 0%,
        rgba(23,24,21,.97) 14%,
        rgba(23,24,21,.82) 30%,
        rgba(23,24,21,.38) 56%,
        transparent 100%);
}
.artifact-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(180deg,
        rgba(16,17,15,.12),
        rgba(16,17,15,.35));
}

.artifact-light {
    position: absolute;
    z-index: 4;
    top: -30%;
    left: -60%;
    width: 44%;
    height: 160%;
    transform: rotate(18deg);
    background: linear-gradient(90deg,
        transparent,
        rgba(213,180,117,.07),
        transparent);
    opacity: 0;
    pointer-events: none;
    transition:
        left 1.2s var(--dest-ease),
        opacity .5s ease;
}
.artifact:hover .artifact-light {
    left: 120%;
    opacity: 1;
}

.artifact-content {
    position: relative;
    z-index: 6;
    width: 74%;
    min-height: 610px;
    padding: clamp(38px, 4vw, 58px);
    display: flex;
    flex-direction: column;
}
.artifact-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
}
.artifact-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(255,255,255,.40);
    font-weight: 600;
}
.artifact-label::before {
    content: "";
    width: 23px;
    height: 1px;
    background: #d5b475;
}
.artifact-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(213,180,117,.10);
    border: 1px solid rgba(213,180,117,.18);
    color: #d5b475;
}
.artifact-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.4;
}

.artifact-number { margin-top: 65px; }
.artifact-number strong {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(74px, 7vw, 120px);
    font-weight: 500;
    font-style: italic;
    line-height: .82;
    letter-spacing: -.05em;
    color: #d5b475;
}
.artifact-number span {
    display: block;
    margin-top: 16px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: rgba(255,255,255,.42);
    font-weight: 600;
}

.secret-facts {
    margin-top: 42px;
    padding-top: 26px;
    border-top: 1px dashed rgba(255,255,255,.13);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.secret-fact {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 14px;
    align-items: start;
}
.fact-check {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.34);
    color: #fff;
    transition:
        background .35s ease,
        color .35s ease,
        border-color .35s ease;
}
.secret-fact:hover .fact-check {
    background: #d5b475;
    color: #141510;
    border-color: #d5b475;
}
.fact-check svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.7;
}
.secret-fact p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,.68);
    font-family: "DM Sans", sans-serif;
}

.artifact-footer {
    margin-top: auto;
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.artifact-footer span {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: rgba(255,255,255,.30);
    font-weight: 600;
}
.artifact-footer-link {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(213,180,117,.24);
    color: #d5b475;
    transition:
        background .35s ease,
        color .35s ease,
        transform .45s var(--dest-ease);
}
.artifact:hover .artifact-footer-link {
    background: #d5b475;
    color: #141510;
    transform: rotate(45deg);
}
.artifact-footer-link svg {
    width: 15px;
    height: 15px;
}

@media (max-width: 1050px) {
    .secret-inner { grid-template-columns: 1fr; }
    .secret-story { max-width: 760px; }
    .artifact { max-width: 900px; }
}
@media (max-width: 700px) {
    .secret-section { padding: 85px 0 100px; }
    .secret-inner { width: calc(100% - 28px); }
    .secret-story h2 { font-size: 52px; }
    .artifact { min-height: 690px; }
    .artifact-image {
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        height: 45%;
    }
    .artifact-image::before {
        background: linear-gradient(180deg,
            #171815 0%,
            rgba(23,24,21,.87) 25%,
            rgba(23,24,21,.28) 60%,
            transparent 100%);
    }
    .artifact-content {
        width: 100%;
        min-height: 690px;
        padding: 28px 22px 240px;
    }
    .artifact-number { margin-top: 45px; }
    .artifact-number strong { font-size: 82px; }
}

/* ============================================================
   5. FINAL CTA – Booking-Card + Bestseller-Style
   ============================================================ */
.final-meissen-cta {
    width: 100%;
    padding: clamp(130px, 12vw, 210px) 0 clamp(120px, 11vw, 190px);
    background:
        radial-gradient(circle at 50% 0%,
            rgba(255,255,255,.95),
            transparent 30%),
        linear-gradient(180deg,
            #faf7f1 0%,
            var(--dest-bg) 100%);
    color: var(--dest-ink);
}
.final-meissen-inner {
    width: min(90%, 1320px);
    margin: 0 auto;
    text-align: center;
}

.final-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 30px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .17em;
    color: var(--dest-gold);
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
}
.final-label span {
    width: 40px;
    height: 1px;
    background: rgba(168,134,85,.45);
}

.final-meissen-top h2 {
    margin: 0 auto;
    max-width: 1080px;
    font-family: "Helvetica Neue", "Manrope", Arial, sans-serif;
    font-size: clamp(55px, 6.5vw, 105px);
    line-height: .94;
    letter-spacing: -.07em;
    font-weight: 500;
    color: var(--dest-ink);
}
.final-meissen-top h2 em {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--dest-gold);
}

.final-lead {
    max-width: 840px;
    margin: 34px auto 0;
    font-size: 18px;
    line-height: 1.65;
    color: #4e4a43;
    font-family: "DM Sans", sans-serif;
}
.final-subline {
    margin: 10px 0 0;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 17px;
    color: #91887c;
}

/* Booking Card */
.final-booking-card {
    margin: clamp(60px, 7vw, 100px) auto 0;
    max-width: 1040px;
    min-height: 120px;
    padding: 20px 22px 20px 24px;
    border-radius: 28px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 26px;
    align-items: center;
    background: rgba(255,253,249,.88);
    border: 1px solid rgba(25,24,21,.09);
    box-shadow: 0 28px 70px rgba(48,40,27,.06);
    transition:
        transform .6s var(--dest-ease),
        box-shadow .6s var(--dest-ease);
}
.final-booking-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 90px rgba(48,40,27,.10);
}

.booking-left {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}
.booking-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #eee3d0;
    color: #876b42;
}
.booking-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.4;
}
.booking-copy span {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #989188;
    font-weight: 600;
}
.booking-copy strong {
    display: block;
    margin-top: 5px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dest-ink);
    font-family: "Manrope", sans-serif;
    letter-spacing: -.01em;
}

.booking-meta {
    padding: 0 26px;
    border-left: 1px solid var(--dest-line);
    border-right: 1px solid var(--dest-line);
    text-align: left;
}
.booking-meta > div {
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.booking-meta small {
    font-size: 10px;
    color: #989188;
    font-weight: 500;
}
.booking-meta strong {
    font-family: Georgia, serif;
    font-size: 31px;
    font-weight: 400;
    letter-spacing: -.04em;
    color: var(--dest-ink);
}
.booking-meta > span {
    display: block;
    margin-top: 3px;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #9c958b;
    font-weight: 600;
}

.booking-button {
    height: 58px;
    padding: 0 7px 0 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-radius: 999px;
    background: #191916;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    font-family: "Manrope", sans-serif;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: transform .4s var(--dest-ease);
}
.booking-button > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--dest-gold);
    transition: transform .45s var(--dest-ease);
}
.booking-button:hover > span { transform: rotate(45deg); }
.booking-button svg { width: 16px; height: 16px; }

/* Personal note */
.final-personal {
    margin: 28px auto 0;
    max-width: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    text-align: left;
}
.final-personal-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eee3d0;
    color: #856941;
}
.final-personal-icon svg {
    width: 17px;
    height: 17px;
    stroke-width: 1.4;
}
.final-personal strong {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 13px;
    color: #746d64;
    font-weight: 500;
}
.final-personal p {
    margin: 3px 0 0;
    font-size: 10px;
    line-height: 1.5;
    color: #999288;
    font-family: "DM Sans", sans-serif;
}

/* Foot */
.final-foot {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: #9d968d;
    font-weight: 600;
}
.final-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--dest-gold);
}

@media (max-width: 900px) {
    .final-booking-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }
    .booking-meta {
        padding: 18px 0;
        border-left: 0;
        border-right: 0;
        border-top: 1px solid var(--dest-line);
        border-bottom: 1px solid var(--dest-line);
    }
    .booking-button { justify-content: space-between; }
}
@media (max-width: 650px) {
    .final-meissen-cta { padding: 95px 0 110px; }
    .final-meissen-inner { width: calc(100% - 28px); }
    .final-meissen-top h2 { font-size: 54px; }
    .final-label span { width: 20px; }
}

/* ============================================================
   4.5 PROMISE – „Was du bekommst" + „Was bleibt"
   Manifest oben (scharf), Legacy unten (poetisch)
   ============================================================ */
.promise-section {
    position: relative;
    width: 100%;
    padding: clamp(110px, 10vw, 170px) 0 clamp(120px, 11vw, 180px);
    background:
        radial-gradient(circle at 88% 0%,
            rgba(168,134,85,.06),
            transparent 30%),
        linear-gradient(180deg,
            var(--dest-bg-warm) 0%,
            var(--dest-bg) 100%);
    color: var(--dest-ink);
    overflow: hidden;
}
.promise-section::before {
    content: "";
    position: absolute;
    right: -280px;
    top: -180px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(168,134,85,.08),
        transparent 65%);
    pointer-events: none;
}
.promise-inner {
    position: relative;
    z-index: 3;
    width: min(90%, 1180px);
    margin: 0 auto;
}

/* ---------- Act 1 · Manifest ---------- */
.manifest-block { text-align: center; }
.manifest-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: #99938a;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
}
.manifest-eyebrow::before,
.manifest-eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--dest-gold);
    opacity: .55;
}
.manifest-heading {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 5.2vw, 78px);
    font-weight: 600;
    line-height: .98;
    letter-spacing: -.06em;
    color: var(--dest-ink);
}
.manifest-heading em {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--dest-gold);
}
.manifest-lead {
    max-width: 620px;
    margin: 26px auto 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dest-mute);
    font-family: "DM Sans", sans-serif;
}

.manifest-rows {
    margin: clamp(50px, 6vw, 80px) auto 0;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.manifest-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(18px, 2.5vw, 36px);
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--dest-line);
    transition:
        padding .35s var(--dest-ease),
        background .35s ease;
}
.manifest-row:last-child { border-bottom: 1px solid var(--dest-line); }
.manifest-row:hover { background: rgba(168,134,85,.04); padding: 22px 12px; }

.manifest-x,
.manifest-check {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15.5px;
    font-family: "DM Sans", sans-serif;
    line-height: 1.35;
}
.manifest-x {
    color: #a19a90;
    text-decoration: line-through;
    text-decoration-color: rgba(153,147,138,.55);
    text-underline-offset: 2px;
    justify-content: flex-end;
    text-align: right;
}
.manifest-x .icon {
    order: 2;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(153,147,138,.12);
    color: #a19a90;
    flex: 0 0 auto;
    text-decoration: none;
}
.manifest-x .icon svg {
    width: 12px;
    height: 12px;
    stroke-width: 2;
}
.manifest-arrow {
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, #cfc9bf, var(--dest-gold));
    position: relative;
}
.manifest-arrow::after {
    content: "";
    position: absolute;
    right: -1px;
    top: -3px;
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--dest-gold);
    border-top: 1px solid var(--dest-gold);
    transform: rotate(45deg);
}
.manifest-check {
    color: var(--dest-ink);
    font-weight: 600;
    justify-content: flex-start;
}
.manifest-check .icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--dest-gold);
    color: #fff;
    flex: 0 0 auto;
    transition:
        transform .4s var(--dest-ease),
        box-shadow .4s ease;
}
.manifest-row:hover .manifest-check .icon {
    transform: scale(1.08);
    box-shadow: 0 6px 18px -6px rgba(168,134,85,.55);
}
.manifest-check .icon svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.2;
}

/* ---------- Divider between acts ---------- */
.promise-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: clamp(80px, 8vw, 120px) auto clamp(48px, 5vw, 72px);
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: 16px;
    color: #91887c;
}
.promise-divider::before,
.promise-divider::after {
    content: "";
    width: 60px;
    height: 1px;
    background: var(--dest-gold);
    opacity: .5;
}

/* ---------- Act 2 · Legacy ---------- */
.legacy-block { text-align: center; }
.legacy-heading {
    margin: 0 auto;
    max-width: 1000px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 4.4vw, 66px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -.05em;
    color: var(--dest-ink);
}
.legacy-heading em {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--dest-gold);
}

.legacy-cards {
    margin-top: clamp(50px, 6vw, 80px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 26px);
    text-align: left;
}
.legacy-card {
    position: relative;
    padding: 30px 28px 32px;
    border-radius: 22px;
    background: rgba(255,253,249,.7);
    border: 1px solid var(--dest-line);
    box-shadow: 0 18px 45px rgba(52,43,29,.04);
    transition:
        transform .55s var(--dest-ease),
        box-shadow .55s var(--dest-ease),
        border-color .4s ease;
}
.legacy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 65px rgba(52,43,29,.09);
    border-color: rgba(168,134,85,.28);
}
.legacy-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(168,134,85,.10);
    color: var(--dest-gold);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    transition:
        background .35s ease,
        color .35s ease,
        transform .5s var(--dest-ease);
}
.legacy-card:hover .legacy-card-icon {
    background: var(--dest-gold);
    color: #fff;
    transform: rotate(-6deg) scale(1.06);
}
.legacy-card-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.4;
}
.legacy-quote {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: clamp(19px, 1.5vw, 22px);
    line-height: 1.35;
    color: var(--dest-ink);
    letter-spacing: -.01em;
}
.legacy-caption {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed var(--dest-line);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #99938a;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
}

@media (max-width: 900px) {
    .manifest-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: left;
    }
    .manifest-x, .manifest-check {
        justify-content: flex-start;
        text-align: left;
    }
    .manifest-x .icon { order: 0; }
    .manifest-arrow { display: none; }
    .legacy-cards { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .promise-section { padding: 85px 0 100px; }
    .manifest-heading { font-size: 44px; }
    .legacy-heading { font-size: 38px; }
}

/* ============================================================
   OUTRO – Split-Experience Switcher (Running / Rundflug)
   ============================================================ */
.experience-switcher {
    width: 100%;
    padding: clamp(110px, 10vw, 170px) 0 clamp(120px, 11vw, 180px);
    background: linear-gradient(180deg, #faf7f1, var(--dest-bg));
    color: var(--dest-ink);
}
.experience-inner {
    width: min(90%, 1500px);
    margin: 0 auto;
}
.experience-head {
    max-width: 900px;
    margin: 0 auto clamp(60px, 7vw, 95px);
    text-align: center;
}
.experience-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 14px;
    color: #787168;
}
.experience-eyebrow span {
    width: 30px;
    height: 1px;
    background: var(--dest-gold);
}
.experience-head h2 {
    margin: 0;
    font-family: "Helvetica Neue", "Manrope", Arial, sans-serif;
    font-size: clamp(52px, 5.8vw, 88px);
    font-weight: 500;
    line-height: .95;
    letter-spacing: -.065em;
    color: var(--dest-ink);
}
.experience-head h2 em {
    font-family: Georgia, serif;
    font-weight: 400;
    font-style: italic;
    color: var(--dest-gold);
}
.experience-head p {
    max-width: 620px;
    margin: 23px auto 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--dest-mute);
    font-family: "DM Sans", sans-serif;
}

/* Split wrapper */
.split-experiences {
    position: relative;
    width: 100%;
    height: clamp(560px, 50vw, 720px);
    display: flex;
    gap: 0;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 30px 90px rgba(44,36,23,.10);
}

.split-card {
    position: relative;
    min-width: 0;
    flex: 1;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    isolation: isolate;
    transition: flex .95s var(--dest-ease);
}
.split-experiences:hover .split-card { flex: .72; }
.split-experiences .split-card:hover { flex: 1.28; }

.split-bg {
    position: absolute;
    inset: 0;
    z-index: -4;
    overflow: hidden;
}
.split-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.035);
    filter: saturate(.82) brightness(.82) contrast(1.03);
    transition:
        transform 1.25s var(--dest-ease),
        filter .7s ease;
}
.split-card:hover .split-bg img {
    transform: scale(1.085);
    filter: saturate(.97) brightness(.90) contrast(1.03);
}

.split-overlay {
    position: absolute;
    inset: 0;
    z-index: -3;
    background: linear-gradient(180deg,
        rgba(7,8,6,.04),
        rgba(7,8,6,.08) 38%,
        rgba(7,8,6,.86) 100%);
}
.split-running .split-overlay {
    background: linear-gradient(180deg,
        rgba(7,8,6,.03),
        rgba(7,8,6,.06) 35%,
        rgba(7,8,6,.86) 100%);
}
.split-flight .split-overlay {
    background: linear-gradient(180deg,
        rgba(7,8,6,.03),
        rgba(7,8,6,.08) 35%,
        rgba(7,8,6,.82) 100%);
}

.split-top {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 22px;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.split-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(15,15,12,.28);
    border: 1px solid rgba(255,255,255,.20);
    backdrop-filter: blur(12px);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .10em;
    font-weight: 600;
}
.split-badge svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.4;
}
.split-index {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.74);
    color: #4f493f;
    backdrop-filter: blur(12px);
    font-size: 9px;
    font-weight: 700;
}

.split-content {
    position: absolute;
    z-index: 5;
    left: clamp(25px, 3.3vw, 50px);
    right: clamp(25px, 3.3vw, 50px);
    bottom: clamp(30px, 3vw, 48px);
    max-width: 620px;
}
.split-kicker {
    margin-bottom: 10px;
    font-family: Georgia, serif;
    font-size: 14px;
    font-style: italic;
    color: rgba(255,255,255,.66);
}
.split-content h3 {
    margin: 0;
    max-width: 550px;
    font-family: "Helvetica Neue", "Manrope", Arial, sans-serif;
    font-size: clamp(38px, 4vw, 68px);
    font-weight: 500;
    line-height: .95;
    letter-spacing: -.058em;
    color: #fff;
}
.split-content p {
    max-width: 520px;
    margin: 17px 0 0;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,.66);
    font-family: "DM Sans", sans-serif;
}

/* Expanding details */
.split-more {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition:
        max-height .7s var(--dest-ease),
        opacity .4s ease,
        transform .6s var(--dest-ease);
}
.split-card:hover .split-more {
    max-height: 100px;
    opacity: 1;
    transform: none;
}
.split-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 20px;
}
.split-meta span {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(10px);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .04em;
}
.split-meta svg {
    width: 13px;
    height: 13px;
    stroke-width: 1.4;
}

/* Arrow */
.split-arrow {
    position: absolute;
    z-index: 6;
    right: 27px;
    bottom: 27px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.24);
    backdrop-filter: blur(12px);
    color: #fff;
    transition:
        background .35s ease,
        color .35s ease,
        transform .5s var(--dest-ease);
}
.split-card:hover .split-arrow {
    background: var(--dest-gold);
    color: #171714;
    transform: rotate(45deg) scale(1.08);
}
.split-arrow svg { width: 18px; height: 18px; }

/* Center */
.split-center {
    position: absolute;
    z-index: 20;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(18,18,15,.72);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(14px);
    color: rgba(255,255,255,.72);
    pointer-events: none;
    transition:
        opacity .35s ease,
        transform .5s var(--dest-ease);
}
.split-center svg {
    width: 17px;
    height: 17px;
    stroke-width: 1.4;
}
.split-experiences:hover .split-center {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.8);
}
.split-experiences::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 22px;
    bottom: 22px;
    width: 1px;
    z-index: 8;
    background: rgba(255,255,255,.15);
    pointer-events: none;
    transition: opacity .35s ease;
}
.split-experiences:hover::after { opacity: 0; }

@media (max-width: 900px) {
    .split-experiences {
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        border-radius: 26px;
    }
    .split-card { min-height: 560px; }
    .split-experiences:hover .split-card,
    .split-experiences .split-card:hover { flex: auto; }
    .split-center,
    .split-experiences::after { display: none; }
    .split-more {
        max-height: 100px;
        opacity: 1;
        transform: none;
    }
}
@media (max-width: 650px) {
    .experience-switcher { padding: 85px 0 100px; }
    .experience-inner { width: calc(100% - 28px); }
    .experience-head h2 { font-size: 50px; }
    .split-card { min-height: 500px; }
    .split-content { right: 85px; }
}

/* ============================================================
   Scroll-Reveal Animationen
   ============================================================ */
.dest-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s var(--dest-ease), transform .8s var(--dest-ease);
}
.dest-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}
.dest-reveal[data-delay="1"] { transition-delay: .08s; }
.dest-reveal[data-delay="2"] { transition-delay: .16s; }
.dest-reveal[data-delay="3"] { transition-delay: .24s; }
.dest-reveal[data-delay="4"] { transition-delay: .32s; }

/* ============================================================
   ADVENTURES – Emotionale Section-Serie
   Pain · Solution · Showcase · Fusion · Adrenalin · Merged
   ============================================================ */

/* -----------------------------------------------------------
   SECTION 1 · Pain — „5 Gründe warum X dich langweilt"
   ----------------------------------------------------------- */
.pain-section {
    position: relative;
    width: 100%;
    padding: clamp(110px, 10vw, 170px) 0 clamp(120px, 11vw, 180px);
    background: var(--dest-bg);
    color: var(--dest-ink);
    overflow: hidden;
}
.pain-inner {
    position: relative;
    z-index: 3;
    width: min(90%, 1500px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: clamp(60px, 6vw, 100px);
    align-items: start;
}
.pain-lead {
    position: sticky;
    top: 90px;
    max-width: 620px;
}
.pain-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .24em;
    color: #b64c4c;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
}
.pain-eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: #b64c4c;
}
.pain-headline {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(50px, 6vw, 92px);
    font-weight: 700;
    line-height: .96;
    letter-spacing: -.07em;
    color: var(--dest-ink);
}
.pain-headline em {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: #b64c4c;
    display: block;
}
.pain-copy {
    margin-top: 32px;
    max-width: 540px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--dest-mute);
    font-family: "DM Sans", sans-serif;
}
.pain-copy strong { color: var(--dest-ink); font-weight: 600; }
.pain-image {
    margin-top: 40px;
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(51,42,29,.15);
}
.pain-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.62) brightness(.72) contrast(1.04);
    transform: scale(1.03);
    transition: transform 1.2s var(--dest-ease);
}
.pain-image:hover img { transform: scale(1.07); }
.pain-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        transparent 45%,
        rgba(16,17,15,.55) 100%);
}
.pain-image-caption {
    position: absolute;
    bottom: 20px;
    left: 24px;
    right: 24px;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.35;
    z-index: 2;
}

.pain-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.pain-item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-top: 1px solid var(--dest-line);
    align-items: start;
    transition: transform .45s var(--dest-ease);
}
.pain-item:last-child { border-bottom: 1px solid var(--dest-line); }
.pain-item:hover { transform: translateX(6px); }

.pain-number {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: clamp(48px, 4.6vw, 72px);
    line-height: .9;
    color: #b64c4c;
    font-weight: 500;
    letter-spacing: -.03em;
    opacity: .95;
}
.pain-item h3 {
    margin: 8px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(20px, 1.7vw, 26px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: var(--dest-ink);
}
.pain-item p {
    margin: 10px 0 0;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--dest-mute);
    font-family: "DM Sans", sans-serif;
    max-width: 560px;
}

@media (max-width: 1000px) {
    .pain-inner { grid-template-columns: 1fr; gap: 60px; }
    .pain-lead { position: relative; top: auto; }
}
@media (max-width: 700px) {
    .pain-item { grid-template-columns: 60px 1fr; gap: 16px; padding: 22px 0; }
    .pain-number { font-size: 44px; }
    .pain-headline { font-size: 46px; }
}

/* -----------------------------------------------------------
   SECTION 2 · Solution — Die Antwort auf Section 1
   Cinematic Full-Bleed mit Triad
   ----------------------------------------------------------- */
.solution-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #10110f;
    color: #fff;
    display: flex;
    align-items: center;
    padding: clamp(120px, 12vw, 180px) 0;
    isolation: isolate;
}
.solution-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}
.solution-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.85) brightness(.55) contrast(1.05);
    transform: scale(1.04);
    transition: transform 1.6s var(--dest-ease);
}
.solution-section:hover .solution-bg img { transform: scale(1.09); }
.solution-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%,
            rgba(0,0,0,.15) 0%,
            rgba(0,0,0,.55) 60%,
            rgba(0,0,0,.85) 100%),
        linear-gradient(180deg,
            rgba(16,17,15,.35) 0%,
            transparent 40%,
            rgba(16,17,15,.55) 100%);
}
.solution-inner {
    position: relative;
    z-index: 2;
    width: min(90%, 1500px);
    margin: 0 auto;
    text-align: center;
}
.solution-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .28em;
    color: var(--dest-gold);
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
}
.solution-eyebrow::before,
.solution-eyebrow::after {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--dest-gold);
    opacity: .7;
}
.solution-headline {
    margin: 0 auto;
    max-width: 1100px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(56px, 6.4vw, 108px);
    font-weight: 600;
    line-height: .96;
    letter-spacing: -.065em;
    color: #fff;
}
.solution-headline em {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--dest-gold);
}
.solution-copy {
    max-width: 700px;
    margin: 34px auto 0;
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: clamp(19px, 1.7vw, 24px);
    line-height: 1.5;
    color: rgba(255,255,255,.85);
}

.solution-triad {
    margin-top: clamp(60px, 7vw, 100px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.solution-pillar {
    padding: 32px 24px;
    border-top: 1px solid rgba(255,255,255,.16);
    text-align: left;
    position: relative;
    transition: transform .5s var(--dest-ease);
}
.solution-pillar::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    height: 1px;
    width: 0;
    background: var(--dest-gold);
    transition: width .6s var(--dest-ease);
}
.solution-pillar:hover { transform: translateY(-4px); }
.solution-pillar:hover::before { width: 100%; }

.solution-pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: rgba(213,180,117,.14);
    border: 1px solid rgba(213,180,117,.28);
    color: var(--dest-gold);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    transition:
        background .35s ease,
        color .35s ease,
        transform .5s var(--dest-ease);
}
.solution-pillar:hover .solution-pillar-icon {
    background: var(--dest-gold);
    color: #10110f;
    transform: rotate(-6deg) scale(1.05);
}
.solution-pillar-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.4;
}
.solution-pillar h4 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -.02em;
    color: #fff;
}
.solution-pillar p {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255,255,255,.72);
    font-family: "DM Sans", sans-serif;
}

@media (max-width: 900px) {
    .solution-triad { grid-template-columns: 1fr; gap: 0; }
    .solution-headline { font-size: 46px; }
}

/* -----------------------------------------------------------
   SECTION 3 · Showcase — 4 cinematic full-image cards
   ----------------------------------------------------------- */
.showcase-section {
    position: relative;
    width: 100%;
    padding: clamp(110px, 10vw, 170px) 0 clamp(120px, 11vw, 180px);
    background:
        linear-gradient(180deg,
            var(--dest-bg-warm) 0%,
            var(--dest-bg) 100%);
    overflow: hidden;
}
.showcase-inner {
    width: min(90%, 1580px);
    margin: 0 auto;
}
.showcase-head {
    text-align: center;
    max-width: 900px;
    margin: 0 auto clamp(60px, 6vw, 90px);
}
.showcase-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: #99938a;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
}
.showcase-eyebrow::before,
.showcase-eyebrow::after {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--dest-gold);
    opacity: .55;
}
.showcase-head h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 5vw, 76px);
    font-weight: 600;
    line-height: .98;
    letter-spacing: -.06em;
    color: var(--dest-ink);
}
.showcase-head h2 em {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--dest-gold);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 1.7vw, 26px);
}
@media (max-width: 1100px) {
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
    .showcase-grid { grid-template-columns: 1fr; }
}

.showcase-card {
    position: relative;
    height: clamp(420px, 32vw, 520px);
    border-radius: 26px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 24px 60px rgba(51,42,29,.08);
    transition:
        transform .6s var(--dest-ease),
        box-shadow .6s var(--dest-ease);
    cursor: pointer;
}
.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 90px rgba(51,42,29,.16);
}
.showcase-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(.85) contrast(1.05);
    transition:
        transform 1.4s var(--dest-ease),
        filter .7s ease;
}
.showcase-card:hover img {
    transform: scale(1.1);
    filter: saturate(1) contrast(1.05);
}
.showcase-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg,
        rgba(16,17,15,.10) 0%,
        rgba(16,17,15,.12) 45%,
        rgba(16,17,15,.85) 100%);
    transition: background .5s ease;
}
.showcase-card:hover::before {
    background: linear-gradient(180deg,
        rgba(16,17,15,.15) 0%,
        rgba(16,17,15,.25) 45%,
        rgba(16,17,15,.92) 100%);
}
.showcase-card-top {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15,15,12,.32);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
}
.showcase-badge svg { width: 12px; height: 12px; stroke-width: 1.5; }
.showcase-index {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: 22px;
    color: #fff;
    opacity: .8;
    font-weight: 500;
}

.showcase-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    color: #fff;
}
.showcase-content h3 {
    margin: 0 0 12px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(24px, 2vw, 32px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.03em;
}
.showcase-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,.78);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition:
        max-height .55s var(--dest-ease),
        opacity .4s ease,
        transform .5s var(--dest-ease);
}
.showcase-card:hover .showcase-content p {
    max-height: 120px;
    opacity: 1;
    transform: none;
}
.showcase-hint {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dest-gold);
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: 14px;
}
.showcase-hint svg {
    width: 14px;
    height: 14px;
    transition: transform .4s var(--dest-ease);
}
.showcase-card:hover .showcase-hint svg { transform: translateX(4px); }

/* -----------------------------------------------------------
   SECTION 4 · Fusion — 3 Etappen: Sport + Stadt + Story
   Editorial-Spread mit 3-Dimensions-Overlay
   ----------------------------------------------------------- */
.fusion-section {
    position: relative;
    width: 100%;
    padding: clamp(110px, 10vw, 170px) 0 clamp(120px, 11vw, 180px);
    background: var(--dest-bg);
    overflow: hidden;
}
.fusion-inner {
    width: min(90%, 1580px);
    margin: 0 auto;
}
.fusion-head {
    text-align: center;
    max-width: 900px;
    margin: 0 auto clamp(70px, 7vw, 110px);
}
.fusion-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 30px;
    font-family: "DM Sans", sans-serif;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #99938a;
    font-weight: 600;
}
.fusion-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.fusion-legend .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.fusion-legend .dot-sport { background: #b64c4c; }
.fusion-legend .dot-city  { background: var(--dest-gold); }
.fusion-legend .dot-story { background: #556043; }

.fusion-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.fusion-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}
.fusion-item.is-reverse {
    grid-template-columns: 1fr 1fr;
}
.fusion-item.is-reverse .fusion-visual { order: 2; }
.fusion-item.is-reverse .fusion-body { order: 1; }

@media (max-width: 900px) {
    .fusion-item,
    .fusion-item.is-reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .fusion-item.is-reverse .fusion-visual { order: 0; }
    .fusion-item.is-reverse .fusion-body { order: 1; }
}

.fusion-visual {
    position: relative;
    aspect-ratio: 5/4;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(51,42,29,.10);
}
.fusion-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    filter: saturate(.88) contrast(1.03);
    transition: transform 1.4s var(--dest-ease);
}
.fusion-item:hover .fusion-visual img { transform: scale(1.09); }
.fusion-visual-num {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(15,15,12,.34);
    border: 1px solid rgba(255,255,255,.28);
    backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: 28px;
    color: #fff;
    font-weight: 500;
}
.fusion-visual-tag {
    position: absolute;
    bottom: 22px;
    right: 22px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(15,15,12,.42);
    border: 1px solid rgba(255,255,255,.24);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
}
.fusion-visual-tag svg { width: 12px; height: 12px; }

.fusion-body h3 {
    margin: 0 0 22px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 3.6vw, 54px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.04em;
    color: var(--dest-ink);
}
.fusion-body h3 em {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--dest-gold);
    display: block;
}
.fusion-copy {
    margin: 0 0 32px;
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--dest-mute);
    font-family: "DM Sans", sans-serif;
    max-width: 500px;
}
.fusion-copy strong { color: var(--dest-ink); font-weight: 600; }

.fusion-dimensions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.fusion-dim {
    padding: 20px 18px 22px;
    background: rgba(255,253,249,.68);
    border: 1px solid var(--dest-line);
    border-radius: 16px;
    position: relative;
    transition:
        transform .4s var(--dest-ease),
        border-color .35s ease,
        background .35s ease;
}
.fusion-dim:hover {
    transform: translateY(-3px);
    background: #fffefa;
    border-color: rgba(168,134,85,.35);
}
.fusion-dim::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    border-radius: 999px;
}
.fusion-dim.dim-sport::before { background: #b64c4c; }
.fusion-dim.dim-city::before  { background: var(--dest-gold); }
.fusion-dim.dim-story::before { background: #556043; }

.fusion-dim-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #99938a;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: "DM Sans", sans-serif;
}
.fusion-dim-value {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--dest-ink);
    line-height: 1.3;
    letter-spacing: -.01em;
}
.fusion-dim-sub {
    display: block;
    margin-top: 4px;
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: 12.5px;
    color: var(--dest-gold);
    font-weight: 500;
}
@media (max-width: 700px) {
    .fusion-dimensions { grid-template-columns: 1fr; gap: 10px; }
    .fusion-body h3 { font-size: 32px; }
}

/* -----------------------------------------------------------
   SECTION 5 · Adrenalin — Cinematic dark section
   Full-bleed, riesige italic Zahl, Stats & Isabella-Quote
   ----------------------------------------------------------- */
.adrenalin-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: clamp(140px, 14vw, 220px) 0;
    background: #0a0b09;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
}
.adrenalin-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    overflow: hidden;
}
.adrenalin-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.6) brightness(.42) contrast(1.15);
    transform: scale(1.04);
    transition: transform 3s var(--dest-ease);
}
.adrenalin-section:hover .adrenalin-bg img { transform: scale(1.09); }
.adrenalin-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 40%,
            rgba(213,180,117,.14) 0%,
            transparent 40%),
        linear-gradient(180deg,
            rgba(10,11,9,.7) 0%,
            rgba(10,11,9,.35) 40%,
            rgba(10,11,9,.8) 100%);
    z-index: 2;
}

.adrenalin-inner {
    position: relative;
    z-index: 3;
    width: min(92%, 1580px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(60px, 6vw, 100px);
    align-items: center;
}
@media (max-width: 1000px) {
    .adrenalin-inner { grid-template-columns: 1fr; gap: 50px; }
}

.adrenalin-mega {
    position: relative;
}
.adrenalin-mega-label {
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .32em;
    color: var(--dest-gold);
    font-weight: 700;
    margin-bottom: 12px;
}
.adrenalin-mega-number {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: clamp(160px, 22vw, 340px);
    line-height: .82;
    letter-spacing: -.06em;
    color: var(--dest-gold);
    font-weight: 500;
    text-shadow: 0 20px 60px rgba(0,0,0,.5);
    background: linear-gradient(180deg, #f5d99f 0%, #a88655 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.adrenalin-mega-sub {
    margin-top: 20px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 500;
    letter-spacing: -.01em;
    color: rgba(255,255,255,.9);
    line-height: 1.35;
}
.adrenalin-mega-sub em {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    color: var(--dest-gold);
}

.adrenalin-body {
    max-width: 560px;
}
.adrenalin-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(213,180,117,.45);
    background: rgba(213,180,117,.08);
    color: var(--dest-gold);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    margin-bottom: 24px;
}
.adrenalin-eyebrow svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.6;
    animation: pulse-heart 2.4s ease-in-out infinite;
}
@keyframes pulse-heart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.18); }
}
.adrenalin-headline {
    margin: 0 0 26px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 4.2vw, 60px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -.04em;
    color: #fff;
}
.adrenalin-headline em {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--dest-gold);
}
.adrenalin-quote {
    position: relative;
    padding-left: 22px;
    border-left: 2px solid var(--dest-gold);
    margin: 0 0 28px;
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.5;
    color: rgba(255,255,255,.92);
}

.adrenalin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px dashed rgba(255,255,255,.15);
}
.adrenalin-stat {
    text-align: left;
}
.adrenalin-stat-value {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: clamp(32px, 3.2vw, 46px);
    font-weight: 500;
    line-height: 1;
    color: var(--dest-gold);
    letter-spacing: -.02em;
}
.adrenalin-stat-label {
    display: block;
    margin-top: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: rgba(255,255,255,.55);
    font-weight: 600;
}

/* -----------------------------------------------------------
   SECTION 6 · Merged — „Was du bekommst + Was bleibt"
   Zwei-Spalten Split mit emotionalem Closing
   ----------------------------------------------------------- */
.merged-section {
    position: relative;
    width: 100%;
    padding: clamp(110px, 10vw, 170px) 0 clamp(120px, 11vw, 180px);
    background:
        radial-gradient(circle at 15% 100%,
            rgba(168,134,85,.06),
            transparent 50%),
        linear-gradient(180deg, var(--dest-bg-warm), var(--dest-bg));
    overflow: hidden;
}
.merged-inner {
    width: min(90%, 1500px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(60px, 6vw, 100px);
    align-items: start;
}
@media (max-width: 1000px) {
    .merged-inner { grid-template-columns: 1fr; gap: 50px; }
}

/* Left: „Was du bekommst" */
.merged-left {
    position: sticky;
    top: 90px;
}
.merged-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: #99938a;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
}
.merged-eyebrow::before {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--dest-gold);
}
.merged-left h2 {
    margin: 0 0 30px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 4.6vw, 68px);
    font-weight: 600;
    line-height: .98;
    letter-spacing: -.055em;
    color: var(--dest-ink);
}
.merged-left h2 em {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--dest-gold);
}
.merged-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}
.merged-item {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 16px;
    align-items: start;
    padding: 12px 0;
}
.merged-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--dest-gold);
    color: #fff;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    transition: transform .35s var(--dest-ease);
}
.merged-item:hover .merged-check {
    transform: scale(1.08) rotate(-6deg);
}
.merged-check svg { width: 15px; height: 15px; stroke-width: 2.4; }
.merged-item strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dest-ink);
    letter-spacing: -.01em;
}
.merged-item p {
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--dest-mute);
    font-family: "DM Sans", sans-serif;
}

/* Right: „Was bleibt?" — Emotionale Coda */
.merged-right {
    position: relative;
    padding: clamp(40px, 4vw, 60px);
    border-radius: 26px;
    background: rgba(255,253,249,.75);
    border: 1px solid var(--dest-line);
    box-shadow: 0 30px 80px rgba(51,42,29,.06);
}
.merged-right::before {
    content: "";
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(168,134,85,.18) 0%,
        transparent 70%);
}
.merged-right-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(168,134,85,.10);
    color: #826b49;
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    margin-bottom: 26px;
}
.merged-right-eyebrow svg {
    width: 13px;
    height: 13px;
    stroke-width: 1.6;
    color: var(--dest-gold);
}
.merged-right h3 {
    margin: 0 0 22px;
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--dest-ink);
    font-weight: 500;
}
.merged-right h3 em {
    color: var(--dest-gold);
    font-style: italic;
}
.merged-right > p {
    margin: 0 0 30px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--dest-mute);
}
.merged-right > p strong {
    color: var(--dest-ink);
    font-weight: 600;
}

.merged-emotions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 30px;
    border-top: 1px dashed var(--dest-line);
}
.merged-emotion {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.4);
    transition:
        background .35s ease,
        transform .4s var(--dest-ease);
}
.merged-emotion:hover {
    background: rgba(168,134,85,.08);
    transform: translateX(4px);
}
.merged-emotion-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(168,134,85,.12);
    color: var(--dest-gold);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}
.merged-emotion-icon svg { width: 20px; height: 20px; stroke-width: 1.4; }
.merged-emotion-body strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dest-ink);
    letter-spacing: -.01em;
}
.merged-emotion-body p {
    margin: 4px 0 0;
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--dest-mute);
}


/* ============================================================
   TRUTH-SECTION – Neues Pain-Layout: Bild mittig, Cards drumherum
   Nutzt: --dest-red-pain (rot) statt gold für Pain-Signatur
   ============================================================ */
:root {
    --truth-red: #c44f50;
    --truth-red-soft: #f1dfdc;
}
.truth-section {
    position: relative;
    width: 100%;
    padding: clamp(120px, 10vw, 175px) 0 clamp(120px, 11vw, 185px);
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 10%,
            rgba(255,255,255,.96),
            transparent 29%),
        linear-gradient(180deg, #faf7f1, var(--dest-bg));
}
.truth-inner {
    width: min(90%, 1580px);
    margin: 0 auto;
}

/* Header */
.truth-head {
    display: grid;
    grid-template-columns: minmax(460px, .9fr) minmax(340px, .5fr);
    gap: clamp(70px, 8vw, 140px);
    align-items: end;
    margin-bottom: clamp(80px, 8vw, 120px);
}
.truth-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--truth-red);
    font-weight: 700;
}
.truth-label::before {
    content: "";
    width: 36px;
    height: 1px;
    background: var(--truth-red);
}
.truth-head h2 {
    max-width: 850px;
    font-size: clamp(58px, 6.8vw, 110px);
    line-height: .91;
    letter-spacing: -.075em;
    font-weight: 600;
    color: var(--dest-ink);
    margin: 0;
}
.truth-head h2 span {
    display: block;
    margin-top: 10px;
    font-style: italic;
    font-weight: 500;
    color: var(--truth-red);
}
.truth-intro {
    max-width: 480px;
    padding-bottom: 7px;
}
.truth-intro p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--dest-mute);
    margin: 0;
}
.truth-intro strong { color: var(--dest-ink); font-weight: 600; }

/* Stage: 3-Spalten Composition — Bild kompakter, Cards drum herum */
.truth-stage {
    position: relative;
    min-height: 720px;
    display: grid;
    grid-template-columns:
        minmax(300px, .95fr)
        minmax(400px, .95fr)
        minmax(300px, .95fr);
    gap: clamp(18px, 2.2vw, 34px);
    align-items: center;
}

/* Beide Columns — Card-Stapel */
.truth-left,
.truth-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Center-Spalte — Bild + Card unter dem Bild */
.truth-center {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.truth-card-bottom {
    /* Optional dezenter Highlight — bleibt bewusst gleich zu den anderen Cards */
}
.truth-card-bottom:hover { transform: translateY(-4px); }
.truth-card-bottom::before {
    left: 20px;
    right: 20px;
    top: 0;
    width: auto;
    height: 2px;
}

/* Left-Cards: Hover in Richtung Bild (rechts) */
.truth-left .truth-card:hover { transform: translateX(7px); }
.truth-left .truth-card::before { left: auto; right: 0; }
.truth-note {
    padding: 28px 0 30px;
    border-top: 1px solid var(--dest-line);
}
.truth-note:first-child { border-top: 0; }
.truth-note-number {
    font-style: italic;
    font-size: clamp(48px, 4.2vw, 72px);
    line-height: .9;
    color: rgba(196, 79, 80, .32);
    font-weight: 500;
    transition:
        color .35s ease,
        transform .5s var(--dest-ease);
}
.truth-note h3 {
    max-width: 390px;
    margin: 17px 0 0;
    font-size: clamp(23px, 1.8vw, 30px);
    line-height: 1.12;
    letter-spacing: -.04em;
    font-weight: 600;
    color: var(--dest-ink);
}
.truth-note p {
    max-width: 390px;
    margin: 11px 0 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--dest-mute);
}
.truth-note:hover .truth-note-number {
    color: var(--truth-red);
    transform: translateX(5px);
}

/* Center visual */
.truth-visual {
    position: relative;
    height: min(62vh, 640px);
    min-height: 520px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 90px rgba(53, 43, 27, .12);
    isolation: isolate;
}
.truth-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.035);
    filter: saturate(.80) brightness(.86) contrast(1.03);
    transition:
        transform 1.2s var(--dest-ease),
        filter .7s ease;
}
.truth-stage:hover .truth-visual img { transform: scale(1.055); }
.truth-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(12,12,10,.02),
        transparent 40%,
        rgba(12,12,10,.68) 100%);
}
.truth-visual-top {
    position: absolute;
    z-index: 3;
    left: 24px;
    right: 24px;
    top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.truth-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(20,20,18,.27);
    border: 1px solid rgba(255,255,255,.20);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .10em;
    font-weight: 600;
}
.truth-chip svg { width: 14px; height: 14px; stroke-width: 1.5; }
.truth-visual-index {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.74);
    color: #4f493f;
    backdrop-filter: blur(12px);
    font-size: 9px;
    font-weight: 700;
}
.truth-visual-copy {
    position: absolute;
    z-index: 3;
    left: clamp(24px, 3vw, 42px);
    right: clamp(24px, 3vw, 42px);
    bottom: clamp(26px, 3vw, 42px);
}
.truth-visual-copy span {
    font-style: italic;
    font-size: 14px;
    color: rgba(255,255,255,.68);
}
.truth-visual-copy strong {
    display: block;
    max-width: 520px;
    margin-top: 8px;
    font-size: clamp(28px, 2.6vw, 44px);
    line-height: 1.05;
    letter-spacing: -.045em;
    color: #fff;
    font-weight: 600;
}

/* Right column — 3 cards */
.truth-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.truth-card {
    position: relative;
    min-height: 175px;
    padding: 24px 24px 22px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255,253,249,.80);
    border: 1px solid var(--dest-line);
    transition:
        transform .55s var(--dest-ease),
        box-shadow .55s var(--dest-ease),
        background .35s ease,
        border-color .35s ease;
}
.truth-card:hover {
    transform: translateX(-7px);
    background: #fffefa;
    border-color: rgba(196,79,80,.18);
    box-shadow: 0 25px 60px rgba(45,37,25,.07);
}
.truth-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: var(--truth-red);
    transform: scaleY(0);
    transition: transform .45s var(--dest-ease);
}
.truth-card:hover::before { transform: scaleY(1); }
.truth-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}
.truth-card-number {
    font-size: 40px;
    font-style: italic;
    line-height: .9;
    color: rgba(196,79,80,.32);
    font-weight: 500;
    transition: color .35s ease;
}
.truth-card:hover .truth-card-number { color: var(--truth-red); }
.truth-card-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--truth-red-soft);
    color: var(--truth-red);
    transition:
        background .35s ease,
        color .35s ease,
        transform .45s var(--dest-ease);
}
.truth-card:hover .truth-card-icon {
    background: var(--truth-red);
    color: #fff;
    transform: rotate(-6deg);
}
.truth-card-icon svg { width: 17px; height: 17px; stroke-width: 1.5; }
.truth-card h3 {
    margin: 18px 0 0;
    font-size: 22px;
    line-height: 1.14;
    letter-spacing: -.035em;
    font-weight: 600;
    color: var(--dest-ink);
}
.truth-card p {
    margin: 9px 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--dest-mute);
}

/* Bottom statement */
.truth-bottom {
    margin-top: clamp(65px, 7vw, 100px);
    padding-top: 0;
    border-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
}
.truth-bottom-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--truth-red-soft);
    color: var(--truth-red);
}
.truth-bottom-icon svg { width: 19px; height: 19px; stroke-width: 1.5; }
.truth-bottom-copy {
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.13;
    letter-spacing: -.045em;
    color: var(--dest-ink);
    font-weight: 600;
    text-align: center;
}
.truth-bottom-copy span { color: var(--truth-red); font-style: italic; }

/* Responsive */
@media (max-width: 1150px) {
    .truth-head { grid-template-columns: 1fr; gap: 28px; }
    .truth-stage { grid-template-columns: 1fr 1fr; min-height: auto; }
    .truth-left { grid-column: 1; }
    .truth-visual { grid-column: 2; height: 700px; }
    .truth-right {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 760px) {
    .truth-section { padding: 85px 0 100px; }
    .truth-inner { width: calc(100% - 28px); }
    .truth-head h2 { font-size: 54px; }
    .truth-stage { grid-template-columns: 1fr; }
    .truth-left, .truth-visual, .truth-right { grid-column: 1; }
    .truth-visual { height: 540px; min-height: 540px; }
    .truth-right { display: flex; }
    .truth-bottom { grid-template-columns: 1fr; }
}
