/* ==========================================================================
   CROSSWAY CAMP — Premium Cinematic Stylesheet
   ========================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
    /* Backgrounds */
    --bg-cream:        #F6F1EB;
    --bg-warm:         #EFE7DD;
    --bg-dark:         #1A1412;
    --bg-dark-2:       #241A17;

    /* Text */
    --text-dark:       #2B211D;
    --text-darker:     #1E1E1E;
    --text-light:      #F6F1EB;
    --text-muted:      rgba(43, 33, 29, 0.62);
    --text-muted-light:rgba(246, 241, 235, 0.72);

    /* Accents */
    --accent:          #48A9B8;
    --accent-2:        #4AB6C4;
    --highlight:       #B66A50;

    /* Header */
    --header-bg:       rgba(26, 20, 18, 0.82);
    --header-bg-scroll:rgba(26, 20, 18, 0.94);
    --header-border:   rgba(255, 255, 255, 0.12);
    --header-text:     #FFFFFF;
    --header-text-2:   #F6F1EB;

    /* Effects */
    --shadow-sm:       0 4px 20px rgba(26, 20, 18, 0.08);
    --shadow-md:       0 14px 40px rgba(26, 20, 18, 0.12);
    --shadow-lg:       0 30px 80px rgba(26, 20, 18, 0.18);
    --shadow-glow:     0 10px 50px rgba(72, 169, 184, 0.35);
    --radius-sm:       10px;
    --radius-md:       18px;
    --radius-lg:       28px;
    --radius-xl:       40px;

    /* Typography */
    --font-display:    'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body:       'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions */
    --t-base:          250ms cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow:          600ms cubic-bezier(0.4, 0, 0.2, 1);
    --t-cinematic:     900ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dark);
    background: var(--bg-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t-base); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- TYPOGRAPHY ---------- */
.section-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2rem, 4.6vw, 3.6rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--text-darker);
    margin-bottom: 24px;
}
.section-title.centered { text-align: center; }
.section-title.light { color: var(--text-light); }

.section-text { font-size: 1.05rem; line-height: 1.75; color: var(--text-dark); margin-bottom: 16px; }
.section-text.light { color: var(--text-light); }
.section-text.center-text { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-text p { margin-bottom: 14px; }

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: -10px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}
.eyebrow.light { color: var(--accent-2); }

