:root {
    --ffk-red: #e30613;
    --ffk-red-dark: #a80710;
    --ffk-dark: #0d0f11;
    --ffk-dark-soft: #171a1d;
    --ffk-light: #f3f3f1;
    --ffk-white: #ffffff;
    --ffk-text: #111315;
    --ffk-muted: #686d72;
    --ffk-header-height: 76px;
    --ffk-radius: 24px;
    --ffk-shadow: 0 24px 64px rgba(0, 0, 0, .18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ffk-text);
    background: var(--ffk-light);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.screen-reader-text,
.skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    z-index: 1000;
    top: 1rem;
    left: 1rem;
    padding: .75rem 1rem;
    background: #fff;
    color: #000;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: var(--ffk-header-height);
    color: var(--ffk-white);
    background: linear-gradient(to bottom, rgba(0, 0, 0, .76), rgba(0, 0, 0, .18), transparent);
    pointer-events: none;
    transition: background .3s ease, color .3s ease;
}

.site-header__inner {
    width: min(1440px, 100%);
    height: 100%;
    margin: 0 auto;
    padding: .8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-brand,
.menu-toggle,
.primary-navigation {
    pointer-events: auto;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.site-brand__logo img,
.site-brand__logo .custom-logo {
    width: auto;
    max-width: min(54vw, 250px);
    height: 48px;
    object-fit: contain;
    object-position: left center;
}

.site-brand__fallback-logo {
    width: auto;
    max-width: min(54vw, 250px);
    height: 48px;
    object-fit: contain;
    object-position: left center;
}

.menu-toggle {
    position: relative;
    z-index: 102;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    background: rgba(13, 15, 17, .62);
    backdrop-filter: blur(12px);
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle__line {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}

.menu-toggle.is-open .menu-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle__line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open .menu-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.primary-navigation {
    position: fixed;
    inset: 0;
    padding: calc(var(--ffk-header-height) + 2.5rem) 1.5rem 2rem;
    background:
        radial-gradient(circle at 85% 12%, rgba(227, 6, 19, .25), transparent 26rem),
        rgba(11, 13, 15, .985);
    transform: translateX(100%);
    transition: transform .34s cubic-bezier(.2,.75,.25,1);
}

.primary-navigation.is-open {
    transform: translateX(0);
}

.primary-navigation__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .35rem;
}

.primary-navigation__list a {
    position: relative;
    display: inline-block;
    padding: .75rem 0;
    color: #fff;
    font-size: clamp(1.35rem, 7vw, 2.2rem);
    font-weight: 850;
    letter-spacing: -.03em;
    text-decoration: none;
}

.home-sections {
    position: relative;
    background: var(--ffk-dark);
}

.home-section {
    position: relative;
    min-height: 100svh;
    min-height: 100dvh;
    padding:
        calc(var(--ffk-header-height) + 1.5rem)
        clamp(1.25rem, 5vw, 2rem)
        6.3rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.home-section__content {
    position: relative;
    z-index: 3;
    width: min(680px, 100%);
    margin-inline: auto;
}

.home-section h1,
.home-section h2 {
    margin: 0 0 1rem;
    font-weight: 900;
    font-size: clamp(2.85rem, 13vw, 5.7rem);
    line-height: .9;
    letter-spacing: -.06em;
    text-wrap: balance;
}

.home-section h2 {
    font-size: clamp(2.45rem, 11vw, 4.8rem);
}

.home-section p {
    margin: 0 0 1.5rem;
    font-size: clamp(1rem, 4.2vw, 1.22rem);
}

.eyebrow {
    margin-bottom: .8rem !important;
    font-size: .76rem !important;
    font-weight: 900;
    letter-spacing: .19em;
    text-transform: uppercase;
    opacity: .78;
}

.eyebrow--red {
    color: var(--ffk-red);
    opacity: 1;
}

.home-section__image,
.home-section__shade {
    position: absolute;
    inset: 0;
}

.home-section__image {
    z-index: -3;
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
    transition: transform 7s ease;
}

.home-section.is-active .home-section__image {
    transform: scale(1.075);
}

.home-section__shade {
    z-index: -2;
    background: linear-gradient(180deg, rgba(8,10,12,.16) 0%, rgba(8,10,12,.40) 38%, rgba(8,10,12,.93) 100%);
}

.home-section__shade--strong {
    background:
        linear-gradient(90deg, rgba(8,10,12,.91) 0%, rgba(8,10,12,.55) 64%, rgba(8,10,12,.30) 100%),
        linear-gradient(0deg, rgba(8,10,12,.82), transparent 58%);
}

.home-section__shade--youth {
    background:
        linear-gradient(180deg, rgba(9,11,13,.22), rgba(9,11,13,.92)),
        linear-gradient(90deg, rgba(227,6,19,.30), transparent 70%);
}

.home-section--hero {
    color: #fff;
    background: var(--ffk-dark);
}

.home-section__image--hero {
    background-image: url("https://www.feuerwehr-kappelrodeck.de/wp-content/uploads/2023/01/Feuerwehr-scaled-1.jpeg");
    background-position: 56% center;
}

.home-section__content--hero {
    align-self: flex-end;
    margin-bottom: 1.35rem;
}

.hero-copy {
    max-width: 27rem;
    color: rgba(255,255,255,.86);
    font-size: clamp(1.15rem, 5vw, 1.48rem) !important;
    font-weight: 650;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    margin-top: .4rem;
    padding: .65rem .85rem;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    background: rgba(13,15,17,.54);
    backdrop-filter: blur(12px);
}

.hero-badge__number {
    color: #fff;
    font-size: 1.55rem;
    font-weight: 950;
    letter-spacing: -.04em;
}

.hero-badge__text {
    padding-left: .85rem;
    border-left: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.73);
    font-size: .68rem;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: .045em;
}

.home-section--incident {
    color: var(--ffk-text);
    background:
        radial-gradient(circle at 82% 10%, rgba(227,6,19,.11), transparent 35%),
        var(--ffk-light);
}

.home-section__content--incident {
    margin-top: -.4rem;
}

.incident-card {
    position: relative;
    margin: 1.65rem 0 1.25rem;
    padding: 1.25rem;
    border: 1px solid rgba(17,19,21,.07);
    border-radius: var(--ffk-radius);
    background: rgba(255,255,255,.88);
    box-shadow: 0 20px 46px rgba(22,24,27,.10);
    overflow: hidden;
}

.incident-card::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    background: var(--ffk-red);
}

.incident-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.incident-card__head strong {
    display: block;
    margin-top: .15rem;
    font-size: 1.55rem;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.incident-card__label,
.incident-card__type {
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.incident-card__label {
    color: var(--ffk-muted);
}

.incident-card__type {
    flex: 0 0 auto;
    padding: .45rem .7rem;
    border-radius: 999px;
    background: rgba(227,6,19,.10);
    color: var(--ffk-red);
}

.incident-card__message {
    margin: 1rem 0 !important;
    color: #363b40;
    font-size: .98rem !important;
}

.incident-card__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(17,19,21,.08);
}

.incident-card__meta div {
    display: grid;
    gap: .1rem;
}

.incident-card__meta dt {
    color: var(--ffk-muted);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.incident-card__meta dd {
    margin: 0;
    font-size: .96rem;
    font-weight: 800;
}

.home-section--team {
    color: #fff;
    background: var(--ffk-dark);
}

.home-section__image--team {
    background-image: url("https://www.feuerwehr-kappelrodeck.de/wp-content/uploads/2023/01/Feuerwehr-scaled-1.jpeg");
    background-position: 68% center;
}

.home-section--vehicles {
    color: var(--ffk-text);
    background:
        radial-gradient(circle at 80% 34%, rgba(227,6,19,.08), transparent 28%),
        #f7f7f5;
}

.home-section__content--vehicle {
    align-self: flex-end;
    margin-bottom: .5rem;
}

.vehicle-stage {
    position: absolute;
    z-index: 1;
    top: 16%;
    right: -12%;
    left: 6%;
    height: 46%;
    display: grid;
    place-items: center;
}

.vehicle-stage__halo {
    position: absolute;
    width: min(80vw, 420px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227,6,19,.18), rgba(227,6,19,.035) 52%, transparent 70%);
}

.vehicle-stage img {
    position: relative;
    width: min(112%, 620px);
    max-width: none;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 24px 24px rgba(0,0,0,.16));
    mix-blend-mode: multiply;
}

.home-section--youth {
    color: #fff;
    background: var(--ffk-dark);
}

.home-section__image--youth {
    background-image: url("https://www.feuerwehr-kappelrodeck.de/wp-content/uploads/2023/01/20248.jpg");
    background-position: 60% center;
}

.section-kicker {
    position: absolute;
    z-index: -1;
    top: 10%;
    right: -.04em;
    color: rgba(17,19,21,.035);
    font-size: min(39vw, 12rem);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.09em;
    pointer-events: none;
}

.section-kicker--light {
    color: rgba(255,255,255,.07);
    z-index: 1;
}

.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 49px;
    padding: .8rem 1.12rem;
    border: 1px solid var(--ffk-red);
    border-radius: 999px;
    background: var(--ffk-red);
    color: #fff;
    font-size: .88rem;
    font-weight: 850;
    text-decoration: none;
    transition: transform .18s ease, background-color .18s ease, color .18s ease;
}

