/* =========================================================
   KFZ-Werkstätte Walter Tretthann
   Industrial Garage Editorial – stark, ehrlich, vertrauenerweckend
   ========================================================= */

/* ---------- Variablen ---------- */
:root {
    --rot: #9D2929;
    --rot-tief: #6E1818;
    --gelb: #F4C430;
    --gelb-warm: #E8B530;
    --hellblau: #185B9F;
    --hellblau-tief: #185B9F;
    --kohle: #141416;
    --kohle-weich: #1F1F22;
    --creme: #FFFFFF;
    --creme-warm: #F5F2EC;
    --tinte: #15171A;
    --grau: #5A5853;
    --grau-hell: #B8B5AC;
    --linie: rgba(21, 23, 26, 0.12);

    --display: 'Anton', 'Impact', sans-serif;
    --body: 'DM Sans', system-ui, sans-serif;
    --mono: 'JetBrains Mono', ui-monospace, monospace;

    --max: 1400px;
    --pad: clamp(1.25rem, 4vw, 4rem);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--tinte);
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ---------- Sektions-Layout (einheitlich) ---------- */
.section-wrap {
    max-width: var(--max);
    margin: 0 auto;
}

.section-head {
    max-width: 880px;
    margin: 0 0 3.5rem;
}

.section-head .tag {
    margin-bottom: 1.4rem;
}

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

.section-lede {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--grau);
    max-width: 56ch;
    margin: 1.5rem 0 0;
}

.section-lede--light {
    color: rgba(244, 239, 228, 0.75);
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
}

/* ---------- Typografie ---------- */
.h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
}

.h2 em {
    font-family: 'Anton', serif;
    font-style: italic;
    color: var(--hellblau-tief);
    font-weight: 400;
}

.h2--light em {
    color: var(--hellblau);
}

.tag {
    display: inline-block;
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rot);
    padding: 0.45rem 0.8rem;
    border: 1px solid var(--rot);
    border-radius: 999px;
}

.tag--light {
    color: var(--gelb);
    border-color: var(--gelb);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.05rem 1.8rem;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 999px;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
}

.btn--primary {
    background: var(--rot);
    color: var(--creme);
}

.btn--primary:hover {
    background: var(--rot-tief);
    transform: translateY(-2px);
}

.btn--yellow {
    background: var(--gelb);
    color: var(--tinte);
}

.btn--yellow:hover {
    background: var(--gelb-warm);
    transform: translateY(-2px);
}

.btn--ghost {
    color: var(--creme);
    border-color: var(--creme);
}

.btn--ghost:hover {
    background: var(--creme);
    color: var(--kohle);
    transform: translateY(-2px);
}

.btn--ghost-light {
    color: var(--creme);
    border-color: rgba(244, 239, 228, 0.4);
}

.btn--ghost-light:hover {
    border-color: var(--creme);
    background: rgba(244, 239, 228, 0.08);
}

.btn--ghost-dark {
    color: var(--tinte);
    border-color: var(--tinte);
}

.btn--ghost-dark:hover {
    background: var(--tinte);
    color: var(--gelb);
    transform: translateY(-2px);
}

/* ---------- Topbar Marquee ---------- */
.topbar {
    background: var(--gelb);
    color: var(--tinte);
    overflow: hidden;
    border-bottom: 2px solid var(--tinte);
    padding: 0.55rem 0;
    position: relative;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.topbar__track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee 60s linear infinite;
}

