/* ============================================================
   OPELFREUNDE KALLMÜNZ – Stylesheet v2.0
   ============================================================ */

@font-face {
    font-family: 'Inter';
    src: url('fonts/inter-v12-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --opel-yellow: #f7ff00;
    --opel-yellow-soft: rgba(247, 255, 0, 0.15);
    --opel-yellow-glow: rgba(247, 255, 0, 0.35);
    --dark-grey: #1a1a1a;
    --dark-grey-2: #222;
    --black: #0d0d0d;
    --white: #ffffff;
    --off-white: #e8e8e8;
    --muted: #8a8a8a;
    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --maxw: 1400px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-synthesis: weight style;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.lock-scroll { overflow: hidden; }

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

::selection { background: var(--opel-yellow); color: var(--black); }

:focus-visible {
    outline: 2px solid var(--opel-yellow);
    outline-offset: 3px;
    border-radius: 3px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    background: var(--opel-yellow);
    color: var(--black);
    padding: 10px 16px;
    z-index: 9999;
    font-weight: 700;
    text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

@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;
    }
}

/* ============ NAVIGATION ============ */

#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    padding: 16px 0;
    transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}
.nav-scrolled {
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0 !important;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-container {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    z-index: 2100;
    min-width: 0;
}
.brand-text {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
}
.logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(247, 255, 0, 0.15));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}
.nav-links a {
    color: var(--off-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    padding: 6px 0;
    transition: color var(--transition);
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--opel-yellow);
    transition: width var(--transition);
}
.nav-links a:hover { color: var(--opel-yellow); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--opel-yellow);
    color: var(--black) !important;
    padding: 10px 18px !important;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.6px;
    transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    color: var(--black) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--opel-yellow-glow);
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 2100;
    gap: 5px;
    padding: 8px;
}
.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* Player */
.nav-player {
    display: flex;
    align-items: center;
    background: var(--glass);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    width: 220px;
    height: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.player-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    position: relative;
    margin-right: 10px;
    flex-shrink: 0;
    color: inherit;
}
.player-btn svg {
    width: 14px;
    height: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: white;
}
.hidden { display: none !important; }
.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
    margin-right: 10px;
    flex-shrink: 0;
}
.eq-bar { width: 2px; background: var(--opel-yellow); height: 2px; }
.is-playing .eq-bar { animation: eq-bounce 0.8s infinite; }
.is-playing .eq-bar:nth-child(2) { animation-delay: 0.25s; }
.is-playing .eq-bar:nth-child(3) { animation-delay: 0.5s; }
@keyframes eq-bounce {
    0%, 100% { height: 2px; }
    50% { height: 12px; }
}

.marquee-container {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    min-width: 0;
}
.marquee-text {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--opel-yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 100%;
    will-change: transform;
}
.is-playing .marquee-text { animation: marquee-run 12s linear infinite; }
@keyframes marquee-run {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-250%); }
}

