/* =========================================================
   SPRINT KFZ — V3 (überarbeitet)
   Industrial · solide · Werkstatt-tauglich
   Akzent: #c73c34 · Archivo + JetBrains Mono · Grautöne
   ========================================================= */

:root {
    --bg: #ededee;
    --surface: #ffffff;
    --steel: #1f2125;
    --steel-2: #2a2d33;
    --ink: #15171a;
    --ink-soft: #52555c;
    --line: #d6d7da;
    --line-strong: #aeb0b5;
    --red: #c73c34;
    --red-deep: #9e2a23;
    --red-soft: #f5dbd9;

    --ff-sans: 'Archivo', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
    --ff-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;

    --r-sm: 3px;
    --r-md: 6px;
    --r-lg: 10px;

    --wrap: 1240px;
    --pad: 28px;
}

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

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

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--ff-sans);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; transition: color .2s ease; }

::selection { background: var(--red); color: #fff; }

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

.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 var(--pad);
}

/* ---------- Typografie ---------- */
h1, h2, h3, h4, h5 {
    font-family: var(--ff-sans);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0;
    text-transform: none;
}
h1 {
    font-size: clamp(2.4rem, 4.5vw + 1rem, 4rem);
    font-weight: 800;
    letter-spacing: -0.035em;
}
h2 {
    font-size: clamp(2rem, 2.8vw + 1rem, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}
h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.018em; }
h4 { font-size: 0.95rem; font-weight: 600; }
h5 {
    font-family: var(--ff-mono);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-soft);
}

/* Akzentwörter — kein Kursiv mehr, nur Farbe + Gewicht */
em {
    font-style: normal;
    font-weight: inherit;
    color: var(--red);
}

p { margin: 0 0 1em; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--red);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--ink);
    color: var(--surface);
    font-family: var(--ff-sans);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    padding: 14px 22px;
    border: 1.5px solid var(--ink);
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
    min-height: 48px;
    text-transform: uppercase;
}
.btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}
.btn--ghost {
    background: transparent;
    color: var(--ink);
}
.btn--ghost:hover {
    background: var(--ink);
    color: var(--surface);
}
.btn--sm {
    padding: 10px 16px;
    min-height: 38px;
    font-size: 0.78rem;
}
.btn--block { width: 100%; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 2px solid var(--ink);
    padding-bottom: 2px;
    transition: gap .2s ease, color .2s ease, border-color .2s ease;
    text-transform: uppercase;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
}
.link-arrow:hover {
    color: var(--red);
    border-color: var(--red);
    gap: 14px;
}

/* ---------- Header ---------- */
.hdr {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(237, 237, 238, 0.94);
    backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1.5px solid var(--ink);
}
.hdr__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-transform: uppercase;
}
.logo__dot {
    width: 12px;
    height: 12px;
    background: var(--red);
    flex-shrink: 0;
}
.logo__name em {
    color: var(--red);
    font-weight: 800;
}

.nav {
    display: flex;
    gap: 28px;
}
.nav a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink);
    position: relative;
    padding: 4px 0;
}
.nav a:hover { color: var(--red); }
.nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--red);
    transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }

.hdr__right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.hdr__phone {
    font-family: var(--ff-mono);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}
.hdr__phone:hover { color: var(--red); }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
}
.burger span {
    width: 24px; height: 2.5px;
    background: var(--ink);
}

@media (max-width: 920px) {
    .nav, .hdr__right { display: none; }
    .burger { display: flex; }
    .nav.is-open {
        display: flex;
        flex-direction: column;
        gap: 8px;
        position: absolute;
        top: 76px; left: 0; right: 0;
        background: var(--bg);
        border-bottom: 1.5px solid var(--ink);
        padding: 20px var(--pad);
    }
    .nav.is-open a {
        padding: 12px 0;
        border-bottom: 1px solid var(--line);
    }
}

