/* PALORAH — Kraftwerk Fitness */
/* styles.css */

/* ===================== TOKENS ===================== */
:root {
    --color-bg:           #0D0D0D;
    --color-surface:      #141414;
    --color-surface-2:    #1C1C1C;
    --color-accent:       #F04E00;
    --color-accent-light: #FF6B35;
    --color-text:         #FFFFFF;
    --color-text-muted:   #888888;
    --color-border:       rgba(255,255,255,0.07);
    --color-border-light: rgba(255,255,255,0.12);

    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body:    'Barlow', sans-serif;

    --nav-height:      72px;
    --section-padding: clamp(5rem, 9vw, 8rem);

    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
}

/* ===================== RESET ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); scrollbar-gutter: stable; }
body { font-family: var(--font-body); color: var(--color-text); background: var(--color-bg); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
[hidden] { display: none !important; }

/* ===================== ACCESSIBILITY ===================== */
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--color-accent); color: #fff; padding: 0.5rem 1rem; z-index: 10000; text-decoration: none; }
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }
a, button { min-height: 44px; display: inline-flex; align-items: center; touch-action: manipulation; }
p a, li a, .nav__phone { display: inline; min-height: unset; }

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
@media (max-width: 767px) {
    .reveal { animation: none !important; opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===================== SCROLL REVEAL — slide from left ===================== */
.reveal {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal--right {
    transform: translateX(28px);
}

/* ===================== LAYOUT ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: var(--section-padding) 0; }
.section--dark    { background: var(--color-surface); }
.section--darker  { background: var(--color-surface-2); }

.label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--color-accent); margin-bottom: 1rem;
}
.heading-xl {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800; text-transform: uppercase;
    line-height: 1.0; letter-spacing: -0.01em;
    color: var(--color-text);
}
.heading-xl span { color: var(--color-accent); }
.body-text { color: var(--color-text-muted); line-height: 1.75; font-size: 1rem; }

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.9rem 2rem; font-family: var(--font-heading);
    font-size: 0.95rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    text-decoration: none; border: 2px solid transparent;
    min-height: 44px; white-space: nowrap;
    transition: background var(--transition-fast), color var(--transition-fast),
                border-color var(--transition-fast), transform var(--transition-fast);
    border-radius: 0; /* angular — no rounding */
}
.btn--orange { background: var(--color-accent); color: #fff; }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--outline-dark { background: transparent; color: var(--color-text-muted); border-color: var(--color-border-light); }
@media (hover: hover) {
    .btn--orange:hover { background: var(--color-accent-light); transform: translateY(-2px); }
    .btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }
    .btn--outline-dark:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
}

/* ===================== NAV — always dark, no scroll state ===================== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--nav-height);
    background: rgba(10,10,10,0.97);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(8px);
}
.nav__inner {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--nav-height); max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    gap: 2rem;
}
.nav__wordmark {
    text-decoration: none; min-height: unset; flex-shrink: 0;
    display: flex; flex-direction: column; line-height: 1;
}
.nav__wordmark-top {
    font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.04em; color: #fff;
}
.nav__wordmark-sub {
    font-family: var(--font-heading); font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-accent);
}
.nav__links {
    display: flex; align-items: center; gap: 0;
    flex: 1; justify-content: center;
}
.nav__links a {
    padding: 0 1.1rem; font-family: var(--font-heading); font-size: 0.9rem;
    font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; color: var(--color-text-muted); min-height: unset;
    transition: color var(--transition-fast);
    border-right: 1px solid var(--color-border);
}
.nav__links li:first-child a { border-left: 1px solid var(--color-border); }
@media (hover: hover) { .nav__links a:hover { color: var(--color-text); } }
.nav__right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav__phone {
    font-size: 0.82rem; color: var(--color-text-muted); font-weight: 500;
    text-decoration: none; letter-spacing: 0.02em;
    transition: color var(--transition-fast);
}
@media (hover: hover) { .nav__phone:hover { color: #fff; } }
.nav__cta {
    background: var(--color-accent); color: #fff;
    padding: 0.55rem 1.3rem; font-family: var(--font-heading);
    font-size: 0.82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    text-decoration: none; min-height: unset;
    transition: background var(--transition-fast);
}
@media (hover: hover) { .nav__cta:hover { background: var(--color-accent-light); } }
.nav__burger {
    display: none; flex-direction: column; gap: 5px;
    width: 44px; height: 44px; justify-content: center; align-items: center;
}
.nav__burger span {
    display: block; width: 22px; height: 2px; background: #fff;
    transition: transform var(--transition-base), opacity var(--transition-base);
}
@media (max-width: 960px) {
    .nav__links, .nav__phone { display: none; }
    .nav__burger { display: flex; }
    .nav__links.is-open {
        display: flex; flex-direction: column; align-items: flex-start;
        position: fixed; top: var(--nav-height); left: 0; right: 0;
        background: #111; padding: 1.5rem 2rem; gap: 0;
        border-top: 1px solid var(--color-border);
        box-shadow: 0 8px 32px rgba(0,0,0,0.5);
        z-index: 999;
    }
    .nav__links.is-open a {
        color: var(--color-text-muted); width: 100%;
        padding: 0.85rem 0; border: none; border-bottom: 1px solid var(--color-border);
        min-height: 44px; font-size: 1rem;
    }
    .nav__links li:first-child a { border-left: none; }
}

/* ===================== HERO — split screen ===================== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100svh;
    padding-top: var(--nav-height);
}
.hero__left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 5rem 4rem 5rem 2rem;
    max-width: 640px; margin-left: auto;
    position: relative; z-index: 1;
}
.hero__left::after {
    content: '';
    position: absolute; top: 0; right: -50px; bottom: 0;
    width: 100px;
    background: var(--color-bg);
    clip-path: polygon(0 0, 40% 0, 100% 100%, 0 100%);
    z-index: 2;
}
.hero__eyebrow {
    display: flex; align-items: center; gap: 0.75rem;
    font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--color-accent); margin-bottom: 1.5rem;
}
.hero__eyebrow::before {
    content: ''; display: block; width: 32px; height: 2px; background: var(--color-accent);
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(4.5rem, 9vw, 8.5rem);
    font-weight: 800; line-height: 0.88;
    text-transform: uppercase; letter-spacing: -0.02em;
    color: #fff; margin-bottom: 1.75rem;
}
.hero h1 em { font-style: normal; color: var(--color-accent); }
.hero__sub {
    font-size: 1.05rem; color: var(--color-text-muted);
    line-height: 1.7; max-width: 44ch; margin-bottom: 2.5rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__right {
    position: relative; overflow: hidden;
}
.hero__right img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    object-position: center top;
}
.hero__right::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(13,13,13,0.4) 0%, transparent 40%);
    z-index: 1;
}
.hero__scroll {
    position: absolute; bottom: 2rem; right: 3rem;
    display: flex; align-items: center; gap: 0.75rem;
    font-family: var(--font-heading); font-size: 0.72rem;
    font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); writing-mode: vertical-rl;
    z-index: 3;
}
.hero__scroll-line {
    width: 1px; height: 50px; background: rgba(255,255,255,0.2);
    position: relative; overflow: hidden;
}
.hero__scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0;
    width: 100%; height: 100%; background: var(--color-accent);
    animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
    0%   { top: -100%; }
    100% { top: 100%; }
}
@media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero__left { padding: 3rem 1.5rem; max-width: 100%; margin: 0; }
    .hero__left::after { display: none; }
    .hero__right { height: 55vw; position: relative; }
    .hero__right img { position: absolute; }
    .hero h1 { font-size: clamp(3.5rem, 12vw, 5rem); }
    .hero__scroll { display: none; }
}

/* ===================== STATS STRIP ===================== */
.stats-strip {
    background: var(--color-accent);
    padding: 0;
}
.stats-strip__inner {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid rgba(255,255,255,0.2);
}
.stat-item {
    padding: 1.5rem 2rem; text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-num-wrap {
    display: flex; align-items: baseline; justify-content: center; gap: 0.15rem;
}
.stat-num {
    font-family: var(--font-heading); font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 800; color: #fff; line-height: 1;
}
.stat-suffix { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: #fff; }
.stat-label {
    display: block; margin-top: 0.25rem;
    font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75);
}
@media (max-width: 700px) {
    .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item { padding: 1.75rem 1rem; }
}

/* ===================== ANGEBOTE ===================== */
.angebote { padding: var(--section-padding) 0; background: var(--color-surface); }
.angebote__header { margin-bottom: 2.5rem; }
.angebote__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 380px 380px;
    gap: 3px;
}
.angebot-card {
    position: relative; overflow: hidden;
    cursor: default;
}
.angebot-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s ease;
    will-change: transform;
}
@media (hover: hover) { .angebot-card:hover img { transform: scale(1.06); } }
.angebot-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 2rem; transition: background var(--transition-base);
}
@media (hover: hover) {
    .angebot-card:hover .angebot-card__overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.35) 65%, rgba(0,0,0,0.1) 100%);
    }
}
.angebot-card--wide { grid-column: span 2; }
.angebot-card__tag {
    font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-accent);
    margin-bottom: 0.4rem;
}
.angebot-card__title {
    font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800; text-transform: uppercase; line-height: 1; color: #fff;
    margin-bottom: 0.6rem;
}
.angebot-card__desc {
    font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.5;
    max-width: 44ch; margin-bottom: 1rem;
}
.angebot-card__link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-accent);
    text-decoration: none; min-height: unset; min-width: unset;
    transition: gap var(--transition-fast);
}
@media (hover: hover) { .angebot-card:hover .angebot-card__link { gap: 0.7rem; } }
@media (max-width: 768px) {
    .angebote__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 260px 260px;
    }
    .angebot-card--wide { grid-column: span 2; }
}
@media (max-width: 500px) {
    .angebote__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .angebot-card { height: 280px; }
    .angebot-card--wide { grid-column: span 1; }
}

