/* =========================================================
   KFZ DMS - PERANOVIC KG
   Editorial-Industrial-Brutalist Design
   Farben: #bb271a (Rot) · #181818 (Schwarz)
   ========================================================= */

/* ---------- 1. CUSTOM PROPERTIES ---------- */
:root {
    --c-red: #bb271a;
    --c-red-bright: #d83323;
    --c-black: #181818;
    --c-graphite: #2a2a2a;
    --c-bone: #f4efe8;
    --c-bone-dim: #e6dfd4;
    --c-cream: #ebe5dc;
    --c-text-dark: #181818;
    --c-text-light: #f4efe8;
    --c-muted: #8b827a;

    --f-display: "Big Shoulders Display", "Impact", sans-serif;
    --f-body: "DM Sans", -apple-system, sans-serif;
    --f-mono: "Space Mono", "Courier New", monospace;

    --container: clamp(1rem, 4vw, 4rem);
    --section-gap: clamp(5rem, 12vw, 11rem);

    --ease: cubic-bezier(.22,.61,.36,1);
    --ease-bold: cubic-bezier(.85,.05,.18,1);
}

/* ---------- 2. RESET ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--f-body);
    background: var(--c-bone);
    color: var(--c-text-dark);
    line-height: 1.5;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
svg { display: block; }

/* ---------- 3. NOISE/GRAIN OVERLAY ---------- */
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.055;
    background-image:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    mix-blend-mode: multiply;
}