/* ---------- HERO ---------- */
.hero {
    padding: 80px 0 100px;
    border-bottom: 1.5px solid var(--ink);
    background:
        linear-gradient(180deg, var(--bg) 0%, #e2e3e6 100%);
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 72px;
    align-items: center;
}
.hero__copy { max-width: 620px; }
.hero__lede {
    font-size: 1.1rem;
    color: var(--ink-soft);
    margin: 24px 0 36px;
    max-width: 540px;
}
.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1.5px solid var(--ink);
    margin: 0;
}
.hero__facts dt {
    font-family: var(--ff-mono);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-soft);
    margin-bottom: 6px;
}
.hero__facts dd {
    margin: 0;
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.4;
}

.hero__media {
    margin: 0;
    border: 1.5px solid var(--ink);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--steel);
    box-shadow: 8px 8px 0 var(--ink);
    filter: saturate(0.85) contrast(1.05);
}
.hero__media img {
    width: 100%; height: 100%;
    object-fit: cover;
}

@media (max-width: 920px) {
    .hero { padding: 48px 0 60px; }
    .hero__grid { grid-template-columns: 1fr; gap: 40px; }
    .hero__facts { grid-template-columns: 1fr; gap: 16px; }
    .hero__media { box-shadow: 6px 6px 0 var(--ink); }
}

/* ---------- TRUST STRIP ---------- */
.trust {
    background: var(--steel);
    color: #d4d6db;
    border-top: 1.5px solid var(--ink);
    border-bottom: 1.5px solid var(--ink);
    padding: 48px 0;
}
.trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.trust__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.trust__item svg {
    width: 30px; height: 30px;
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
}
.trust__item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: -0.005em;
}
.trust__item span {
    font-size: 0.88rem;
    color: #a8aab0;
    line-height: 1.45;
}
@media (max-width: 880px) {
    .trust__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
    .trust__grid { grid-template-columns: 1fr; }
}

/* ---------- SECTION HEAD ---------- */
.sect-head {
    max-width: 720px;
    margin-bottom: 64px;
}
.sect-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.sect-head--center .eyebrow { justify-content: center; }
.sect-lede {
    margin-top: 18px;
    font-size: 1.1rem;
    color: var(--ink-soft);
}

/* ---------- LEISTUNGEN ---------- */
.leist { padding: 100px 0; }

.grid-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--ink);
    border: 1.5px solid var(--ink);
}
.card {
    background: var(--surface);
    padding: 36px 32px;
    transition: background .25s ease;
    position: relative;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.card:nth-child(3n) { border-right: 0; }
.card:nth-last-child(-n+3) { border-bottom: 0; }
.card:hover {
    background: var(--bg);
}
.card__top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--ink);
}
.card__num {
    font-family: var(--ff-mono);
    font-size: 1rem;
    font-weight: 600;
    color: var(--red);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
}
.card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
.card > p {
    color: var(--ink-soft);
    font-size: 0.97rem;
    margin: 0 0 18px;
}
.card ul {
    list-style: none;
    padding: 0; margin: 0;
}
.card li {
    font-family: var(--ff-mono);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink);
    padding: 8px 0;
    border-top: 1px dashed var(--line);
    position: relative;
    padding-left: 18px;
}
.card li:first-child { border-top: 0; }
.card li::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 10px; height: 2px;
    background: var(--red);
    transform: translateY(-50%);
}

@media (max-width: 920px) {
    .grid-services { grid-template-columns: repeat(2, 1fr); }
    .card { border-right: 1px solid var(--line) !important; border-bottom: 1px solid var(--line) !important; }
    .card:nth-child(2n) { border-right: 0 !important; }
}
@media (max-width: 560px) {
    .grid-services { grid-template-columns: 1fr; }
    .card { border-right: 0 !important; }
    .leist { padding: 64px 0; }
}

/* ---------- WERKSTATT ---------- */
.werk {
    background: var(--surface);
    border-top: 1.5px solid var(--ink);
    border-bottom: 1.5px solid var(--ink);
    padding: 100px 0;
}
.werk__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: center;
}
.werk__media {
    margin: 0;
    border: 1.5px solid var(--ink);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: -8px 8px 0 var(--red);
    filter: saturate(0.85) contrast(1.05);
}
.werk__media img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.werk__copy { max-width: 620px; }
.werk__lede {
    font-size: 1.1rem;
    color: var(--ink-soft);
    margin: 20px 0 36px;
}
.werk__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
    padding: 32px 0;
    margin: 0 0 32px;
    border-top: 1.5px solid var(--ink);
    border-bottom: 1.5px solid var(--ink);
}
.werk__cols h4 {
    margin-bottom: 6px;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: -0.005em;
}
.werk__cols p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

