/* =====================================================
   Turbo-Tuning · KFZ-Technik Madl
   Stil: dunkel, sportlich, Racing/Performance-Look
   Farben: #c52e22 (Akzentrot), #afaeb3 (Mittelgrau),
           #1c1b21 (fast Schwarz), Grautöne
   ===================================================== */

/* ---------- Variablen & Reset ---------- */
:root {
    --c-red: #c52e22;
    --c-red-dark: #9b2018;
    --c-red-bright: #e23a2c;
    --c-grey: #afaeb3;
    --c-grey-dark: #6b6a70;
    --c-grey-light: #e9e8ea;
    --c-grey-soft: #f4f3f5;
    --c-black: #1c1b21;
    --c-black-deep: #121117;
    --c-white: #ffffff;

    --ff-display: "Barlow Condensed", "Arial Narrow", sans-serif;
    --ff-body: "Inter", system-ui, -apple-system, sans-serif;
    --ff-mono: "Space Mono", ui-monospace, "Courier New", monospace;

    --maxw: 1320px;
    --pad-x: clamp(20px, 5vw, 80px);
    --pad-y: clamp(70px, 9vw, 140px);

    --radius: 0;
    --radius-soft: 4px;

    --t-fast: 0.2s ease;
    --t-med: 0.4s cubic-bezier(0.2, 0.6, 0.2, 1);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    background: var(--c-white);
    color: var(--c-black);
    font-family: var(--ff-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t-fast);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--c-red);
    outline-offset: 3px;
}

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

/* ---------- Topbar ---------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--c-black);
    color: var(--c-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 14px var(--pad-x);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

.topbar__logo {
    display: inline-flex;
    align-items: center;
}

.topbar__logo img {
    height: 48px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.topbar__nav {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.topbar__nav a {
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-grey);
    position: relative;
    padding: 6px 0;
}

.topbar__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--c-red);
    transition: width var(--t-med);
}

.topbar__nav a:hover {
    color: var(--c-white);
}

.topbar__nav a:hover::after {
    width: 100%;
}

.topbar__phone {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-left: 2px solid var(--c-red);
    transition: background var(--t-fast);
}

.topbar__phone:hover {
    background: rgba(197, 46, 34, 0.12);
}

.topbar__phone-number {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--c-white);
    letter-spacing: 0.02em;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background: var(--c-black);
    color: var(--c-white);
    overflow: hidden;
    isolation: isolate;
}

/* Bild rechts, links schwarzer Verlauf */
.hero__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    z-index: 0;
    pointer-events: none;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(0.2) contrast(1.05);
}

/* Verlauf vom schwarzen Bereich links über das Bild auslaufend */
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            rgba(28, 27, 33, 1) 0%,
            rgba(28, 27, 33, 0.92) 25%,
            rgba(28, 27, 33, 0.5) 60%,
            rgba(28, 27, 33, 0.15) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(28, 27, 33, 0.1) 0%,
            rgba(28, 27, 33, 0.4) 100%
        );
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(28px, 4vw, 55px) var(--pad-x) clamp(50px, 6vw, 90px);
    display: grid;
    gap: clamp(22px, 2.5vw, 32px);
    max-width: min(var(--maxw), 100%);
}

.hero__inner > * {
    max-width: min(720px, 60%);
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    align-self: start;
    width: fit-content;
    font-family: var(--ff-mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-grey);
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
}

.hero__tag-dot {
    width: 8px;
    height: 8px;
    background: var(--c-red);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(197, 46, 34, 0.25);
    animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(197, 46, 34, 0.25); }
    50% { box-shadow: 0 0 0 8px rgba(197, 46, 34, 0); }
}

.hero__title {
    margin: 0;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(48px, 8.5vw, 128px);
    line-height: 0.92;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    max-width: 14ch;
}

.hero__title-row {
    display: block;
}

.hero__title-row--accent {
    color: var(--c-red);
}

.hero__lead {
    max-width: 56ch;
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.65;
    color: var(--c-grey-light);
    margin: 0;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 4px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 26px;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border: 0;
    transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
    border-radius: var(--radius);
}

.btn--primary {
    background: var(--c-red);
    color: var(--c-white);
    border: 2px solid var(--c-red);
}

.btn--primary:hover {
    background: var(--c-red-bright);
    border-color: var(--c-red-bright);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--c-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
    border-color: var(--c-white);
    background: rgba(255, 255, 255, 0.08);
}

.hero__specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
    margin: clamp(20px, 3vw, 32px) 0 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    max-width: min(720px, 70%);
}

.hero__spec {
    padding: 18px 22px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero__spec dt {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-grey);
    margin-bottom: 8px;
}