/* ============ HERO ============ */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background: var(--black);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    transition: transform 0.1s linear;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    min-height: 100svh;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(247, 255, 0, 0.08), transparent 55%),
        linear-gradient(to bottom, rgba(13, 13, 13, 0.25) 0%, rgba(13, 13, 13, 0.55) 45%, rgba(13, 13, 13, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 80px;
    text-align: center;
}
.hero-content {
    max-width: 900px;
    width: 100%;
    animation: hero-in 1s ease-out both;
}
@keyframes hero-in {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    display: inline-block;
    padding: 8px 18px;
    background: var(--opel-yellow-soft);
    border: 1px solid rgba(247, 255, 0, 0.35);
    color: var(--opel-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 999px;
    margin-bottom: 22px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.main-title {
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.88;
    margin-bottom: 18px;
}
.main-title span {
    display: block;
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    color: var(--white);
    letter-spacing: -0.01em;
}
.main-title .highlight {
    color: var(--opel-yellow);
    font-size: clamp(3rem, 11vw, 7rem);
    text-shadow: 0 10px 40px rgba(247, 255, 0, 0.2);
    line-height: 0.9;
}
.subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 32px;
    font-weight: 500;
    color: var(--off-white);
}

/* Countdown */
.countdown {
    display: inline-flex;
    gap: 8px;
    margin-bottom: 32px;
    padding: 16px 22px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.countdown > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 58px;
    padding: 0 10px;
    position: relative;
}
.countdown > div:not(:last-child)::after {
    content: ':';
    position: absolute;
    right: -7px;
    top: -2px;
    color: var(--opel-yellow);
    font-weight: 900;
    font-size: 1.6rem;
    opacity: 0.55;
}
.countdown strong {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--opel-yellow);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
}
.countdown span {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--off-white);
    margin-top: 6px;
    opacity: 0.85;
}
.cd-live {
    padding: 10px 18px;
    font-weight: 900;
    color: var(--opel-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.85rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
}
.btn-sm { padding: 10px 18px; font-size: 0.75rem; }
.btn-primary {
    background: var(--opel-yellow);
    color: var(--black);
    box-shadow: 0 10px 30px rgba(247, 255, 0, 0.18);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px var(--opel-yellow-glow);
}
.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}
.btn-ghost:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* Scroll-indicator */
.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    z-index: 3;
    display: block;
}
.scroll-dot {
    display: block;
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    margin: 6px auto 0;
    animation: scroll-down 1.8s ease infinite;
}
@keyframes scroll-down {
    0%   { transform: translateY(0); opacity: 1; }
    70%  { transform: translateY(14px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* ============ SECTIONS ============ */

.section {
    padding: 100px 5%;
    max-width: var(--maxw);
    margin: 0 auto;
    position: relative;
}
.dark-bg {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    background:
        radial-gradient(ellipse at top, rgba(247, 255, 0, 0.03), transparent 50%),
        linear-gradient(180deg, var(--black), #0f0f0f 50%, var(--black));
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.dark-bg .section-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 5%;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 14px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
    line-height: 1.1;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--opel-yellow);
    border-radius: 2px;
}
.section-lead {
    color: var(--muted);
    max-width: 640px;
    margin-top: 24px;
    margin-bottom: 50px;
    font-size: 1rem;
}

/* ============ INFO CARDS ============ */

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}
.info-card {
    background: linear-gradient(180deg, var(--dark-grey) 0%, var(--dark-grey-2) 100%);
    padding: 36px 32px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: var(--opel-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(247, 255, 0, 0.22);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.info-card:hover::before { transform: scaleX(1); }

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--opel-yellow-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--opel-yellow);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.info-card h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 800;
}
.info-card p { color: var(--off-white); opacity: 0.88; }
.info-card strong { color: var(--white); }

.timeline {
    list-style: none;
    margin-top: 6px;
}
.timeline li {
    display: flex;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    align-items: baseline;
}
.timeline li:last-child { border-bottom: 0; }
.timeline time {
    min-width: 80px;
    color: var(--opel-yellow);
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.timeline span { color: var(--off-white); font-size: 0.92rem; }

/* ============ BENTO ============ */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 14px;
}
.bento-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: zoom-in;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--dark-grey);
    padding: 0;
    font-family: inherit;
    color: inherit;
    text-align: left;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.bento-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.bento-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.75) 100%);
    transition: var(--transition);
    pointer-events: none;
}
.bento-item:hover {
    transform: translateY(-4px);
    border-color: rgba(247, 255, 0, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.bento-item:hover .bento-img { transform: scale(1.06); }
.bento-item:hover::after { background: linear-gradient(180deg, transparent 15%, rgba(0, 0, 0, 0.9) 100%); }

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bento-badge {
    background: var(--opel-yellow);
    color: var(--black);
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    opacity: 0;
    transform: translateY(6px);
    transition: var(--transition);
}
.bento-item:hover .bento-badge { opacity: 1; transform: translateY(0); }

.tall { grid-row: span 2; }
.wide { grid-column: span 2; }

/* ============ ANFAHRT ============ */

.anfahrt-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: stretch;
}
.map-container {
    background: var(--dark-grey);
    border-radius: 14px;
    padding: 6px;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 468px;
    border: 0;
    border-radius: 10px;
    display: block;
    filter: grayscale(0.1) contrast(1.05);
}
.map-actions {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}
.map-actions > * { pointer-events: auto; }
.map-cta {
    padding: 12px 20px;
    background: var(--opel-yellow);
    color: var(--black);
    font-weight: 800;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.map-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(247, 255, 0, 0.35); }
.map-cta svg { stroke: currentColor; }
.map-cta-secondary {
    padding: 10px 16px;
    background: rgba(13, 13, 13, 0.85);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}
.map-cta-secondary:hover { border-color: var(--opel-yellow); color: var(--opel-yellow); }

.directions-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.direction-card {
    background: var(--dark-grey);
    padding: 24px 26px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid transparent;
    transition: transform var(--transition), border-color var(--transition);
}
.direction-card:hover { transform: translateX(2px); border-left-color: rgba(247, 255, 0, 0.5); }
.direction-card.warning {
    border-left-color: var(--opel-yellow);
    background: linear-gradient(90deg, rgba(247, 255, 0, 0.06), var(--dark-grey) 60%);
}
.direction-card h3 {
    margin-bottom: 12px;
    color: var(--opel-yellow);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}
.direction-card p { color: var(--off-white); font-size: 0.95rem; }

/* ============ FORM ============ */

.form-wrapper {
    background: linear-gradient(180deg, var(--dark-grey), var(--dark-grey-2));
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 820px;
}
.modern-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--muted);
    margin-bottom: 8px;
    font-weight: 700;
}
.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-family: inherit;
    font-size: 16px;
    border-radius: 8px;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.modern-form input:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--opel-yellow);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(247, 255, 0, 0.1);
}
.modern-form textarea { resize: vertical; min-height: 120px; }
.modern-form input::placeholder,
.modern-form textarea::placeholder { color: rgba(255, 255, 255, 0.35); }