.topbar__track span {
    flex-shrink: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    background: var(--creme);
    z-index: 50;
    border-bottom: 1px solid var(--linie);
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.1rem var(--pad);
    max-width: var(--max);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.logo:hover {
    color: var(--rot);
}

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo__name {
    font-family: var(--display);
    font-size: 1.55rem;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.logo__sub {
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--grau);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.nav {
    display: flex;
    gap: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.nav a {
    font-family: var(--mono);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    padding: 0.4rem 0;
    transition: color 0.2s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--rot);
    transition: right 0.3s ease;
}

.nav a:hover {
    color: var(--rot);
}

.nav a:hover::after {
    right: 0;
}

.header__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
    padding: 0.55rem 1rem;
    background: var(--tinte);
    color: var(--gelb);
    border-radius: 8px;
    transition: background 0.25s ease;
}

.header__cta:hover {
    background: var(--rot);
    color: var(--gelb);
}

.header__cta-label {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
}

.header__cta-number {
    font-family: var(--display);
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.burger {
    display: none;
    background: none;
    border: 0;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--tinte);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 68vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--creme);
    isolation: isolate;
    background: #000;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transform: scale(1.05);
    animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
    to { transform: scale(1); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(244, 196, 48, 0.3); }
    50% { box-shadow: 0 0 0 10px rgba(244, 196, 48, 0.05); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.85) 35%, rgba(0, 0, 0, 0.45) 65%, rgba(0, 0, 0, 0.2) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: -1;
}

.hero__inner {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 4.5rem var(--pad) 3.5rem;
    position: relative;
}

.hero__meta {
    margin-bottom: 1.6rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s ease-out forwards;
}

.hero__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(2.5rem, 6.8vw, 6rem);
    line-height: 1.1;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    margin: 0 0 1.6rem;
    max-width: 22ch;
}

.hero__title .line {
    display: block;
    padding-bottom: 0.05em;
}

.hero__title .line em {
    font-style: italic;
    color: var(--gelb);
    font-weight: 400;
}

.hero__title .hl {
    color: var(--gelb);
    position: relative;
    display: inline-block;
}

.hero__title .hl::after {
    content: "";
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: 0.05em;
    height: 0.18em;
    background: var(--rot);
    z-index: -1;
}

.hero__title .line {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s ease-out forwards;
}

.hero__title .line:nth-child(1) { animation-delay: 0.3s; }
.hero__title .line:nth-child(2) { animation-delay: 0.45s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__lede {
    font-size: clamp(0.98rem, 1.2vw, 1.1rem);
    max-width: 50ch;
    line-height: 1.55;
    margin: 0 0 2rem;
    color: rgba(244, 239, 228, 0.88);
    opacity: 0;
    animation: fadeUp 0.9s 0.7s ease-out forwards;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.8rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.85s ease-out forwards;
}

.hero__strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(244, 239, 228, 0.2);
    max-width: 760px;
    opacity: 0;
    animation: fadeUp 0.9s 1s ease-out forwards;
}

.hero__strip > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero__strip .num {
    font-family: var(--display);
    font-size: 1.4rem;
    line-height: 1;
    color: var(--gelb);
    text-transform: uppercase;
}

.hero__strip .lab {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(244, 239, 228, 0.7);
}


/* ---------- About ---------- */
.about {
    background: #FFFFFF;
    padding: clamp(4rem, 8vw, 7rem) var(--pad);
    position: relative;
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background:
        repeating-linear-gradient(
            45deg,
            var(--gelb) 0,
            var(--gelb) 20px,
            var(--tinte) 20px,
            var(--tinte) 40px
        );
}

.about__split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem 5rem;
    align-items: start;
    margin-bottom: 4.5rem;
}

.about__head {
    margin-bottom: 0;
}

.about__copy {
    max-width: 56ch;
    /* Text beginnt auf Höhe des H2 (Tag + Tag-Margin überspringen) */
    padding-top: calc(0.78rem + 0.9rem + 1.4rem);
}

.about__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.about__copy p {
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--tinte);
    margin: 0 0 1.2rem;
}

.about__copy p:first-of-type::first-letter {
    font-family: var(--display);
    font-size: 4.5em;
    float: left;
    line-height: 0.9;
    margin: 0.05em 0.12em 0 -0.05em;
    color: var(--rot);
}

.about__sig {
    margin-top: 2rem;
    font-family: var(--mono);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    color: var(--grau);
    text-transform: uppercase;
}

