:root {
    --bg: #07090c;
    --bg-soft: #0d1117;
    --surface: rgba(255, 255, 255, 0.075);
    --surface-strong: rgba(15, 18, 23, 0.78);
    --text: #f7f8fa;
    --muted: #b8bec8;
    --gold: #d6a344;
    --gold-light: #f0c978;
    --line: rgba(255, 255, 255, 0.14);
    --header-height: 84px;
}

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

html { scroll-behavior: smooth; }

body {
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

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

.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5.5%;
    border-bottom: 1px solid transparent;
    background: linear-gradient(to bottom, rgba(4, 5, 7, 0.76), transparent);
    transition: 0.3s ease;
}

.site-header.scrolled {
    border-color: var(--line);
    background: rgba(7, 9, 12, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-symbol {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border: 1px solid rgba(240, 201, 120, 0.65);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.08;
}

.brand-text strong {
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-text small {
    margin-top: 5px;
    color: var(--gold-light);
    font-size: 0.64rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.main-nav a:not(.nav-contact)::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.nav-contact {
    padding: 11px 18px;
    border: 1px solid rgba(240, 201, 120, 0.65);
    border-radius: 999px;
    color: var(--gold-light) !important;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,.04);
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: white;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 55px) 6% 70px;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    z-index: -5;
    inset: -3%;
    background:
        url("images/header.jpg") center 55% / cover no-repeat,
        linear-gradient(135deg, #121821, #050607);
    transform: scale(1.03);
    animation: heroZoom 14s ease-out forwards;
}

.hero-shade {
    position: absolute;
    z-index: -4;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 6, 9, 0.96) 0%, rgba(4, 6, 9, 0.78) 38%, rgba(4, 6, 9, 0.25) 70%, rgba(4, 6, 9, 0.52) 100%),
        linear-gradient(to top, rgba(4, 6, 9, 0.88), transparent 45%);
}

.hero-grid {
    position: absolute;
    z-index: -3;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero-content {
    width: min(760px, 72vw);
    animation: revealUp 0.9s ease both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(10px);
    color: #e8ebef;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 0 5px rgba(240, 201, 120, 0.13);
}

.hero-kicker {
    margin-bottom: 11px;
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.hero h1 {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 0.12em;
    max-width: 850px;
    font-size: clamp(4rem, 10vw, 8.6rem);
    line-height: 0.82;
    letter-spacing: -0.075em;
    text-transform: uppercase;
}

.title-and {
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 0.48em;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0;
}

.accent-line {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,.9);
}

.hero-signature {
    margin-top: 14px;
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-style: italic;
    letter-spacing: 0.12em;
}

.hero-text {
    max-width: 670px;
    margin-top: 24px;
    color: var(--muted);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 31px;
}

.btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.25s ease;
}

.btn:hover { transform: translateY(-3px); }

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #15100a;
    box-shadow: 0 15px 45px rgba(214, 163, 68, 0.24);
}

.btn-glass {
    border-color: rgba(255,255,255,.2);
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(12px);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 38px;
}

.hero-stats article {
    display: flex;
    min-width: 180px;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: rgba(8, 10, 13, 0.48);
    backdrop-filter: blur(13px);
}

.stat-icon { font-size: 1.4rem; }

.hero-stats strong,
.hero-stats small { display: block; }

.hero-stats strong { font-size: 0.88rem; }