.consent {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--off-white);
    align-items: flex-start;
    cursor: pointer;
    opacity: 0.9;
}
.consent input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--opel-yellow);
    flex-shrink: 0;
}
.consent a { color: var(--opel-yellow); text-decoration: underline; }

.submit-button {
    background: var(--opel-yellow);
    color: var(--black);
    border: none;
    padding: 18px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    font-size: 0.9rem;
    letter-spacing: 1.2px;
    transition: var(--transition);
    font-family: inherit;
    margin-top: 6px;
}
.submit-button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(247, 255, 0, 0.3); }
.submit-button:active { transform: translateY(0); }
.submit-button:disabled { opacity: 0.65; cursor: wait; transform: none; box-shadow: none; }

.form-status {
    padding: 14px 16px;
    border-radius: 8px;
    display: none;
    font-size: 0.9rem;
    margin-top: 2px;
}
.form-status.success {
    display: block;
    background: rgba(46, 204, 113, 0.1);
    color: #9ef7bd;
    border: 1px solid rgba(46, 204, 113, 0.3);
}
.form-status.error {
    display: block;
    background: rgba(231, 76, 60, 0.1);
    color: #ffa8a8;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* ============ FOOTER ============ */

footer {
    padding: 60px 5% 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--black);
}
.footer-content {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}
.footer-brand .logo { width: 28px; height: 28px; }
.footer-copy { color: var(--muted); font-size: 0.8rem; }
.footer-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.footer-links button,
.footer-links a {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 0.8rem;
    font-family: inherit;
    text-decoration: none;
    padding: 4px 6px;
    transition: color var(--transition);
}
.footer-links button:hover,
.footer-links a:hover { color: var(--opel-yellow); }
.footer-links span { color: rgba(255, 255, 255, 0.2); }

/* ============ MODALS ============ */