.button-link:active {
    transform: scale(.97);
}

.button-link--light {
    border-color: #fff;
    background: #fff;
    color: var(--ffk-dark);
}

.button-link--glass {
    border-color: rgba(255,255,255,.32);
    background: rgba(13,15,17,.36);
    color: #fff;
    backdrop-filter: blur(8px);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: var(--ffk-text);
    font-size: .9rem;
    font-weight: 850;
    text-decoration: none;
}

.text-link span {
    color: var(--ffk-red);
    font-size: 1.3em;
    transition: transform .18s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.section-nav {
    position: absolute;
    z-index: 8;
    right: 0;
    bottom: max(1rem, env(safe-area-inset-bottom));
    left: 0;
    display: flex;
    justify-content: center;
    gap: .65rem;
    pointer-events: none;
}

.section-arrow {
    pointer-events: auto;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    background: rgba(12,14,16,.62);
    color: #fff;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 28px rgba(0,0,0,.15);
    cursor: pointer;
    transition: transform .18s ease, background-color .18s ease;
}

.section-arrow svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-section--incident .section-arrow,
.home-section--vehicles .section-arrow {
    border-color: rgba(0,0,0,.08);
    background: rgba(255,255,255,.9);
    color: var(--ffk-text);
}

.section-arrow--down {
    animation: ffk-arrow-pulse 2s ease-in-out infinite;
}

.section-arrow:hover,
.section-arrow:focus-visible {
    transform: scale(1.08);
}

@keyframes ffk-arrow-pulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.section-progress {
    position: fixed;
    z-index: 80;
    top: 50%;
    right: .65rem;
    display: grid;
    gap: .48rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.section-progress__dot {
    width: 4px;
    height: 15px;
    border-radius: 999px;
    background: rgba(255,255,255,.32);
    box-shadow: 0 0 0 1px rgba(0,0,0,.06);
    transition: height .25s ease, background-color .25s ease;
}

.section-progress__dot.is-active {
    height: 30px;
    background: var(--ffk-red);
}

.content-shell {
    width: min(1100px, calc(100% - 2rem));
    margin: 0 auto;
    padding: calc(var(--ffk-header-height) + 2rem) 0 4rem;
}

.content-card {
    padding: clamp(1.25rem, 4vw, 2.5rem);
    border-radius: var(--ffk-radius);
    background: #fff;
    box-shadow: var(--ffk-shadow);
}

.site-footer {
    padding: 2rem 1rem;
    color: rgba(255,255,255,.78);
    background: #0d0f10;
}

.site-footer__inner {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.site-footer__nav {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
}

.site-footer__nav a {
    color: inherit;
}

@media (max-width: 767px) {
    html:has(.home-sections) {
        scroll-snap-type: y mandatory;
        scroll-padding-top: 0;
        overscroll-behavior-y: contain;
    }

    .home-section {
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .home-section__content {
        opacity: .38;
        transform: translateY(20px);
        transition: opacity .55s ease .08s, transform .55s cubic-bezier(.2,.75,.25,1) .08s;
    }

    .home-section.is-active .home-section__content {
        opacity: 1;
        transform: translateY(0);
    }

    .home-sections + .site-footer {
        display: none;
    }
}

@media (min-width: 768px) {
    :root {
        --ffk-header-height: 88px;
    }

    .site-header {
        background: rgba(11,13,15,.91);
        backdrop-filter: blur(14px);
    }

    .site-header__inner {
        padding-inline: 2rem;
    }

    .site-brand__fallback-logo,
    .site-brand__logo img,
    .site-brand__logo .custom-logo {
        height: 58px;
        max-width: 280px;
    }

    .menu-toggle {
        display: none;
    }

    .primary-navigation {
        position: static;
        inset: auto;
        padding: 0;
        background: transparent;
        transform: none;
    }

    .primary-navigation__list {
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .primary-navigation__list a {
        padding: .5rem 0;
        font-size: .88rem;
        font-weight: 750;
        letter-spacing: 0;
    }

    .primary-navigation__list a:hover {
        color: #ff3943;
    }

    .home-sections {
        padding-top: var(--ffk-header-height);
    }

    .home-section {
        min-height: 78vh;
        padding: clamp(5rem, 8vw, 8rem) 3rem;
    }

    .home-section--hero {
        min-height: calc(100vh - var(--ffk-header-height));
    }

    .home-section__content {
        width: min(1180px, 100%);
    }

    .home-section__content--hero {
        align-self: center;
        margin-bottom: 0;
    }

    .home-section h1 {
        max-width: 10ch;
        font-size: clamp(4.7rem, 9vw, 9rem);
    }

    .home-section h2 {
        max-width: 8ch;
        font-size: clamp(3.4rem, 6vw, 6.3rem);
    }

    .home-section p {
        max-width: 42rem;
        font-size: 1.2rem;
    }

    .home-section--incident .home-section__content,
    .home-section--vehicles .home-section__content {
        margin-left: max(calc((100vw - 1180px) / 2), 0px);
        margin-right: auto;
    }

    .incident-card {
        width: min(580px, 100%);
        padding: 1.6rem;
    }

    .home-section__content--vehicle {
        align-self: center;
        width: min(1180px, 100%);
        margin-bottom: 0;
    }

    .vehicle-stage {
        top: 10%;
        right: 1%;
        bottom: 7%;
        left: 45%;
        height: auto;
    }

    .vehicle-stage img {
        width: min(100%, 760px);
    }

    .section-nav,
    .section-progress {
        display: none;
    }

    .home-section__image--team {
        background-position: center 42%;
    }

    .home-section__image--youth {
        background-position: center;
    }
}

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


/* ---------------------------------------------------------
   Unterseiten / Einsätze
   --------------------------------------------------------- */

.subpage {
    min-height: 100vh;
    background: var(--ffk-light);
}

.subpage-hero {
    position: relative;
    padding: calc(var(--ffk-header-height) + 3rem) 1rem 3rem;
    color: #fff;
    background:
        radial-gradient(circle at 82% 18%, rgba(227,6,19,.42), transparent 28rem),
        linear-gradient(135deg, #0b0d0f, #1b1f22);
    overflow: hidden;
}

.subpage-hero::after {
    content: "";
    position: absolute;
    right: -5rem;
    bottom: -10rem;
    width: 25rem;
    height: 25rem;
    border: 4rem solid rgba(255,255,255,.025);
    border-radius: 50%;
    pointer-events: none;
}

.subpage-hero__inner,
.subpage-content__inner {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin-inline: auto;
}

.subpage-hero__title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}

.subpage-hero h1 {
    margin: 0;
    font-size: clamp(3rem, 11vw, 6.6rem);
    font-weight: 950;
    line-height: .9;
    letter-spacing: -.06em;
}

.subpage-hero__lead {
    max-width: 40rem;
    margin: 1.1rem 0 0;
    color: rgba(255,255,255,.72);
    font-size: clamp(1rem, 4vw, 1.2rem);
}

.subpage-hero__year {
    display: none;
    color: rgba(255,255,255,.08);
    font-size: clamp(5rem, 11vw, 9rem);
    font-weight: 950;
    line-height: .75;
    letter-spacing: -.08em;
}

.subpage-content {
    padding: 1.2rem 1rem 4rem;
}

.entry-content--incidents > h2,
.entry-content--incidents > h3 {
    margin: 2rem 0 .8rem;
    letter-spacing: -.035em;
}

.entry-content--incidents > h2 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
}

.entry-content--incidents > h3 {
    color: var(--ffk-muted);
    font-size: 1rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.entry-content--incidents table {
    width: 100%;
    margin: 1rem 0 2.2rem;
    border: 0;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(12,14,16,.08);
    overflow: hidden;
}

.entry-content--incidents th,
.entry-content--incidents td {
    padding: .9rem 1rem;
    border: 0;
    border-bottom: 1px solid rgba(17,19,21,.07);
    text-align: left;
    vertical-align: top;
}

.entry-content--incidents th {
    color: #fff;
    background: #15181b;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.entry-content--incidents tbody tr:last-child td {
    border-bottom: 0;
}

.entry-content--incidents tbody tr {
    transition: background-color .18s ease;
}

.entry-content--incidents tbody tr:hover {
    background: rgba(227,6,19,.035);
}

@media (max-width: 767px) {
    .subpage-hero {
        min-height: 37svh;
        min-height: 37dvh;
        display: flex;
        align-items: flex-end;
        padding-bottom: 2rem;
    }

    .subpage-content {
        padding-top: 1rem;
    }

    .ffk-responsive-table {
        display: block;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    .ffk-responsive-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .ffk-responsive-table tbody,
    .ffk-responsive-table tr,
    .ffk-responsive-table td {
        display: block;
        width: 100%;
    }

    .ffk-responsive-table tbody {
        display: grid;
        gap: .9rem;
    }

    .ffk-responsive-table tbody tr {
        position: relative;
        padding: .3rem 1rem;
        border: 1px solid rgba(17,19,21,.07);
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 10px 28px rgba(12,14,16,.075);
        overflow: hidden;
    }

    .ffk-responsive-table tbody tr::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 4px;
        background: var(--ffk-red);
    }

    .ffk-responsive-table td {
        display: grid;
        grid-template-columns: minmax(6.7rem, .85fr) minmax(0, 1.5fr);
        gap: .65rem;
        padding: .65rem 0;
        border-bottom: 1px solid rgba(17,19,21,.065) !important;
        background: transparent !important;
        font-size: .91rem;
    }

    .ffk-responsive-table td:last-child {
        border-bottom: 0 !important;
    }

    .ffk-responsive-table td::before {
        content: attr(data-label);
        color: var(--ffk-muted);
        font-size: .66rem;
        font-weight: 850;
        letter-spacing: .065em;
        line-height: 1.35;
        text-transform: uppercase;
    }

    .entry-content--incidents table + table {
        margin-top: 1rem;
    }
}

@media (min-width: 768px) {
    .subpage-hero {
        padding: calc(var(--ffk-header-height) + 5rem) 3rem 5rem;
    }

    .subpage-hero__year {
        display: block;
    }

    .subpage-content {
        padding: 2.5rem 3rem 6rem;
    }

    .entry-content--incidents th:first-child,
    .entry-content--incidents td:first-child {
        padding-left: 1.35rem;
    }

    .entry-content--incidents th:last-child,
    .entry-content--incidents td:last-child {
        padding-right: 1.35rem;
    }
}


/* Custom-Startseite: Untermenüs */
.ffk-custom-frontpage .primary-navigation__list .sub-menu {
    margin: 0;
    padding: 0 0 0 1rem;
    list-style: none;
}

.ffk-custom-frontpage .primary-navigation__list .sub-menu a {
    padding: .45rem 0;
    font-size: .98rem;
    font-weight: 650;
    opacity: .78;
}

@media (min-width: 768px) {
    .ffk-custom-frontpage .primary-navigation__list > li {
        position: relative;
    }

    .ffk-custom-frontpage .primary-navigation__list .sub-menu {
        position: absolute;
        top: calc(100% + .65rem);
        left: 50%;
        min-width: 210px;
        padding: .55rem;
        border: 1px solid rgba(255,255,255,.09);
        border-radius: 14px;
        background: rgba(11,13,15,.97);
        box-shadow: 0 18px 45px rgba(0,0,0,.28);
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, -8px);
        transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    }

    .ffk-custom-frontpage .primary-navigation__list li:hover > .sub-menu,
    .ffk-custom-frontpage .primary-navigation__list li:focus-within > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }

    .ffk-custom-frontpage .primary-navigation__list .sub-menu a {
        display: block;
        padding: .62rem .75rem;
        border-radius: 9px;
        color: #fff;
        font-size: .82rem;
        white-space: nowrap;
        opacity: .84;
    }

    .ffk-custom-frontpage .primary-navigation__list .sub-menu a:hover,
    .ffk-custom-frontpage .primary-navigation__list .sub-menu a:focus-visible {
        background: rgba(255,255,255,.07);
        color: #fff;
        opacity: 1;
    }
}

/* =========================================================
   PREMIUM STARTSEITE V3
   ========================================================= */

.ffk-custom-frontpage .home-sections {
    --mouse-x: 50%;
    --mouse-y: 50%;
    position: relative;
    background: #0b0d0f;
}

.ffk-custom-frontpage .home-section {
    min-height: 100svh;
    min-height: 100dvh;
    padding:
        calc(var(--ffk-header-height) + 1.15rem)
        clamp(1.25rem, 5vw, 2rem)
        6.5rem;
    isolation: isolate;
}

.ffk-custom-frontpage .home-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,.05), transparent 24rem);
    opacity: .7;
}