.about__numbers {
    list-style: none;
    padding: 2.8rem 0 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid var(--linie);
}

.numblock {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding-right: 2rem;
    border-right: 1px solid var(--linie);
}

.numblock:last-child {
    border-right: 0;
}

.numblock__digit {
    font-family: var(--display);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 0.9;
    color: var(--hellblau-tief);
}

.numblock__lab {
    font-size: 0.92rem;
    line-height: 1.4;
    color: var(--grau);
    max-width: 32ch;
}

/* ---------- Services ---------- */
.services {
    background: var(--kohle);
    color: var(--creme);
    padding: clamp(4rem, 8vw, 7rem) var(--pad);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(157, 41, 41, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.servicelist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(244, 239, 228, 0.15);
    border-left: 1px solid rgba(244, 239, 228, 0.15);
}

.serviceitem {
    padding: 2.2rem;
    border-right: 1px solid rgba(244, 239, 228, 0.15);
    border-bottom: 1px solid rgba(244, 239, 228, 0.15);
    position: relative;
    transition: background 0.3s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.serviceitem:hover {
    background: rgba(244, 196, 48, 0.06);
}

.serviceitem:hover .serviceitem__no {
    color: var(--gelb);
}

.serviceitem__no {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: rgba(244, 239, 228, 0.4);
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
    transition: color 0.3s ease;
}

.serviceitem h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.65rem;
    line-height: 1;
    margin: 0 0 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.005em;
}

.serviceitem p {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.5;
    color: rgba(244, 239, 228, 0.7);
}

.services__foot {
    margin: 4rem 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2.5rem 0 0;
    border-top: 1px dashed rgba(244, 239, 228, 0.2);
}

.services__foot p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(244, 239, 228, 0.85);
}

/* ---------- Reviews ---------- */
.reviews {
    background: var(--creme-warm);
    padding: clamp(4rem, 8vw, 7rem) var(--pad);
    position: relative;
}

.reviewgrid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2.2rem 1.5rem;
}

.reviewcard {
    grid-column: span 4;
    background: #fff;
    padding: 2.6rem 2rem 1.6rem;
    border-radius: 14px;
    border: 1px solid var(--linie);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviewcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -20px rgba(20, 48, 78, 0.25);
}

.reviewcard--big {
    grid-column: span 8;
    background: var(--kohle);
    color: #FFFFFF;
    border-color: var(--kohle);
}

.reviewcard--big .reviewcard__quote {
    color: var(--gelb);
}

.reviewcard--big footer {
    color: var(--gelb);
}

.reviewcard--accent {
    grid-column: span 8;
    background: var(--rot);
    color: #FFFFFF;
    border-color: var(--rot);
}

.reviewcard--accent .reviewcard__quote {
    color: var(--gelb);
}

.reviewcard--accent footer {
    color: var(--gelb);
}

/* Apostroph als reine Typografie – sitzt außerhalb des Textflusses oben links */
.reviewcard__quote {
    display: block;
    font-family: var(--display);
    font-size: 4.2rem;
    line-height: 0.5;
    height: 0.5em;
    color: var(--rot);
    margin-bottom: 1rem;
}

.reviewcard--big .reviewcard__quote,
.reviewcard--accent .reviewcard__quote {
    color: var(--gelb);
}

.reviewcard p {
    font-size: 1rem;
    line-height: 1.55;
    margin: 0 0 1.5rem;
    flex: 1;
}

.reviewcard--big p {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0;
}

.reviewcard--accent p {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(1.3rem, 2.2vw, 1.85rem);
    line-height: 1.2;
}

.reviewcard footer {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rot);
    border-top: 1px solid var(--linie);
    padding-top: 0.9rem;
}

