/* ════════════════════════════════════════════════════════════
   Kocian Magic Airlines — v2
   Modern, animiert, mobile-first
   ════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,300;1,9..144,400;1,9..144,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    /* Palette */
    --cream:        #faf6ed;
    --cream-dark:   #efe8d4;
    --paper:        #fffbf2;
    --ink:          #0f1729;
    --ink-soft:     #3d4659;
    --ink-muted:    #8a93a5;
    --coral:        #ff5c39;
    --coral-dark:   #e63e1c;
    --amber:        #f0a830;
    --sky:          #5a8caf;
    --magic:        #7c5cd1;
    --magic-deep:   #4f3a99;
    --rose:         #f06292;

    --border:       rgba(15, 23, 41, 0.10);
    --border-strong: rgba(15, 23, 41, 0.20);
    --shadow-sm:    0 1px 2px rgba(15, 23, 41, 0.08);
    --shadow:      0 8px 24px -8px rgba(15, 23, 41, 0.18);
    --shadow-lg:   0 24px 60px -12px rgba(15, 23, 41, 0.25);
    --shadow-glow: 0 0 60px rgba(255, 92, 57, 0.25);

    /* Fonts */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
    --font-mono:    'JetBrains Mono', ui-monospace, monospace;

    /* Sizing */
    --radius:    14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --max-w:    1240px;

    /* Easing curves */
    --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in:   cubic-bezier(0.55, 0, 0.55, 0.2);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--cream);
    background-image:
        radial-gradient(at 0% 0%, rgba(240, 168, 48, 0.10) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(124, 92, 209, 0.08) 0px, transparent 50%);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed; inset: 0;
    pointer-events: none; z-index: 1;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.2 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a { color: var(--coral); text-decoration: none; transition: color .2s var(--ease-out); }
a:hover { color: var(--coral-dark); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.02em;
}

::selection { background: var(--coral); color: white; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ════════════════════════════════════════════════════════════
   AURORA BACKGROUND (für Login)
   ════════════════════════════════════════════════════════════ */
.aurora {
    position: fixed; inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.aurora-blob {
    position: absolute;
    width: 520px; height: 520px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    will-change: transform;
}
.aurora-1 { background: var(--coral);  top: -150px; left: -100px; animation: drift1 16s ease-in-out infinite; }
.aurora-2 { background: var(--magic);  bottom: -200px; right: -100px; animation: drift2 19s ease-in-out infinite; }
.aurora-3 { background: var(--amber);  top: 40%; left: 50%; animation: drift3 22s ease-in-out infinite; }

@keyframes drift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(80px, 120px) scale(1.1); }
}
@keyframes drift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-100px, -80px) scale(1.15); }
}
@keyframes drift3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50%      { transform: translate(-30%, -60%) scale(1.2); }
}

/* Floating plane (Login page) */
.floating-plane {
    position: fixed;
    top: 8%;
    left: -80px;
    width: 60px; height: 60px;
    color: var(--ink);
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
    animation: planeFlight 28s linear infinite;
}
@keyframes planeFlight {
    0%   { transform: translate(0, 0) rotate(35deg); }
    100% { transform: translate(110vw, 40vh) rotate(35deg); }
}

/* ════════════════════════════════════════════════════════════
   LOGIN — BOARDING PASS
   ════════════════════════════════════════════════════════════ */
