* {
    box-sizing: border-box;
}

:root {
    --bg: #eef3fb;
    --surface: #ffffff;
    --surface-2: #f8fbff;
    --surface-3: #f3f7fd;
    --text: #0f172a;
    --muted: #64748b;
    --muted-2: #8a9ab0;
    --line: #dbe5f4;
    --line-strong: #c9d8ec;
    --brand: #2563eb;
    --brand-dark: #0f3fc2;
    --brand-deep: #0f172a;
    --badge: #eff6ff;
    --success-bg: #eafaf0;
    --success-text: #166534;
    --warning-bg: #fff7e8;
    --warning-text: #9a5b00;
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.06);
    --max-width: 1160px;
}

html,
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #f4f7fe 0%, #edf2fa 100%);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

body {
    line-height: 1.45;
}

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

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

.container {
    width: min(var(--max-width), calc(100% - 24px));
    margin: 0 auto;
}

/* Header shell */
.site-shell {
    padding: 14px 0 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
}

.site-header--framed {
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 14px 18px;
}

.site-header__left,
.site-header__right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
}

.site-brand__logo {
    height: 34px;
    width: auto;
}

.site-brand__sub {
    color: var(--muted);
    font-size: .95rem;
    font-weight: 700;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
}

.site-nav {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    align-items: center;
}

    .site-nav a {
        color: var(--muted);
        font-weight: 700;
        transition: color .18s ease;
    }

        .site-nav a:hover {
            color: var(--brand-dark);
        }

.site-header__backlink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    color: var(--brand-dark);
    font-weight: 700;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
    white-space: nowrap;
}

    .site-header__backlink:hover {
        transform: translateY(-1px);
        border-color: var(--line-strong);
        box-shadow: var(--shadow-soft);
    }

/* Hero */
.hero,
.page-hero {
    padding: 26px 0 18px;
}

    .hero__card,
    .page-hero .container,
    .detail-hero {
        background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
        color: #fff;
        border-radius: 30px;
        box-shadow: 0 18px 42px rgba(37, 99, 235, 0.22);
    }

.hero__card {
    padding: 28px;
}

/* Homepage hero refinements */
.hero--home .hero__card {
    padding: 30px;
}

.hero--compact .hero__card {
    padding: 24px 28px;
}

.hero--compact h1 {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.hero--compact p {
    max-width: 760px;
}

.hero-search--home {
    grid-template-columns: 1fr auto;
    align-items: center;
}

.input--hero {
    min-height: 58px;
    font-size: 1.02rem;
}

.hero-links {
    margin-top: 12px;
}

.hero-links__sep {
    opacity: .65;
    color: rgba(255,255,255,0.85);
}

.text-link--light {
    color: rgba(255,255,255,0.92);
}

    .text-link--light:hover {
        color: #ffffff;
    }

.page-hero .container {
    padding: 24px;
}

.page-hero--city .container {
    padding: 20px 24px;
}

.page-hero--city h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 8px;
}

.page-hero--city p {
    max-width: 760px;
}

.page-hero--detail .container {
    background: none;
    padding: 0;
    box-shadow: none;
}

.detail-hero {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 22px;
    padding: 24px;
    align-items: start;
}

.detail-hero__main {
    min-width: 0;
}

.detail-hero__top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 18px;
    margin-bottom: 12px;
}

.detail-hero__actions {
    display: grid;
    gap: 10px;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.16);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
}

.eyebrow {
    display: inline-flex;
    background: rgba(255,255,255,0.16);
    color: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 14px;
}

h1 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: .98;
    letter-spacing: -0.04em;
}

.page-hero h1 {
    font-size: clamp(2rem, 4.8vw, 3rem);
}

.detail-hero h1 {
    font-size: clamp(2rem, 4vw, 3.05rem);
    max-width: 760px;
}

h2 {
    margin: 0 0 8px;
    font-size: 1.7rem;
    letter-spacing: -0.03em;
}

h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.hero p,
.page-hero p,
.detail-hero__address {
    margin: 0;
    color: rgba(255,255,255,0.88);
}

.hero-search,
.page-search,
.reminder-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-top: 20px;
}

