/* =========================================================================
   spindlermuehle.de – Stylesheet
   Aufbau: @font-face › tokens › base › layout › components › utilities
   Kein Build-Step. Reihenfolge der Kaskade wird über @layer erzwungen.
   ========================================================================= */

/* --- Webfonts (selbst gehostet, kein Google-CDN → DSGVO) ---------------- */

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('/assets/fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
        U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
        U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
        U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
        U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
    src: url('/assets/fonts/inter-tight-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
        U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
        U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
    src: url('/assets/fonts/inter-tight-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
        U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
        U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@layer tokens, base, layout, components, utilities;

/* =========================================================================
   TOKENS
   ========================================================================= */
@layer tokens {

    :root {
        /*
         * Marke – warme Beige-/Lehm-Palette, übernommen von tinytry.de.
         * Die Amber-Werte sind gegenüber der Vorlage (#a87d4b) abgedunkelt,
         * weil #a87d4b als Textfarbe nur 3.3:1 auf dem Beige erreicht.
         */
        --clay: #7d5a2e;
        --clay-dark: #6d4c41;
        --clay-light: #a87d4b;
        --ice: #2f7fb8;
        --ice-dark: #1d5a87;
        --ice-light: #7fb3d8;
        --gold: #805d06;

        /* Neutrale Skala – warm getönt */
        --ink: #1c2622;
        --ink-soft: #4f5854;
        --muted: #666459;
        --line: #e2dccf;
        --line-strong: #d3ccbb;
        --surface: #fbf9f3;
        --surface-2: #f5f2ea;
        --surface-3: #e8e4da;

        /* Semantisch – werden pro Saison überschrieben */
        --bg: var(--surface-2);
        --bg-alt: var(--surface-3);
        --bg-deep: var(--clay-dark);
        --accent: var(--clay);
        --accent-hover: var(--clay-light);
        --accent-soft: #efe4d3;
        --on-accent: #ffffff;

        /* Status */
        --ok: #2a6e48;
        --danger: #b23c2f;
        --neutral: #6b6f6d;
        --warn-bg: #fdf6e3;
        --warn-line: #e8d59a;
        --warn-ink: #6b5300;

        /* Typo-Skala (fluid) */
        --step--2: clamp(0.72rem, 0.71rem + 0.05vw, 0.76rem);
        --step--1: clamp(0.82rem, 0.8rem + 0.1vw, 0.88rem);
        --step-0: clamp(1rem, 0.97rem + 0.15vw, 1.06rem);
        --step-1: clamp(1.15rem, 1.08rem + 0.35vw, 1.35rem);
        --step-2: clamp(1.4rem, 1.25rem + 0.7vw, 1.9rem);
        --step-3: clamp(1.75rem, 1.45rem + 1.4vw, 2.7rem);
        --step-4: clamp(2.2rem, 1.6rem + 2.9vw, 4.25rem);

        --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
        --font-display: 'Inter Tight', 'Inter', system-ui, sans-serif;

        /* Abstände */
        --sp-1: 0.25rem;
        --sp-2: 0.5rem;
        --sp-3: 0.75rem;
        --sp-4: 1rem;
        --sp-5: 1.5rem;
        --sp-6: 2rem;
        --sp-7: 2.5rem;
        --sp-8: 3rem;
        --sp-9: 4rem;
        --sp-10: 5rem;
        --sp-11: 6rem;

        /* Form */
        --r-sm: 6px;
        --r-md: 12px;
        --r-lg: 20px;
        --r-pill: 999px;
        --radius: var(--r-md); /* Alt-Alias */

        --shadow-1: 0 1px 2px rgb(40 32 24 / 0.05), 0 2px 8px rgb(40 32 24 / 0.05);
        --shadow-2: 0 4px 12px rgb(40 32 24 / 0.08), 0 14px 34px rgb(40 32 24 / 0.10);
        --shadow-3: 0 10px 24px rgb(40 32 24 / 0.12), 0 26px 60px rgb(40 32 24 / 0.16);

        --z-nav: 100;
        --z-dropdown: 110;
        --z-drawer: 120;
        --z-banner: 130;

        --w-content: 1180px;
        --w-wide: 1440px;
        --w-prose: 68ch;
        --gutter: var(--sp-5);
        --header-h: 4.5rem;
        --max-width: var(--w-content); /* Alt-Alias */

        --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
        --dur: 0.25s;

        /* Verlaufs-Scrim über Hero-Bildern */
        --scrim: linear-gradient(
            to top,
            rgb(28 22 18 / 0.82) 0%,
            rgb(28 22 18 / 0.55) 32%,
            rgb(28 22 18 / 0.15) 62%,
            rgb(28 22 18 / 0.35) 100%
        );
    }

    /* Winter: kühle, hellblaue Farbwelt */
    :root[data-season='winter'] {
        --ink: #111d27;
        --ink-soft: #33434f;
        --muted: #586a75;
        --line: #d9e5ef;
        --line-strong: #bed0de;
        --surface: #ffffff;
        --surface-2: #eef5fb;
        --surface-3: #e0ebf5;

        --bg: #f6fafd;
        --bg-alt: #e7f1f9;
        --bg-deep: #14304a;
        --accent: var(--ice-dark);
        --accent-hover: var(--ice);
        --accent-soft: #dfecf7;

        --scrim: linear-gradient(
            to top,
            rgb(9 24 38 / 0.82) 0%,
            rgb(9 24 38 / 0.55) 32%,
            rgb(9 24 38 / 0.15) 62%,
            rgb(9 24 38 / 0.35) 100%
        );
    }

    @media (min-width: 56em) {
        :root {
            --gutter: var(--sp-6);
            --header-h: 5rem;
        }
    }
}

/* =========================================================================
   BASE
   ========================================================================= */
@layer base {

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

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

    html,
    body {
        margin: 0;
        padding: 0;
    }

    body {
        font-family: var(--font-body);
        font-size: var(--step-0);
        color: var(--ink);
        background: var(--bg);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4 {
        font-family: var(--font-display);
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: -0.02em;
        text-wrap: balance;
        margin: 0 0 var(--sp-3);
        color: var(--ink);
    }

    h1 { font-size: var(--step-3); }
    h2 { font-size: var(--step-2); }
    h3 { font-size: var(--step-1); }
    h4 { font-size: var(--step-0); }

    p {
        margin: 0 0 var(--sp-4);
        text-wrap: pretty;
    }

    p:last-child {
        margin-bottom: 0;
    }

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

    ul,
    ol {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    img,
    picture,
    video,
    svg {
        max-width: 100%;
    }

    img {
        height: auto;
    }

    strong {
        font-weight: 600;
    }

    hr {
        border: 0;
        border-top: 1px solid var(--line);
        margin: var(--sp-7) 0;
    }

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

    /* Für dunkle Flächen (Hero, Footer, Overlay-Header) */
    .on-dark :focus-visible,
    .site-header--overlay:not(.is-solid) :focus-visible {
        outline-color: #fff;
    }

    ::selection {
        background: var(--accent);
        color: var(--on-accent);
    }

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

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }
}

/* =========================================================================
   LAYOUT
   ========================================================================= */
@layer layout {

    /* Skip-Link */
    .skip-link {
        position: absolute;
        left: var(--sp-4);
        top: -100%;
        z-index: var(--z-banner);
        background: var(--accent);
        color: var(--on-accent);
        padding: var(--sp-3) var(--sp-5);
        border-radius: 0 0 var(--r-md) var(--r-md);
        font-weight: 600;
        transition: top var(--dur) var(--ease);
    }

    .skip-link:focus {
        top: 0;
    }

    /*
     * Full-Bleed-Grid: Kinder liegen standardmäßig in der Inhaltsspalte,
     * .full-bleed durchbricht sie über die volle Viewport-Breite.
     */
    .site-main {
        display: grid;
        grid-template-columns:
            [full-start] minmax(var(--gutter), 1fr)
            [content-start] minmax(0, var(--w-content)) [content-end]
            minmax(var(--gutter), 1fr) [full-end];
        min-height: 60vh;
        padding: 0 0 var(--sp-9);
        row-gap: 0;
    }

    .site-main > * {
        grid-column: content;
    }

    .site-main > .full-bleed {
        grid-column: full;
    }

    .container {
        width: 100%;
        max-width: var(--w-content);
        margin-inline: auto;
        padding-inline: var(--gutter);
    }

    .container--wide {
        max-width: var(--w-wide);
    }

    .container--prose {
        max-width: var(--w-prose);
    }

    /* Vertikaler Rhythmus für Sektionen */
    .section {
        padding-block: var(--sp-8);
    }

    .section--tight {
        padding-block: var(--sp-6);
    }

    .section--loose {
        padding-block: var(--sp-10);
    }

    .section--alt {
        background: var(--bg-alt);
    }

    .section--deep {
        background: var(--bg-deep);
        color: #f0e9dd;
    }

    .section--deep h2,
    .section--deep h3 {
        color: #fff;
    }

    @media (min-width: 56em) {
        .section {
            padding-block: var(--sp-9);
        }

        .section--loose {
            padding-block: var(--sp-11);
        }
    }

    /* Zweispaltiges Raster (News/Events, Kontakt) */
    .split {
        display: grid;
        gap: var(--sp-7);
    }

    @media (min-width: 56em) {
        .split {
            grid-template-columns: 1fr 1fr;
            gap: var(--sp-8);
        }

        .split--aside {
            grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
        }
    }
}

/* =========================================================================
   COMPONENTS
   ========================================================================= */
@layer components {

    /* ---------------------------------------------------------------- Header */
    .site-header {
        position: sticky;
        top: 0;
        z-index: var(--z-nav);
        background: var(--surface);
        border-bottom: 1px solid var(--line);
        transition: background var(--dur) var(--ease),
                    border-color var(--dur) var(--ease),
                    box-shadow var(--dur) var(--ease);
    }

    .site-header__inner {
        max-width: var(--w-wide);
        margin-inline: auto;
        padding: var(--sp-3) var(--gutter);
        min-height: var(--header-h);
        display: flex;
        align-items: center;
        gap: var(--sp-5);
    }

    /* Transparent über dem Hero, solide nach dem Scrollen */
    .site-header--overlay {
        position: fixed;
        left: 0;
        right: 0;
        background: transparent;
        border-bottom-color: transparent;
        color: #fff;
    }

    .site-header--overlay::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgb(28 22 18 / 0.55), rgb(28 22 18 / 0));
        pointer-events: none;
        transition: opacity var(--dur) var(--ease);
    }

    .site-header--overlay.is-solid {
        position: fixed;
        background: var(--surface);
        border-bottom-color: var(--line);
        color: var(--ink);
        box-shadow: var(--shadow-1);
    }

    .site-header--overlay.is-solid::before {
        opacity: 0;
    }

    .site-header__inner > * {
        position: relative;
        z-index: 1;
    }

    .site-logo {
        display: inline-flex;
        align-items: center;
        gap: var(--sp-2);
        font-family: var(--font-display);
        font-size: 1.2rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.1;
        flex-shrink: 0;
    }

    .site-logo__mark {
        width: 3.15rem;
        height: 1.43rem;
        flex-shrink: 0;
        color: var(--accent);
        transition: color var(--dur) var(--ease);
    }

    .site-header--overlay:not(.is-solid) .site-logo__mark {
        color: #fff;
    }

    .site-logo__text small {
        display: block;
        font-family: var(--font-body);
        font-size: 0.62rem;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        opacity: 0.65;
        margin-top: 1px;
    }

    .site-header__actions {
        display: flex;
        align-items: center;
        gap: var(--sp-3);
        margin-left: auto;
    }

    /* ------------------------------------------------------------ Hauptnav */
    .main-nav {
        display: none;
    }

    @media (min-width: 62em) {
        .main-nav {
            display: block;
            margin-left: var(--sp-4);
        }

        .main-nav__list {
            display: flex;
            align-items: center;
            gap: var(--sp-1);
        }
    }

    .main-nav__link {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        padding: 0.6rem 0.75rem;
        border-radius: var(--r-sm);
        font-weight: 600;
        font-size: 0.95rem;
        background: none;
        border: 0;
        color: inherit;
        font-family: inherit;
        cursor: pointer;
        white-space: nowrap;
        transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
    }

    .main-nav__link:hover,
    .main-nav__link[aria-expanded='true'] {
        background: rgb(0 0 0 / 0.05);
    }

    .site-header--overlay:not(.is-solid) .main-nav__link:hover,
    .site-header--overlay:not(.is-solid) .main-nav__link[aria-expanded='true'] {
        background: rgb(255 255 255 / 0.16);
    }

    .main-nav__link.is-active {
        color: var(--accent);
    }

    .site-header--overlay:not(.is-solid) .main-nav__link.is-active {
        color: #fff;
        box-shadow: inset 0 -2px 0 currentColor;
    }

    .main-nav__caret {
        width: 0.7em;
        height: 0.7em;
        opacity: 0.6;
        transition: transform var(--dur) var(--ease);
    }

    .main-nav__link[aria-expanded='true'] .main-nav__caret {
        transform: rotate(180deg);
    }

    /* -------------------------------------------------------- Mega-Menü */
    .mega {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        z-index: var(--z-dropdown);
        background: var(--surface);
        color: var(--ink);
        border-top: 1px solid var(--line);
        box-shadow: var(--shadow-2);
        display: none;
    }

    .mega[data-open='true'] {
        display: block;
        animation: mega-in 0.18s var(--ease);
    }

    @keyframes mega-in {
        from { opacity: 0; transform: translateY(-6px); }
        to   { opacity: 1; transform: none; }
    }

    .mega__inner {
        max-width: var(--w-wide);
        margin-inline: auto;
        padding: var(--sp-6) var(--gutter) var(--sp-7);
        display: grid;
        gap: var(--sp-6);
        grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
        align-items: start;
    }

    .mega__col h3 {
        font-family: var(--font-body);
        font-size: var(--step--1);
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: var(--sp-3);
    }

    .mega__col li + li {
        margin-top: 2px;
    }

    .mega__col a {
        display: block;
        padding: 0.4rem 0.6rem;
        margin-inline: -0.6rem;
        border-radius: var(--r-sm);
        font-weight: 500;
        transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
    }

    .mega__col a:hover {
        background: var(--accent-soft);
        color: var(--accent);
    }

    .mega__col a.is-active {
        color: var(--accent);
        font-weight: 700;
    }

    /* Bild-Teaser rechts im Mega-Menü */
    .mega__teaser {
        position: relative;
        display: block;
        border-radius: var(--r-md);
        overflow: hidden;
        min-height: 190px;
        color: #fff;
        isolation: isolate;
    }

    .mega__teaser img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
        transition: transform 0.5s var(--ease);
    }

    .mega__teaser::after {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--scrim);
        z-index: -1;
    }

    .mega__teaser:hover img {
        transform: scale(1.05);
    }

    .mega__teaser-body {
        position: absolute;
        inset-inline: 0;
        bottom: 0;
        padding: var(--sp-4);
    }

    .mega__teaser-body strong {
        display: block;
        font-family: var(--font-display);
        font-size: var(--step-1);
        font-weight: 700;
    }

    .mega__teaser-body span {
        font-size: var(--step--1);
        opacity: 0.9;
    }

    /* ------------------------------------------------------ Saison-Switch */
    .season-switch {
        display: inline-flex;
        gap: 2px;
        background: rgb(0 0 0 / 0.06);
        border-radius: var(--r-pill);
        padding: 3px;
        flex-shrink: 0;
    }

    .site-header--overlay:not(.is-solid) .season-switch {
        background: rgb(255 255 255 / 0.18);
        backdrop-filter: blur(6px);
    }

    .season-switch__btn {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        padding: 0.4rem 0.85rem;
        border-radius: var(--r-pill);
        font-size: 0.85rem;
        font-weight: 600;
        color: inherit;
        white-space: nowrap;
        transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
    }

    .season-switch__btn svg {
        width: 1em;
        height: 1em;
    }

    .season-switch__btn:hover {
        background: rgb(0 0 0 / 0.05);
    }

    .season-switch__btn.is-active {
        background: var(--surface);
        color: var(--accent);
        box-shadow: var(--shadow-1);
    }

    .season-switch__label {
        display: none;
    }

    @media (min-width: 40em) {
        .season-switch__label {
            display: inline;
        }
    }

    /* ------------------------------------------------- Hamburger / Drawer */
    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 2.75rem;
        height: 2.75rem;
        padding: 0 0.6rem;
        border: 0;
        border-radius: var(--r-sm);
        background: rgb(0 0 0 / 0.06);
        color: inherit;
        cursor: pointer;
    }

    .site-header--overlay:not(.is-solid) .nav-toggle {
        background: rgb(255 255 255 / 0.18);
    }

    .nav-toggle span {
        display: block;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
        transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
    }

    .nav-toggle[aria-expanded='true'] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded='true'] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded='true'] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    @media (min-width: 62em) {
        .nav-toggle {
            display: none;
        }
    }

    .drawer-backdrop {
        position: fixed;
        inset: 0;
        z-index: calc(var(--z-drawer) - 1);
        background: rgb(28 22 18 / 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--dur) var(--ease), visibility var(--dur);
    }

    .drawer-backdrop.is-open {
        opacity: 1;
        visibility: visible;
    }

    .drawer {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(24rem, 88vw);
        z-index: var(--z-drawer);
        background: var(--surface);
        color: var(--ink);
        display: flex;
        flex-direction: column;
        transform: translateX(102%);
        transition: transform 0.3s var(--ease);
        box-shadow: var(--shadow-3);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .drawer.is-open {
        transform: none;
    }

    .drawer__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--sp-4);
        padding: var(--sp-4) var(--sp-5);
        border-bottom: 1px solid var(--line);
        position: sticky;
        top: 0;
        background: var(--surface);
        z-index: 1;
    }

    .drawer__close {
        width: 2.5rem;
        height: 2.5rem;
        display: grid;
        place-items: center;
        border: 0;
        border-radius: var(--r-sm);
        background: var(--surface-2);
        color: inherit;
        font-size: 1.4rem;
        line-height: 1;
        cursor: pointer;
    }

    .drawer__body {
        padding: var(--sp-4) var(--sp-5) var(--sp-8);
    }

    .drawer__group + .drawer__group {
        border-top: 1px solid var(--line);
    }

    .drawer__trigger {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--sp-3);
        padding: var(--sp-4) 0;
        background: none;
        border: 0;
        color: inherit;
        font: inherit;
        font-family: var(--font-display);
        font-size: var(--step-1);
        font-weight: 700;
        text-align: left;
        cursor: pointer;
    }

    .drawer__trigger svg {
        width: 1rem;
        height: 1rem;
        flex-shrink: 0;
        opacity: 0.5;
        transition: transform var(--dur) var(--ease);
    }

    .drawer__trigger[aria-expanded='true'] svg {
        transform: rotate(180deg);
    }

    .drawer__panel[hidden] {
        display: none;
    }

    .drawer__panel {
        padding-bottom: var(--sp-4);
    }

    .drawer__panel a {
        display: block;
        padding: 0.55rem 0;
        color: var(--ink-soft);
        font-weight: 500;
    }

    .drawer__panel a:hover,
    .drawer__panel a.is-active {
        color: var(--accent);
    }

    .drawer__foot {
        margin-top: var(--sp-6);
        padding-top: var(--sp-5);
        border-top: 1px solid var(--line);
        display: flex;
        flex-direction: column;
        gap: var(--sp-4);
        align-items: flex-start;
    }

    body.has-drawer,
    body.has-lightbox {
        overflow: hidden;
    }

    /* ----------------------------------------------------------- Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        border: 1px solid transparent;
        border-radius: var(--r-pill);
        font-family: var(--font-body);
        font-size: 0.95rem;
        font-weight: 600;
        line-height: 1.2;
        cursor: pointer;
        text-align: center;
        transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
                    border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
    }

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

    .btn svg {
        width: 1.1em;
        height: 1.1em;
        flex-shrink: 0;
    }

    .btn--primary,
    .btn--booking {
        background: var(--accent);
        color: var(--on-accent);
    }

    .btn--primary:hover,
    .btn--booking:hover {
        background: var(--accent-hover);
    }

    .btn--ghost {
        background: transparent;
        color: var(--ink);
        border-color: var(--line-strong);
    }

    .btn--ghost:hover {
        background: var(--surface-2);
        border-color: var(--accent);
        color: var(--accent);
    }

    .btn--light {
        background: rgb(255 255 255 / 0.16);
        color: #fff;
        border-color: rgb(255 255 255 / 0.5);
        backdrop-filter: blur(6px);
    }

    .btn--light:hover {
        background: #fff;
        color: var(--ink);
        border-color: #fff;
    }

    .btn--sm {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .btn--block {
        display: flex;
        width: 100%;
    }

    /* Header-CTA erst ab Tablet */
    .site-header__cta {
        display: none;
    }

    @media (min-width: 48em) {
        .site-header__cta {
            display: inline-flex;
        }
    }

    /* -------------------------------------------------------------- Hero */
    .hero {
        position: relative;
        isolation: isolate;
        display: grid;
        align-items: end;
        min-height: clamp(28rem, 82svh, 46rem);
        padding-block: calc(var(--header-h) + var(--sp-8)) var(--sp-9);
        color: #fff;
        overflow: hidden;
        background: linear-gradient(135deg, var(--clay), var(--clay-light));
    }

    :root[data-season='winter'] .hero {
        background: linear-gradient(135deg, #1c4368, #7fa8c9);
    }

    .hero__media,
    .hero__media img {
        position: absolute;
        inset: 0;
        margin: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 25%;
        z-index: -2;
    }

    .hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--scrim);
        z-index: -1;
    }

    .hero__body {
        max-width: 46rem;
    }

    .hero h1 {
        font-size: var(--step-4);
        color: #fff;
        margin-bottom: var(--sp-4);
        text-shadow: 0 2px 24px rgb(0 0 0 / 0.35);
    }

    .hero p {
        font-size: var(--step-1);
        max-width: 38rem;
        color: rgb(255 255 255 / 0.92);
        text-shadow: 0 1px 14px rgb(0 0 0 / 0.35);
    }

    .hero__actions {
        display: flex;
        flex-wrap: wrap;
        gap: var(--sp-3);
        margin-top: var(--sp-6);
    }

    .btn-row {
        display: flex;
        flex-wrap: wrap;
        gap: var(--sp-3);
    }

    .hero__credit {
        position: absolute;
        right: var(--sp-3);
        bottom: var(--sp-2);
        z-index: 1;
        font-size: 0.65rem;
        color: rgb(255 255 255 / 0.8);
    }

    .hero__credit a {
        text-decoration: underline;
    }

    /* Kompakter Seiten-Hero für Unterseiten */
    .page-hero {
        position: relative;
        isolation: isolate;
        display: grid;
        align-items: end;
        min-height: clamp(15rem, 42svh, 24rem);
        padding-block: calc(var(--header-h) + var(--sp-6)) var(--sp-7);
        color: #fff;
        overflow: hidden;
        background: linear-gradient(135deg, var(--clay-dark), var(--clay));
    }

    :root[data-season='winter'] .page-hero {
        background: linear-gradient(135deg, #14304a, #3d7ba8);
    }

    .page-hero__media,
    .page-hero__media img {
        position: absolute;
        inset: 0;
        margin: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }

    .page-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--scrim);
        z-index: -1;
    }

    .page-hero h1 {
        color: #fff;
        margin-bottom: var(--sp-2);
        max-width: 22ch;
    }

    .page-hero__lead {
        color: rgb(255 255 255 / 0.9);
        font-size: var(--step-1);
        max-width: 46ch;
        margin: 0;
    }

    /* Seitenkopf ohne Bild (Rechtstexte, Fehlerseiten) */
    .page-head {
        padding-block: var(--sp-8) var(--sp-5);
    }

    .page-head h1 {
        margin-bottom: var(--sp-2);
    }

    .page-head__lead {
        color: var(--muted);
        font-size: var(--step-1);
        max-width: 60ch;
        margin: 0;
    }

    /* --------------------------------------------------------- Breadcrumb */
    .breadcrumb {
        font-size: var(--step--1);
        color: var(--muted);
        margin-bottom: var(--sp-3);
    }

    .breadcrumb ol {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.4rem;
    }

    .breadcrumb li + li::before {
        content: '›';
        margin-right: 0.4rem;
        opacity: 0.6;
    }

    .breadcrumb a:hover {
        text-decoration: underline;
    }

    .page-hero .breadcrumb {
        color: rgb(255 255 255 / 0.8);
    }

    /* ------------------------------------------------------- Kicker/Köpfe */
    .kicker {
        display: block;
        font-family: var(--font-body);
        font-size: var(--step--1);
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: var(--sp-2);
    }

    .hero .kicker,
    .page-hero .kicker,
    .section--deep .kicker {
        color: rgb(255 255 255 / 0.85);
    }

    .section-head {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        justify-content: space-between;
        gap: var(--sp-4);
        margin-bottom: var(--sp-6);
    }

    .section-head__text {
        max-width: 46rem;
    }

    .section-head h2 {
        margin-bottom: 0;
    }

    .section-head p {
        margin: var(--sp-3) 0 0;
        color: var(--muted);
    }

    .section--deep .section-head p {
        color: rgb(255 255 255 / 0.85);
    }

    .section-head__link {
        font-weight: 600;
        color: var(--accent);
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
    }

    .section--deep .section-head__link {
        color: #fff;
    }

    .section-head__link:hover {
        text-decoration: underline;
    }

    .section-head--center {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* --------------------------------------------------------- Servicebar */
    .servicebar {
        position: relative;
        z-index: 2;
        margin-top: calc(var(--sp-8) * -1);
        margin-bottom: var(--sp-8);
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--r-lg);
        box-shadow: var(--shadow-2);
        padding: var(--sp-2);
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
    }

    @media (min-width: 48em) {
        .servicebar {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .quicklink {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0.35rem;
        padding: var(--sp-4) var(--sp-2);
        border-radius: var(--r-md);
        text-align: center;
        font-weight: 600;
        font-size: 0.92rem;
        transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
    }

    .quicklink:hover {
        background: var(--accent-soft);
        color: var(--accent);
    }

    .quicklink__icon {
        width: 1.85rem;
        height: 1.85rem;
        color: var(--accent);
    }

    .quicklink__value {
        font-family: var(--font-display);
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--ink);
        line-height: 1.2;
    }

    .quicklink__note {
        font-size: var(--step--2);
        font-weight: 500;
        color: var(--muted);
    }

    /* -------------------------------------------------------------- Karten */
    .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr));
        gap: var(--sp-5);
    }

    .card-grid--3 {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr));
    }

    .card {
        position: relative;
        display: flex;
        flex-direction: column;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        overflow: hidden;
        transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
                    border-color var(--dur) var(--ease);
    }

    .card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-2);
        border-color: transparent;
    }

    .card__media {
        position: relative;
        aspect-ratio: 3 / 2;
        overflow: hidden;
        background: var(--surface-3);
    }

    .card__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s var(--ease);
    }

    .card:hover .card__image {
        transform: scale(1.05);
    }

    /* Platzhalter, wenn kein Foto vorliegt */
    .media-placeholder {
        width: 100%;
        height: 100%;
        display: grid;
        place-items: center;
        background: linear-gradient(150deg, var(--accent-soft), var(--surface-3));
        color: var(--accent);
        opacity: 0.85;
    }

    .media-placeholder svg {
        width: 42%;
        max-width: 5.5rem;
        height: auto;
        opacity: 0.5;
    }

    .card__badge {
        position: absolute;
        top: var(--sp-3);
        left: var(--sp-3);
        z-index: 1;
        background: rgb(255 255 255 / 0.94);
        color: var(--ink);
        border-radius: var(--r-pill);
        padding: 0.25rem 0.7rem;
        font-size: var(--step--2);
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        box-shadow: var(--shadow-1);
    }

    .card__body {
        padding: var(--sp-4) var(--sp-4) var(--sp-5);
        display: flex;
        flex-direction: column;
        flex: 1;
        gap: var(--sp-2);
    }

    .card__body h3 {
        margin: 0;
        font-size: var(--step-1);
    }

    .card__body > p {
        margin: 0;
        color: var(--ink-soft);
        font-size: 0.95rem;
    }

    .card__meta {
        margin: 0;
        font-size: var(--step--1);
        color: var(--muted);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem;
    }

    .card__meta--stars {
        color: var(--gold);
        letter-spacing: 0.08em;
    }

    .card__link {
        margin-top: auto;
        padding-top: var(--sp-2);
        font-weight: 600;
        color: var(--accent);
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        align-self: flex-start;
    }

    .card__link:hover {
        text-decoration: underline;
    }

    /* Ganze Karte klickbar, ohne verschachtelte Links */
    .card__stretched::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .ad-label {
        font-weight: 500;
        color: var(--muted);
        font-size: var(--step--2);
    }

    /* Horizontale Karte (News-Liste) */
    .card--horizontal {
        flex-direction: row;
        align-items: stretch;
    }

    .card--horizontal .card__media {
        flex: 0 0 38%;
        aspect-ratio: auto;
    }

    @media (max-width: 40em) {
        .card--horizontal {
            flex-direction: column;
        }

        .card--horizontal .card__media {
            flex: none;
            aspect-ratio: 3 / 2;
        }
    }

    /* ------------------------------------------------- Overlay-Kacheln */
    .tile-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
        gap: var(--sp-4);
    }

    .tile {
        position: relative;
        isolation: isolate;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        aspect-ratio: 3 / 4;
        min-height: 15rem;
        padding: var(--sp-5);
        border-radius: var(--r-md);
        overflow: hidden;
        color: #fff;
        background: var(--clay-dark);
    }

    .tile img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
        transition: transform 0.6s var(--ease);
    }

    .tile .media-placeholder {
        position: absolute;
        inset: 0;
        z-index: -2;
    }

    .tile::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: -1;
        background: var(--scrim);
        transition: opacity var(--dur) var(--ease);
    }

    .tile:hover img {
        transform: scale(1.06);
    }

    .tile h3 {
        color: #fff;
        margin: 0 0 var(--sp-1);
        font-size: var(--step-1);
    }

    .tile p {
        margin: 0;
        font-size: var(--step--1);
        color: rgb(255 255 255 / 0.85);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .tile .kicker {
        color: rgb(255 255 255 / 0.8);
        margin-bottom: var(--sp-1);
    }

    .tile--wide {
        aspect-ratio: 16 / 10;
    }

    /* ------------------------------------------------------------ Listen */
    .list {
        display: flex;
        flex-direction: column;
        gap: var(--sp-4);
    }

    .list > li {
        display: flex;
        gap: var(--sp-4);
        align-items: flex-start;
        padding-bottom: var(--sp-4);
        border-bottom: 1px solid var(--line);
    }

    .list > li:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .list__body {
        flex: 1;
        min-width: 0;
    }

    .list__body h3 {
        margin: 0 0 0.15rem;
        font-size: var(--step-0);
        font-family: var(--font-body);
        font-weight: 700;
        letter-spacing: 0;
    }

    .list__body h3 a:hover {
        color: var(--accent);
    }

    .list__body p {
        margin: 0.35rem 0 0;
        color: var(--ink-soft);
        font-size: 0.95rem;
    }

    .list__date {
        display: block;
        color: var(--muted);
        font-size: var(--step--1);
    }

    .list__image {
        flex: 0 0 6.5rem;
        width: 6.5rem;
        height: 5rem;
        object-fit: cover;
        border-radius: var(--r-sm);
        display: block;
        background: var(--surface-3);
    }

    /* Datums-Würfel */
    .datebox {
        flex: 0 0 3.75rem;
        width: 3.75rem;
        text-align: center;
        border-radius: var(--r-sm);
        background: var(--accent-soft);
        color: var(--accent);
        padding: var(--sp-2) 0;
        line-height: 1.1;
    }

    .datebox__day {
        display: block;
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 700;
    }

    .datebox__month {
        display: block;
        font-size: var(--step--2);
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    /* ------------------------------------------------------------ Filter */
    .filter-bar {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: var(--sp-2);
        margin-bottom: var(--sp-6);
    }

    .filter-bar__label {
        font-size: var(--step--1);
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--muted);
        margin-right: var(--sp-2);
    }

    .chip {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.45rem 1rem;
        border: 1px solid var(--line-strong);
        border-radius: var(--r-pill);
        background: var(--surface);
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--ink-soft);
        cursor: pointer;
        transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
                    border-color var(--dur) var(--ease);
    }

    .chip:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

    .chip.is-active {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--on-accent);
    }

    .filter-bar select,
    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 0.55rem 0.8rem;
        border: 1px solid var(--line-strong);
        border-radius: var(--r-sm);
        background: var(--surface);
        font: inherit;
        font-size: 0.95rem;
        color: var(--ink);
    }

    /* ------------------------------------------- Segmentierte Steuerung */
    .season-tabs {
        display: inline-flex;
        gap: 2px;
        padding: 3px;
        margin-bottom: var(--sp-6);
        background: var(--surface-2);
        border: 1px solid var(--line);
        border-radius: var(--r-pill);
    }

    .season-tabs__link {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.5rem 1.15rem;
        border-radius: var(--r-pill);
        font-weight: 600;
        font-size: 0.92rem;
        color: var(--ink-soft);
        transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
    }

    .season-tabs__link svg {
        width: 1em;
        height: 1em;
    }

    .season-tabs__link:hover {
        color: var(--accent);
    }

    .season-tabs__link.is-active {
        background: var(--accent);
        color: var(--on-accent);
        box-shadow: var(--shadow-1);
    }

    /* --------------------------------------------------------- Galerie */
    .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 12rem), 1fr));
        gap: var(--sp-3);
        margin: var(--sp-5) 0;
    }

    .gallery__image {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border-radius: var(--r-md);
        display: block;
        background: var(--surface-3);
    }

    .gallery--lead {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .gallery--lead .gallery__image {
        aspect-ratio: 16 / 9;
        border-radius: var(--r-lg);
    }

    .gallery__image--single {
        aspect-ratio: 16 / 9;
        border-radius: var(--r-lg);
        margin-bottom: var(--sp-5);
    }

    .gallery__image--article {
        aspect-ratio: 16 / 9;
        border-radius: var(--r-lg);
    }

    .gallery__image--float {
        aspect-ratio: 16 / 9;
        border-radius: var(--r-lg);
        object-position: left bottom;
    }

    @media (min-width: 40em) {
        .media-flow::after {
            content: "";
            display: table;
            clear: both;
        }

        .gallery__image--float {
            float: left;
            width: 45%;
            aspect-ratio: 4 / 3;
            margin-right: var(--sp-5);
        }

        .media-flow .prose {
            max-width: none;
        }
    }

    .gallery__zoom {
        display: block;
        width: 100%;
        padding: 0;
        border: 0;
        background: none;
        cursor: zoom-in;
    }

    .gallery__zoom .gallery__image {
        transition: transform var(--dur) var(--ease);
    }

    .gallery__zoom:hover .gallery__image {
        transform: scale(1.03);
    }

    /* ------------------------------------------------------------ Prosa */
    .lead,
    .hotel-lead {
        font-size: var(--step-1);
        line-height: 1.5;
        color: var(--ink-soft);
        max-width: var(--w-prose);
        margin-bottom: var(--sp-5);
    }

    .lead--full {
        max-width: none;
    }

    .lead--small {
        font-size: 1rem;
    }

    .prose,
    .hotel-description {
        max-width: var(--w-prose);
        color: var(--ink-soft);
    }

    .prose > * + * {
        margin-top: var(--sp-4);
    }

    .prose h2 {
        margin-top: var(--sp-7);
        font-size: var(--step-2);
    }

    .prose h3 {
        margin-top: var(--sp-6);
        font-size: var(--step-1);
    }

    .prose ul,
    .prose ol {
        padding-left: 1.35rem;
        list-style: disc;
    }

    .prose ol {
        list-style: decimal;
    }

    .prose li + li {
        margin-top: var(--sp-2);
    }

    .prose a {
        color: var(--accent);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .prose dt {
        font-weight: 700;
        color: var(--ink);
    }

    .prose code {
        background: var(--surface-3);
        padding: 0.1rem 0.35rem;
        border-radius: 4px;
        font-size: 0.9em;
    }

    /* -------------------------------------------------------- Meta-Leiste */
    .meta-bar {
        display: flex;
        flex-wrap: wrap;
        gap: var(--sp-2) var(--sp-5);
        padding: var(--sp-4) 0;
        margin-bottom: var(--sp-5);
        border-block: 1px solid var(--line);
        font-size: var(--step--1);
        color: var(--muted);
    }

    .meta-bar__item {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
    }

    .meta-bar__item svg {
        width: 1.05em;
        height: 1.05em;
        color: var(--accent);
        flex-shrink: 0;
    }

    .meta-bar__item strong {
        color: var(--ink);
        font-weight: 600;
    }

    /* ----------------------------------------------------------- Panels */
    .panel {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        padding: var(--sp-5);
    }

    .panel--sticky {
        position: sticky;
        top: calc(var(--header-h) + var(--sp-4));
    }

    .panel h2,
    .panel h3 {
        margin-top: 0;
    }

    /* ------------------------------------------ Aktivitäts-Detail-Layout */
    /*
     * Artikel + Sidebar ("In diesem Beitrag" / "Gut zu wissen") für lange
     * Aktivitäts-Beiträge mit mehreren Locations. Mobil/Tablet: einspaltig,
     * "Gut zu wissen" vor der Sprungnav vor dem Artikeltext (order), keine
     * sticky Position. Ab 56em: zwei Spalten, Sidebar rechts und sticky.
     */
    .activity-layout {
        display: grid;
        gap: var(--sp-6);
    }

    .activity-layout__aside {
        order: 1;
        display: flex;
        flex-direction: column;
        gap: var(--sp-5);
    }

    .activity-layout__main {
        order: 2;
        min-width: 0;
    }

    /*
     * Kennzahlen-Panel immer zuerst (schneller Überblick), danach mobil
     * "Gut zu wissen" vor der Sprungnav.
     */
    .activity-layout__panel--facts {
        order: 1;
    }

    .activity-layout__panel--good-to-know {
        order: 2;
    }

    .activity-layout__panel--toc {
        order: 3;
    }

    .toc-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: var(--sp-2);
        font-size: var(--step--1);
    }

    .toc-list a {
        color: var(--ink-soft);
        text-decoration: none;
    }

    .toc-list a:hover,
    .toc-list a:focus-visible {
        color: var(--accent);
        text-decoration: underline;
    }

    @media (min-width: 56em) {
        .activity-layout {
            grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
            align-items: start;
            gap: var(--sp-8);
        }

        .activity-layout__main {
            order: 1;
        }

        .activity-layout__aside {
            order: 2;
            position: sticky;
            top: calc(var(--header-h) + var(--sp-4));
        }

        /* Desktop: Sprungnav vor "Gut zu wissen" */
        .activity-layout__panel--toc {
            order: 2;
        }

        .activity-layout__panel--good-to-know {
            order: 3;
        }
    }

    .booking-widget {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        padding: var(--sp-5);
        margin-bottom: var(--sp-6);
    }

    .booking-widget h2 {
        margin-top: 0;
        font-size: var(--step-1);
    }

    .booking-widget__placeholder {
        color: var(--muted);
        background: var(--surface-2);
        border: 1px dashed var(--line-strong);
        border-radius: var(--r-sm);
        padding: var(--sp-6);
        text-align: center;
        font-size: 0.95rem;
    }

    /* ---------------------------------------------------------- Webcams */
    .webcam-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr));
        gap: var(--sp-5);
    }

    .webcam-card {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        overflow: hidden;
        transition: box-shadow var(--dur) var(--ease);
    }

    .webcam-card:hover {
        box-shadow: var(--shadow-2);
    }

    .section--deep .webcam-card {
        background: rgb(255 255 255 / 0.06);
        border-color: rgb(255 255 255 / 0.28);
    }

    .webcam-card__media {
        position: relative;
        aspect-ratio: 16 / 9;
        background: var(--surface-3);
    }

    .webcam-card__media img,
    .webcam-card__media video,
    .webcam-card__media iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border: 0;
    }

    .webcam-card__body {
        padding: var(--sp-4);
    }

    .webcam-card__body h3 {
        margin: 0 0 0.15rem;
        font-size: var(--step-0);
    }

    .live-dot {
        position: absolute;
        top: var(--sp-3);
        left: var(--sp-3);
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.2rem 0.6rem 0.2rem 0.5rem;
        border-radius: var(--r-pill);
        background: rgb(28 22 18 / 0.65);
        color: #fff;
        font-size: var(--step--2);
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        backdrop-filter: blur(4px);
    }

    .live-dot::before {
        content: '';
        width: 0.45rem;
        height: 0.45rem;
        border-radius: 50%;
        background: #ff5a4d;
        animation: pulse 2s var(--ease) infinite;
    }

    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50%      { opacity: 0.3; }
    }

    /* Kennzeichnet echte Streams (Feratel-Live-Cams) auf den
       Webcam-Kacheln – bewusst kein "Live"-Text/-Punkt mehr, das würde
       bei den restlichen, nur alle paar Minuten aktualisierten
       Standbildern etwas vortäuschen, das nicht stimmt. */
    .webcam-card__play {
        position: absolute;
        top: var(--sp-3);
        left: var(--sp-3);
        z-index: 1;
        width: 2.6rem;
        height: 1.8rem;
        display: grid;
        place-items: center;
        border-radius: var(--r-sm);
        background: var(--ok);
        color: #fff;
        box-shadow: var(--shadow-2);
        pointer-events: none;
    }

    .webcam-card__play svg {
        width: 1rem;
        height: 1rem;
    }

    .webcam-card__zoom {
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 0;
        background: none;
        cursor: zoom-in;
    }

    .webcam-card__zoom img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* ------------------------------------------------- Webcam-Lightbox */
    .lightbox {
        position: fixed;
        inset: 0;
        z-index: var(--z-banner);
        display: grid;
        place-items: center;
        padding: var(--sp-5);
        background: rgb(10 10 10 / 0.88);
    }

    .lightbox[hidden] {
        display: none;
    }

    .lightbox__backdrop {
        position: absolute;
        inset: 0;
    }

    .lightbox__dialog {
        position: relative;
        z-index: 1;
        width: min(64rem, 100%);
        max-height: 90vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--sp-3);
    }

    .lightbox__media {
        width: 100%;
        max-height: calc(90vh - 6rem);
        background: #000;
        border-radius: var(--r-md);
        overflow-y: auto;
    }

    /*
     * Bild füllt immer die volle Dialogbreite; die Höhe ergibt sich daraus
     * automatisch aus dem Seitenverhältnis (kein festes 16:9-Feld mehr, das
     * bei anderen Formaten quetschte oder abschnitt). Ist ein Bild dadurch
     * höher als der verfügbare Platz, scrollt .lightbox__media statt die
     * Breite zu verkleinern.
     */
    .lightbox__media img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* Live-Embeds (Feratel) haben kein bekanntes Seitenverhältnis, daher
       fest auf 16:9 statt auf die Bildgröße zu vertrauen. */
    .lightbox__media iframe {
        width: 100%;
        aspect-ratio: 16 / 9;
        max-height: calc(90vh - 6rem);
        border: 0;
        display: block;
    }

    .lightbox__caption {
        margin: 0;
        color: #fff;
        font-weight: 700;
        text-align: center;
    }

    .lightbox__close {
        position: absolute;
        top: calc(var(--sp-5) * -1);
        right: 0;
        transform: translateY(-100%);
        width: 2.75rem;
        height: 2.75rem;
        display: grid;
        place-items: center;
        border: 0;
        border-radius: var(--r-pill);
        background: rgb(255 255 255 / 0.12);
        color: #fff;
        cursor: pointer;
    }

    .lightbox__nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        width: 2.75rem;
        height: 2.75rem;
        display: grid;
        place-items: center;
        border: 0;
        border-radius: var(--r-pill);
        background: rgb(255 255 255 / 0.12);
        color: #fff;
        cursor: pointer;
    }

    .lightbox__nav:hover,
    .lightbox__close:hover {
        background: rgb(255 255 255 / 0.24);
    }

    .lightbox__nav--prev {
        left: calc(var(--sp-5) * -1);
    }

    .lightbox__nav--next {
        right: calc(var(--sp-5) * -1);
    }

    @media (max-width: 48em) {
        .lightbox__nav--prev {
            left: var(--sp-2);
        }

        .lightbox__nav--next {
            right: var(--sp-2);
        }

        .lightbox__close {
            top: var(--sp-2);
            right: var(--sp-2);
            transform: none;
        }
    }

    /* ----------------------------------------------------------- Wetter */
    .weather-widget {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        padding: var(--sp-5);
    }

    .weather-widget__current {
        display: flex;
        align-items: center;
        gap: var(--sp-4);
        margin-bottom: var(--sp-5);
    }

    .weather-widget__icon {
        font-size: 2.75rem;
        line-height: 1;
    }

    .weather-widget__temp {
        font-family: var(--font-display);
        font-size: clamp(2.25rem, 1.8rem + 2vw, 3.25rem);
        font-weight: 700;
        line-height: 1;
        letter-spacing: -0.03em;
    }

    .weather-widget__label {
        color: var(--muted);
    }

    .weather-widget__forecast {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(4.5rem, 1fr));
        gap: var(--sp-3);
        border-top: 1px solid var(--line);
        padding-top: var(--sp-4);
    }

    .weather-widget__day {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        font-size: 0.9rem;
        text-align: center;
    }

    .weather-widget__weekday {
        font-weight: 700;
        color: var(--muted);
        font-size: var(--step--1);
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .weather-widget__source {
        margin: var(--sp-4) 0 0;
        font-size: var(--step--2);
        color: var(--muted);
    }

    /* ------------------------------------------------- Lifte/Pisten */
    .piste-map {
        margin-bottom: var(--sp-6);
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        overflow: hidden;
        background: var(--surface);
    }

    .piste-map img {
        display: block;
        width: 100%;
        height: auto;
    }

    .piste-map iframe {
        display: block;
        width: 100%;
        height: 65vh;
        min-height: 420px;
        max-height: 720px;
        border: 0;
    }

    .status-summary {
        display: flex;
        flex-wrap: wrap;
        gap: var(--sp-5);
        padding: var(--sp-5);
        margin-bottom: var(--sp-6);
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--r-md);
    }

    .status-summary__item {
        flex: 1 1 8rem;
    }

    /* In der schmalen Sidebar (activity-layout__aside) je Zeile ein Wert
       statt nebeneinander umbrechender Kacheln. */
    .status-summary--stack {
        flex-direction: column;
        gap: var(--sp-3);
        padding: 0;
        margin-bottom: 0;
        background: none;
        border: 0;
    }

    .status-summary--stack .status-summary__item {
        flex: 1 1 auto;
    }

    .status-summary__value {
        display: block;
        font-family: var(--font-display);
        font-size: var(--step-2);
        font-weight: 700;
        line-height: 1.1;
    }

    .status-summary__label {
        font-size: var(--step--1);
        color: var(--muted);
    }

    .status-list {
        display: flex;
        flex-direction: column;
        gap: var(--sp-2);
    }

    .status-list__item {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: var(--sp-3);
        padding: var(--sp-3) var(--sp-4);
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--r-sm);
    }

    .table-scroll {
        overflow-x: auto;
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        background: var(--surface);
    }

    .status-table {
        width: 100%;
        border-collapse: collapse;
        font-size: var(--step--1);
    }

    .status-table th,
    .status-table td {
        padding: var(--sp-3) var(--sp-4);
        text-align: left;
        white-space: nowrap;
        border-bottom: 1px solid var(--line);
    }

    .status-table th {
        font-size: var(--step--2);
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--muted);
        background: var(--surface-2);
    }

    .status-table tbody tr:last-child td {
        border-bottom: none;
    }

    .status-table td:first-child {
        font-weight: 600;
        white-space: normal;
    }

    .status-table .icon-check {
        width: 1.1em;
        height: 1.1em;
        color: var(--ok);
    }

    .status-list__name {
        font-weight: 600;
        margin-right: auto;
    }

    .status-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.25rem 0.75rem;
        border-radius: var(--r-pill);
        font-size: var(--step--1);
        font-weight: 700;
        color: #fff;
        white-space: nowrap;
    }

    .status-badge::before {
        content: '';
        width: 0.45rem;
        height: 0.45rem;
        border-radius: 50%;
        background: currentColor;
    }

    /* Pisten-Schwierigkeit: international standardisierte Skipisten-Farben
       (blau/rot/schwarz), bewusst als feste Farbwerte statt Theme-Token –
       die Bedeutung ist saison- und designunabhängig festgelegt. */
    .piste-difficulty-icon {
        width: 0.9em;
        height: 0.9em;
        vertical-align: -0.1em;
        margin-right: 0.3rem;
    }

    .piste-difficulty-icon--leicht { color: #1d4ed8; }
    .piste-difficulty-icon--mittel { color: #dc2626; }
    .piste-difficulty-icon--schwer { color: #111111; }

    .lift-type-icon {
        width: 0.9em;
        height: 0.9em;
        vertical-align: -0.1em;
        margin-right: 0.3rem;
        color: var(--ink-soft);
    }

    .status-badge--open { background: var(--ok); }
    .status-badge--closed { background: var(--danger); }
    .status-badge--partial { background: var(--warn-ink); }
    .status-badge--weekend { background: var(--ink-soft); }
    .status-badge--unknown { background: var(--neutral); }

    /* --------------------------------------------- Überschrift mit Icon */
    .icon-heading {
        display: flex;
        align-items: center;
        gap: var(--sp-2);
    }

    .icon-heading svg {
        width: 1.2em;
        height: 1.2em;
        flex-shrink: 0;
    }

    /* ------------------------------------------------ Kennzahlen-Karten */
    .fact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
        gap: var(--sp-4);
    }

    .fact-card {
        padding: var(--sp-5);
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--r-md);
    }

    .fact-card h3 {
        display: flex;
        align-items: center;
        gap: var(--sp-2);
        margin: 0 0 var(--sp-4);
        font-size: var(--step-0);
    }

    .fact-card .status-list__item {
        background: var(--surface-2);
    }

    /* --------------------------------------------- Eingebettete Karte */
    .map-embed {
        position: relative;
        aspect-ratio: 16 / 10;
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        overflow: hidden;
    }

    .map-embed iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .map-embed--tour {
        aspect-ratio: 16 / 9;
        min-height: 320px;
        background: var(--surface-2);
    }

    /* MapLibre-Bedienelemente an die Seitenfarben angleichen – die
       Standard-Controls sind reinweiß/blau und stechen aus der warmen
       Kartenfläche heraus. */
    .map-embed--tour .maplibregl-ctrl-group {
        background: var(--surface);
        border: 1px solid var(--line-strong);
        border-radius: var(--r-sm);
        box-shadow: 0 1px 3px rgb(28 38 34 / 0.12);
    }

    .map-embed--tour .maplibregl-ctrl-group button + button {
        border-top: 1px solid var(--line);
    }

    .map-embed--tour .maplibregl-ctrl-group button:hover {
        background: var(--surface-2);
    }

    .map-embed--tour .maplibregl-ctrl-scale {
        background: rgb(251 249 243 / 0.8);
        border: 1px solid var(--line-strong);
        border-top: none;
        color: var(--ink-soft);
        font-family: var(--font-body);
        font-size: var(--step--2);
    }

    .map-embed--tour .maplibregl-ctrl-attrib {
        background: rgb(251 249 243 / 0.85);
        font-size: var(--step--2);
    }

    .map-embed--tour .maplibregl-ctrl-attrib a {
        color: var(--ink-soft);
    }

    .fact-grid--stack {
        grid-template-columns: 1fr;
    }

    /* ------------------------------------------- Loipen-Legende (Karte) */
    .map-embed--tracks {
        min-height: 380px;
    }

    .trail-legend {
        display: flex;
        flex-wrap: wrap;
        gap: var(--sp-2);
        margin: var(--sp-4) 0 var(--sp-6);
    }

    .trail-legend__item {
        display: inline-flex;
        align-items: center;
        gap: var(--sp-2);
        padding: 0.35rem var(--sp-3);
        background: var(--surface);
        border: 1px solid var(--line-strong);
        border-radius: var(--r-pill);
        font-size: var(--step--1);
        color: var(--ink-soft);
        cursor: pointer;
        transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
    }

    .trail-legend__item:hover {
        border-color: var(--line-strong);
        background: var(--surface-2);
    }

    .trail-legend__item[aria-pressed="true"] {
        background: var(--accent-soft);
        border-color: var(--accent);
        color: var(--ink);
        font-weight: 600;
    }

    .trail-legend__swatch {
        width: 1.1rem;
        height: 0.3rem;
        border-radius: var(--r-pill);
        background: var(--course-color, var(--accent));
        flex-shrink: 0;
    }

    /* --------------------------------------------------- Rundkurs-Cards */
    .course-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
        gap: var(--sp-4);
    }

    .course-card {
        padding: var(--sp-5);
        background: var(--surface);
        border: 1px solid var(--line);
        border-left: 4px solid var(--course-color, var(--accent));
        border-radius: var(--r-md);
        cursor: pointer;
        text-align: left;
        width: 100%;
        transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
        font: inherit;
        color: inherit;
    }

    .course-card:hover,
    .course-card:focus-visible {
        box-shadow: var(--shadow-1);
    }

    .course-card[aria-pressed="true"] {
        border-color: var(--course-color, var(--accent));
        box-shadow: var(--shadow-2);
    }

    .course-card__title {
        display: flex;
        align-items: center;
        gap: var(--sp-2);
        margin: 0 0 var(--sp-2);
        font-size: var(--step-0);
        font-weight: 600;
    }

    .course-card__dot {
        width: 0.85rem;
        height: 0.85rem;
        border-radius: 50%;
        background: var(--course-color, var(--accent));
        flex-shrink: 0;
    }

    .course-card__text {
        margin: 0 0 var(--sp-3);
        color: var(--ink-soft);
        font-size: var(--step--1);
    }

    .course-card__badge {
        display: inline-block;
        margin: 0 0 var(--sp-3);
        padding: 0.2rem 0.65rem;
        border-radius: var(--r-pill);
        font-size: var(--step--2);
        font-weight: 700;
        letter-spacing: 0.02em;
    }

    .course-card__badge--rundtour {
        background: var(--accent-soft);
        color: var(--accent);
    }

    .course-card__badge--aufstieg {
        background: var(--surface-3);
        color: var(--ink-soft);
    }

    .course-card__facts {
        margin: 0;
        padding: var(--sp-3) 0 0;
        border-top: 1px solid var(--line);
        list-style: none;
        display: grid;
        gap: 0.3rem;
        font-size: var(--step--2);
    }

    .course-card__facts li {
        display: flex;
        justify-content: space-between;
        gap: var(--sp-2);
    }

    .course-card__facts span {
        color: var(--ink-soft);
    }

    @media (max-width: 40em) {
        /* aspect-ratio + min-height zusammen lassen den Browser die
           Breite über das seitenverhältnis aus der min-height "zurück-
           rechnen" (CSS transferred size), sobald min-height größer ist
           als die aus 16:9 folgende Höhe – die Karte wird dadurch breiter
           als ihr Container und erzeugt horizontales Scrollen. Auf
           schmalen Screens reicht min-height allein. */
        .map-embed--tour {
            aspect-ratio: auto;
        }

        .map-embed--tracks {
            min-height: 300px;
        }

        .trail-legend {
            gap: var(--sp-1);
            margin: var(--sp-3) 0 var(--sp-5);
        }

        .trail-legend__item {
            padding: 0.3rem 0.6rem;
            font-size: var(--step--2);
        }

        .course-card {
            padding: var(--sp-4);
        }
    }

    /* ---------------------------------------------------------- Kontakt */
    .contact-list {
        margin: 0;
    }

    .contact-list__row {
        display: grid;
        gap: 0.15rem var(--sp-4);
        padding: var(--sp-3) 0;
        border-bottom: 1px solid var(--line);
    }

    @media (min-width: 34em) {
        .contact-list__row {
            grid-template-columns: 10rem 1fr;
        }
    }

    .contact-list__row dt {
        font-weight: 600;
        color: var(--muted);
    }

    .contact-list__row dd {
        margin: 0;
    }

    .contact-list__row a {
        color: var(--accent);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    /* ---------------------------------------------------- Zustände/Hinweise */
    .empty-state {
        color: var(--muted);
        background: var(--surface-2);
        border: 1px dashed var(--line-strong);
        border-radius: var(--r-md);
        padding: var(--sp-6);
        text-align: center;
        margin: 0;
    }

    .section--deep .empty-state {
        background: rgb(255 255 255 / 0.06);
        border-color: rgb(255 255 255 / 0.30);
        color: rgb(255 255 255 / 0.8);
    }

    .legal-notice {
        background: var(--warn-bg);
        border: 1px solid var(--warn-line);
        border-left: 4px solid var(--warn-line);
        border-radius: var(--r-sm);
        padding: var(--sp-4) var(--sp-5);
        margin-bottom: var(--sp-6);
        color: var(--warn-ink);
        font-size: 0.95rem;
    }

    .legal-notice code {
        background: rgb(0 0 0 / 0.06);
        padding: 0.1rem 0.3rem;
        border-radius: 3px;
    }

    /* ----------------------------------------------------------- Footer */
    .site-footer {
        background: var(--bg-deep);
        color: #ece5d8;
        margin-top: var(--sp-9);
        font-size: 0.95rem;
    }

    :root[data-season='winter'] .site-footer {
        color: #cfdeea;
    }

    .site-footer__inner {
        max-width: var(--w-content);
        margin-inline: auto;
        padding: var(--sp-9) var(--gutter) var(--sp-6);
        display: grid;
        gap: var(--sp-7);
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
    }

    .site-footer h2 {
        font-family: var(--font-body);
        font-size: var(--step--1);
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgb(255 255 255 / 0.78);
        margin-bottom: var(--sp-4);
    }

    .site-footer__brand .site-logo {
        color: #fff;
        font-size: 1.35rem;
        margin-bottom: var(--sp-3);
    }

    .site-footer__brand .site-logo__mark {
        color: #fff;
    }

    .site-footer__brand p {
        color: rgb(255 255 255 / 0.82);
        max-width: 30ch;
    }

    .footer-nav {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .footer-subcols {
        display: flex;
        gap: var(--sp-5);
    }

    .site-footer h3 {
        font-family: var(--font-body);
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgb(255 255 255 / 0.6);
        margin-bottom: var(--sp-3);
    }

    /* Farben nur im Footer – .footer-nav wird auch auf hellen Panels genutzt. */
    .site-footer .footer-nav a {
        color: rgb(255 255 255 / 0.85);
    }

    .site-footer .footer-nav a:hover {
        color: #fff;
    }

    .footer-nav a:hover {
        color: var(--accent);
        text-decoration: underline;
    }

    .site-footer .season-switch {
        background: rgb(255 255 255 / 0.12);
        margin-top: var(--sp-4);
    }

    .site-footer .season-switch__btn.is-active {
        background: #fff;
        color: var(--bg-deep);
    }

    .site-footer__bottom {
        border-top: 1px solid rgb(255 255 255 / 0.14);
    }

    .site-footer__bottom-inner {
        max-width: var(--w-content);
        margin-inline: auto;
        padding: var(--sp-4) var(--gutter);
        display: flex;
        flex-wrap: wrap;
        gap: var(--sp-3) var(--sp-5);
        align-items: center;
        justify-content: space-between;
        font-size: var(--step--1);
        color: rgb(255 255 255 / 0.8);
    }

    .site-footer__bottom-inner nav {
        display: flex;
        flex-wrap: wrap;
        gap: var(--sp-4);
    }

    .site-footer__bottom-inner a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }

    .footer-contact a {
        color: #fff;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .footer-todo {
        color: rgb(255 255 255 / 0.85);
        font-style: italic;
        font-size: var(--step--1);
    }

    /* --------------------------------------------------- Cookie-Banner */
    .cookie-banner {
        position: fixed;
        left: var(--sp-4);
        right: var(--sp-4);
        bottom: var(--sp-4);
        z-index: var(--z-banner);
        max-width: var(--w-content);
        margin-inline: auto;
        background: var(--surface);
        color: var(--ink);
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        padding: var(--sp-5);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: var(--sp-4);
        box-shadow: var(--shadow-3);
    }

    .cookie-banner p {
        margin: 0;
        max-width: 46rem;
        font-size: 0.92rem;
        color: var(--ink-soft);
    }

    .cookie-banner a {
        color: var(--accent);
        text-decoration: underline;
    }

    .cookie-banner__actions {
        display: flex;
        gap: var(--sp-3);
        flex-shrink: 0;
    }
}

/* =========================================================================
   UTILITIES
   ========================================================================= */
@layer utilities {

    .visually-hidden {
        position: absolute !important;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
        border: 0;
    }

    .center {
        text-align: center;
    }

    .stack > * + * {
        margin-top: var(--sp-4);
    }

    .mt-0 { margin-top: 0; }
    .mb-0 { margin-bottom: 0; }
    .mb-4 { margin-bottom: var(--sp-4); }
    .mb-6 { margin-bottom: var(--sp-6); }
    .mt-6 { margin-top: var(--sp-6); }

    .text-muted {
        color: var(--muted);
    }

    [hidden] {
        display: none !important;
    }
}