/* ---------- 4. HEADER ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 2rem;
    padding: 0.25rem var(--container);
    background: rgba(244, 239, 232, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(24,24,24,0.08);
    transition: background .3s var(--ease), border-color .3s var(--ease);
}

.site-header.is-scrolled {
    background: rgba(24,24,24,0.95);
    border-bottom-color: rgba(244,239,232,0.1);
    color: var(--c-bone);
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    width: clamp(200px, 5.5vw, 62px);
    height: clamp(50px, 5.5vw, 62px);
    object-fit: contain;
    display: block;
    transition: filter .3s var(--ease);
}

.site-header.is-scrolled .logo-img {
    filter: invert(1) hue-rotate(180deg);
}

.site-nav ul {
    display: flex;
    gap: 2.2rem;
    justify-content: center;
}

.site-nav a {
    font-family: var(--f-mono);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: color .25s var(--ease);
}

.site-nav a::after {
    content: "";
    position: absolute;
    inset: auto 0 -4px 0;
    height: 2px;
    background: var(--c-red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s var(--ease-bold);
}

.site-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.call-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1.3rem;
    background: var(--c-red);
    color: var(--c-bone);
    font-family: var(--f-mono);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    font-weight: 700;
    overflow: hidden;
    transition: background .25s var(--ease);
}

.call-btn:hover {
    background: var(--c-red-bright);
}

.call-btn__pulse {
    width: 8px;
    height: 8px;
    background: var(--c-bone);
    border-radius: 50%;
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-black);
    transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.site-header.is-scrolled .nav-toggle span { background: var(--c-bone); }

.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); }

/* ---------- 5. MOBILE NAV ---------- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 460px;
    background: var(--c-black);
    color: var(--c-bone);
    transform: translateX(100%);
    transition: transform .5s var(--ease-bold);
    z-index: 90;
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-nav.is-open {
    transform: translateX(0);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.mobile-nav a {
    font-family: var(--f-display);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.01em;
    transition: color .25s var(--ease);
}

.mobile-nav a:hover { color: var(--c-red-bright); }

.mobile-nav__call {
    margin-top: 1rem;
    font-size: 1.4rem !important;
    color: var(--c-red-bright) !important;
    font-family: var(--f-mono) !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
}

/* ---------- 6. HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 9rem var(--container) 3rem;
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    gap: 2rem;
    background: var(--c-bone);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: -5%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(187,39,26,0.08), transparent 60%);
    pointer-events: none;
}

.hero__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--f-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--c-text-dark);
    border-top: 1px solid rgba(24,24,24,0.18);
    border-bottom: 1px solid rgba(24,24,24,0.18);
    padding: 0.8rem 0;
}

.hero__meta-line {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--c-red);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(187,39,26,0.5);
    animation: ping 2s ease-in-out infinite;
}

@keyframes ping {
    0%, 100% { box-shadow: 0 0 0 0 rgba(187,39,26,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(187,39,26,0); }
}

.hero__title {
    position: relative;
    font-family: var(--f-display);
    font-weight: 900;
    line-height: 0.85;
    color: var(--c-black);
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    align-self: end;
}

.hero__line {
    display: block;
    font-size: clamp(4.2rem, 18vw, 17rem);
    position: relative;
    overflow: hidden;
}

.hero__line.line-2 {
    color: transparent;
    -webkit-text-stroke: 2px var(--c-black);
    margin-left: clamp(0.5rem, 3vw, 4rem);
    font-size: 10vw;
}

.hero__line .reveal-text {
    display: block;
    transform: translateY(100%);
    animation: reveal-up 1s var(--ease-bold) forwards;
}

@keyframes reveal-up {
    to { transform: translateY(0); }
}

.hero__rotating {
    position: absolute;
    top: clamp(7rem, 14vw, 11rem);
    right: var(--container);
    width: clamp(110px, 13vw, 170px);
    height: clamp(110px, 13vw, 170px);
    display: grid;
    place-items: center;
    pointer-events: none;
    z-index: 2;
}

.hero__circle {
    width: 100%;
    height: 100%;
    animation: spin 22s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hero__circle-text {
    font-family: var(--f-mono);
    font-size: 14px;
    font-weight: 700;
    fill: var(--c-black);
    letter-spacing: 0.05em;
}

.hero__circle-center {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: var(--f-display);
    font-weight: 900;
    font-size: clamp(1.4rem, 2.6vw, 2.4rem);
    color: var(--c-red);
}

.hero__bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: end;
    padding-top: 2rem;
    border-top: 1px solid rgba(24,24,24,0.18);
}

.hero__intro {
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    max-width: 38ch;
    line-height: 1.55;
    color: var(--c-text-dark);
}

.hero__intro strong {
    color: var(--c-red);
    font-weight: 700;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.6rem;
    font-family: var(--f-mono);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all .3s var(--ease-bold);
    white-space: nowrap;
}

.btn-primary {
    background: var(--c-black);
    color: var(--c-bone);
    position: relative;
    overflow: hidden;
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform .35s var(--ease-bold);
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--c-red);
    transform: translateY(100%);
    transition: transform .35s var(--ease-bold);
    z-index: 0;
}

.btn-primary > * {
    position: relative;
    z-index: 1;
}

.btn-primary:hover::before {
    transform: translateY(0);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-ghost {
    background: transparent;
    color: var(--c-black);
    border: 1px solid var(--c-black);
}

.btn-ghost:hover {
    background: var(--c-black);
    color: var(--c-bone);
}

.hero__ticker {
    margin: 0 calc(var(--container) * -1);
    overflow: hidden;
    border-top: 1px solid rgba(24,24,24,0.18);
    border-bottom: 1px solid rgba(24,24,24,0.18);
    padding: 1rem 0;
    background: var(--c-black);
    color: var(--c-bone);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 60s linear infinite;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: clamp(1.2rem, 2.4vw, 2rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--c-bone);
    white-space: nowrap;
}

.ticker-track span {
    padding-right: 2rem;
}

@keyframes ticker {
    to { transform: translateX(-50%); }
}

/* ---------- 7. SECTION LABEL ---------- */
.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--f-mono);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: var(--c-red);
    margin-bottom: clamp(2rem, 5vw, 4rem);
    padding-top: 1rem;
    border-top: 1px solid currentColor;
    width: 100%;
}

.section-label .num {
    font-weight: 700;
}

.section-label .label {
    color: var(--c-text-dark);
}

.section-label--light .label { color: var(--c-bone); }

/* ---------- 8. WERKSTATT / ABOUT ---------- */
.werkstatt {
    padding: var(--section-gap) var(--container);
    background: var(--c-bone);
}

.werkstatt__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}

.werkstatt__head {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(2.6rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.015em;
    color: var(--c-black);
}

.werkstatt__head em {
    font-style: italic;
    color: var(--c-red);
    font-weight: 800;
}

.werkstatt__text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 42ch;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.65;
    color: var(--c-graphite);
}

.werkstatt__text strong {
    color: var(--c-red);
    font-weight: 700;
}

.werkstatt__pills {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(24,24,24,0.18);
}

.werkstatt__pills li {
    font-family: var(--f-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--c-black);
    color: var(--c-black);
    background: transparent;
    transition: all .25s var(--ease);
}

.werkstatt__pills li:hover {
    background: var(--c-black);
    color: var(--c-bone);
}

/* ---------- 9. LEISTUNGEN ---------- */
.leistungen {
    padding: var(--section-gap) var(--container);
    background: var(--c-black);
    color: var(--c-bone);
    position: relative;
    overflow: hidden;
}