.reviewcard--big footer,
.reviewcard--accent footer {
    color: var(--gelb);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ---------- Contact ---------- */
.contact {
    background: var(--kohle);
    color: var(--creme);
    padding: clamp(4rem, 8vw, 7rem) var(--pad);
    position: relative;
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.info {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(244, 239, 228, 0.18);
}

.info__row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 1.5rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(244, 239, 228, 0.18);
    align-items: start;
}

.info__lab {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(244, 239, 228, 0.55);
    padding-top: 0.2rem;
}

.info__val {
    font-size: 1.05rem;
    line-height: 1.4;
    color: var(--creme);
    transition: color 0.2s ease;
}

a.info__val:hover {
    color: var(--gelb);
}

.info__arrow {
    display: inline-block;
    margin-left: 0.4rem;
    color: var(--gelb);
    transition: transform 0.2s ease;
}

a.info__val:hover .info__arrow {
    transform: translate(2px, -2px);
}

.contact__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.contact__map {
    border-radius: 14px;
    overflow: hidden;
    min-height: 480px;
    border: 1px solid rgba(244, 239, 228, 0.2);
    position: relative;
}

.contact__map::after {
    content: "";
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 14px;
    height: 14px;
    background: var(--gelb);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(244, 196, 48, 0.3);
    pointer-events: none;
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
    filter: grayscale(0.2) contrast(1.05);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--tinte);
    color: var(--creme);
    padding: 3rem var(--pad) 1.8rem;
}

.footer__top {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(244, 239, 228, 0.15);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    gap: 0.3rem;
}

.footer__brand strong {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.footer__brand span {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: rgba(244, 239, 228, 0.55);
    letter-spacing: 0.04em;
}

.footer__nav {
    display: flex;
    gap: 1.8rem;
}

.footer__nav a {
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(244, 239, 228, 0.7);
    transition: color 0.2s ease;
}

.footer__nav a:hover {
    color: var(--gelb);
}

.footer__bottom {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(244, 239, 228, 0.5);
}

.footer__legal {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.footer__legal a {
    transition: color 0.2s ease;
}

.footer__legal a:hover {
    color: var(--gelb);
}

.footer__credit a {
    color: var(--gelb);
    transition: opacity 0.2s ease;
}

.footer__credit a:hover {
    opacity: 0.75;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }

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

    .reviewcard,
    .reviewcard--big,
    .reviewcard--accent {
        grid-column: span 6;
    }

    .about__split {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .about__head {
        position: static;
    }

    .about__copy {
        padding-top: 0;
    }

    .services__head {
        grid-template-columns: 1fr;
        align-items: start;
    }

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

    .burger {
        display: flex;
    }

    .header__cta {
        margin-left: auto;
    }
}

@media (max-width: 720px) {
    .header__inner {
        gap: 1rem;
    }

    .header__cta-label {
        display: none;
    }

    .hero {
        min-height: 90vh;
    }

    .hero__inner {
        padding: 4rem var(--pad) 4rem;
    }

    .hero__strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

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

    .serviceitem {
        min-height: auto;
    }

    .reviewcard,
    .reviewcard--big,
    .reviewcard--accent {
        grid-column: span 12;
    }

    .about__numbers {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .numblock {
        padding-right: 0;
        padding-bottom: 1.5rem;
        border-right: 0;
        border-bottom: 1px solid var(--linie);
    }

    .numblock:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .info__row {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .footer__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ---------- Reveal-on-Scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- Header-Zustände ---------- */
.header--scrolled {
    box-shadow: 0 4px 20px -10px rgba(21, 23, 26, 0.18);
}

/* ---------- Mobile-Menü ---------- */
@media (max-width: 1024px) {
    .nav--open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: var(--creme);
        padding: 6rem var(--pad) 2rem;
        gap: 0;
        z-index: 40;
        margin: 0;
    }

    .nav--open a {
        font-family: var(--display);
        font-size: 2.4rem;
        text-transform: uppercase;
        padding: 1.2rem 0;
        border-bottom: 1px solid var(--linie);
        letter-spacing: 0.01em;
    }

    .nav--open a::after {
        display: none;
    }
}

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