.ffk-custom-frontpage .home-section__image {
    transform:
        translate3d(0, var(--parallax-y, 0px), 0)
        scale(1.035);
    will-change: transform;
    transition: transform 1.1s var(--ffk-ease), filter .8s ease;
}

.ffk-custom-frontpage .home-section.is-active .home-section__image {
    transform:
        translate3d(0, var(--parallax-y, 0px), 0)
        scale(1.085);
}

.ffk-custom-frontpage .home-section h1,
.ffk-custom-frontpage .home-section h2 {
    text-wrap: balance;
}

.ffk-custom-frontpage .home-section--team h2,
.ffk-custom-frontpage .home-section--youth h2,
.ffk-custom-frontpage .home-section--hero h1 {
    color: #fff;
    text-shadow: 0 8px 28px rgba(0,0,0,.2);
}

.ffk-custom-frontpage .section-copy {
    max-width: 38rem;
    font-weight: 560;
    line-height: 1.55;
}

/* Reveal animation */
.ffk-custom-frontpage .reveal-item {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    filter: blur(6px);
    transition:
        opacity .72s var(--ffk-ease),
        transform .72s var(--ffk-ease),
        filter .72s var(--ffk-ease);
}

.ffk-custom-frontpage .home-section.is-active .reveal-item {
    opacity: 1;
    transform: translate3d(0,0,0);
    filter: blur(0);
}