/* ===================== MISSION / ÜBER UNS ===================== */
.mission { padding: var(--section-padding) 0; position: relative; overflow: hidden; }
.mission__content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.mission__image-wrap { position: relative; }
.mission__img {
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
    filter: grayscale(20%);
}
.mission__accent-box {
    position: absolute; bottom: -2rem; right: -2rem;
    background: var(--color-accent); padding: 1.75rem 2rem;
    font-family: var(--font-heading);
}
.mission__accent-box strong {
    display: block; font-size: 2.5rem; font-weight: 800; color: #fff; line-height: 1;
}
.mission__accent-box span {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(255,255,255,0.8);
}
.mission__text { display: flex; flex-direction: column; gap: 1.25rem; }
.mission__text .body-text { margin-bottom: 0; }
.mission__values { display: flex; flex-direction: column; gap: 0.75rem; margin: 0.5rem 0; }
.mission__value {
    display: flex; align-items: center; gap: 1rem;
    font-family: var(--font-heading); font-size: 1rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #fff;
}
.mission__value::before {
    content: ''; display: block; width: 20px; height: 3px;
    background: var(--color-accent); flex-shrink: 0;
}
@media (max-width: 800px) {
    .mission__content { grid-template-columns: 1fr; gap: 3rem; }
    .mission__accent-box { bottom: 1rem; right: 1rem; }
}