.hero__spec dd {
    margin: 0;
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 18px;
    color: var(--c-white);
    line-height: 1.35;
}

.hero__spec dd a {
    color: var(--c-white);
    border-bottom: 1px solid var(--c-red);
}

.hero__spec dd a:hover {
    color: var(--c-red);
}

/* ---------- Generic Section Components ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--ff-mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-grey-dark);
    margin-bottom: 18px;
}

.eyebrow--light {
    color: var(--c-grey);
}

.eyebrow__bar {
    width: 38px;
    height: 2px;
    background: var(--c-red);
    display: inline-block;
}

.section__title {
    margin: 0;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(40px, 6.4vw, 88px);
    line-height: 0.96;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    color: var(--c-black);
}

.section__title em {
    font-style: normal;
    color: var(--c-red);
}

.section__title--light {
    color: var(--c-white);
}

/* ---------- Services (Listen-Stil mit großen Nummern) ---------- */
.services {
    padding: var(--pad-y) 0;
    background: var(--c-white);
    position: relative;
}

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

.services__head {
    margin-bottom: clamp(40px, 5vw, 70px);
    max-width: 800px;
}

.services__lead {
    margin: 22px 0 0;
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.65;
    color: var(--c-grey-dark);
    max-width: 60ch;
}

.srv-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 3vw, 40px);
}

.srv {
    display: grid;
    grid-template-columns: clamp(80px, 9vw, 130px) 1fr;
    gap: clamp(20px, 2.5vw, 36px);
    align-items: start;
    padding: clamp(28px, 3vw, 40px);
    background: var(--c-white);
    border-top: 3px solid var(--c-red);
    box-shadow: 0 8px 22px -16px rgba(28, 27, 33, 0.18);
    position: relative;
    transition: box-shadow var(--t-med), transform var(--t-med);
}

.srv:hover {
    box-shadow: 0 24px 52px -22px rgba(28, 27, 33, 0.32);
    transform: translateY(-3px);
}

.srv__num {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(56px, 7vw, 100px);
    line-height: 0.85;
    color: var(--c-red);
    letter-spacing: -0.02em;
}

.srv__body {
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.srv__title {
    margin: 0;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1.05;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    color: var(--c-black);
}

.srv__text {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--c-grey-dark);
}

.srv__tag {
    margin-top: 4px;
    padding: 5px 11px;
    border: 1px solid var(--c-red);
    background: var(--c-white);
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-red);
    white-space: nowrap;
}

/* ---------- About / Werkstatt ---------- */
.about {
    padding: var(--pad-y) 0;
    background: var(--c-black);
    color: var(--c-white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--c-red);
}

.about__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: start;
}

.about__text .eyebrow {
    color: var(--c-grey);
}

.about__text p {
    color: var(--c-grey-light);
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.7;
    margin: 22px 0 0;
}

.about__points {
    list-style: none;
    margin: 36px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.about__points li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: 19px;
    letter-spacing: 0.01em;
    color: var(--c-white);
    line-height: 1.4;
}

.about__check {
    display: inline-block;
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    margin-top: 8px;
    border: 2px solid var(--c-red);
    background:
        linear-gradient(135deg, transparent 50%, var(--c-red) 50%);
}

.about__media {
    margin: 38px 0 0;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--c-black-deep);
}

.about__media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--c-red);
    z-index: 2;
}

.about__media::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 4px;
    background: var(--c-red);
    z-index: 2;
}

.about__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(0.15) contrast(1.05);
    transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.about__media:hover img {
    transform: scale(1.04);
}

/* ---------- Reviews (horizontaler Scroll-Streifen) ---------- */
.reviews {
    padding: var(--pad-y) 0;
    background: var(--c-black-deep);
    color: var(--c-white);
    overflow: hidden;
    position: relative;
}

.reviews__head {
    max-width: var(--maxw);
    margin: 0 auto clamp(36px, 4vw, 56px);
    padding: 0 var(--pad-x);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: end;
}

.reviews__head-lead {
    margin: 0;
    font-size: clamp(15px, 1.15vw, 17px);
    line-height: 1.65;
    color: var(--c-grey);
    max-width: 50ch;
}

.reviews__grid {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2vw, 28px);
}

.rv {
    margin: 0;
    padding: 32px 28px 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid var(--c-red);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    transition: transform var(--t-med), border-color var(--t-med), background var(--t-med);
}

.rv:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.025) 100%);
}

.rv__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-grey-light);
    font-style: normal;
    quotes: "\201E" "\201C";
}

.rv__text::before {
    content: open-quote;
    color: var(--c-red);
    font-weight: 700;
    margin-right: 2px;
}