.ffk-custom-frontpage .home-section.is-active .reveal-item:nth-child(2) { transition-delay: .06s; }
.ffk-custom-frontpage .home-section.is-active .reveal-item:nth-child(3) { transition-delay: .12s; }
.ffk-custom-frontpage .home-section.is-active .reveal-item:nth-child(4) { transition-delay: .18s; }
.ffk-custom-frontpage .home-section.is-active .reveal-item:nth-child(5) { transition-delay: .24s; }

/* Ambient premium lighting */
.ffk-custom-frontpage .premium-orb {
    position: absolute;
    z-index: -1;
    width: 24rem;
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(54px);
    opacity: .34;
    pointer-events: none;
    animation: ffk-orb-drift 8s ease-in-out infinite alternate;
}

.ffk-custom-frontpage .premium-orb--hero {
    right: -11rem;
    bottom: 5%;
    background: rgba(227,6,19,.48);
}

.ffk-custom-frontpage .premium-orb--red {
    top: -8rem;
    right: -8rem;
    background: rgba(227,6,19,.22);
}

.ffk-custom-frontpage .premium-orb--warm {
    right: -8rem;
    top: 28%;
    background: rgba(255,126,0,.25);
}

.ffk-custom-frontpage .premium-orb--vehicle {
    top: 2%;
    left: 50%;
    width: 20rem;
    transform: translateX(-50%);
    background: rgba(227,6,19,.13);
}