/* ===================== TRAINER ===================== */
.trainer { padding: var(--section-padding) 0; background: var(--color-surface); }
.trainer__header { margin-bottom: 2.5rem; }
.trainer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.trainer-card { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: default; }
.trainer-card img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease; filter: grayscale(30%);
}
@media (hover: hover) {
    .trainer-card:hover img { transform: scale(1.04); filter: grayscale(0%); }
}
.trainer-card__overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
}
.trainer-card__name {
    font-family: var(--font-heading); font-size: 1.35rem; font-weight: 800;
    text-transform: uppercase; color: #fff; line-height: 1; margin-bottom: 0.3rem;
}
.trainer-card__accent {
    display: block; width: 24px; height: 3px;
    background: var(--color-accent); margin-bottom: 0.5rem;
}
.trainer-card__spec {
    font-size: 0.8rem; color: rgba(255,255,255,0.6);
    font-family: var(--font-heading); letter-spacing: 0.05em; text-transform: uppercase;
    font-weight: 600;
}
@media (max-width: 768px) {
    .trainer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .trainer__grid { grid-template-columns: 1fr 1fr; gap: 2px; }
}

/* ===================== PREISE ===================== */
.preise { padding: var(--section-padding) 0; }
.preise__header { margin-bottom: 3rem; }
.preise__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--color-border); }
.preis-card {
    background: var(--color-surface); padding: 2.5rem;
    display: flex; flex-direction: column; gap: 0;
    position: relative; overflow: hidden;
}
.preis-card--featured { background: var(--color-surface-2); }
.preis-card--featured::before {
    content: 'BELIEBT';
    position: absolute; top: 1.5rem; right: -2rem;
    background: var(--color-accent); color: #fff; padding: 0.3rem 3rem;
    font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.12em; transform: rotate(45deg); transform-origin: center;
}
.preis-card__name {
    font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-accent);
    margin-bottom: 1rem;
}
.preis-card__price {
    display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.5rem;
}
.preis-card__price-num {
    font-family: var(--font-heading); font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 800; color: #fff; line-height: 1;
}
.preis-card__price-unit {
    font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
    color: var(--color-text-muted); text-transform: uppercase;
}
.preis-card__sub { font-size: 0.82rem; color: var(--color-text-muted); margin-bottom: 2rem; }
.preis-card__divider {
    height: 1px; background: var(--color-border); margin-bottom: 1.75rem;
}
.preis-card__features { display: flex; flex-direction: column; gap: 0.75rem; flex: 1; margin-bottom: 2rem; }
.preis-card__feature {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.4;
}
.preis-card__feature::before {
    content: '—'; color: var(--color-accent); font-weight: 700; flex-shrink: 0;
}
.preis-card__feature--dim { opacity: 0.4; text-decoration: line-through; }
.preis-card .btn { width: 100%; justify-content: center; }
@media (max-width: 768px) { .preise__grid { grid-template-columns: 1fr; background: transparent; gap: 1rem; } }