.input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 15px 16px;
    font-size: 1rem;
    background: #fff;
    min-height: 52px;
}

    .input:focus {
        outline: none;
        border-color: #b8cdf6;
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
    }

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 16px;
    padding: 14px 16px;
    font-weight: 700;
    border: 1px solid var(--line);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    min-height: 52px;
}

    .button:hover {
        transform: translateY(-1px);
    }

.button--primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.2);
}

.button--secondary {
    background: rgba(255,255,255,0.96);
    color: var(--text);
}

.text-link {
    font-weight: 700;
    color: var(--brand-dark);
}

.section {
    padding: 16px 0 28px;
}

.section--tight {
    padding-top: 6px;
}

.section__actions {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
}

.section__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 14px;
}

    .section__head p {
        margin: 0;
        color: var(--muted);
    }

.results-meta {
    margin: -2px 0 14px;
    color: var(--muted);
    font-size: .95rem;
}

/* Cards */
.city-grid,
.listing-grid,
.detail-grid {
    display: grid;
    gap: 16px;
}

.city-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.city-grid--all {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.city-card,
.listing-card,
.detail-card,
.empty-state,
.pagination,
.map-placeholder,
.map-preview,
.city-search-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.city-card {
    border-radius: var(--radius-lg);
    padding: 18px;
    transition: transform .15s ease, border-color .15s ease;
}

    .city-card:hover {
        transform: translateY(-2px);
        border-color: var(--line-strong);
    }

    .city-card strong {
        display: block;
        margin-bottom: 4px;
        font-size: 1.02rem;
    }

    .city-card span {
        color: var(--muted);
    }

/* City search */
.hero-search--city-search {
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-top: 18px;
    margin-bottom: 10px;
}

.hero-links--city-search {
    margin-top: 0;
    margin-bottom: 18px;
}

/* City/Search filters */
.city-filter-wrap {
    margin-bottom: 18px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.city-filter-toggle {
    list-style: none;
    cursor: pointer;
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: var(--radius-xl);
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-weight: 700;
    color: var(--text);
}

    .city-filter-toggle::-webkit-details-marker {
        display: none;
    }

    .city-filter-toggle span {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .city-filter-toggle small {
        color: var(--muted);
        font-size: .9rem;
        font-weight: 600;
    }

.city-filter-wrap[open] .city-filter-toggle {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
}

.city-filter-wrap[open] .city-filter-card {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-bottom: 0;
}

.city-filter-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--line);
    border-top: 0;
    box-shadow: var(--shadow);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    padding: 20px;
}

.filter-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.filter-field label {
    display: block;
    margin-bottom: 6px;
    font-size: .92rem;
    font-weight: 700;
    color: var(--text);
}

.filter-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
}

.filter-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-weight: 600;
}

    .filter-check input {
        margin: 0;
    }

.filter-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section__head--results {
    margin-bottom: 16px;
}

/* Listings */
.listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.listing-card {
    border-radius: var(--radius-xl);
    padding: 18px;
}

.listing-card__title {
    font-size: 1.35rem;
    line-height: 1.12;
    margin-bottom: 0;
}

.listing-card__top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
    margin-bottom: 8px;
}

.listing-card__city {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 7px;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.2;
}

    .listing-card__city i {
        flex: 0 0 16px;
        width: 16px;
        color: var(--muted-2);
        font-size: .9rem;
        line-height: 1;
        transform: translateY(-1px);
    }

.meta-list {
    display: grid;
    gap: 10px;
    color: var(--muted);
    font-size: .96rem;
    margin-bottom: 14px;
}

.meta-list__item {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 10px;
}

.meta-list i {
    width: 18px;
    line-height: 1.2;
    color: var(--muted-2);
    margin-top: 2px;
}

.actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .actions .button {
        flex: 1 1 150px;
    }

.listing-card__mot {
    margin-bottom: 14px;
}

/* Pills */
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.pill-row--listing {
    margin-bottom: 0;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 999px;
    background: var(--surface-3);
    border: 1px solid var(--line);
    color: #35507a;
    font-size: .82rem;
    font-weight: 700;
}

.pill--mot {
    background: #eef4ff;
    border-color: #d5e3ff;
    color: var(--brand-dark);
}