.hero-stats small {
    color: var(--muted);
    font-size: 0.69rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-side-card {
    position: absolute;
    right: 5.5%;
    bottom: 9%;
    width: 190px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 22px;
    background: rgba(8, 10, 13, 0.42);
    backdrop-filter: blur(16px);
    box-shadow: 0 25px 70px rgba(0,0,0,.3);
    animation: revealSide 1.1s .2s ease both;
}

.hero-side-card strong {
    display: block;
    margin: 15px 0 28px;
    font-size: 1.35rem;
    line-height: 1.25;
    text-transform: uppercase;
}

.side-label,
.side-number {
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.side-number {
    display: block;
    text-align: right;
    font-size: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.66);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-indicator i {
    width: 1px;
    height: 38px;
    background: linear-gradient(var(--gold-light), transparent);
    animation: scrollPulse 1.7s infinite;
}

/* PREMIUM ABOUT */
.about-section {
    position: relative;
    padding: 120px 7%;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 38%, rgba(214, 163, 68, 0.10), transparent 28%),
        linear-gradient(180deg, #090c11, #07090c);
}

.about-glow {
    position: absolute;
    top: 18%;
    right: -140px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(240, 201, 120, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 120px rgba(214, 163, 68, 0.08);
}

.about-heading {
    max-width: 900px;
    margin-bottom: 58px;
}

.eyebrow {
    margin-bottom: 13px;
    color: var(--gold-light);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.about-heading h2,
.section h2 {
    font-size: clamp(2.4rem, 6vw, 4.9rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(340px, 1.1fr);
    gap: 75px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.photo-frame {
    position: relative;
    min-height: 570px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 34px;
    background: rgba(255,255,255,.035);
    box-shadow: 0 35px 90px rgba(0,0,0,.42);
}

.photo-frame img,
.profile-placeholder {
    width: 100%;
    height: 546px;
    border-radius: 25px;
}

.photo-frame img {
    display: block;
    object-fit: cover;
    object-position: center top;
    filter: saturate(.9) contrast(1.04);
}

.profile-placeholder {
    display: none;
    place-content: center;
    padding: 30px;
    border: 1px dashed rgba(240,201,120,.45);
    background:
        radial-gradient(circle, rgba(214,163,68,.14), transparent 58%),
        #0d1218;
    color: var(--muted);
    text-align: center;
}

.profile-placeholder span {
    display: block;
    margin-bottom: 14px;
    font-size: 3.3rem;
}

.profile-placeholder strong,
.profile-placeholder small {
    display: block;
}

.profile-placeholder strong {
    color: white;
    font-size: 1.2rem;
}

.profile-placeholder small {
    margin-top: 7px;
}

.photo-corner {
    position: absolute;
    z-index: 2;
    width: 72px;
    height: 72px;
    pointer-events: none;
}

.corner-one {
    top: -8px;
    left: -8px;
    border-top: 2px solid var(--gold-light);
    border-left: 2px solid var(--gold-light);
    border-radius: 18px 0 0;
}

.corner-two {
    right: -8px;
    bottom: -8px;
    border-right: 2px solid var(--gold-light);
    border-bottom: 2px solid var(--gold-light);
    border-radius: 0 0 18px;
}

.photo-label {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    padding: 17px 19px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 17px;
    background: rgba(7,9,12,.68);
    backdrop-filter: blur(15px);
}

.photo-label span,
.photo-label small { display: block; }

.photo-label span {
    color: white;
    font-size: 1.15rem;
    font-weight: 900;
}

.photo-label small {
    margin-top: 3px;
    color: var(--gold-light);
    font-size: .67rem;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.about-mini-card {
    position: absolute;
    right: -35px;
    bottom: 80px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 18px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 17px;
    background: rgba(13,17,23,.82);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.about-mini-card span { font-size: 1.5rem; }

.about-mini-card strong,
.about-mini-card small { display: block; }

.about-mini-card strong { font-size: .88rem; }

.about-mini-card small {
    color: var(--muted);
    font-size: .68rem;
}

.about-intro {
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-style: italic;
}

.about-content h3 {
    max-width: 720px;
    margin-top: 10px;
    font-size: clamp(2rem, 4.3vw, 4rem);
    line-height: 1.06;
    letter-spacing: -.04em;
}

.about-content h3 span {
    color: var(--gold-light);
}

.about-copy {
    display: grid;
    gap: 18px;
    margin-top: 27px;
}

.about-copy p {
    color: var(--muted);
    font-size: 1.05rem;
}

.about-motto {
    display: inline-block;
    margin-top: 28px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(240,201,120,.5);
    color: var(--gold-light);
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 78px;
}

.stat-card {
    position: relative;
    min-height: 185px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
    transition: transform .25s ease, border-color .25s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240,201,120,.45);
}

.stat-card::after {
    position: absolute;
    right: -28px;
    bottom: -35px;
    width: 110px;
    height: 110px;
    border: 1px solid rgba(240,201,120,.12);
    border-radius: 50%;
    content: "";
}

.stat-card-icon {
    display: block;
    margin-bottom: 20px;
    font-size: 1.7rem;
}

.stat-card strong {
    display: block;
    color: var(--gold-light);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.stat-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: .88rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.about-quote {
    position: relative;
    max-width: 980px;
    margin: 85px auto 0;
    padding: 45px 70px;
    border-top: 1px solid rgba(240,201,120,.32);
    border-bottom: 1px solid rgba(240,201,120,.32);
    text-align: center;
}

.quote-mark {
    position: absolute;
    top: -5px;
    left: 28px;
    color: rgba(240,201,120,.18);
    font-family: Georgia, serif;
    font-size: 7rem;
    line-height: 1;
}

.about-quote p {
    position: relative;
    color: white;
    font-family: Georgia, serif;
    font-size: clamp(1.5rem, 3.2vw, 2.5rem);
    font-style: italic;
    line-height: 1.35;
}

.about-quote footer {
    margin-top: 18px;
    color: var(--gold-light);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

/* OTHER SECTIONS */
.section {
    min-height: 540px;
    display: flex;
    align-items: center;
    padding: 110px 7%;
    background: #0a0d12;
}

.section-dark { background: #07090c; }

.section-heading { max-width: 850px; }

.section-heading p:last-child {
    max-width: 700px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 1.05rem;
}

.site-footer {
    padding: 30px 7%;
    border-top: 1px solid var(--line);
    color: var(--muted);
    text-align: center;
    font-size: 0.88rem;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal-left { transform: translateX(-45px); }
.reveal-right { transform: translateX(45px); }

.reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.stats-grid .stat-card:nth-child(2) { transition-delay: .08s; }
.stats-grid .stat-card:nth-child(3) { transition-delay: .16s; }
.stats-grid .stat-card:nth-child(4) { transition-delay: .24s; }

@keyframes heroZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1.02); }
}

@keyframes revealUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes revealSide {
    from { opacity: 0; transform: translateX(25px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: .35; transform: scaleY(.7); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@media (max-width: 1020px) {
    .hero-content { width: min(760px, 85vw); }
    .hero-side-card { display: none; }
    .about-layout { gap: 45px; }
    .about-mini-card { right: -10px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    :root { --header-height: 72px; }

    .site-header { padding: 0 5%; }
    .menu-toggle { display: block; }

    .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px 5% 22px;
        border-bottom: 1px solid var(--line);
        background: rgba(7, 9, 12, 0.98);
    }

    .main-nav.open { display: flex; }
    .main-nav a { padding: 14px 4px; }
    .main-nav a::after { display: none; }

    .nav-contact {
        margin-top: 8px;
        text-align: center;
    }

    .hero {
        padding-right: 5%;
        padding-left: 5%;
    }

    .hero-content { width: 100%; }
    .hero-bg { background-position: 62% center; }

    .about-section { padding: 95px 5%; }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        width: min(620px, 100%);
        margin: 0 auto;
    }

    .photo-frame { min-height: 500px; }

    .photo-frame img,
    .profile-placeholder { height: 476px; }
}

@media (max-width: 580px) {
    .hero {
        min-height: 100svh;
        align-items: flex-end;
        padding-bottom: 48px;
    }

    .hero-shade {
        background:
            linear-gradient(to top, rgba(4, 6, 9, 0.98) 0%, rgba(4, 6, 9, 0.83) 46%, rgba(4, 6, 9, 0.28) 100%);
    }

    .hero-bg { background-position: 63% center; }

    .hero-badge {
        font-size: 0.61rem;
        letter-spacing: 0.09em;
    }

    .hero h1 {
        font-size: clamp(3.7rem, 21vw, 6rem);
        gap: 0 0.08em;
    }

    .hero-signature { margin-top: 8px; }

    .hero-text {
        margin-top: 18px;
        font-size: 0.98rem;
    }

    .hero-actions { flex-direction: column; }
    .btn { width: 100%; }

    .hero-stats {
        gap: 8px;
        margin-top: 24px;
    }

    .hero-stats article {
        min-width: calc(50% - 4px);
        padding: 10px 11px;
    }

    .hero-stats article:last-child { width: 100%; }
    .scroll-indicator { display: none; }

    .about-section { padding: 78px 5%; }
    .about-heading { margin-bottom: 38px; }

    .photo-frame { min-height: 430px; }

    .photo-frame img,
    .profile-placeholder { height: 406px; }

    .about-mini-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 12px 0 0;
    }

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

    .stat-card {
        min-height: 155px;
        padding: 18px;
    }

    .stat-card p {
        font-size: .72rem;
        letter-spacing: .03em;
    }

    .about-quote {
        margin-top: 65px;
        padding: 38px 16px;
    }

    .quote-mark {
        left: 2px;
        font-size: 5rem;
    }

    .section {
        min-height: 440px;
        padding: 82px 5%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}


/* VERSION 1.4 – PREMIUM TOUREN */
.tours-section { padding: 120px 7%; background: linear-gradient(180deg,#0a0d12,#07090c); }
.tours-section .section-heading { margin-bottom: 48px; }
.tours-section .section-heading p:last-child { max-width: 720px; margin-top: 18px; color: var(--muted); }
.tour-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.tour-card { overflow:hidden; border:1px solid rgba(255,255,255,.12); border-radius:26px; background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025)); box-shadow:0 28px 70px rgba(0,0,0,.28); transition:transform .3s ease,border-color .3s ease; }
.tour-card:hover { transform:translateY(-8px); border-color:rgba(240,201,120,.45); }
.tour-image { height:260px; display:grid; place-items:center; position:relative; overflow:hidden; background-size:cover; background-position:center; }
.tour-image::after { content:""; position:absolute; inset:0; background:linear-gradient(to top,rgba(7,9,12,.86),rgba(7,9,12,.08)); }
.tour-image span { position:relative; z-index:1; font-size:4rem; filter:drop-shadow(0 8px 18px rgba(0,0,0,.45)); }
.tour-glarus { background-image:linear-gradient(135deg,rgba(39,59,55,.22),rgba(7,9,12,.58)),url('images/tours/glarus.jpg'); background-color:#17241f; }
.tour-koblenz { background-image:linear-gradient(135deg,rgba(32,56,67,.22),rgba(7,9,12,.58)),url('images/tours/koblenz.jpg'); background-color:#14242b; }
.tour-luzern { background-image:linear-gradient(135deg,rgba(58,52,39,.20),rgba(7,9,12,.58)),url('images/tours/luzern.jpg'); background-color:#282318; }
.tour-card-body { padding:25px; }
.tour-meta { display:flex; flex-wrap:wrap; justify-content:space-between; gap:8px; color:var(--gold-light); font-size:.72rem; font-weight:900; letter-spacing:.05em; text-transform:uppercase; }
.tour-card h3 { margin-top:16px; font-size:1.55rem; }
.tour-card p { margin-top:12px; color:var(--muted); font-size:.96rem; }
.tour-footer { display:flex; justify-content:space-between; align-items:center; gap:14px; margin-top:24px; }
.tour-rating { color:var(--gold-light); letter-spacing:.12em; font-size:.85rem; }
.tour-button { border:1px solid rgba(240,201,120,.55); border-radius:999px; padding:11px 16px; background:transparent; color:var(--gold-light); font-weight:900; cursor:pointer; }
.tour-button:hover { background:var(--gold); color:#15100a; }
@media(max-width:1020px){.tour-grid{grid-template-columns:1fr 1fr}.tour-card:last-child{grid-column:1/-1}}
@media(max-width:700px){.tours-section{padding:82px 5%}.tour-grid{grid-template-columns:1fr}.tour-card:last-child{grid-column:auto}.tour-image{height:230px}}
/* VERSION 1.5 – PREMIUM GALERIE */
.gallery-section{padding:120px 7%;background:radial-gradient(circle at 88% 20%,rgba(214,163,68,.10),transparent 27%),linear-gradient(180deg,#07090c,#0a0d12)}
.gallery-heading{display:flex;align-items:end;justify-content:space-between;gap:35px;margin-bottom:48px}
.gallery-heading>div:first-child{max-width:800px}
.gallery-heading h2{font-size:clamp(2.4rem,6vw,4.9rem);line-height:1.02;letter-spacing:-.04em}
.gallery-heading p:last-child{max-width:700px;margin-top:18px;color:var(--muted);font-size:1.05rem}
.gallery-filters{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:9px}
.filter-button{padding:10px 15px;border:1px solid rgba(255,255,255,.13);border-radius:999px;background:rgba(255,255,255,.035);color:var(--muted);font-weight:800;cursor:pointer}
.filter-button:hover,.filter-button.active{border-color:rgba(240,201,120,.55);background:var(--gold);color:#171108}
.gallery-grid{display:grid;grid-template-columns:repeat(12,1fr);grid-auto-rows:170px;gap:18px}
.gallery-item{position:relative;display:block;padding:0;overflow:hidden;border:1px solid rgba(255,255,255,.12);border-radius:25px;background:#10151b;cursor:pointer;box-shadow:0 28px 70px rgba(0,0,0,.28);transition:.3s ease}
.gallery-item:hover{transform:translateY(-7px);border-color:rgba(240,201,120,.48)}
.gallery-item.hidden{display:none}
.gallery-wide{grid-column:span 7;grid-row:span 2}
.gallery-tall{grid-column:span 5;grid-row:span 3}
.gallery-large{grid-column:span 7;grid-row:span 2}
.gallery-item img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .65s ease,filter .45s ease}
.gallery-wide img{object-fit:contain;background:#f4f4f4}
.gallery-item:hover img{transform:scale(1.045);filter:saturate(1.08)}
.gallery-overlay{position:absolute;inset:auto 0 0;display:flex;flex-direction:column;align-items:flex-start;padding:55px 25px 23px;color:#fff;text-align:left;background:linear-gradient(to top,rgba(5,7,10,.94),transparent)}
.gallery-overlay small{color:var(--gold-light);font-size:.68rem;font-weight:900;letter-spacing:.16em;text-transform:uppercase}
.gallery-overlay strong{margin-top:5px;font-size:1.35rem}
.gallery-overlay em{margin-top:7px;color:rgba(255,255,255,.72);font-size:.72rem;font-style:normal;letter-spacing:.07em;text-transform:uppercase}
.lightbox{position:fixed;z-index:3000;inset:0;display:none;align-items:center;justify-content:center;padding:35px 80px;background:rgba(2,3,5,.94);backdrop-filter:blur(16px)}
.lightbox.open{display:flex}
.lightbox-content{width:min(1180px,100%);max-height:90vh;display:flex;flex-direction:column;align-items:center}
.lightbox-image{max-width:100%;max-height:76vh;display:block;object-fit:contain;border-radius:18px;box-shadow:0 25px 90px rgba(0,0,0,.55)}
.lightbox-caption{width:100%;padding-top:17px;text-align:center}
.lightbox-caption strong{color:var(--gold-light);font-size:1.15rem}
.lightbox-caption p{margin-top:4px;color:var(--muted)}
.lightbox-close,.lightbox-nav{position:absolute;display:grid;place-items:center;border:1px solid rgba(255,255,255,.18);border-radius:50%;background:rgba(255,255,255,.06);color:#fff;cursor:pointer}
.lightbox-close{top:25px;right:28px;width:48px;height:48px;font-size:2rem}
.lightbox-nav{top:50%;width:52px;height:52px;font-size:2.3rem;transform:translateY(-50%)}
.lightbox-prev{left:22px}.lightbox-next{right:22px}
body.lightbox-open{overflow:hidden}
@media(max-width:1020px){.gallery-heading{align-items:flex-start;flex-direction:column}.gallery-filters{justify-content:flex-start}}
@media(max-width:760px){.gallery-section{padding:82px 5%}.gallery-grid{grid-template-columns:1fr;grid-auto-rows:auto}.gallery-wide,.gallery-tall,.gallery-large{grid-column:auto;grid-row:auto;min-height:290px}.gallery-tall{min-height:420px}.lightbox{padding:70px 12px 28px}.lightbox-nav{top:auto;bottom:18px;width:46px;height:46px}.lightbox-prev{left:calc(50% - 58px)}.lightbox-next{right:calc(50% - 58px)}.lightbox-close{top:14px;right:14px}.lightbox-image{max-height:68vh}}

/* Version 1.5.1 – Tour image visibility fix */
.tour-image {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* VERSION 1.6 – TOUR-DETAILSEITEN */
.tour-detail-page {
    background: #07090c;
}

.detail-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5.5%;
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: rgba(7,9,12,.90);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.detail-back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold-light);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.detail-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: flex-end;
    padding: 150px 7% 75px;
    overflow: hidden;
    isolation: isolate;
}

.detail-hero-bg {
    position: absolute;
    z-index: -3;
    inset: 0;
    background-position: center;
    background-size: cover;
}

.detail-hero-bg::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(4,6,9,.94), rgba(4,6,9,.42) 70%, rgba(4,6,9,.58)),
        linear-gradient(to top, rgba(4,6,9,.95), transparent 62%);
}

.detail-hero-content {
    width: min(900px, 100%);
}

.detail-route {
    color: var(--gold-light);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.detail-hero h1 {
    margin-top: 14px;
    font-size: clamp(3.2rem, 8vw, 7rem);
    line-height: .95;
    letter-spacing: -.055em;
}

.detail-hero p {
    max-width: 720px;
    margin-top: 22px;
    color: #d0d5dd;
    font-size: 1.08rem;
}

.detail-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.detail-fact {
    min-width: 170px;
    padding: 14px 17px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 17px;
    background: rgba(8,10,13,.52);
    backdrop-filter: blur(12px);
}

.detail-fact strong,
.detail-fact small {
    display: block;
}

.detail-fact strong {
    color: white;
}

.detail-fact small {
    margin-top: 3px;
    color: var(--muted);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.detail-content {
    padding: 100px 7%;
    background:
        radial-gradient(circle at 85% 18%, rgba(214,163,68,.08), transparent 26%),
        #080b0f;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 55px;
    align-items: start;
}

.detail-story h2,
.detail-highlights h2 {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.08;
}

.detail-story p {
    margin-top: 20px;
    color: var(--muted);
    font-size: 1.06rem;
}

.detail-highlight-list {
    display: grid;
    gap: 13px;
    margin-top: 25px;
}

.detail-highlight {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 17px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    background: rgba(255,255,255,.035);
}

.detail-highlight span {
    font-size: 1.35rem;
}

.detail-highlight strong,
.detail-highlight small {
    display: block;
}

.detail-highlight small {
    margin-top: 3px;
    color: var(--muted);
}

.detail-quote {
    margin-top: 36px;
    padding: 25px;
    border-left: 3px solid var(--gold-light);
    background: rgba(255,255,255,.035);
    color: white;
    font-family: Georgia, serif;
    font-size: 1.3rem;
    font-style: italic;
}

.detail-gallery {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 17px;
    margin-top: 75px;
}

.detail-gallery img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: block;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 23px;
}

.detail-gallery img:first-child {
    min-height: 470px;
}

.detail-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 60px;
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,.11);
}

.detail-rating {
    color: var(--gold-light);
    font-size: 1.05rem;
    letter-spacing: .14em;
}

.detail-home-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #171108;
    font-weight: 900;
}

@media (max-width: 860px) {
    .detail-header {
        padding: 0 5%;
    }

    .detail-hero {
        min-height: 72vh;
        padding-right: 5%;
        padding-left: 5%;
    }

    .detail-content {
        padding: 82px 5%;
    }

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

    .detail-gallery {
        grid-template-columns: 1fr;
    }

    .detail-gallery img,
    .detail-gallery img:first-child {
        min-height: 300px;
    }
}

@media (max-width: 560px) {
    .detail-header .brand-text small {
        display: none;
    }

    .detail-back {
        font-size: .7rem;
    }

    .detail-hero {
        min-height: 82vh;
        padding-bottom: 48px;
    }

    .detail-fact {
        min-width: calc(50% - 6px);
    }

    .detail-gallery img,
    .detail-gallery img:first-child {
        min-height: 240px;
    }
}


/* VERSION 1.7 */
.gallery-empty {
    grid-column: 1 / -1;
    padding: 45px;
    border: 1px dashed rgba(240,201,120,.35);
    border-radius: 24px;
    color: var(--muted);
    text-align: center;
    background: rgba(255,255,255,.025);
}

.gallery-empty strong {
    display: block;
    color: white;
    font-size: 1.25rem;
}

.gallery-empty p {
    margin-top: 7px;
}

.admin-footer-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--gold-light);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}


/* VERSION 2.0 – VIDEOGALERIE */
.video-section{padding:120px 7%;background:radial-gradient(circle at 12% 15%,rgba(214,163,68,.08),transparent 26%),#07090c}
.video-heading{display:flex;justify-content:space-between;align-items:end;gap:30px;margin-bottom:45px}
.video-heading>div:first-child{max-width:760px}.video-heading h2{font-size:clamp(2.4rem,6vw,4.8rem);line-height:1.02;letter-spacing:-.04em}.video-heading p:last-child{margin-top:16px;color:var(--muted)}
.video-filters{display:flex;flex-wrap:wrap;gap:8px;justify-content:flex-end}.video-filter{padding:10px 15px;border:1px solid rgba(255,255,255,.13);border-radius:999px;background:rgba(255,255,255,.035);color:var(--muted);font-weight:800;cursor:pointer}.video-filter.active,.video-filter:hover{background:var(--gold);color:#171108}
.video-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.video-card{overflow:hidden;border:1px solid rgba(255,255,255,.11);border-radius:23px;background:#0d1117}.video-card.hidden{display:none}
.video-play-card{position:relative;width:100%;height:235px;padding:0;border:0;border-radius:0;overflow:hidden;background:#111820;cursor:pointer}.video-play-card img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s ease}.video-play-card:hover img{transform:scale(1.04)}
.video-placeholder{width:100%;height:100%;display:grid;place-items:center;background:radial-gradient(circle at center,rgba(214,163,68,.18),transparent 45%),linear-gradient(135deg,#17202a,#090c10);color:var(--gold-light);font-size:3rem;font-weight:900}
.video-play-icon{position:absolute;left:50%;top:50%;display:grid;width:66px;height:66px;place-items:center;transform:translate(-50%,-50%);border:1px solid rgba(255,255,255,.35);border-radius:50%;background:rgba(5,7,10,.68);color:#fff;font-size:1.25rem;backdrop-filter:blur(8px)}
.video-card-text{padding:20px}.video-card-text small{color:var(--gold-light);font-size:.68rem;font-weight:900;letter-spacing:.15em;text-transform:uppercase}.video-card-text h3{margin:6px 0 0;font-size:1.25rem}.video-card-text p{margin:8px 0 0;color:var(--muted);font-size:.9rem}
.video-empty{grid-column:1/-1;padding:60px 25px;border:1px dashed rgba(240,201,120,.32);border-radius:25px;text-align:center;background:rgba(255,255,255,.025)}.video-empty span{display:grid;width:70px;height:70px;margin:0 auto 18px;place-items:center;border:1px solid rgba(240,201,120,.35);border-radius:50%;color:var(--gold-light);font-size:1.5rem}.video-empty strong{display:block;font-size:1.25rem}.video-empty p{margin-top:6px;color:var(--muted)}
.video-modal{position:fixed;z-index:4000;inset:0;display:none;align-items:center;justify-content:center;padding:70px 5%;background:rgba(2,3,5,.95);backdrop-filter:blur(14px)}.video-modal.open{display:flex}.video-modal-inner{width:min(1100px,100%);text-align:center}.video-modal video{width:100%;max-height:75vh;border-radius:18px;background:#000;box-shadow:0 30px 100px rgba(0,0,0,.6)}.video-modal h3{margin-top:15px}.video-modal-close{position:absolute;top:20px;right:24px;width:48px;height:48px;padding:0;border:1px solid rgba(255,255,255,.18);border-radius:50%;background:rgba(255,255,255,.06);color:#fff;font-size:2rem;cursor:pointer}
@media(max-width:950px){.video-heading{align-items:flex-start;flex-direction:column}.video-filters{justify-content:flex-start}.video-grid{grid-template-columns:1fr 1fr}}
@media(max-width:620px){.video-section{padding:82px 5%}.video-grid{grid-template-columns:1fr}.video-play-card{height:220px}}


/* VERSION 2.1 – KONTAKTSEITE */
.contact-cta-section {
    padding: 95px 7%;
    background:
        radial-gradient(circle at 85% 30%, rgba(214,163,68,.10), transparent 28%),
        #090c11;
}

.contact-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 42px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 28px;
    background: linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
    box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

.contact-cta h2 {
    font-size: clamp(2.2rem,5vw,4rem);
    line-height: 1.05;
}

.contact-cta p:last-child {
    max-width: 650px;
    margin-top: 12px;
    color: var(--muted);
}

.contact-cta-button {
    flex: 0 0 auto;
    padding: 14px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg,var(--gold-light),var(--gold));
    color: #171108;
    font-weight: 900;
}

.contact-page {
    background: #07090c;
}

.contact-hero {
    min-height: 52vh;
    display: flex;
    align-items: flex-end;
    padding: 145px 7% 70px;
    background:
        radial-gradient(circle at 82% 28%, rgba(214,163,68,.14), transparent 30%),
        linear-gradient(135deg,#111821,#06080b);
}

.contact-hero > div {
    max-width: 850px;
}

.contact-hero h1 {
    font-size: clamp(3.5rem,9vw,7rem);
    line-height: .9;
    letter-spacing: -.055em;
}

.contact-hero p:last-child {
    max-width: 680px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 1.08rem;
}

.contact-content {
    padding: 95px 7%;
    background:
        radial-gradient(circle at 15% 30%, rgba(214,163,68,.08), transparent 25%),
        #080b0f;
}

.contact-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 55px;
    align-items: start;
}

.contact-info h2,
.contact-form-card h2 {
    font-size: clamp(2rem,4vw,3.5rem);
    line-height: 1.08;
}

.contact-info > p:nth-of-type(2) {
    margin-top: 18px;
    color: var(--muted);
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    padding: 17px 18px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    background: rgba(255,255,255,.035);
}

.contact-info-card > span {
    font-size: 1.5rem;
}

.contact-info-card strong,
.contact-info-card small {
    display: block;
}

.contact-info-card small {
    margin-top: 3px;
    color: var(--muted);
}

.contact-config-note {
    margin-top: 22px;
    color: var(--muted);
    font-size: .82rem;
}

.contact-config-note code {
    color: var(--gold-light);
}

.contact-form-card {
    padding: 32px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 26px;
    background: rgba(255,255,255,.04);
    box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

.contact-form {
    display: grid;
    gap: 17px;
    margin-top: 25px;
}

.contact-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form label {
    display: grid;
    gap: 7px;
}

.contact-form label > span {
    color: #e5e8ed;
    font-size: .88rem;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 13px;
    outline: none;
    background: #090d12;
    color: white;
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(240,201,120,.65);
    box-shadow: 0 0 0 3px rgba(214,163,68,.09);
}

.contact-submit {
    justify-self: start;
    padding: 13px 21px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg,var(--gold-light),var(--gold));
    color: #171108;
    font-weight: 900;
    cursor: pointer;
}

.contact-message {
    margin-top: 20px;
    padding: 15px 17px;
    border-radius: 15px;
}

.contact-message strong {
    display: block;
}

.contact-message p,
.contact-message ul {
    margin: 6px 0 0;
}

.contact-message ul {
    padding-left: 20px;
}

.contact-message.success {
    border: 1px solid rgba(89,191,130,.28);
    background: rgba(89,191,130,.11);
    color: #bdf3d0;
}

.contact-message.error {
    border: 1px solid rgba(230,107,107,.28);
    background: rgba(230,107,107,.11);
    color: #ffc0c0;
}

.contact-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
}

@media (max-width: 850px) {
    .contact-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-cta-section,
    .contact-content {
        padding-right: 5%;
        padding-left: 5%;
    }

    .contact-hero {
        padding-right: 5%;
        padding-left: 5%;
    }

    .contact-field-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 22px;
    }
}


/* VERSION 2.2 – SOCIAL MEDIA AUF DER KONTAKTSEITE */
.contact-socials {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.11);
}

.contact-socials h3 {
    margin: 0;
    font-size: 1.55rem;
}

.contact-social-intro {
    margin-top: 9px;
    color: var(--muted);
    font-size: .92rem;
}

.social-link-grid {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.social-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 15px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 17px;
    background: rgba(255,255,255,.035);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.social-profile:hover {
    transform: translateY(-2px);
    border-color: rgba(240,201,120,.45);
    background: rgba(255,255,255,.06);
}

.social-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(240,201,120,.28);
    border-radius: 14px;
    background: rgba(214,163,68,.08);
    color: var(--gold-light);
    font-size: 1.45rem;
    font-weight: 900;
}

.social-profile > span:last-child {
    min-width: 0;
}

.social-profile strong,
.social-profile small {
    display: block;
}

.social-profile strong {
    color: white;
}

.social-profile small {
    margin-top: 2px;
    color: var(--gold-light);
    font-size: .76rem;
}

.social-config-note {
    margin-top: 16px;
    color: var(--muted);
    font-size: .78rem;
}

.social-config-note code {
    color: var(--gold-light);
}