/* ---------- LAYOUT ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
.section { padding: clamp(70px, 10vw, 130px) 0; position: relative; }
.section-header { text-align: center; margin-bottom: 70px; }

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.two-col-reverse .col-image { order: 2; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all var(--t-base);
    cursor: pointer;
    border: 1.5px solid transparent;
    text-align: center;
    line-height: 1.2;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 24px rgba(72, 169, 184, 0.28);
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(72, 169, 184, 0.4); }

.btn-accent {
    background: var(--highlight);
    color: #fff;
    box-shadow: 0 8px 24px rgba(182, 106, 80, 0.28);
}
.btn-accent:hover { background: #c47659; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(182, 106, 80, 0.4); }

.btn-outline {
    background: transparent;
    color: var(--header-text);
    border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--accent); color: var(--accent-2); }

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.5); }

.btn-ghost-light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.22); }

.btn-sm  { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg  { padding: 18px 40px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   HEADER / NAVIGATION (Dark Glass — Premium)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--header-border);
    transition: background var(--t-base), padding var(--t-base), border-color var(--t-base);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}
.site-header.scrolled {
    background: var(--header-bg-scroll);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.25);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px;
    max-width: 1520px;
    margin: 0 auto;
    gap: 56px;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 8px;
}
.logo-img {
    height: 52px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.45));
    transition: transform var(--t-base), filter var(--t-base);
}
.header-logo:hover .logo-img {
    transform: scale(1.04);
    filter: drop-shadow(0 4px 18px rgba(72, 169, 184, 0.35));
}
.site-header.scrolled .logo-img { height: 46px; }

.header-nav {
    display: flex;
    gap: 42px;
    flex: 1;
    justify-content: center;
}
.nav-link {
    color: var(--header-text-2);
    font-size: 0.94rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    padding: 8px 2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width var(--t-base);
    border-radius: 2px;
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { width: 100%; }

.header-right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
}

/* Header Social Icons (klein, elegant, glassmorphism) */
.header-social {
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--t-base);
}
.header-social-link:hover {
    color: var(--accent-2);
    background: rgba(72, 169, 184, 0.18);
    border-color: rgba(74, 182, 196, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(72, 169, 184, 0.35),
                0 0 0 4px rgba(72, 169, 184, 0.08);
}

.lang-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 4px;
    gap: 2px;
}
.lang-btn {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--header-text-2);
    letter-spacing: 0.06em;
    transition: all var(--t-base);
}
.lang-btn:hover { color: var(--accent-2); }
.lang-btn.active { background: var(--accent); color: #fff; box-shadow: 0 4px 12px rgba(72, 169, 184, 0.35); }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
}
.burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    transition: all var(--t-base);
    border-radius: 2px;
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: 88%;
    max-width: 380px;
    height: 100vh;
    background: var(--bg-dark);
    padding: 100px 30px 30px;
    transition: right var(--t-cinematic);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    z-index: 999;
}
.mobile-drawer.open { right: 0; }
.mobile-nav { display: flex; flex-direction: column; gap: 20px; }
.mobile-link {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color var(--t-base), padding-left var(--t-base);
}
.mobile-link:hover { color: var(--accent); padding-left: 8px; }
.mobile-lang { display: flex; justify-content: center; margin-top: 20px; }
.mobile-lang .lang-switcher { width: 100%; justify-content: space-between; }
.mobile-lang .lang-btn { flex: 1; padding: 10px; }

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    transition: all var(--t-base);
}
.mobile-social a:hover { background: rgba(72, 169, 184, 0.2); color: var(--accent-2); border-color: var(--accent); }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 30px 80px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0%   { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center,
            rgba(40, 24, 18, 0.45) 0%,
            rgba(28, 18, 14, 0.65) 50%,
            rgba(20, 14, 10, 0.85) 100%),
        linear-gradient(180deg,
            rgba(58, 32, 20, 0.35) 0%,
            rgba(28, 18, 14, 0.55) 45%,
            rgba(18, 12, 10, 0.92) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1080px;
    margin: 0 auto;
    color: #fff;
    animation: heroFadeUp 1.4s var(--t-cinematic) both;
    padding: 0 20px;
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 32px;
    padding: 9px 26px;
    border: 1px solid rgba(74, 182, 196, 0.38);
    border-radius: 999px;
    background: rgba(74, 182, 196, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.4rem, 6.4vw, 5.2rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: 0 auto 32px;
    max-width: 18ch;
    text-shadow: 0 4px 36px rgba(0, 0, 0, 0.45);
    text-wrap: balance;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    line-height: 1.75;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    max-width: 680px;
    margin: 0 auto 52px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    z-index: 3;
    opacity: 0.75;
    transition: opacity var(--t-base);
    animation: floatY 2.6s ease-in-out infinite;
}
.scroll-indicator:hover { opacity: 1; }
@keyframes floatY {
    0%, 100% { transform: translate(-50%, 0); }
    50%      { transform: translate(-50%, -8px); }
}
.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-radius: 14px;
    position: relative;
    backdrop-filter: blur(4px);
}
.scroll-dot {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 7px;
    background: #fff;
    border-radius: 4px;
    animation: scrollMove 1.8s ease-in-out infinite;
}
@keyframes scrollMove {
    0%   { top: 6px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section { background: var(--bg-cream); padding-top: clamp(80px, 12vw, 160px); }

.image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: transform var(--t-cinematic);
}
.image-wrap:hover img { transform: scale(1.05); }

/* ==========================================================================
   FLOATING IMAGE GALLERY (Marquee)
   ========================================================================== */
.floating-gallery {
    padding: 60px 0;
    background: var(--bg-cream);
    overflow: hidden;
}
.marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
    display: flex;
    gap: 24px;
    animation: marquee 50s linear infinite;
    width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.marquee-item {
    width: 280px;
    height: 380px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    transition: transform var(--t-base);
}
.marquee-item:hover { transform: translateY(-6px) scale(1.02); }
.marquee-item img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   VALUES / GOALS
   ========================================================================== */
.values-section { background: var(--bg-warm); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.value-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 30px;
    padding-top: 220px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.value-image {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform var(--t-cinematic);
}
.value-card:hover .value-image { transform: scale(1.08); }
.value-icon {
    position: absolute;
    top: 175px;
    left: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 22px rgba(72, 169, 184, 0.4);
}
.value-title {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    margin: 16px 0 10px;
    color: var(--text-darker);
}
.value-text { color: var(--text-muted); font-size: 0.97rem; line-height: 1.6; }

/* ==========================================================================
   PREPARATION SECTION (Editorial 2-Column Premium Layout)
   ========================================================================== */
.preparation-section {
    background:
        radial-gradient(circle at 12% 15%, rgba(72, 169, 184, 0.06) 0%, transparent 55%),
        radial-gradient(circle at 88% 85%, rgba(182, 106, 80, 0.05) 0%, transparent 55%),
        var(--bg-cream);
    overflow: hidden;
}

.prep-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
}

/* LEFT — single cinematic image */
.prep-visual {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 30px 70px rgba(26, 20, 18, 0.18),
        0 8px 22px rgba(26, 20, 18, 0.08);
    aspect-ratio: 4 / 5;
    margin: 0;
    transform: translateZ(0);
}
.prep-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.4s cubic-bezier(.16,.84,.24,1), filter var(--t-base);
    filter: saturate(1.02) contrast(1.02);
}
.prep-visual:hover img {
    transform: scale(1.04);
}
.prep-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 20, 18, 0) 55%,
        rgba(26, 20, 18, 0.18) 100%
    );
    pointer-events: none;
}
.prep-visual-glow {
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(72,169,184,.25), transparent 60%);
    z-index: -1;
    filter: blur(40px);
    opacity: .55;
}