.login-body {
    background: linear-gradient(135deg, #0f1729 0%, #1e2848 50%, #2b1e4f 100%);
    color: var(--cream);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.login-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 880px;
    perspective: 1500px;
}

.boarding-pass {
    --tx: 0deg;
    --ty: 0deg;
    display: grid;
    grid-template-columns: 1fr;
    background: var(--paper);
    color: var(--ink);
    border-radius: var(--radius-lg);
    box-shadow:
        0 30px 80px -20px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transform: rotateY(var(--tx)) rotateX(var(--ty)) translateY(40px) scale(0.95);
    opacity: 0;
    transition: opacity .8s var(--ease-out),
                transform .8s var(--ease-spring),
                box-shadow .3s var(--ease-out);
    transform-style: preserve-3d;
}
.boarding-pass.show {
    opacity: 1;
    transform: rotateY(var(--tx)) rotateX(var(--ty)) translateY(0) scale(1);
}

@media (min-width: 720px) {
    .boarding-pass {
        grid-template-columns: 280px 1fr;
    }
}

/* Linker Stub */
.bp-stub {
    background: linear-gradient(160deg, var(--ink) 0%, #1a2342 100%);
    color: var(--cream);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
}
.bp-stub::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: var(--coral);
    filter: blur(60px);
    opacity: 0.3;
    top: -50px; right: -80px;
    pointer-events: none;
}

.bp-stub-top {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}
.bp-mark {
    width: 42px; height: 42px;
    background: var(--coral);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
    color: white;
    box-shadow: 0 0 24px rgba(255, 92, 57, 0.4);
}
.bp-mark-icon {
    transform: rotate(-12deg);
    display: block;
}
.bp-stub-label {
    flex: 1;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.7;
}
.bp-stub-code {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--coral);
    letter-spacing: 0.1em;
    font-size: 13px;
}

.bp-route {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}
.bp-route-item {
    text-align: center;
    flex-shrink: 0;
}
.bp-route-code {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.02em;
}
.bp-route-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.6;
    margin-top: 4px;
}
.bp-route-line {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 4px;
    height: 16px;
}
.bp-route-dot {
    width: 6px; height: 6px;
    background: var(--coral);
    border-radius: 50%;
}
.bp-route-bar {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(90deg, currentColor 0 3px, transparent 3px 6px);
    opacity: 0.4;
}
.bp-route-plane {
    color: var(--coral);
    font-size: 16px;
    transform: rotate(0deg);
    animation: jet 3s ease-in-out infinite;
}
@keyframes jet {
    0%, 100% { transform: translateX(-2px) rotate(0deg); }
    50%      { transform: translateX(2px) rotate(0deg); }
}

.bp-stub-foot {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px dashed rgba(250, 246, 237, 0.2);
    position: relative;
    z-index: 1;
}
.bp-stub-foot div { display: flex; flex-direction: column; gap: 3px; }
.bp-stub-foot small {
    font-family: var(--font-mono);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.6;
}
.bp-stub-foot strong {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
}

/* Perforated separator */
.bp-perf {
    position: relative;
    height: 16px;
    background:
        radial-gradient(circle at 8px 0, transparent 5px, var(--paper) 5.5px) repeat-x 0 -5px / 16px 16px,
        radial-gradient(circle at 8px 16px, transparent 5px, var(--paper) 5.5px) repeat-x 0 5px / 16px 16px;
}
@media (min-width: 720px) {
    .bp-perf {
        position: absolute;
        left: 280px; top: 0; bottom: 0;
        width: 16px;
        height: auto;
        background:
            radial-gradient(circle at 0 8px, transparent 5px, var(--paper) 5.5px) repeat-y -5px 0 / 16px 16px,
            radial-gradient(circle at 16px 8px, transparent 5px, var(--paper) 5.5px) repeat-y 5px 0 / 16px 16px;
    }
}

/* Hauptbereich */
.bp-main {
    padding: 30px 28px 28px;
}
@media (min-width: 720px) { .bp-main { padding: 44px 48px 38px; } }

.bp-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--border-strong);
}
.bp-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
}
.bp-tagline {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: right;
    max-width: 60%;
}

.bp-title {
    font-size: clamp(40px, 8vw, 64px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin-bottom: 14px;
}
.bp-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--coral);
}

.bp-sub {
    color: var(--ink-soft);
    font-size: 15px;
    margin-bottom: 26px;
    max-width: 420px;
}

.bp-error {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 92, 57, 0.08);
    border-left: 3px solid var(--coral);
    border-radius: 8px;
    color: var(--coral-dark);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 18px;
    animation: shake 0.4s var(--ease-out);
}
.bp-error span {
    width: 22px; height: 22px;
    background: var(--coral);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 13px;
    flex-shrink: 0;
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.bp-form { margin-bottom: 24px; }

.bp-field { margin-bottom: 22px; }
.bp-field label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-muted);
    margin-bottom: 8px;
}