.pill--small {
    font-size: .78rem;
    padding: 7px 9px;
}

/* Breadcrumbs */
.breadcrumbs {
    margin: 2px 0 2px;
    font-size: .92rem;
    font-weight: 600;
    color: #4b6486;
}

    .breadcrumbs a {
        color: #5d7595;
        transition: color .18s ease;
    }

        .breadcrumbs a:hover {
            color: #1f4fd6;
        }

    .breadcrumbs span {
        padding: 0 6px;
        color: #9aa9bc;
    }

    .breadcrumbs strong,
    .breadcrumbs .breadcrumb-current {
        color: #1b2d4b;
        font-weight: 700;
    }

/* Detail */
.detail-grid {
    grid-template-columns: 1.1fr .9fr;
    align-items: start;
}

.detail-card {
    border-radius: var(--radius-xl);
    padding: 22px;
}

.detail-card--main {
    grid-column: 1 / 2;
}

.detail-card--map {
    grid-column: 1 / -1;
}

.detail-copy {
    color: var(--muted);
    margin: 0 0 12px;
}

.detail-card__subhead {
    margin-top: 24px;
}

.detail-list {
    display: grid;
    gap: 12px;
}

.detail-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

    .detail-row strong {
        color: var(--muted);
    }

    .detail-row a {
        color: var(--brand-dark);
        word-break: break-word;
    }

/* Logo placeholder */
.garage-logo-slot {
    flex: 0 0 130px;
}

.garage-logo-slot__inner {
    min-height: 88px;
    border-radius: 18px;
    border: 1px dashed rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,0.86);
    font-weight: 700;
    text-align: center;
    padding: 12px;
}

    .garage-logo-slot__inner i {
        font-size: 1.35rem;
    }

/* MOT class guide */
.mot-class-guide {
    margin-top: 8px;
    padding: 0;
    background: var(--surface-3);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}

.mot-class-guide__summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    font-weight: 700;
    color: var(--brand-dark);
    position: relative;
}

    .mot-class-guide__summary::-webkit-details-marker {
        display: none;
    }

    .mot-class-guide__summary::after {
        content: "+";
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.2rem;
        color: var(--muted);
    }

.mot-class-guide[open] .mot-class-guide__summary::after {
    content: "−";
}

.mot-class-guide__list {
    margin: 0;
    padding: 0 16px 16px 34px;
    color: var(--muted);
}

    .mot-class-guide__list li {
        margin-bottom: 8px;
    }

        .mot-class-guide__list li:last-child {
            margin-bottom: 0;
        }

    .mot-class-guide__list strong {
        color: var(--text);
    }