.ffk-custom-frontpage .premium-orb--youth {
    left: -10rem;
    bottom: 4%;
    background: rgba(227,6,19,.38);
}

@keyframes ffk-orb-drift {
    from { translate: 0 -8px; scale: .94; }
    to   { translate: 12px 12px; scale: 1.08; }
}

/* Navigation arrows - always visible and premium */
.ffk-custom-frontpage .section-nav {
    position: absolute;
    z-index: 20;
    right: 0;
    bottom: max(1.25rem, env(safe-area-inset-bottom));
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    pointer-events: none;
}

.ffk-custom-frontpage .section-nav--hero {
    flex-direction: column;
    gap: .38rem;
}

.ffk-custom-frontpage .section-nav__label {
    color: rgba(255,255,255,.72);
    font-size: .62rem;
    font-weight: 850;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.ffk-custom-frontpage .section-arrow {
    pointer-events: auto;
    position: relative;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 999px;
    color: #fff;
    background: rgba(10,12,14,.32);
    box-shadow: 0 12px 30px rgba(0,0,0,.16);
    backdrop-filter: blur(16px) saturate(130%);
    -webkit-backdrop-filter: blur(16px) saturate(130%);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform .22s var(--ffk-ease), background .22s ease, border-color .22s ease;
}

.ffk-custom-frontpage .section-arrow::before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: inherit;
    opacity: .65;
}

.ffk-custom-frontpage .section-arrow svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ffk-custom-frontpage .section-arrow:active {
    transform: scale(.91);
}

.ffk-custom-frontpage .home-section[data-section-theme="light"] .section-arrow {
    color: #111315;
    border-color: rgba(17,19,21,.12);
    background: rgba(255,255,255,.78);
    box-shadow: 0 12px 32px rgba(15,17,19,.10);
}

.ffk-custom-frontpage .home-section--hero .section-arrow--down {
    animation: ffk-arrow-breathe 1.9s ease-in-out infinite;
}

@keyframes ffk-arrow-breathe {
    0%,100% { transform: translateY(0); box-shadow: 0 12px 30px rgba(0,0,0,.16); }
    50% { transform: translateY(5px); box-shadow: 0 18px 36px rgba(0,0,0,.24); }
}