.bp-input-wrap {
    position: relative;
}
.bp-input-wrap input {
    width: 100%;
    padding: 16px 50px 16px 18px;
    font-family: var(--font-mono);
    font-size: 16px;
    letter-spacing: 0.08em;
    color: var(--ink);
    background: var(--cream);
    border: 1.5px solid var(--border-strong);
    border-radius: 12px;
    transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s var(--ease-out);
}
.bp-input-wrap input:focus {
    outline: none;
    border-color: var(--ink);
    background: var(--paper);
    box-shadow: 0 0 0 4px rgba(15, 23, 41, 0.06);
}
.bp-eye {
    position: absolute;
    right: 12px; top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--ink-muted);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: color .2s, background .2s;
    display: flex;
}
.bp-eye:hover { color: var(--ink); background: rgba(15,23,41,0.05); }
.bp-eye.on { color: var(--coral); }

.bp-submit {
    width: 100%;
    background: var(--ink);
    color: var(--cream);
    border: none;
    padding: 16px 22px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: transform .2s var(--ease-out), background .25s var(--ease-out), box-shadow .3s var(--ease-out);
}
.bp-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .6s var(--ease-out);
}
.bp-submit:hover {
    background: var(--coral);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -8px rgba(255, 92, 57, 0.5);
}
.bp-submit:hover::before { transform: translateX(100%); }
.bp-submit:active { transform: translateY(0); }
.bp-submit svg { transition: transform .2s var(--ease-out); }
.bp-submit:hover svg { transform: translateX(4px); }

.bp-footer {
    text-align: center;
    padding-top: 18px;
    border-top: 1px dashed var(--border-strong);
}
.bp-footer small {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 246, 237, 0.75);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--border);
    transition: background .3s var(--ease-out), border-color .3s var(--ease-out);
}
.nav.scrolled {
    background: rgba(250, 246, 237, 0.92);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--ink);
    letter-spacing: -0.02em;
    transition: transform .2s var(--ease-out);
}
.brand:hover { color: var(--ink); transform: translateY(-1px); }

.brand-mark {
    width: 38px; height: 38px;
    background: var(--ink);
    color: var(--cream);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 17px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: background .3s var(--ease-out);
}
.brand-mark span { transform: rotate(-12deg); transition: transform .4s var(--ease-out); }
.brand:hover .brand-mark { background: var(--coral); }
.brand:hover .brand-mark span { transform: rotate(20deg); }

.brand-text { line-height: 1; }
.brand-text small {
    display: block;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 500;
    color: var(--coral);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    padding: 9px 16px;
    border-radius: 999px;
    color: var(--ink);
    font-weight: 500;
    font-size: 14px;
    transition: background .2s var(--ease-out), color .2s var(--ease-out);
    position: relative;
}
.nav-links a:hover {
    background: rgba(15, 23, 41, 0.07);
    color: var(--ink);
}
.nav-links a.active {
    background: var(--ink);
    color: var(--cream);
}
.nav-links a.active:hover {
    background: var(--ink);
    color: var(--cream);
}

.nav-cta {
    background: var(--coral) !important;
    color: white !important;
}
.nav-cta:hover { background: var(--coral-dark) !important; color: white !important; }

.nav-icon {
    width: 38px; height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--ink-soft);
    transition: background .2s, color .2s;
    background: none;
    border: none;
    cursor: pointer;
}
.nav-icon:hover { background: rgba(15,23,41,0.06); color: var(--ink); }

@media (max-width: 600px) {
    .nav-inner { padding: 12px 16px; }
    .brand { font-size: 15px; gap: 9px; }
    .brand-mark { width: 34px; height: 34px; font-size: 15px; }
    .brand-text small { font-size: 8px; }
    .nav-links a { padding: 8px 11px; font-size: 13px; }
    .nav-links { gap: 2px; }
}