/* ===================== GALERIE ===================== */
.galerie { padding: var(--section-padding) 0; background: var(--color-surface); }
.galerie__header { margin-bottom: 2.5rem; }
.galerie__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 3px;
}
.galerie__item { overflow: hidden; position: relative; }
.galerie__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
@media (hover: hover) { .galerie__item:hover img { transform: scale(1.06); } }
.galerie__item--tall { grid-row: span 2; }
.galerie__item--wide { grid-column: span 2; }
@media (max-width: 700px) {
    .galerie__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .galerie__item { height: 200px; }
    .galerie__item--tall { grid-row: span 1; }
    .galerie__item--wide { grid-column: span 2; height: 200px; }
}

/* ===================== KONTAKT ===================== */
.kontakt { padding: var(--section-padding) 0; }
.kontakt__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }
.kontakt__form { display: flex; flex-direction: column; gap: 0; }
.form__group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__label { font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); }
.form__input, .form__select, .form__textarea {
    width: 100%; padding: 0.85rem 1rem; font-size: 0.95rem; font-family: var(--font-body);
    background: var(--color-surface); color: var(--color-text);
    border: 1px solid var(--color-border); border-radius: 0;
    outline: none; transition: border-color var(--transition-fast);
}
.form__input::placeholder, .form__textarea::placeholder { color: var(--color-text-muted); }
.form__input:focus, .form__select:focus, .form__textarea:focus { border-color: var(--color-accent); }
.form__select option { background: var(--color-surface); }
.form__textarea { resize: vertical; min-height: 130px; }
.form__submit { width: 100%; justify-content: center; margin-top: 0.5rem; font-size: 1rem; padding: 1.1rem; }
.form__privacy { font-size: 0.78rem; color: var(--color-text-muted); margin-top: 0.85rem; line-height: 1.5; }
.form__privacy a { color: var(--color-accent); display: inline; min-height: unset; }