/* Right-side premium progress rail */
.ffk-custom-frontpage .section-progress {
    position: fixed;
    z-index: 115;
    top: 50%;
    right: .55rem;
    transform: translateY(-50%);
    display: grid;
    gap: .42rem;
    padding: .55rem .38rem;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(10,12,14,.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.ffk-custom-frontpage .section-progress__dot {
    width: 5px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    overflow: hidden;
    transition: height .32s var(--ffk-ease), background .32s ease, width .32s ease;
}

.ffk-custom-frontpage .section-progress__dot span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

.ffk-custom-frontpage .section-progress__dot.is-active {
    width: 6px;
    height: 48px;
    background: var(--ffk-red);
    box-shadow: 0 0 18px rgba(227,6,19,.42);
}

/* HERO */
.ffk-custom-frontpage .home-section--hero {
    color: #fff;
}

.ffk-custom-frontpage .home-section__shade--hero {
    background:
        linear-gradient(180deg, rgba(5,7,9,.08) 0%, rgba(5,7,9,.08) 36%, rgba(5,7,9,.72) 100%),
        linear-gradient(90deg, rgba(5,7,9,.25), transparent 68%);
}

.ffk-custom-frontpage .home-section__content--hero {
    align-self: flex-end;
    margin-bottom: 5.1rem;
}

.ffk-custom-frontpage .hero-line {
    position: absolute;
    z-index: 2;
    left: 1.25rem;
    bottom: 10.4rem;
    width: 54px;
    height: 3px;
    border-radius: 999px;
    background: var(--ffk-red);
    box-shadow: 0 0 18px rgba(227,6,19,.5);
}

.ffk-custom-frontpage .hero-badge {
    position: relative;
    overflow: hidden;
}

.ffk-custom-frontpage .hero-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 22%, rgba(255,255,255,.11) 47%, transparent 72%);
    transform: translateX(-110%);
    animation: ffk-badge-sheen 4.5s ease-in-out infinite;
}

.ffk-custom-frontpage .hero-badge__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff2834;
    box-shadow: 0 0 0 0 rgba(255,40,52,.55);
    animation: ffk-pulse 2s infinite;
}

@keyframes ffk-badge-sheen {
    0%,70% { transform: translateX(-110%); }
    100% { transform: translateX(120%); }
}

@keyframes ffk-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,40,52,.55); }
    70% { box-shadow: 0 0 0 10px rgba(255,40,52,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,40,52,0); }
}

/* LAST 3 INCIDENTS */
.ffk-custom-frontpage .home-section--incidents {
    color: #111315;
    background:
        radial-gradient(circle at 88% 8%, rgba(227,6,19,.12), transparent 32%),
        linear-gradient(180deg, #f8f7f4, #efefec);
}

.ffk-custom-frontpage .home-section__content--incidents {
    width: min(700px, 100%);
    margin-top: -.2rem;
}

.ffk-custom-frontpage .section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ffk-custom-frontpage .section-heading h2 {
    margin-bottom: 0;
}

.ffk-custom-frontpage .live-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    margin-bottom: .22rem;
    padding: .42rem .62rem;
    border: 1px solid rgba(227,6,19,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.64);
    color: #9b1118;
    font-size: .64rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.ffk-custom-frontpage .live-pill i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ffk-red);
    box-shadow: 0 0 0 5px rgba(227,6,19,.09);
}

.ffk-custom-frontpage .incident-stack {
    display: grid;
    gap: .62rem;
    margin-bottom: 1rem;
}

.ffk-custom-frontpage .incident-stack .incident-card {
    position: relative;
    display: grid;
    grid-template-columns: 3.45rem minmax(0,1fr) 1.65rem;
    align-items: center;
    gap: .8rem;
    margin: 0;
    padding: .82rem .9rem .82rem 1rem;
    min-height: 92px;
    border: 1px solid rgba(17,19,21,.065);
    border-radius: 20px;
    color: #111315;
    background: rgba(255,255,255,.80);
    box-shadow: 0 13px 34px rgba(20,22,24,.075);
    text-decoration: none;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform .3s var(--ffk-ease), box-shadow .3s ease, border-color .3s ease;
}

.ffk-custom-frontpage .incident-stack .incident-card::before {
    width: 4px;
    background: linear-gradient(180deg, #ff2530, #a90009);
}

.ffk-custom-frontpage .incident-stack .incident-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,.52), transparent);
    transform: translateX(-115%);
    transition: transform .7s var(--ffk-ease);
}

.ffk-custom-frontpage .incident-stack .incident-card:active {
    transform: scale(.985);
}

.ffk-custom-frontpage .incident-card__number {
    display: grid;
    justify-items: center;
    align-content: center;
    min-height: 58px;
    border-right: 1px solid rgba(17,19,21,.08);
}