.leistungen .section-label .label {
    color: var(--c-bone);
}

.leistungen__head {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(3rem, 11vw, 12rem);
    line-height: 0.9;
    letter-spacing: -0.025em;
    margin-bottom: clamp(2rem, 6vw, 5rem);
}

.leistungen__head .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--c-red);
    font-style: italic;
}

.leistungen__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0;
    border-top: 1px solid rgba(244,239,232,0.18);
}

.leistung {
    position: relative;
    padding: 2rem 1.5rem 2.5rem;
    border-bottom: 1px solid rgba(244,239,232,0.18);
    border-right: 1px solid rgba(244,239,232,0.18);
    transition: background .35s var(--ease);
    overflow: hidden;
}

.leistung::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--c-red);
    transform: translateY(100%);
    transition: transform .45s var(--ease-bold);
    z-index: 0;
}

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

.leistung:hover::before {
    transform: translateY(0);
}

.leistung__num {
    display: block;
    font-family: var(--f-mono);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--c-red);
    margin-bottom: 1.2rem;
    transition: color .3s var(--ease);
}

.leistung:hover .leistung__num {
    color: var(--c-bone);
}

.leistung__title {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    line-height: 1;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.leistung__desc {
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(244,239,232,0.7);
    transition: color .3s var(--ease);
}

.leistung:hover .leistung__desc {
    color: var(--c-bone);
}

/* ---------- 10. STIMMEN / REVIEWS ---------- */
.stimmen {
    padding: var(--section-gap) var(--container);
    background: var(--c-cream);
    position: relative;
}

.stimmen__head {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(3rem, 10vw, 11rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--c-black);
    margin-bottom: clamp(2rem, 6vw, 5rem);
}

.stimmen__head .strike {
    color: var(--c-red);
    font-style: italic;
    display: inline-block;
}

.stimmen__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.2rem;
}

.stimme {
    background: var(--c-bone);
    padding: 1.3rem 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.9rem;
    border: 1px solid rgba(24,24,24,0.08);
    grid-column: span 6;
    position: relative;
    transition: transform .35s var(--ease-bold);
}

.stimme:hover {
    transform: translateY(-3px);
}

.stimme--lg {
    grid-column: span 8;
    background: var(--c-black);
    color: var(--c-bone);
    border-color: var(--c-black);
}

.stimme--lg .stimme__quote {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: clamp(1.3rem, 2.2vw, 1.9rem);
    line-height: 1.15;
}

.stimme--accent {
    background: var(--c-red);
    color: var(--c-bone);
    border-color: var(--c-red);
    grid-column: span 7;
}

.stimme--accent .stimme__quote {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    line-height: 1.2;
}

.stimme--sm {
    grid-column: span 5;
}

.stimme--sm .stimme__quote {
    font-size: 0.98rem;
    line-height: 1.4;
}

.stimme__quote {
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 500;
}

.stimme__quote strong {
    color: var(--c-red);
}

.stimme--lg .stimme__quote strong,
.stimme--accent .stimme__quote strong {
    color: var(--c-bone);
    background: rgba(244,239,232,0.15);
    padding: 0 6px;
}

.stimme__author {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding-top: 0.7rem;
    border-top: 1px solid currentColor;
    border-color: rgba(0,0,0,0.15);
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.stimme--lg .stimme__author,
.stimme--accent .stimme__author {
    border-color: rgba(244,239,232,0.25);
}

.stimme__name {
    font-weight: 700;
    text-transform: uppercase;
}

.stimme__meta {
    opacity: 0.6;
    text-transform: uppercase;
}

/* ---------- 11. KONTAKT ---------- */
.kontakt {
    padding: var(--section-gap) var(--container) 4rem;
    background: var(--c-black);
    color: var(--c-bone);
    position: relative;
    overflow: hidden;
}

.kontakt::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(187,39,26,0.15), transparent 60%);
    pointer-events: none;
}

.kontakt .section-label {
    color: var(--c-red);
    border-color: var(--c-red);
}

.kontakt__head {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: end;
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.kontakt__head h2 {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(2.6rem, 8vw, 7rem);
    line-height: 0.92;
    letter-spacing: -0.02em;
}

.kontakt__head p {
    font-size: 1.1rem;
    color: rgba(244,239,232,0.75);
    max-width: 30ch;
    justify-self: end;
}

.kontakt__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(244,239,232,0.18);
    border-left: 1px solid rgba(244,239,232,0.18);
}

.kontakt__card {
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(244,239,232,0.18);
    border-bottom: 1px solid rgba(244,239,232,0.18);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 220px;
    position: relative;
    transition: background .25s var(--ease);
}