.kontakt__info { display: flex; flex-direction: column; gap: 2.5rem; }
.kontakt__info-block {}
.kontakt__info-label {
    font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-accent);
    margin-bottom: 0.5rem; display: block;
}
.kontakt__info-val { color: var(--color-text-muted); line-height: 1.8; font-size: 0.95rem; }
.kontakt__info-val a { color: var(--color-text); display: inline; min-height: unset; text-decoration: none; }
@media (hover: hover) { .kontakt__info-val a:hover { color: var(--color-accent); } }
.kontakt__hours {}
.hours-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 0.65rem 0; border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem; color: var(--color-text-muted);
}
.hours-row:last-child { border-bottom: none; }
.hours-row strong { color: var(--color-text); font-weight: 500; }
@media (max-width: 900px) { .kontakt__grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

/* ===================== FOOTER ===================== */
.footer-cta {
    background: var(--color-accent); padding: 2.5rem 0; text-align: center;
}
.footer-cta h2 {
    font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800; text-transform: uppercase; color: #fff;
    letter-spacing: 0.02em; margin-bottom: 1.25rem;
}
.footer {
    background: #080808; padding: 4rem 0 0;
    border-top: 1px solid var(--color-border);
}
.footer__grid {
    display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 4rem;
    padding-bottom: 3rem; border-bottom: 1px solid var(--color-border);
    margin-bottom: 2rem;
}
.footer__wordmark {
    font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.04em; color: #fff;
    line-height: 1; margin-bottom: 0.25rem;
}
.footer__wordmark span { color: var(--color-accent); display: block; font-size: 0.7rem; letter-spacing: 0.2em; }
.footer__tagline { font-size: 0.88rem; color: var(--color-text-muted); margin: 1rem 0 1.5rem; }
.footer__col-title {
    font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col ul a {
    font-size: 0.9rem; color: var(--color-text-muted); text-decoration: none;
    min-height: unset; transition: color var(--transition-fast);
}
@media (hover: hover) { .footer__col ul a:hover { color: var(--color-text); } }
.footer__address { font-size: 0.9rem; color: var(--color-text-muted); line-height: 2; }
.footer__address a { color: var(--color-text-muted); text-decoration: none; display: inline; min-height: unset; }
@media (hover: hover) { .footer__address a:hover { color: var(--color-accent); } }
.footer__bottom {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem; padding-bottom: 2rem;
}
.footer__copy { font-size: 0.82rem; color: var(--color-text-muted); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer__legal a {
    font-size: 0.82rem; color: var(--color-text-muted); text-decoration: none;
    min-height: unset; transition: color var(--transition-fast);
}
@media (hover: hover) { .footer__legal a:hover { color: #fff; } }
@media (max-width: 768px) {
    .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
    position: fixed; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
    max-width: 520px; z-index: 9000;
    background: #1a1a1a; color: #fff;
    border: 1px solid var(--color-border-light);
    padding: 1.5rem; box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.cookie-banner p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 1.25rem; }
.cookie-banner p a { color: var(--color-accent); display: inline; min-height: unset; }
.cookie-banner__btns { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cookie-banner__btns button { flex: 1; min-width: 120px; justify-content: center; font-size: 0.82rem; padding: 0.65rem 1rem; }

/* ===================== COOKIE MODAL ===================== */
.cookie-modal-overlay {
    position: fixed; inset: 0; z-index: 9500;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.cookie-modal {
    background: #1a1a1a; border: 1px solid var(--color-border-light);
    max-width: 600px; width: 100%; max-height: 90vh; overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0,0,0,0.7);
}
.cookie-modal__header {
    padding: 1.75rem 2rem 1rem; border-bottom: 1px solid var(--color-border);
    position: sticky; top: 0; background: #1a1a1a; z-index: 1;
}
.cookie-modal__header h2 {
    font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.05em; color: #fff;
}
.cookie-modal__header p { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 0.35rem; }
.cookie-modal__close {
    position: absolute; top: 1.25rem; right: 1.25rem;
    width: 32px; height: 32px; min-height: unset;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-text-muted); font-size: 1.3rem;
}
.cookie-modal__body { padding: 1.25rem 2rem; }
.cookie-category { padding: 1rem 0; border-bottom: 1px solid var(--color-border); }
.cookie-category:last-child { border-bottom: none; }
.cookie-category__header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.4rem; }
.cookie-category__name { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; }
.cookie-toggle { position: relative; width: 40px; height: 22px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle__slider { position: absolute; inset: 0; background: #333; border-radius: 11px; cursor: pointer; transition: background var(--transition-fast); }
.cookie-toggle input:checked + .cookie-toggle__slider { background: var(--color-accent); }
.cookie-toggle__slider::after { content: ''; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; background: #fff; border-radius: 50%; transition: transform var(--transition-fast); }
.cookie-toggle input:checked + .cookie-toggle__slider::after { transform: translateX(18px); }
.cookie-toggle--fixed .cookie-toggle__slider { background: var(--color-accent); opacity: 0.7; cursor: default; }
.cookie-category__desc { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 0.5rem; }
.cookie-category__toggle-details { font-size: 0.78rem; color: var(--color-accent); font-weight: 600; background: none; border: none; padding: 0; cursor: pointer; min-height: unset; text-decoration: underline; text-underline-offset: 3px; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.05em; }
.cookie-table-wrap { margin-top: 0.75rem; overflow-x: auto; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; }
.cookie-table th { text-align: left; font-weight: 600; color: var(--color-text-muted); font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.4rem 0.6rem; background: #111; border-bottom: 1px solid var(--color-border); }
.cookie-table td { padding: 0.45rem 0.6rem; border-bottom: 1px solid var(--color-border); color: var(--color-text-muted); vertical-align: top; }
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table td:first-child { font-family: monospace; font-size: 0.76rem; color: #ccc; white-space: nowrap; }
.cookie-modal__footer { padding: 1.25rem 2rem; border-top: 1px solid var(--color-border); display: flex; flex-wrap: wrap; gap: 0.75rem; position: sticky; bottom: 0; background: #1a1a1a; }
.cookie-modal__footer button { flex: 1; min-width: 140px; justify-content: center; font-size: 0.85rem; padding: 0.7rem 1rem; }

/* ===================== MOBILE STICKY CTA ===================== */
.mobile-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
    background: #111; border-top: 1px solid var(--color-border);
    padding: 0.75rem 1.5rem; gap: 0.75rem;
}
.mobile-cta a { flex: 1; justify-content: center; font-size: 0.85rem; padding: 0.75rem; }
@media (max-width: 767px) { .mobile-cta { display: flex; } }

/* ===================== SCROLL PROGRESS ===================== */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; background: var(--color-accent); width: 0%; z-index: 2000; transition: width 0.1s linear; }