/* RIGHT — premium content card */
.prep-card {
    position: relative;
    background: linear-gradient(
        160deg,
        rgba(255, 252, 247, 0.96) 0%,
        rgba(250, 244, 236, 0.92) 100%
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(43, 33, 29, 0.06);
    border-radius: 28px;
    padding: 56px 52px;
    box-shadow:
        0 24px 60px rgba(26, 20, 18, 0.10),
        0 4px 14px rgba(26, 20, 18, 0.04);
}

.prep-card-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 18px;
    position: relative;
    padding-left: 36px;
}
.prep-card-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 26px;
    height: 1px;
    background: var(--accent);
    transform: translateY(-50%);
    opacity: .8;
}

.prep-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.005em;
    color: var(--text-dark);
    margin: 0 0 26px;
}

.prep-card-text {
    margin-bottom: 32px;
}
.prep-card-text p {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0 0 16px;
}
.prep-card-text p:last-child { margin-bottom: 0; }

/* Modern checklist */
.prep-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(43, 33, 29, 0.08);
}
.prep-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(43, 33, 29, 0.08);
    transition: padding-left var(--t-base);
}
.prep-checklist li:last-child { border-bottom: none; }
.prep-checklist li:hover { padding-left: 6px; }

.prep-check-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #48A9B8 0%, #5BC0CF 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    box-shadow: 0 4px 12px rgba(72, 169, 184, 0.32);
    margin-top: 2px;
}

.prep-check-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 500;
    color: var(--text-dark);
}

/* ----- Tablet ----- */
@media (max-width: 1024px) {
    .prep-editorial { gap: 48px; }
    .prep-card { padding: 44px 38px; }
}