/* ════════════════════════════════════════════════════════════
   HERO (Homepage)
   ════════════════════════════════════════════════════════════ */
.hero {
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
}
.hero-bg::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--coral) 0%, transparent 60%);
    top: -200px; left: -150px;
    opacity: 0.18;
    filter: blur(40px);
    animation: bgFloat1 18s ease-in-out infinite;
}
.hero-bg::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--magic) 0%, transparent 60%);
    top: 80px; right: -120px;
    opacity: 0.15;
    filter: blur(40px);
    animation: bgFloat2 22s ease-in-out infinite;
}
@keyframes bgFloat1 {
    0%, 100% { transform: translate(0,0); }
    50%      { transform: translate(60px, 40px); }
}
@keyframes bgFloat2 {
    0%, 100% { transform: translate(0,0); }
    50%      { transform: translate(-80px, 60px); }
}

.hero-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-stamp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    border: 1.5px solid var(--coral);
    color: var(--coral);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 999px;
    margin-bottom: 22px;
    transform: rotate(-1deg);
    opacity: 0;
    animation: fadeUp .7s var(--ease-out) forwards;
}
.hero-stamp::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 4px rgba(255, 92, 57, 0.2);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 92, 57, 0.4); }
    50%      { box-shadow: 0 0 0 6px rgba(255, 92, 57, 0); }
}

.hero-title {
    font-size: clamp(44px, 10vw, 104px);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
}
.hero-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(28px);
    animation: heroWord 1s var(--ease-out) forwards;
}
.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--coral);
    position: relative;
}

@keyframes heroWord {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
    font-size: clamp(15px, 2.5vw, 19px);
    color: var(--ink-soft);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.5;
    opacity: 0;
    animation: fadeUp .9s var(--ease-out) .6s forwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 5vw, 50px);
    flex-wrap: wrap;
    margin-top: 36px;
    opacity: 0;
    animation: fadeUp .9s var(--ease-out) .8s forwards;
}

.stat { text-align: center; }
.stat-num {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
    display: block;
    letter-spacing: -0.02em;
}
.stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-top: 8px;
    display: block;
}

/* Decorative flying plane in hero */
.hero-plane {
    position: absolute;
    top: 15%;
    left: -60px;
    width: 50px; height: 50px;
    color: var(--ink);
    opacity: 0.10;
    z-index: 1;
    animation: heroFly 24s linear infinite;
    animation-delay: 2s;
    pointer-events: none;
}
@keyframes heroFly {
    0%   { transform: translate(0, 0) rotate(28deg); opacity: 0; }
    10%  { opacity: 0.15; }
    90%  { opacity: 0.15; }
    100% { transform: translate(120vw, 60vh) rotate(28deg); opacity: 0; }
}

/* ════════════════════════════════════════════════════════════
   SECTION HEAD
   ════════════════════════════════════════════════════════════ */
.section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}
.section-head h2 {
    font-size: clamp(28px, 5.5vw, 44px);
    font-weight: 600;
    letter-spacing: -0.025em;
}
.section-head h2 em {
    font-style: italic;
    color: var(--coral);
    font-weight: 300;
}

.section-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-muted);
}

/* ════════════════════════════════════════════════════════════
   MAP SECTION
   ════════════════════════════════════════════════════════════ */
.map-section { padding: 30px 0; position: relative; z-index: 2; }

.map-wrap {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}
.map-wrap::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 92, 57, 0.3), transparent, rgba(124, 92, 209, 0.3));
    -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: 5;
}

