/* ===========================================================
   Etzel-Kristall · MODERN
   Auto Dark/Light · Inter-Font · Card-Layouts · Modal-Bios
   =========================================================== */

/* --- Theme Tokens (Light Default) ----------------------------
   Akzent: Etzel-Kristall-Vereinsblau (vom Logo abgeleitet) */
:root {
    --bg: #fafaf8;
    --surface: #ffffff;
    --elevated: #f5f4f0;
    --text: #0d0d0d;
    --text-muted: #525252;
    --accent: #3a6ea5;
    --accent-strong: #2c557d;
    --accent-soft: rgba(58, 110, 165, 0.10);
    --border: #e7e5e0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow: 0 8px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 24px 48px rgba(0,0,0,0.10);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --max: 1240px;
    --gap: clamp(1rem, 3vw, 2.5rem);
    --section-y: clamp(3rem, 8vw, 6rem);
    color-scheme: light dark;
}

/* --- Auto Dark Mode --- */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --bg: #0a0a0a;
        --surface: #161616;
        --elevated: #1f1f1f;
        --text: #f5f5f5;
        --text-muted: #a3a3a3;
        --accent: #6ba0d9;
        --accent-strong: #8db8e3;
        --accent-soft: rgba(107, 160, 217, 0.15);
        --border: #2a2a2a;
        --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
        --shadow: 0 8px 24px rgba(0,0,0,0.4);
        --shadow-lg: 0 24px 48px rgba(0,0,0,0.5);
    }
}

/* --- Manual Dark Override --- */
:root[data-theme="dark"] {
    --bg: #0a0a0a;
    --surface: #161616;
    --elevated: #1f1f1f;
    --text: #f5f5f5;
    --text-muted: #a3a3a3;
    --accent: #6ba0d9;
    --accent-strong: #8db8e3;
    --accent-soft: rgba(107, 160, 217, 0.15);
    --border: #2a2a2a;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow: 0 8px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 24px 48px rgba(0,0,0,0.5);
}

/* --- Reset & Basis ---------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-strong); }

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--text);
}

h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em 0; }

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

/* --- Buttons ---------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    background: var(--accent);
    color: #fff;
    border: 0;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.97rem;
    cursor: pointer;
    transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
    text-decoration: none;
}

.btn:hover {
    background: var(--accent-strong);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn--ghost:hover {
    background: var(--accent-soft);
    color: var(--accent);
    border-color: var(--accent);
}

/* --- Top Navigation ---------------------------- */
.topnav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: saturate(150%) blur(12px);
    -webkit-backdrop-filter: saturate(150%) blur(12px);
    border-bottom: 1px solid var(--border);
}

.topnav__inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.85rem clamp(1rem, 4vw, 2rem);
    max-width: var(--max);
    margin: 0 auto;
}

.topnav__brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
}

.topnav__brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--surface);
}

.topnav__links {
    display: flex;
    gap: 0.25rem;
    margin-left: auto;
    list-style: none;
    margin-block: 0;
    padding-left: 0;
}

.topnav__links a {
    color: var(--text);
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.93rem;
    transition: background 0.15s;
}

.topnav__links a:hover,
.topnav__links a.is-active {
    background: var(--accent-soft);
    color: var(--accent);
}

.topnav__links a.is-active {
    font-weight: 600;
}

/* --- Page Hero (kleinerer Hero für Unterseiten) ---------------------------- */
.page-hero {
    background: linear-gradient(180deg, var(--elevated) 0%, var(--bg) 100%);
    padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 5vw, 3.5rem);
    border-bottom: 1px solid var(--border);
}

.page-hero__eyebrow {
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 0.75rem;
}

.page-hero__lead {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 60ch;
    margin: 0;
}