/* ----- Mobile ----- */
@media (max-width: 820px) {
    .prep-editorial {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .prep-visual {
        aspect-ratio: 4 / 3;
        border-radius: 22px;
    }
    .prep-card {
        padding: 38px 28px;
        border-radius: 22px;
    }
    .prep-card-title {
        font-size: 1.85rem;
    }
    .prep-card-text p {
        font-size: 0.98rem;
        line-height: 1.75;
    }
}

@media (max-width: 480px) {
    .prep-card {
        padding: 32px 22px;
    }
    .prep-card-eyebrow {
        font-size: 0.72rem;
        padding-left: 30px;
    }
    .prep-check-text { font-size: 0.94rem; }
}

/* ==========================================================================
   STATS SECTION (weichere, premium Typografie)
   ========================================================================== */
.stats-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
    color: var(--text-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.stats-section .section-title {
    color: #fff;
    font-weight: 400;
    letter-spacing: -0.015em;
}
.stats-date {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--accent-2);
    letter-spacing: 0.04em;
    margin-bottom: 24px;
    text-shadow: 0 2px 14px rgba(74, 182, 196, 0.25);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}
.stat-card {
    text-align: center;
    padding: 50px 28px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 6.5rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent-2) 0%, var(--highlight) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 60px rgba(74, 182, 196, 0.15);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
.stat-label {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(246, 241, 235, 0.78);
    margin-top: 16px;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

.stat-countries { text-align: center; }
.stat-sub-title {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 400;
    letter-spacing: 0.005em;
    margin-bottom: 26px;
    color: #fff;
}
.country-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.flag-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 300;
    color: rgba(246, 241, 235, 0.92);
    letter-spacing: 0.01em;
    transition: all var(--t-base);
    -webkit-font-smoothing: antialiased;
}
.flag-item:hover {
    background: rgba(72, 169, 184, 0.14);
    border-color: rgba(72, 169, 184, 0.4);
    transform: translateY(-2px);
    color: #fff;
}
.flag { font-size: 1.2rem; }

/* ==========================================================================
   PROGRAM SECTION
   ========================================================================== */
.program-section { background: var(--bg-cream); }
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.program-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base);
    cursor: default;
}
.program-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.program-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    transition: transform var(--t-cinematic);
    position: relative;
}
.program-card:hover .program-image { transform: scale(1.06); }
.program-body { padding: 28px 26px; position: relative; }
.program-icon {
    position: absolute;
    top: -28px;
    right: 26px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--highlight);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 22px rgba(182, 106, 80, 0.4);
}
.program-body h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-darker);
}
.program-body p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.6; }

/* ==========================================================================
   LOCATION (Parallax)
   ========================================================================== */
.location-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    overflow: hidden;
    color: #fff;
}
.parallax-bg {
    position: absolute;
    top: -10%; left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    will-change: transform;
}
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,20,18,0.35) 0%, rgba(26,20,18,0.7) 100%);
}
.location-content { position: relative; z-index: 2; }

/* ==========================================================================
   DONATIONS SECTION
   ========================================================================== */
.donations-section { background: var(--bg-warm); }
.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.donation-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.donation-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.donation-card-featured {
    background: linear-gradient(180deg, #fff 0%, var(--bg-cream) 100%);
    border-color: var(--accent);
    box-shadow: 0 16px 50px rgba(72, 169, 184, 0.18);
}
.donation-badge {
    position: absolute;
    top: 22px; right: 22px;
    background: rgba(72, 169, 184, 0.12);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.donation-badge-hot { background: var(--highlight); color: #fff; }
.donation-card h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--text-darker);
    margin-bottom: 6px;
}
.donation-sub { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }
.donation-meta { color: var(--text-muted); font-size: 0.85rem; margin: 14px 0 18px; text-align: center; }

.amount-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.amount-pill {
    padding: 10px 18px;
    border: 1.5px solid rgba(43, 33, 29, 0.15);
    border-radius: 999px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all var(--t-base);
    background: #fff;
}
.amount-pill:hover, .amount-pill.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.amount-input {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid rgba(43, 33, 29, 0.15);
    border-radius: 14px;
    margin-bottom: 16px;
    transition: border var(--t-base);
    background: #fff;
}
.amount-input:focus { outline: none; border-color: var(--accent); }
.amount-input.hidden { display: none; }

.big-amount {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--highlight);
    text-align: center;
    line-height: 1;
    margin: 18px 0;
}
.big-amount-currency { font-size: 2rem; vertical-align: top; margin-left: 4px; }

/* ==========================================================================
   STORY SECTION
   ========================================================================== */
.story-section { background: var(--bg-cream); }

/* ==========================================================================
   ARCHIVE SECTION
   ========================================================================== */
.archive-section { background: var(--bg-warm); }
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 30px;
}
.archive-empty {
    grid-column: 1/-1;
    text-align: center;
    color: var(--text-muted);
    padding: 60px 0;
    font-size: 1.1rem;
}
.archive-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base);
}
.archive-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.archive-link { display: block; }
.archive-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform var(--t-cinematic);
}
.archive-card:hover .archive-image { transform: scale(1.06); }
.archive-year {
    position: absolute;
    top: 20px; left: 20px;
    background: rgba(26, 20, 18, 0.7);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}
.archive-body { padding: 26px 28px; }
.archive-card-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-darker);
}
.archive-desc { color: var(--text-muted); font-size: 0.97rem; line-height: 1.6; margin-bottom: 16px; }
.archive-cta {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--t-base);
}
.archive-card:hover .archive-cta { gap: 14px; }