#map {
    height: 440px;
    width: 100%;
    background: var(--cream-dark);
}
@media (min-width: 768px) { #map { height: 580px; } }

/* Custom animated map pin */
.kma-pin-wrap {
    background: transparent !important;
    border: none !important;
}
.kma-pin {
    position: relative;
    width: 40px; height: 40px;
    background: var(--coral);
    border-radius: 50% 50% 50% 0;
    border: 3px solid white;
    transform: rotate(-45deg);
    box-shadow:
        0 8px 20px rgba(255, 92, 57, 0.45),
        0 0 0 0 rgba(255, 92, 57, 0.5);
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: pinPulse 2.5s ease-out infinite;
    transition: transform .25s var(--ease-spring);
}
.kma-pin:hover { transform: rotate(-45deg) scale(1.15); }
.kma-pin span {
    transform: rotate(45deg);
    color: white;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 13px;
}
@keyframes pinPulse {
    0%   { box-shadow: 0 8px 20px rgba(255, 92, 57, 0.45), 0 0 0 0 rgba(255, 92, 57, 0.5); }
    70%  { box-shadow: 0 8px 20px rgba(255, 92, 57, 0.45), 0 0 0 18px rgba(255, 92, 57, 0); }
    100% { box-shadow: 0 8px 20px rgba(255, 92, 57, 0.45), 0 0 0 0 rgba(255, 92, 57, 0); }
}

.leaflet-popup-content-wrapper {
    border-radius: 16px !important;
    background: var(--paper) !important;
    box-shadow: var(--shadow-lg) !important;
    padding: 6px !important;
}
.leaflet-popup-content {
    margin: 12px 14px !important;
    font-family: var(--font-body) !important;
    line-height: 1.4 !important;
}
.leaflet-popup-tip { background: var(--paper) !important; }

.popup-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    background: var(--cream-dark);
}
.popup-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    color: var(--ink);
    margin-bottom: 3px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.popup-place {
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 10px;
}
.popup-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ink);
    color: var(--cream) !important;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    transition: background .2s var(--ease-out), transform .2s var(--ease-out);
}
.popup-link:hover {
    background: var(--coral);
    color: white !important;
    transform: translateX(2px);
}

/* ════════════════════════════════════════════════════════════
   TRIPS GRID
   ════════════════════════════════════════════════════════════ */
.trips-section { padding: 50px 0 70px; position: relative; z-index: 2; }

.trips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 620px) { .trips-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1000px) { .trips-grid { grid-template-columns: repeat(3, 1fr); } }

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* Trip Card */
.trip-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition:
        transform .35s var(--ease-out),
        box-shadow .35s var(--ease-out);
    display: flex;
    flex-direction: column;
    position: relative;
    color: var(--ink);
}
.trip-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    color: var(--ink);
}
.trip-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    box-shadow: 0 0 0 1px transparent;
    transition: box-shadow .35s var(--ease-out);
    pointer-events: none;
}
.trip-card:hover::after { box-shadow: inset 0 0 0 1px var(--coral); }

.trip-card-cover {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--sky) 0%, var(--magic) 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.trip-card-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}
.trip-card:hover .trip-card-cover {
    background-size: 110%;
}
.trip-card-cover {
    transition: background-size .8s var(--ease-out);
}

.trip-card-stamp {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 251, 242, 0.95);
    backdrop-filter: blur(8px);
    padding: 5px 11px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--ink);
    z-index: 2;
    transition: transform .3s var(--ease-out);
}
.trip-card:hover .trip-card-stamp { transform: rotate(-3deg) scale(1.05); }

.trip-card-cover-text {
    position: absolute;
    left: 18px;
    bottom: 16px;
    right: 18px;
    z-index: 2;
    color: white;
}
.trip-card-city {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 3px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.trip-card-country {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    opacity: 0.92;
    font-weight: 500;
    font-family: var(--font-mono);
}

.trip-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    position: relative;
}
/* perforated edge */
.trip-card-body::before {
    content: '';
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 8px;
    background-image: radial-gradient(circle at 8px 0, transparent 4px, var(--paper) 4.5px);
    background-size: 16px 8px;
    background-position: 0 -4px;
    pointer-events: none;
}