/* --- Form (Kontakt) ---------------------------- */
.contact-form {
    display: grid;
    gap: 1rem;
    max-width: 560px;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.9rem;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* --- Contact Cards (Mail/Telefon/Adresse) ---------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.contact-card h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.contact-card p {
    margin: 0;
    font-size: 1rem;
    color: var(--text);
}

.contact-card a {
    color: var(--text);
}

/* --- Video-Embeds ---------------------------- */
.video-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.video-embed-modern {
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.video-embed-modern iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Event-Galerie-Grid (für Foto-Index) ---------------------------- */
.gallery-events {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.gallery-event {
    display: block;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.gallery-event:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
    color: inherit;
}

.gallery-event__thumb {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--elevated);
}

.gallery-event__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-event:hover .gallery-event__thumb img {
    transform: scale(1.04);
}

.gallery-event__body {
    padding: 0.85rem 1rem 1rem;
}

.gallery-event__title {
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    font-size: 0.97rem;
    line-height: 1.35;
}

.gallery-event__meta {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.year-headline {
    margin: 2.5rem 0 1rem;
    font-size: 1.5rem;
    color: var(--text);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.4rem;
}

.year-headline:first-child {
    margin-top: 0;
}

/* --- Photo Gallery (auf Event-Detail-Seiten) ---------------------------- */
.photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.photos__item {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--elevated);
    transition: transform 0.15s;
}

.photos__item:hover {
    transform: scale(1.02);
}

.photos__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 600px) {
    .photos {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

.theme-toggle {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s;
}

.theme-toggle:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
}

.nav-burger {
    display: none;
    background: var(--surface);
    border: 1.5px solid var(--border);
    color: var(--text);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s;
}

.nav-burger:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
}

.nav-burger svg { width: 22px; height: 22px; }

/* ---------- Mobile (≤ 800px): Nur Burger-Button sichtbar ---------- */
@media (max-width: 800px) {
    .topnav {
        background: transparent;
        border-bottom: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .topnav__inner { padding: 1rem 1.25rem; }

    /* Brand und Theme-Toggle auf Mobile ausblenden – kommen ins Menü-Overlay */
    .topnav__brand,
    .topnav .theme-toggle {
        display: none;
    }

    .nav-burger {
        display: flex;
        margin-left: auto;
    }

    /* Menü als Fullscreen-Overlay */
    .topnav__links {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        background: var(--bg);
        padding: 5rem 2rem 2rem;
        margin: 0;
        gap: 0.25rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
        z-index: 60;
    }

    .topnav__links a {
        font-size: 1.5rem;
        font-weight: 600;
        padding: 0.85rem 1rem;
        border-bottom: 1px solid var(--border);
        text-align: left;
    }

    .topnav.is-open .topnav__links {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    /* Close-Button im offenen Menü (über Burger drüber) */
    .topnav.is-open .nav-burger {
        position: fixed;
        top: 1rem;
        right: 1.25rem;
        z-index: 70;
        background: var(--surface);
    }

    /* Brand + Theme-Toggle in das Overlay-Menü holen */
    .topnav.is-open .topnav__brand {
        display: flex;
        position: fixed;
        top: 1.4rem;
        left: 1.25rem;
        z-index: 70;
    }

    .topnav.is-open .theme-toggle {
        display: flex;
        position: fixed;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 70;
    }
}

/* --- Hero ---------------------------- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--elevated);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        color-mix(in srgb, var(--bg) 30%, transparent) 0%,
        color-mix(in srgb, var(--bg) 75%, transparent) 70%,
        var(--bg) 100%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    padding: var(--section-y) 0;
    max-width: 720px;
}

.hero__eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.4rem 0.85rem;
    background: var(--accent-soft);
    border-radius: 999px;
}

.hero__title {
    margin-bottom: 1.25rem;
}

.hero__title .accent {
    color: var(--accent);
}

.hero__lead {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--text-muted);
    max-width: 60ch;
    margin-bottom: 2rem;
}

.hero__cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* --- Section Layout ---------------------------- */
section.block {
    padding: var(--section-y) 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title__eyebrow {
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.section-title__lead {
    color: var(--text-muted);
    max-width: 50ch;
    margin: 1rem auto 0;
    font-size: 1.05rem;
}

/* --- Stats-Band ---------------------------- */
.stats {
    background: var(--elevated);
    border-block: 1px solid var(--border);
}

.stats__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    padding: 2.5rem 0;
}

.stat {
    text-align: center;
}

.stat__value {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat__label {
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

/* --- Konzerte (Datum-Block-Stil) ---------------------------- */
.events {
    display: grid;
    gap: 0.85rem;
}

.event {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.event:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.event__date {
    text-align: center;
    background: var(--accent);
    color: #fff;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    min-width: 76px;
    line-height: 1.1;
}

.event__day { font-size: 1.6rem; font-weight: 800; display: block; }
.event__month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    opacity: 0.9;
    display: block;
}
.event__year {
    font-size: 0.75rem;
    opacity: 0.85;
    display: block;
    margin-top: 2px;
}

.event__body h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.event__meta { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

.event__time {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .event {
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }
    .event__time { grid-column: 1 / -1; text-align: left; }
}

/* --- Mitglieder Grid ---------------------------- */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}

.member-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
    text-align: left;
    width: 100%;
    padding: 0;
    font-family: inherit;
    color: inherit;
}

.member-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.member-card__photo {
    aspect-ratio: 3 / 4;
    background: var(--elevated);
    overflow: hidden;
}

.member-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.member-card:hover .member-card__photo img {
    transform: scale(1.05);
}

.member-card__photo--placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 3rem;
    background: var(--accent-soft);
}

.member-card__body {
    padding: 0.85rem 1rem 1rem;
}

.member-card__name {
    font-weight: 700;
    font-size: 1rem;
    margin: 0 0 0.15rem 0;
}

.member-card__role {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin: 0;
}

/* --- Modal ---------------------------- */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 1rem;
    backdrop-filter: blur(4px);
}

.modal.is-open { display: flex; animation: fadeIn 0.2s ease; }

.modal__panel {
    background: var(--surface);
    border-radius: var(--radius-lg);
    max-width: 640px;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.25s ease;
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text);
    font-size: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__photo {
    background: var(--elevated);
    max-height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__photo img {
    max-width: 100%;
    max-height: 60vh;
    width: auto;
    height: auto;
    display: block;
}

.modal__body {
    padding: 1.5rem 2rem 2rem;
}

.modal__role {
    color: var(--accent);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.modal__name {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }

/* --- Tonträger Cards ---------------------------- */
.records {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.record {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.15s, box-shadow 0.15s;
}

.record:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.record__cover { aspect-ratio: 1 / 1; overflow: hidden; }
.record__cover img { width: 100%; height: 100%; object-fit: cover; }

.record__body { padding: 0.85rem 1rem 1rem; }
.record__title { font-size: 0.95rem; font-weight: 600; margin: 0 0 0.25rem 0; line-height: 1.3; }
.record__price { color: var(--accent); font-weight: 700; font-size: 0.95rem; margin: 0; }

/* --- About teaser ---------------------------- */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.about__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about h2 { margin-bottom: 1.25rem; }
.about p { color: var(--text-muted); font-size: 1.02rem; }

@media (max-width: 800px) {
    .about { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* --- Footer ---------------------------- */
.footer {
    background: var(--elevated);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
    margin-top: var(--section-y);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li { margin-bottom: 0.4rem; }
.footer a { color: var(--text); font-size: 0.95rem; }
.footer a:hover { color: var(--accent); }

.footer__brand p { color: var(--text-muted); font-size: 0.92rem; max-width: 36ch; }

.footer__bottom {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 800px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
    .footer__grid { grid-template-columns: 1fr; }
}

/* --- Sticky CTA ---------------------------- */
.cta-float {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 30;
    box-shadow: var(--shadow-lg);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* --- Fade-In on Scroll ---------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}