/* ==========================================================================
   ARCHIVE DETAIL PAGE
   ========================================================================== */
.archive-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 140px 30px 80px;
    color: #fff;
}
.archive-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.archive-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,20,18,0.55), rgba(26,20,18,0.85));
}
.archive-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.archive-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    font-size: 0.92rem;
    transition: color var(--t-base);
}
.archive-back:hover { color: var(--accent-2); }

.masonry {
    columns: 3 280px;
    column-gap: 18px;
}
.masonry-item {
    display: block;
    margin-bottom: 18px;
    break-inside: avoid;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base);
    cursor: zoom-in;
}
.masonry-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.masonry-item img { width: 100%; height: auto; display: block; }

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 24px;
}
.video-wrap {
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.video-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   PREMIUM LIGHTBOX (mit Pfeilen, Counter, Swipe, Smooth Transitions)
   ========================================================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 5, 4, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 350ms ease, visibility 350ms ease;
    pointer-events: none;
}
.lightbox.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-stage {
    position: relative;
    max-width: min(1200px, 92vw);
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 92vw;
    max-height: 86vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 280ms ease, transform 280ms ease;
}
.lightbox-img.loaded {
    opacity: 1;
    transform: scale(1);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    cursor: pointer;
    transition: all var(--t-base);
    z-index: 10;
}

.lightbox-close {
    top: 24px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 200;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    padding-bottom: 4px;
}
.lightbox-close:hover {
    background: rgba(255, 90, 90, 0.25);
    border-color: rgba(255, 120, 120, 0.5);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(72, 169, 184, 0.3);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 8px 24px rgba(72, 169, 184, 0.35);
}
.lightbox-prev:hover { transform: translateY(-50%) translateX(-4px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(4px); }

.lightbox-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 999px;
}

@media (max-width: 640px) {
    .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 1rem; }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
    .lightbox-close { top: 14px; right: 14px; width: 42px; height: 42px; font-size: 1.5rem; }
    .lightbox-counter { bottom: 18px; font-size: 0.75rem; padding: 6px 14px; }
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section { background: var(--bg-cream); }
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    margin-bottom: 70px;
}

.contact-form {
    background: #fff;
    padding: 44px 38px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(43, 33, 29, 0.15);
    border-radius: 12px;
    background: var(--bg-cream);
    transition: border var(--t-base), background var(--t-base);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-status { margin-top: 18px; font-size: 0.92rem; min-height: 1.4em; }
.form-status.success { color: var(--accent); }
.form-status.error { color: var(--highlight); }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 24px 26px;
    border-radius: var(--radius-md);
    transition: transform var(--t-base), box-shadow var(--t-base);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card-icon { font-size: 1.5rem; margin-bottom: 6px; color: var(--accent); }
.flag-big { font-size: 1.7rem; }
.contact-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-darker);
}
.contact-card a {
    color: var(--text-dark);
    font-size: 0.98rem;
    transition: color var(--t-base);
}
.contact-card a:hover { color: var(--accent); }