.ffk-custom-frontpage .incident-card__number span {
    color: var(--ffk-muted);
    font-size: .53rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ffk-custom-frontpage .incident-card__number strong {
    color: var(--ffk-red);
    font-size: 1.55rem;
    line-height: 1;
    letter-spacing: -.05em;
}

.ffk-custom-frontpage .incident-card__body {
    min-width: 0;
}

.ffk-custom-frontpage .incident-card__topline {
    display: flex;
    align-items: center;
    gap: .45rem;
    min-width: 0;
}

.ffk-custom-frontpage .incident-card__type {
    padding: .24rem .48rem;
    font-size: .57rem;
}

.ffk-custom-frontpage .incident-card__topline time {
    color: #777c81;
    font-size: .61rem;
    font-weight: 700;
    white-space: nowrap;
}

.ffk-custom-frontpage .incident-card h3 {
    margin: .28rem 0 0;
    color: #101214;
    font-size: 1.04rem;
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -.025em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ffk-custom-frontpage .incident-card p {
    margin: .22rem 0 0 !important;
    color: #666b70;
    font-size: .72rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ffk-custom-frontpage .incident-card__arrow {
    color: var(--ffk-red);
    font-size: 1.18rem;
    transform: translate(-2px, 2px);
}

.ffk-custom-frontpage .home-section--incidents .text-link {
    font-size: .95rem;
}

/* TEAM - brighter, warmer, more premium */
.ffk-custom-frontpage .home-section__shade--team {
    background:
        linear-gradient(180deg, rgba(5,7,9,.12) 0%, rgba(5,7,9,.18) 40%, rgba(5,7,9,.78) 100%),
        linear-gradient(90deg, rgba(5,7,9,.56) 0%, rgba(5,7,9,.12) 78%);
}

.ffk-custom-frontpage .home-section__image--team {
    background-position: 54% center;
    filter: saturate(1.06) contrast(1.02) brightness(1.08);
}

.ffk-custom-frontpage .home-section__content--team {
    align-self: flex-end;
    margin-bottom: 4.4rem;
}

.ffk-custom-frontpage .fact-strip {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: .4rem;
    width: min(100%, 29rem);
    margin: .25rem 0 1.2rem;
    padding: .7rem;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 20px;
    background: rgba(8,10,12,.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ffk-custom-frontpage .fact-strip span {
    display: grid;
    justify-items: center;
    gap: .08rem;
    padding: .25rem .15rem;
    border-right: 1px solid rgba(255,255,255,.12);
}

.ffk-custom-frontpage .fact-strip span:last-child {
    border-right: 0;
}

.ffk-custom-frontpage .fact-strip strong {
    color: #fff;
    font-size: 1.12rem;
    letter-spacing: -.03em;
}

.ffk-custom-frontpage .fact-strip small {
    color: rgba(255,255,255,.65);
    font-size: .56rem;
    font-weight: 760;
    text-transform: uppercase;
    letter-spacing: .07em;
}

/* VEHICLE STAGE */
.ffk-custom-frontpage .home-section--vehicles {
    background:
        radial-gradient(circle at 50% 21%, rgba(227,6,19,.095), transparent 31%),
        linear-gradient(180deg, #ffffff 0%, #f7f6f3 50%, #efefec 100%);
}

.ffk-custom-frontpage .vehicle-stage {
    position: absolute;
    z-index: 2;
    top: 6.5%;
    right: 0;
    left: 0;
    height: 49%;
    display: grid;
    place-items: center;
    perspective: 900px;
    transform: none;
}

.ffk-custom-frontpage .vehicle-stage__ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(227,6,19,.12);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    animation: ffk-ring 6s linear infinite;
}

.ffk-custom-frontpage .vehicle-stage__ring--1 {
    width: min(84vw, 480px);
    aspect-ratio: 1;
}

.ffk-custom-frontpage .vehicle-stage__ring--2 {
    width: min(67vw, 380px);
    aspect-ratio: 1;
    border-style: dashed;
    animation-direction: reverse;
    animation-duration: 9s;
}

.ffk-custom-frontpage .vehicle-stage__floor {
    position: absolute;
    left: 50%;
    bottom: 6%;
    width: min(72vw, 430px);
    height: 26px;
    border-radius: 50%;
    background: rgba(20,22,24,.12);
    filter: blur(14px);
    transform: translateX(-50%);
}

.ffk-custom-frontpage .vehicle-stage img {
    position: relative;
    z-index: 2;
    width: min(78vw, 460px);
    height: 100%;
    max-width: none;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 24px 24px rgba(0,0,0,.18));
    transform: translate3d(0,8px,0) scale(.94);
    transition: transform 1s var(--ffk-ease), filter 1s ease;
}

.ffk-custom-frontpage .home-section--vehicles.is-active .vehicle-stage img {
    transform: translate3d(0,0,0) scale(1);
    filter: drop-shadow(0 30px 30px rgba(0,0,0,.20));
}

@keyframes ffk-ring {
    to { transform: translate(-50%,-50%) rotate(360deg); }
}

.ffk-custom-frontpage .home-section__content--vehicle {
    position: relative;
    z-index: 4;
    align-self: flex-end;
    margin-bottom: 4.2rem;
}

.ffk-custom-frontpage .home-section--vehicles h2 {
    margin-bottom: .75rem;
}

/* YOUTH - friendlier and more layered */
.ffk-custom-frontpage .home-section__image--youth {
    background-position: 57% center;
    filter: saturate(1.08) brightness(1.04);
}

.ffk-custom-frontpage .home-section__shade--youth {
    background:
        linear-gradient(180deg, rgba(6,8,10,.08) 0%, rgba(6,8,10,.18) 42%, rgba(6,8,10,.83) 100%),
        linear-gradient(90deg, rgba(160,0,10,.24), transparent 66%);
}

.ffk-custom-frontpage .home-section__content--youth {
    align-self: flex-end;
    margin-bottom: 4.7rem;
}

.ffk-custom-frontpage .home-section__content--youth::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -1.15rem -.8rem -1rem;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(8,10,12,.50), rgba(8,10,12,.16));
    box-shadow: 0 20px 52px rgba(0,0,0,.20);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ffk-custom-frontpage .youth-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin: -.25rem 0 1.1rem;
}

.ffk-custom-frontpage .youth-tags span {
    padding: .38rem .62rem;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.08);
    font-size: .67rem;
    font-weight: 780;
    letter-spacing: .04em;
    backdrop-filter: blur(8px);
}

/* buttons */
.ffk-custom-frontpage .section-actions {
    gap: .65rem;
}

.ffk-custom-frontpage .button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 52px;
    border-radius: 999px;
    transition: transform .25s var(--ffk-ease), box-shadow .25s ease, background .25s ease;
}

.ffk-custom-frontpage .button-link span {
    transition: transform .25s var(--ffk-ease);
}

.ffk-custom-frontpage .button-link:active {
    transform: scale(.97);
}

.ffk-custom-frontpage .text-link {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-weight: 820;
    text-decoration: none;
}

.ffk-custom-frontpage .text-link span {
    color: var(--ffk-red);
    font-size: 1.25em;
    transition: transform .25s var(--ffk-ease);
}