.article-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px 20px;
    overflow: auto;
    animation: fade-in 0.3s;
}
.article-modal.open { display: block; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.modal-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
    max-width: 1200px;
    margin: 0 auto;
    gap: 16px;
}
.modal-content {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 6px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
    cursor: zoom-in;
    transition: transform 0.3s, max-height 0.3s, max-width 0.3s;
    animation: zoom-in 0.3s;
    height: auto;
}
.modal-content.zoomed {
    max-height: none;
    max-width: none;
    width: auto;
    cursor: zoom-out;
}
@keyframes zoom-in {
    from { transform: scale(0.95); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

#modalCaption {
    color: var(--opel-yellow);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    text-align: center;
}
.modal-footer { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.close-modal {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 26px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition);
    z-index: 3100;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    font-family: inherit;
}
.close-modal:hover {
    background: var(--opel-yellow);
    color: var(--black);
    border-color: var(--opel-yellow);
    transform: rotate(90deg);
}

.legal-container {
    max-width: 900px;
    margin: 4% auto;
    background: var(--dark-grey);
    padding: 50px;
    border-radius: 16px;
    color: var(--white);
    line-height: 1.7;
    max-height: 88vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.legal-text h1 {
    color: var(--opel-yellow);
    margin-bottom: 24px;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
.legal-text h3 {
    margin-top: 28px;
    margin-bottom: 10px;
    color: var(--white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.legal-text p, .legal-text li {
    margin-bottom: 14px;
    font-size: 0.95rem;
    opacity: 0.9;
}
.legal-text ul { margin-left: 20px; }
.legal-text a { color: var(--opel-yellow); }

/* ============ REVEAL ON SCROLL ============ */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
    .hero-content { animation: none; }
}

/* ============ MOBILE ============ */

@media (max-width: 900px) {
    .menu-toggle { display: flex; order: 3; }

    .nav-container { gap: 12px; }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        width: 100%;
        height: 100vh;
        height: 100dvh;
        text-align: center;
        transition: left 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
        justify-content: center;
        gap: 28px;
        padding: 80px 20px 40px;
        order: 4;
    }
    .nav-links.active { left: 0; }
    .nav-links a { font-size: 1.4rem; padding: 10px 20px; }
    .nav-cta { font-size: 1rem !important; padding: 14px 32px !important; }

    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Compact player on mobile */
    .nav-player {
        width: auto;
        padding: 4px;
        border: none;
        background: transparent;
        order: 2;
    }
    .nav-player .equalizer,
    .nav-player .marquee-container { display: none; }
    .player-btn {
        width: 36px;
        height: 36px;
        background: var(--opel-yellow);
        border-radius: 50%;
        margin-right: 0;
    }
    .player-btn svg { fill: var(--black); }

    .brand-text { font-size: 0.78rem; letter-spacing: 0.5px; }
    .logo { width: 32px; height: 32px; }

    .hero-overlay { padding: 110px 5% 90px; }
    .subtitle { letter-spacing: 2px; }

    .section { padding: 70px 5%; }
    .section-lead { margin-bottom: 40px; }

    .anfahrt-grid { grid-template-columns: 1fr; }
    .map-container { min-height: 360px; }
    .map-container iframe { min-height: 348px; }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 170px;
        gap: 10px;
    }
    .tall { grid-row: span 2; }
    .wide { grid-column: span 2; }

    .form-wrapper { padding: 28px 22px; }
    .form-row { grid-template-columns: 1fr; }

    .countdown { gap: 2px; padding: 12px 14px; }
    .countdown > div { min-width: 46px; padding: 0 6px; }
    .countdown > div:not(:last-child)::after { right: -4px; font-size: 1.2rem; }

    .close-modal { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 22px; }
    .legal-container { padding: 30px 22px; margin: 6% 4%; }
    .article-modal { padding: 40px 12px; }

    footer { padding: 40px 5% 30px; }
    .footer-links { gap: 8px; }
}

@media (max-width: 520px) {
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .wide, .tall { grid-column: span 1; grid-row: span 1; }

    .hero-actions { width: 100%; }
    .hero-actions .btn { flex: 1; min-width: 0; }

    .brand-text { display: none; }
}