.rv__text::after {
    content: close-quote;
    color: var(--c-red);
    font-weight: 700;
}

.rv__name {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-white);
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.rv__name::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 24px;
    height: 1px;
    background: var(--c-red);
}

/* ---------- Kontakt (Panel links 50%, Map rechts 50%) ---------- */
.contact {
    background: var(--c-white);
}

.contact__split {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: var(--pad-y) var(--pad-x);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: clamp(520px, 65vh, 700px);
}

.contact__map {
    position: relative;
    background: var(--c-black);
    overflow: hidden;
    height: 100%;
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.5) contrast(0.95);
}

.contact__map-link {
    position: absolute;
    bottom: clamp(20px, 3vw, 32px);
    left: clamp(20px, 3vw, 32px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--c-red);
    color: var(--c-white);
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.5);
    transition: background var(--t-fast), transform var(--t-fast);
}

.contact__map-link:hover {
    background: var(--c-red-bright);
    transform: translateY(-2px);
}

.contact__panel {
    background: var(--c-white);
    color: var(--c-black);
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 3vw, 40px);
    position: relative;
}

.contact__title {
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 0.96;
}

.contact__lead {
    margin: 22px 0 0;
    color: var(--c-grey-dark);
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.65;
    max-width: 50ch;
}

.contact__phone {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 24px;
    padding: 22px 26px;
    background: var(--c-red);
    color: var(--c-white);
    transition: background var(--t-fast), transform var(--t-fast);
}

.contact__phone:hover {
    background: var(--c-red-bright);
    transform: translateY(-2px);
}

.contact__phone-label {
    grid-column: 1;
    grid-row: 1;
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px;
}

.contact__phone-number {
    grid-column: 1;
    grid-row: 2;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(32px, 3.5vw, 48px);
    letter-spacing: 0.01em;
    line-height: 1;
}

.contact__phone-arrow {
    grid-column: 2;
    grid-row: 1 / span 2;
    font-family: var(--ff-display);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    transition: transform var(--t-fast);
}

.contact__phone:hover .contact__phone-arrow {
    transform: translateX(6px);
}

.contact__data {
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact__data-row {
    display: grid;
    grid-template-columns: clamp(90px, 14vw, 140px) 1fr;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact__data-row:last-child {
    border-bottom: 0;
}

.contact__data-row dt {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-grey-dark);
    padding-top: 4px;
}

.contact__data-row dd {
    margin: 0;
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.45;
    color: var(--c-black);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--c-black-deep);
    color: var(--c-grey);
    padding: clamp(50px, 6vw, 80px) 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: grid;
    gap: 40px;
}

.footer__brand {
    display: grid;
    gap: 20px;
    align-items: start;
}

.footer__logo {
    height: 64px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
}

.footer__tagline {
    margin: 0;
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: 19px;
    line-height: 1.5;
    color: var(--c-grey-light);
    max-width: 50ch;
}

.footer__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--ff-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-grey-dark);
}

.footer__nav {
    display: flex;
    gap: 28px;
}

.footer__nav a {
    color: var(--c-grey);
    transition: color var(--t-fast);
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .topbar__inner {
        grid-template-columns: auto 1fr auto;
        gap: 18px;
    }

    .topbar__nav {
        display: none;
    }

    .hero__bg {
        width: 75%;
    }

    .hero__inner > * {
        max-width: 75%;
    }

    .hero__specs {
        max-width: 90%;
    }

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

    .reviews__head {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

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

    .about__media {
        aspect-ratio: 16 / 10;
        max-width: 600px;
    }

    .contact__split {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .contact__map {
        min-height: 380px;
    }
}

@media (max-width: 720px) {
    .topbar__logo img {
        height: 40px;
        max-width: 160px;
    }

    .topbar__phone {
        padding: 6px 12px;
    }

    .topbar__phone-number {
        font-size: 18px;
    }

    /* Hero auf Mobile: Bild als Hintergrund über die volle Breite, dafür stärkerer Verlauf */
    .hero__bg {
        width: 100%;
    }

    .hero__overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(28, 27, 33, 0.7) 0%,
                rgba(28, 27, 33, 0.85) 60%,
                rgba(28, 27, 33, 0.95) 100%
            );
    }

    .hero__inner {
        padding-top: clamp(50px, 12vw, 90px);
    }

    .hero__inner > * {
        max-width: 100%;
    }

    .hero__specs {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .hero__spec {
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero__spec:last-child {
        border-bottom: 0;
    }

    .srv {
        grid-template-columns: 70px 1fr;
        gap: 16px;
        padding: 24px 22px;
    }

    .srv__num {
        font-size: 56px;
    }

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

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

@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;
    }
}