/* mobile optimization */
@media (max-width: 767px) {
    body.ffk-custom-frontpage {
        overscroll-behavior-y: contain;
    }

    .ffk-custom-frontpage .home-sections {
        height: 100svh;
        height: 100dvh;
        overflow-y: auto;
        scroll-snap-type: y mandatory;
        scrollbar-width: none;
    }

    .ffk-custom-frontpage .home-sections::-webkit-scrollbar {
        display: none;
    }

    .ffk-custom-frontpage .home-section {
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .ffk-custom-frontpage .home-section h1 {
        font-size: clamp(3.15rem, 14vw, 5.25rem);
    }

    .ffk-custom-frontpage .home-section h2 {
        font-size: clamp(2.65rem, 11.4vw, 4.45rem);
    }

    .ffk-custom-frontpage .home-section--incidents h2 {
        font-size: clamp(2.5rem, 10.6vw, 4rem);
    }

    .ffk-custom-frontpage .home-section--incidents {
        padding-top: calc(var(--ffk-header-height) + .8rem);
    }

    .ffk-custom-frontpage .home-section--incidents .eyebrow {
        margin-bottom: .38rem !important;
    }

    .ffk-custom-frontpage .home-section--incidents .section-kicker {
        top: 3%;
    }

    .ffk-custom-frontpage .home-section--team .section-copy,
    .ffk-custom-frontpage .home-section--youth .section-copy {
        font-size: clamp(.98rem, 4vw, 1.12rem);
        margin-bottom: 1rem;
    }

    .ffk-custom-frontpage .home-section--vehicles .section-copy {
        margin-bottom: 1rem;
        font-size: .98rem;
    }

    .ffk-custom-frontpage .section-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .ffk-custom-frontpage .button-link {
        padding-inline: .75rem;
        font-size: .9rem;
    }

    .ffk-custom-frontpage .home-section--vehicles .eyebrow {
        margin-bottom: .48rem !important;
    }

    .ffk-custom-frontpage .home-section--vehicles h2 {
        font-size: clamp(2.55rem, 10.8vw, 4rem);
    }

    .ffk-custom-frontpage .home-section--youth h2 {
        font-size: clamp(3.1rem, 13vw, 4.8rem);
    }
}

/* richer desktop hover */
@media (min-width: 768px) {
    .ffk-custom-frontpage .section-progress {
        right: 1.35rem;
    }

    .ffk-custom-frontpage .section-progress__dot {
        height: 18px;
    }

    .ffk-custom-frontpage .section-progress__dot.is-active {
        height: 42px;
    }

    .ffk-custom-frontpage .incident-stack {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .ffk-custom-frontpage .incident-stack .incident-card {
        min-height: 220px;
        grid-template-columns: 1fr 2rem;
        grid-template-rows: auto 1fr;
        align-content: space-between;
        padding: 1.25rem;
    }

    .ffk-custom-frontpage .incident-card__number {
        grid-column: 1 / -1;
        justify-items: start;
        border-right: 0;
        border-bottom: 1px solid rgba(17,19,21,.08);
        padding-bottom: .8rem;
    }

    .ffk-custom-frontpage .incident-card__number strong {
        font-size: 2.35rem;
    }

    .ffk-custom-frontpage .incident-stack .incident-card:hover {
        transform: translateY(-8px) rotateX(1deg);
        box-shadow: 0 24px 52px rgba(20,22,24,.13);
        border-color: rgba(227,6,19,.20);
    }

    .ffk-custom-frontpage .incident-stack .incident-card:hover::after {
        transform: translateX(115%);
    }

    .ffk-custom-frontpage .button-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(0,0,0,.16);
    }

    .ffk-custom-frontpage .button-link:hover span,
    .ffk-custom-frontpage .text-link:hover span {
        transform: translateX(5px);
    }

    .ffk-custom-frontpage .section-arrow:hover {
        transform: translateY(-3px);
        background: rgba(227,6,19,.75);
        border-color: rgba(255,255,255,.35);
    }

    .ffk-custom-frontpage .home-section--incidents .section-nav,
    .ffk-custom-frontpage .home-section--team .section-nav,
    .ffk-custom-frontpage .home-section--vehicles .section-nav,
    .ffk-custom-frontpage .home-section--youth .section-nav {
        display: flex;
    }

    .ffk-custom-frontpage .home-section--incidents {
        min-height: 86vh;
    }

    .ffk-custom-frontpage .home-section__content--incidents {
        width: min(1180px,100%);
    }

    .ffk-custom-frontpage .vehicle-stage {
        top: 5%;
        right: 5%;
        bottom: 6%;
        left: 50%;
        height: auto;
    }

    .ffk-custom-frontpage .vehicle-stage img {
        width: min(43vw, 720px);
    }

    .ffk-custom-frontpage .home-section__content--vehicle {
        align-self: center;
        margin-bottom: 0;
    }
}

/* Modern progressive enhancement */
@supports (animation-timeline: view()) {
    @media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
        .ffk-custom-frontpage .home-section__image {
            animation: ffk-view-pan linear both;
            animation-timeline: view();
            animation-range: entry 0% exit 100%;
        }

        @keyframes ffk-view-pan {
            from { transform: translate3d(0,-18px,0) scale(1.06); }
            to   { transform: translate3d(0,18px,0) scale(1.11); }
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    .ffk-custom-frontpage .premium-orb,
    .ffk-custom-frontpage .hero-badge::after,
    .ffk-custom-frontpage .hero-badge__pulse,
    .ffk-custom-frontpage .home-section--hero .section-arrow--down,
    .ffk-custom-frontpage .vehicle-stage__ring {
        animation: none !important;
    }

    .ffk-custom-frontpage .reveal-item {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}