/* Social grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.social-card {
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    color: #fff;
    text-align: center;
    transition: transform var(--t-base), box-shadow var(--t-base);
    position: relative;
    overflow: hidden;
}
.social-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--t-base);
}
.social-card:hover { transform: translateY(-6px); }
.social-card:hover::before { opacity: 1; }
.social-instagram { background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%); box-shadow: 0 18px 50px rgba(225, 48, 108, 0.3); }
.social-telegram  { background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%); box-shadow: 0 18px 50px rgba(42, 171, 238, 0.3); }
.social-icon { font-size: 2.6rem; margin-bottom: 14px; }
.social-card h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; margin-bottom: 10px; }
.social-card p { color: rgba(255,255,255,0.92); margin-bottom: 22px; font-size: 0.97rem; line-height: 1.6; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 30px;
}
.footer-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-logo { height: 50px; margin-bottom: 18px; }
.footer-tagline { color: var(--text-muted-light); font-size: 0.95rem; line-height: 1.7; max-width: 320px; }
.footer-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #fff;
}
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list li { color: var(--text-muted-light); font-size: 0.92rem; }
.footer-list a { color: var(--text-muted-light); transition: color var(--t-base); }
.footer-list a:hover { color: var(--accent-2); }
.footer-list i { color: var(--accent); margin-right: 8px; width: 14px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all var(--t-base);
}
.footer-social a:hover { background: var(--accent); transform: translateY(-3px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted-light);
    font-size: 0.85rem;
}
.footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-legal a { color: rgba(255,255,255,0.4); transition: color var(--t-base); }
.footer-legal a:hover { color: var(--accent-2); }

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--t-cinematic), transform var(--t-cinematic);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .header-nav { display: none; }
    .lang-switcher { display: none; }
    .header-social { display: none; }
    .header-right .btn-outline { display: none; }
    .burger { display: flex; }
    .two-col-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .two-col-reverse .col-image { order: 0; }
    .stats-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .header-container { padding: 14px 24px; gap: 16px; }

}

@media (max-width: 640px) {
    .container { padding: 0 22px; }
    .section { padding: 70px 0; }
    .hero { padding: 100px 22px 70px; min-height: 92vh; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { width: 100%; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-legal { justify-content: center; flex-wrap: wrap; gap: 14px; }
    .marquee-item { width: 220px; height: 300px; }
    .contact-form { padding: 32px 24px; }
    .donation-card { padding: 32px 24px; }
    .value-card { padding-top: 200px; }
    .value-image { height: 180px; }
    .value-icon { top: 155px; left: 24px; }
    .logo-img { height: 42px; }
    .site-header.scrolled .logo-img { height: 38px; }
    .footer-logo { height: 42px; }
    .masonry { columns: 1; }
}

@media (max-width: 420px) {
    .hero-eyebrow { font-size: 0.7rem; padding: 7px 18px; letter-spacing: 0.32em; }
    .header-container { padding: 12px 18px; gap: 12px; }
    .logo-img { height: 38px; }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.body-locked { overflow: hidden; }
.hidden { display: none !important; }
.visible { display: block !important; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
   HERO YOUTUBE BACKGROUND VIDEO
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 30px 80px;
    overflow: hidden;
    background: #1a1412; /* Fallback während Video lädt */
}

/* Fallback-Bild liegt ganz unten */
.hero-fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0%   { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

/* YouTube iframe als Fullscreen-Background */
.hero-video {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    animation: heroVideoFade 1.4s ease-out 0.6s forwards;
}
.hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;       /* 16:9 bei voller Breite */
    min-height: 100vh;
    min-width: 177.77vh;   /* 16:9 bei voller Höhe */
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}
@keyframes heroVideoFade {
    to { opacity: 1; }
}

/* Dunkles Overlay liegt über dem Video */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse at center,
            rgba(40, 24, 18, 0.45) 0%,
            rgba(28, 18, 14, 0.65) 50%,
            rgba(20, 14, 10, 0.85) 100%),
        linear-gradient(180deg,
            rgba(58, 32, 20, 0.35) 0%,
            rgba(28, 18, 14, 0.55) 45%,
            rgba(18, 12, 10, 0.92) 100%);
}

/* Inhalt + Scroll-Indicator über Video + Overlay */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1080px;
    margin: 0 auto;
    color: #fff;
    animation: heroFadeUp 1.4s var(--t-cinematic) both;
    padding: 0 20px;
}
.hero .scroll-indicator {
    z-index: 3;
}

/* ==========================================================================
   PHOTO STRIP (auto-scroll marquee)
   ========================================================================== */
.photo-strip-section {
    background: var(--bg-warm);
    padding: 60px 0;
    overflow: hidden;
}
.photo-strip-viewport {
    overflow: hidden;
    /* soft fade on left/right edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.photo-strip-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: stripScroll 120s linear infinite;
    will-change: transform;
}
.photo-strip-track:hover {
    animation-play-state: paused;
}
@keyframes stripScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.photo-strip-item {
    flex: 0 0 auto;
    width: 380px;
    aspect-ratio: 3 / 2;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
    transition: transform 0.5s ease;
}
.photo-strip-item:hover img {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .photo-strip-item { width: 280px; }
    .photo-strip-section { padding: 40px 0; }
}
@media (max-width: 480px) {
    .photo-strip-item { width: 220px; border-radius: 12px; }
}

/* Touch-Geräte & Mobile: Video aus, nur Fallback-Bild.
   iOS/iPadOS blockiert YouTube-Autoplay in iframes zuverlässig,
   daher auf allen Touch-Geräten (hover:none) das statische Bild nutzen. */
@media (max-width: 820px), (hover: none) {
    .hero-video { display: none; }
}