/* Opening hours */
.hours-list {
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

.hours-row {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: start;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #edf2f8;
}

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

.hours-day {
    font-weight: 700;
    color: var(--text);
}

.hours-time {
    color: var(--muted);
}

.hours-time--closed {
    color: var(--muted-2);
    font-style: italic;
}

/* Reminder card */
.reminder-card {
    background: linear-gradient(180deg, #f6f9ff 0%, #eef4ff 100%);
    border: 1px solid #d8e5ff;
}

    .reminder-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.55;
    }

.reminder-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e7efff;
    color: var(--brand-dark);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.reminder-form--plate {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
}

.reminder-form__label {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
}

.plate-input-wrap--simple {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #d9bf00;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    background: #f7db1e;
}

.plate-input--simple {
    width: 100%;
    min-height: 64px;
    border: 0;
    background: #f7db1e;
    color: #3f3a10;
    padding: 10px 18px;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: .08em;
    font-family: Arial, Helvetica, sans-serif;
}

    .plate-input--simple::placeholder {
        color: rgba(63, 58, 16, 0.82);
        opacity: 1;
    }

    .plate-input--simple:focus {
        outline: none;
        box-shadow: inset 0 0 0 3px rgba(15, 63, 194, 0.14);
    }

.reminder-form__submit {
    width: 100%;
    min-width: 0;
    margin-top: 2px;
}

.reminder-card__foot {
    margin-top: 8px;
    font-size: .88rem;
    color: var(--muted-2);
}

/* Contact card */
.contact-card p {
    margin: 0 0 12px;
    color: var(--muted);
}

.contact-card__note {
    font-size: .9rem;
    color: var(--muted-2);
    margin-top: 10px;
}

/* Static map */
.map-preview {
    border-radius: 24px;
    overflow: hidden;
}

    .map-preview img {
        display: block;
        width: 100%;
        height: auto;
    }

.map-preview__meta {
    padding: 14px 16px 18px;
    text-align: center;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

    .map-preview__meta p {
        margin: 0 0 10px;
        color: var(--muted);
    }

.map-placeholder {
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    background: linear-gradient(180deg, #edf5ff 0%, #e2eeff 100%);
}

.map-placeholder--muted {
    background: #f8fafc;
}

.map-placeholder i {
    font-size: 2rem;
    color: var(--brand);
    margin-bottom: 10px;
}

.map-placeholder p {
    margin: 0 0 10px;
}

.map-placeholder__meta {
    color: var(--muted);
    font-size: .92rem;
}

/* Empty / pagination */
.empty-state {
    border-radius: var(--radius-xl);
    padding: 28px;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    border-radius: 20px;
    padding: 16px;
    margin-top: 18px;
}

.pagination__link {
    color: var(--brand-dark);
    font-weight: 700;
}

.pagination__meta {
    color: var(--muted);
}

/* Footer */
.site-footer {
    padding: 24px 0 36px;
}

.site-footer__card {
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    padding: 22px;
}

.site-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 24px;
}

.site-footer__brand {
    max-width: 620px;
}

.site-footer__copy,
.site-footer__meta {
    margin: 0;
}

.site-footer__copy {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    font-size: 1.02rem;
}

.site-footer__meta {
    color: var(--muted);
    line-height: 1.55;
}

.site-footer__links {
    display: grid;
    gap: 10px;
    min-width: 200px;
}

    .site-footer__links a {
        color: var(--brand-dark);
        font-weight: 700;
    }

.site-footer__bottom {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .92rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

    .site-footer__bottom a {
        color: var(--brand-dark);
        font-weight: 700;
    }

.site-footer__sep {
    color: var(--muted-2);
}

/* Responsive */
@media (max-width: 960px) {
    .city-grid,
    .city-grid--all,
    .listing-grid,
    .detail-grid,
    .detail-hero {
        grid-template-columns: 1fr;
    }

    .detail-card--main,
    .detail-card--map {
        grid-column: auto;
    }

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

    .garage-logo-slot {
        width: 100%;
        flex: none;
    }

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

    .site-header__right {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

@media (max-width: 860px) {
    .filter-grid {
        grid-template-columns: 1fr;
    }

    .city-filter-toggle {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 18px, var(--max-width));
    }

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

    .site-brand {
        gap: 10px;
        flex-wrap: wrap;
    }

    .site-brand__logo {
        height: 30px;
    }

    .hero__card,
    .page-hero .container,
    .detail-card,
    .listing-card,
    .detail-hero {
        padding: 18px;
    }

    .hero-search,
    .page-search,
    .reminder-form,
    .reminder-form--plate,
    .hero-search--home,
    .hero-search--city-search {
        grid-template-columns: 1fr;
    }

    .hero-links--city-search {
        margin-bottom: 16px;
    }

    .city-grid,
    .city-grid--all,
    .listing-grid {
        grid-template-columns: 1fr;
    }

    .actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

        .actions .button--primary {
            grid-column: 1 / -1;
        }

    .detail-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .hours-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .plate-input--simple {
        font-size: 1.5rem;
        min-height: 56px;
        padding: 10px 12px;
    }

    .reminder-form__submit {
        width: 100%;
        min-width: 0;
    }

    .filter-checks {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .filter-actions {
        width: 100%;
    }

        .filter-actions .button {
            width: 100%;
        }

    .site-header__inner {
        padding: 14px;
    }

    .site-header__right {
        align-items: flex-start;
    }

    .site-nav {
        gap: 14px;
    }

    .site-header__backlink {
        width: 100%;
        justify-content: center;
    }

    .site-footer__card {
        padding: 18px;
    }

    .site-footer__links {
        width: 100%;
    }
}