.kontakt__card:hover {
    background: rgba(187,39,26,0.08);
}

.kontakt__card-label {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--c-red);
    text-transform: uppercase;
}

.kontakt__card-content {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.3;
    color: var(--c-bone);
}

.kontakt__card-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.kontakt__card-list a {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.2;
    color: var(--c-bone);
    transition: color .2s var(--ease);
}

.kontakt__card-list a:hover {
    color: var(--c-red-bright);
}

.kontakt__card-sub {
    margin-top: auto;
    font-family: var(--f-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: rgba(244,239,232,0.5);
    padding-top: 1rem;
}

.kontakt__card-link {
    margin-top: auto;
    font-family: var(--f-mono);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-red-bright);
    border-bottom: 1px solid currentColor;
    align-self: flex-start;
    padding-bottom: 2px;
    transition: color .2s var(--ease);
}

.kontakt__card-link:hover {
    color: var(--c-bone);
}

.hours {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--f-mono);
    font-size: 0.85rem;
}

.hours td {
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(244,239,232,0.1);
}

.hours td:first-child {
    color: var(--c-red-bright);
    letter-spacing: 0.1em;
    font-weight: 700;
}

.hours td:last-child {
    text-align: right;
}

.hours__closed td {
    opacity: 0.5;
}

.kontakt__map {
    margin: 2.5rem calc(var(--container) * -1) 0;
    height: clamp(280px, 50vh, 480px);
    overflow: hidden;
    filter: grayscale(0.85) contrast(1.1) brightness(0.85);
    transition: filter .4s var(--ease);
}

.kontakt__map:hover {
    filter: grayscale(0) contrast(1) brightness(1);
}

/* ---------- 12. FOOTER ---------- */
.site-footer {
    background: var(--c-black);
    color: var(--c-bone);
    padding: 3rem var(--container) 2rem;
    border-top: 1px solid rgba(244,239,232,0.15);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(244,239,232,0.15);
    margin-bottom: 1.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
}

.footer-brand__line1 {
    font-family: var(--f-display);
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--c-bone);
    letter-spacing: -0.01em;
}

.footer-brand__line2 {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    margin-top: 6px;
    letter-spacing: 0.15em;
    color: var(--c-red-bright);
}

.footer-call {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: clamp(1.2rem, 2.4vw, 2rem);
    color: var(--c-bone);
    transition: color .25s var(--ease);
}

.footer-call:hover {
    color: var(--c-red-bright);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--f-mono);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: rgba(244,239,232,0.6);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    transition: color .2s var(--ease);
}

.footer-links a:hover {
    color: var(--c-red-bright);
}

.footer-credit a {
    color: var(--c-bone);
    border-bottom: 1px solid var(--c-red);
}

.footer-credit a:hover {
    color: var(--c-red-bright);
}

/* ---------- 13. REVEAL ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- 14. RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .site-nav { display: none; }
    .nav-toggle { display: flex; }
    .call-btn { display: none; }

    .site-header {
        grid-template-columns: 1fr auto;
    }

    .hero__rotating {
        right: var(--container);
        top: 22%;
        transform: none;
    }

    .hero__bottom {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .werkstatt__grid { grid-template-columns: 1fr; }

    .kontakt__grid { grid-template-columns: repeat(2, 1fr); }

    .kontakt__head { grid-template-columns: 1fr; }
    .kontakt__head p { justify-self: start; }

    .stimme,
    .stimme--lg,
    .stimme--accent,
    .stimme--sm {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    body { font-size: 15px; }

    .hero {
        padding-top: 7rem;
        min-height: auto;
    }

    .hero__line {
        font-size: clamp(3.2rem, 16vw, 7rem);
    }

    .hero__rotating {
        width: 90px;
        height: 90px;
        top: 18%;
    }

    .hero__cta {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .btn-primary, .btn-ghost {
        justify-content: center;
    }

    .leistungen__list {
        grid-template-columns: 1fr;
    }

    .kontakt__grid {
        grid-template-columns: 1fr;
    }

    .footer-top, .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    :root {
        --container: 1.2rem;
    }

    .logo-mark__main { font-size: 1.1rem; }
    .logo-img { width: 40px; height: 40px; }

    .hero__meta {
        font-size: 0.65rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .ticker-track {
        font-size: 1.1rem;
    }
}

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

:focus-visible {
    outline: 2px solid var(--c-red);
    outline-offset: 4px;
}

::selection {
    background: var(--c-red);
    color: var(--c-bone);
}