@media (max-width: 920px) {
    .werk { padding: 64px 0; }
    .werk__grid { grid-template-columns: 1fr; gap: 40px; }
    .werk__cols { grid-template-columns: 1fr; }
    .werk__media { box-shadow: -6px 6px 0 var(--red); }
}

/* ---------- STIMMEN ---------- */
.stim { padding: 100px 0; }
.quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.q {
    background: var(--surface);
    border: 1.5px solid var(--ink);
    padding: 32px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    display: flex;
    flex-direction: column;
}
.q:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 var(--red);
}
.q::before {
    content: "„";
    display: block;
    font-family: var(--ff-sans);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--red);
    margin-bottom: 4px;
}
.q p {
    font-size: 1rem;
    line-height: 1.55;
    color: var(--ink);
    margin: 0 0 20px;
    flex: 1;
    font-weight: 500;
}
.q footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.q strong {
    font-weight: 700;
    color: var(--ink);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: -0.005em;
}
.q span {
    font-family: var(--ff-mono);
    font-size: 0.72rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

@media (max-width: 920px) {
    .quotes { grid-template-columns: 1fr 1fr; }
    .stim { padding: 64px 0; }
}
@media (max-width: 600px) {
    .quotes { grid-template-columns: 1fr; }
}

/* ---------- KONTAKT ---------- */
.kont {
    background: var(--steel);
    color: #c8cad0;
    padding: 100px 0;
    border-top: 1.5px solid var(--ink);
}
.kont__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.kont .eyebrow { color: #a0a3a8; }
.kont .eyebrow::before { background: var(--red); }
.kont__copy h2 { color: #fff; }
.kont__copy h2 em { color: var(--red); }
.kont__lede {
    font-size: 1.1rem;
    margin: 18px 0 40px;
    color: #a8aab0;
}

.kont__list {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    gap: 24px;
}
.kont__list li {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 24px;
    border-bottom: 1px solid #3a3d44;
}
.kont__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.kont__label {
    font-family: var(--ff-mono);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #8b8e94;
}
.kont__big {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.02em;
    font-style: normal;
    width: max-content;
    max-width: 100%;
    text-transform: none;
}
a.kont__big {
    border-bottom: 2px solid transparent;
    transition: border-color .2s ease, color .2s ease;
}
a.kont__big:hover {
    color: var(--red);
    border-color: var(--red);
}

.kont__map {
    position: relative;
    display: block;
    border: 1.5px solid var(--ink);
    box-shadow: 8px 8px 0 var(--red);
    overflow: hidden;
    cursor: pointer;
}
.kont__map img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .3s ease;
}
.kont__map-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .52);
    color: #fff;
    font-family: var(--ff-mono);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0;
    transition: opacity .3s ease;
}
.kont__map:hover .kont__map-label,
.kont__map:focus-visible .kont__map-label {
    opacity: 1;
}
.kont__map:hover img {
    opacity: 0.7;
}

@media (max-width: 920px) {
    .kont { padding: 64px 0; }
    .kont__grid { grid-template-columns: 1fr; gap: 48px; }
    .kont__map { box-shadow: 6px 6px 0 var(--red); }
}

/* ---------- FOOTER ---------- */
.ftr {
    background: var(--ink);
    color: #a8aab0;
    border-top: 1.5px solid var(--ink);
    padding: 64px 0 28px;
    font-size: 0.9rem;
}
.ftr__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #3a3d44;
}
.ftr__brand .logo { color: #fff; }
.ftr__brand p {
    margin-top: 14px;
    color: #a8aab0;
    line-height: 1.55;
}
.ftr h5 {
    color: #fff;
    margin-bottom: 14px;
}
.ftr ul {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    gap: 8px;
}
.ftr a { color: #a8aab0; }
.ftr a:hover { color: var(--red); }
.ftr__base {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    color: #6e7077;
    font-family: var(--ff-mono);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (max-width: 720px) {
    .ftr__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .ftr__inner { grid-template-columns: 1fr; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