.trip-card h3 {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.trip-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.trip-card-desc {
    font-size: 14px;
    color: var(--ink-soft);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.trip-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px dashed var(--border);
}

.trip-card-arrow {
    color: var(--coral);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .25s var(--ease-out);
}
.trip-card:hover .trip-card-arrow { gap: 10px; }

.photo-count {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-muted);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ════════════════════════════════════════════════════════════
   EMPTY STATE — wichtig wenn noch keine Reisen da sind
   ════════════════════════════════════════════════════════════ */
.empty-grand {
    text-align: center;
    padding: 60px 24px 70px;
    max-width: 580px;
    margin: 0 auto;
    position: relative;
}
.empty-grand-icon {
    width: 96px; height: 96px;
    margin: 0 auto 24px;
    background: var(--paper);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
    animation: float 4s ease-in-out infinite;
}
.empty-grand-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), var(--magic));
    z-index: -1;
    opacity: 0.15;
    filter: blur(20px);
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.empty-grand h2 {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 12px;
    letter-spacing: -0.025em;
}
.empty-grand h2 em { font-style: italic; color: var(--coral); font-weight: 300; }

.empty-grand p {
    color: var(--ink-soft);
    font-size: 16px;
    margin-bottom: 28px;
    line-height: 1.5;
}

.empty-cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.empty-checklist {
    margin-top: 36px;
    text-align: left;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 24px;
}
.empty-checklist h4 {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-muted);
    margin-bottom: 14px;
    font-weight: 600;
}
.empty-checklist ul { list-style: none; }
.empty-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--ink-soft);
}
.empty-checklist li::before {
    content: '';
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--coral);
    color: white;
    display: grid;
    place-items: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ════════════════════════════════════════════════════════════
   TRIP DETAIL
   ════════════════════════════════════════════════════════════ */
.trip-hero {
    padding: 36px 0 28px;
    position: relative;
}
.trip-hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.trip-back {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color .2s, transform .2s var(--ease-out);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.trip-back:hover { color: var(--coral); transform: translateX(-3px); }

.trip-flight {
    font-family: var(--font-mono);
    font-size: 11px;
    background: var(--ink);
    color: var(--cream);
    padding: 5px 11px;
    border-radius: 999px;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.trip-hero h1 {
    font-size: clamp(38px, 8vw, 78px);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.035em;
    margin-bottom: 18px;
}
.trip-hero h1 em { color: var(--coral); font-style: italic; font-weight: 300; }

.trip-hero-info {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.trip-hero-info div span:first-child {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 4px;
}
.trip-hero-info div span:last-child {
    font-weight: 500;
    color: var(--ink);
    font-size: 15px;
}

.trip-desc {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--ink-soft);
    max-width: 740px;
    line-height: 1.6;
    margin-top: 8px;
}

.crew {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 22px;
}
.crew-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-right: 4px;
}
.crew-chip {
    background: var(--paper);
    border: 1px solid var(--border);
    padding: 6px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform .2s var(--ease-out), background .2s;
}
.crew-chip:hover { transform: translateY(-2px); background: var(--cream-dark); }

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 36px 0;
}
@media (min-width: 600px) {
    .gallery { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (min-width: 900px) {
    .gallery { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
    aspect-ratio: 1;
    background: var(--cream-dark);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: galleryIn .6s var(--ease-out) forwards;
}
@keyframes galleryIn {
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
    opacity: 0;
    transition: opacity .25s var(--ease-out);
}
.gallery-item:hover::after { opacity: 1; }

@media (min-width: 600px) {
    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 2;
        aspect-ratio: 1;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 10, 22, 0.96);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity .3s var(--ease-out);
}
.lightbox.open {
    display: flex;
    opacity: 1;
}
.lightbox img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    animation: imgPop .35s var(--ease-spring);
}
@keyframes imgPop {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.lightbox-close, .lightbox-nav {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .2s, transform .2s var(--ease-out);
    backdrop-filter: blur(8px);
}
.lightbox-close:hover, .lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.08);
}
.lightbox-close {
    top: 20px;
    right: 20px;
    width: 46px; height: 46px;
    font-size: 22px;
}
.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
    font-size: 26px;
}
.lightbox-nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-caption {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    text-align: center;
    max-width: 90%;
    padding: 10px 18px;
    background: rgba(0,0,0,0.55);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

/* ════════════════════════════════════════════════════════════
   BUTTONS & FORMS
   ════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: transform .2s var(--ease-out), background .2s var(--ease-out), box-shadow .25s var(--ease-out), color .2s var(--ease-out);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .6s var(--ease-out);
}
.btn:hover::before { transform: translateX(100%); }

.btn-primary {
    background: var(--ink);
    color: var(--cream);
}
.btn-primary:hover {
    background: var(--coral);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -8px rgba(255, 92, 57, 0.45);
}

.btn-coral {
    background: var(--coral);
    color: white;
}
.btn-coral:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 12px 28px -8px rgba(255, 92, 57, 0.55);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
    background: var(--paper);
    border-color: var(--ink);
    transform: translateY(-2px);
}

.btn-danger {
    background: transparent;
    color: var(--coral-dark);
    border: 1px solid var(--coral);
}
.btn-danger:hover { background: var(--coral); color: white; }

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }

.btn svg { transition: transform .2s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

/* Forms */
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 8px;
    font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border-strong);
    border-radius: 11px;
    font-family: var(--font-body);
    font-size: 15px;
    background: var(--paper);
    color: var(--ink);
    transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 4px rgba(255, 92, 57, 0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; font-family: var(--font-body); line-height: 1.5; }
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 600px) { .form-row.two { grid-template-columns: 1fr 1fr; } }

.form-help {
    font-size: 13px;
    color: var(--ink-muted);
    margin-top: 6px;
    line-height: 1.5;
}

/* Card */
.card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: 16px; font-size: 22px; }

.alert {
    padding: 13px 17px;
    border-radius: 11px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid;
    animation: alertIn .35s var(--ease-out);
}
@keyframes alertIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.alert-success {
    background: rgba(76, 175, 80, 0.10);
    border-color: rgba(76, 175, 80, 0.35);
    color: #1f5e22;
}
.alert-error {
    background: rgba(255, 92, 57, 0.10);
    border-color: rgba(255, 92, 57, 0.35);
    color: var(--coral-dark);
}

/* ════════════════════════════════════════════════════════════
   ADMIN
   ════════════════════════════════════════════════════════════ */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}
.admin-header h1 {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}
.admin-header h1 em { color: var(--coral); font-style: italic; font-weight: 300; }

.admin-trip-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    gap: 14px;
    flex-wrap: wrap;
    transition: padding-left .2s var(--ease-out);
}
.admin-trip-row:hover { padding-left: 6px; }
.admin-trip-row:last-child { border-bottom: none; }
.admin-trip-row h4 { font-family: var(--font-body); font-weight: 600; font-size: 16px; margin-bottom: 3px; }
.admin-trip-row small { font-family: var(--font-mono); font-size: 11px; color: var(--ink-muted); letter-spacing: 0.05em; }

.photo-thumb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    margin-top: 18px;
}
.photo-thumb {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: var(--cream-dark);
    transition: transform .25s var(--ease-out);
}
.photo-thumb:hover { transform: scale(1.03); }
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.photo-thumb form {
    position: absolute;
    top: 6px; right: 6px;
}
.photo-thumb button {
    background: rgba(255,255,255,0.95);
    border: none;
    width: 28px; height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    color: var(--coral-dark);
    box-shadow: var(--shadow-sm);
    transition: transform .15s var(--ease-out), background .15s;
}
.photo-thumb button:hover { transform: scale(1.1); background: white; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
    margin-top: 70px;
    padding: 40px 0 30px;
    border-top: 1px solid var(--border);
    background: var(--cream-dark);
    text-align: center;
    position: relative;
    z-index: 2;
}
.footer-mark {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
    color: var(--ink-soft);
    font-weight: 400;
}
.footer small {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-top: 8px;
}

/* ════════════════════════════════════════════════════════════
   SKELETON (während Karte lädt)
   ════════════════════════════════════════════════════════════ */
.skeleton {
    background: linear-gradient(90deg, var(--cream-dark) 0%, rgba(239, 232, 212, 0.5) 50%, var(--cream-dark) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.6s ease-in-out infinite;
    border-radius: 8px;
}
@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
