:root {
    --font-main: "Euclid Circular A", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
    font-family: "Euclid Circular A";
    src: url("../fonts/EuclidCircularA-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Euclid Circular A";
    src: url("../fonts/EuclidCircularA-Semibold.woff2") format("woff2");
    font-weight: 600 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #18212f;
    --muted: #5b6677;
    --soft: #f6f8fb;
    --paper: #ffffff;
    --line: #dfe5ec;
    --blue: #185c9f;
    --blue-dark: #123c69;
    --teal: #12806f;
    --red: #c8422f;
    --amber: #f3b33d;
    --shadow: 0 18px 45px rgba(24, 33, 47, .12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 20;
    padding: 10px 14px;
    background: var(--ink);
    color: #fff;
    border-radius: 6px;
}

.skip-link:focus {
    top: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(223, 229, 236, .86);
    backdrop-filter: saturate(140%) blur(12px);
}

.site-header.is-scrolled {
    box-shadow: 0 8px 30px rgba(24, 33, 47, .08);
}

.topbar {
    background: var(--ink);
    color: #fff;
    font-size: .9rem;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar a {
    font-weight: 700;
    color: #fff;
}

.nav-shell {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 225px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: 8px;
    font-weight: 800;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1.05rem;
    line-height: 1.2;
}

.brand small {
    color: var(--muted);
    font-size: .86rem;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
}

.site-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: #313d4f;
    border-radius: 6px;
    font-weight: 650;
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--blue-dark);
    background: #e9f2fb;
}

.header-call,
.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 820;
    line-height: 1.1;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
    box-shadow: 0 10px 24px rgba(24, 33, 47, .08);
}

.icon,
.pill-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.btn .icon,
.header-call .icon {
    width: 19px;
    height: 19px;
}

.header-call {
    color: #fff;
    background: linear-gradient(135deg, #12806f, #0a9b86);
    white-space: nowrap;
    border-color: rgba(255, 255, 255, .16);
    box-shadow: 0 14px 30px rgba(18, 128, 111, .22);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #d24735, #b93527);
    box-shadow: 0 16px 32px rgba(200, 66, 47, .22);
}

.btn-secondary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: 0 16px 32px rgba(24, 92, 159, .18);
}

.btn-ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, .88);
    border-color: rgba(24, 33, 47, .18);
    box-shadow: 0 12px 26px rgba(24, 33, 47, .08);
}

.btn-ghost.dark {
    background: rgba(255, 255, 255, .58);
    border-color: rgba(24, 33, 47, .22);
}

.btn:hover,
.header-call:hover {
    transform: translateY(-2px);
}

.btn-primary:hover {
    box-shadow: 0 18px 36px rgba(200, 66, 47, .28);
}

.btn-secondary:hover {
    box-shadow: 0 18px 36px rgba(24, 92, 159, .24);
}

.btn-ghost:hover {
    border-color: rgba(24, 92, 159, .34);
    box-shadow: 0 16px 34px rgba(24, 33, 47, .12);
}

.btn:focus-visible,
.header-call:focus-visible {
    outline: 3px solid rgba(24, 92, 159, .28);
    outline-offset: 3px;
}

.btn:active,
.header-call:active {
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero {
    position: relative;
    min-height: 650px;
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media {
    z-index: -2;
}

.hero-media img {
    object-fit: cover;
    object-position: center;
}

.hero-shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 35%, rgba(255, 255, 255, .58) 55%, rgba(255, 255, 255, .18) 100%),
        linear-gradient(0deg, rgba(24, 33, 47, .18), rgba(24, 33, 47, 0));
}

.hero-content {
    padding: 92px 0 84px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    color: var(--blue-dark);
    background: #e9f2fb;
    border: 1px solid #cfe2f5;
    border-radius: 999px;
    font-size: .86rem;
    font-weight: 800;
}

.hero h1,
.page-hero h1 {
    max-width: 760px;
    margin: 18px 0 18px;
    font-size: 4.1rem;
    line-height: 1.03;
    letter-spacing: 0;
}

.hero p {
    max-width: 640px;
    margin: 0;
    color: #334155;
    font-size: 1.2rem;
    font-weight: 520;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 26px 0 0;
    list-style: none;
}

.hero-points li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(24, 33, 47, .13);
    border-radius: 999px;
    font-weight: 820;
    box-shadow: 0 10px 24px rgba(24, 33, 47, .07);
}

.hero-points .pill-icon {
    width: 17px;
    height: 17px;
    color: var(--teal);
}

.hero-service-widget {
    position: absolute;
    top: 118px;
    right: max(28px, calc((100vw - 1160px) / 2));
    width: min(430px, 34vw);
    min-width: 340px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: var(--ink);
    z-index: 2;
}

.hero-service-widget::before {
    content: "";
    position: absolute;
    inset: 13% 9% 3%;
    background:
        radial-gradient(circle at 50% 36%, rgba(255, 255, 255, .94), rgba(255, 255, 255, .52) 46%, rgba(233, 242, 251, .32) 72%, transparent 73%);
    border: 1px solid rgba(207, 216, 227, .64);
    border-radius: 50%;
    box-shadow: 0 32px 70px rgba(24, 33, 47, .15);
    backdrop-filter: blur(8px);
}

.hero-service-widget::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 4%;
    height: 28px;
    background: rgba(24, 33, 47, .2);
    filter: blur(18px);
    border-radius: 50%;
}

.boiler-product {
    position: relative;
    z-index: 1;
    width: min(82%, 350px);
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 24px 28px rgba(24, 33, 47, .18));
}

.boiler-badge {
    position: absolute;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(207, 216, 227, .92);
    border-radius: 9px;
    box-shadow: 0 18px 38px rgba(24, 33, 47, .16);
    font-size: .9rem;
    font-weight: 900;
    white-space: nowrap;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.boiler-badge::before {
    content: "";
    width: 9px;
    height: 9px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 5px rgba(18, 128, 111, .12);
}

.boiler-badge-top {
    top: 10%;
    right: 0;
}

.boiler-badge-left {
    left: -3%;
    top: 47%;
}

.boiler-badge-bottom {
    right: 4%;
    bottom: 9%;
}

.band,
.band-light,
.band-muted {
    border-block: 1px solid var(--line);
}

.band {
    background: var(--ink);
    color: #fff;
}

.band-light {
    background: #f8fbfd;
}

.band-muted {
    background: #f4f7f9;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.metric-grid div {
    min-height: 105px;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 20px;
    border-left: 1px solid rgba(255, 255, 255, .13);
}

.metric-grid div:last-child {
    border-right: 1px solid rgba(255, 255, 255, .13);
}

.metric-grid strong {
    color: var(--amber);
    font-size: 1.6rem;
}

.metric-grid span {
    color: rgba(255, 255, 255, .78);
}

.section {
    padding: 82px 0;
}

.section-head {
    margin-bottom: 30px;
}

.container.section-head {
    max-width: min(1160px, calc(100% - 32px));
}

.section-head h2,
.section-head p {
    max-width: 760px;
}

.section-head h2,
.split-grid h2,
.cta-inner h2,
.contact-info h2,
.contact-form h2,
.detail-aside h2 {
    margin: 14px 0 10px;
    font-size: 2.35rem;
    line-height: 1.15;
    letter-spacing: 0;
}

.section-head p,
.split-grid p,
.cta-inner p {
    color: var(--muted);
    margin: 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 255px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(24, 33, 47, .05);
}

.service-card h2,
.service-card h3 {
    margin: 16px 0 10px;
    font-size: 1.28rem;
    line-height: 1.25;
}

.service-card p {
    color: var(--muted);
    margin: 0 0 18px;
}

.card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 8px;
    font-weight: 800;
}

.text-link,
.aside-link {
    color: var(--blue);
    font-weight: 800;
}

.text-link:hover,
.aside-link:hover {
    color: var(--red);
}

.split-section {
    padding: 82px 0;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 44px;
    align-items: start;
}

.feature-list {
    display: grid;
    gap: 14px;
}

.feature-list div,
.contact-info > a,
.contact-info > div,
.detail-aside {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.feature-list strong,
.feature-list span,
.contact-info strong,
.contact-info span {
    display: block;
}

.feature-list span,
.contact-info span {
    color: var(--muted);
}

.district-grid,
.brand-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.brand-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, #f6f9fc 0%, #eef5f5 52%, #f7fafc 100%);
    border-block: 1px solid var(--line);
}

.brand-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(24, 92, 159, .08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(24, 92, 159, .06) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
    pointer-events: none;
}

.brand-panel,
.brand-grid-home {
    position: relative;
    z-index: 1;
}

.brand-panel {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.brand-copy {
    max-width: 780px;
}

.brand-copy h2 {
    margin: 14px 0 10px;
    font-size: 2.35rem;
    line-height: 1.15;
}

.brand-copy p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
}

.brand-panel-action {
    flex: 0 0 auto;
    background: rgba(255, 255, 255, .86);
}

.brand-grid-home {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.district-grid span,
.brand-chip {
    min-height: 72px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 760;
    box-shadow: 0 10px 28px rgba(24, 33, 47, .055);
}

.brand-chip:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(24, 33, 47, .1);
}

.brand-initial {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, #185c9f, #0c8074);
    border-radius: 8px;
    font-weight: 900;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .22);
}

.brand-name,
.brand-chip small {
    display: block;
}

.brand-name {
    color: var(--ink);
    line-height: 1.2;
    font-weight: 900;
}

.brand-chip small {
    margin-top: 2px;
    color: #425166;
    font-size: .78rem;
    font-weight: 780;
}

.brand-grid-large .brand-chip {
    min-height: 92px;
    width: calc(25% - 9px);
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.brand-chip span {
    color: var(--muted);
    font-size: .92rem;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-grid-wide {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-card {
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 19 / 14;
    object-fit: cover;
}

.gallery-card figcaption {
    padding: 14px 16px;
    font-weight: 800;
}

.faq-grid {
    display: grid;
    gap: 12px;
}

details {
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

summary {
    cursor: pointer;
    font-weight: 800;
}

details p {
    margin: 10px 0 0;
    color: var(--muted);
}

.page-hero {
    background:
        linear-gradient(135deg, rgba(24, 33, 47, .92), rgba(18, 128, 111, .82)),
        url("../images/van-kombi-servisi-hero-small.jpg") center / cover;
    color: #fff;
}

.page-hero.compact {
    padding: 82px 0 76px;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 1.12rem;
}

.page-hero .eyebrow {
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .24);
}

.content-narrow {
    max-width: 860px;
}

.service-intro {
    margin-bottom: 34px;
}

.prose h2,
.prose h3 {
    line-height: 1.2;
    margin: 30px 0 10px;
}

.prose p,
.prose li {
    color: #3f4b5d;
}

.prose a {
    color: var(--blue);
    font-weight: 800;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
    align-items: start;
}

.detail-aside {
    position: sticky;
    top: 118px;
    display: grid;
    gap: 12px;
}

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

.aside-link {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 12px;
}

.contact-form {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form label {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
    font-weight: 760;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #cfd8e3;
    border-radius: 7px;
    background: #fff;
    color: var(--ink);
}

.contact-form textarea {
    min-height: 136px;
    resize: vertical;
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.alert {
    padding: 12px 14px;
    border-radius: 7px;
    font-weight: 760;
}

.alert.success {
    color: #0f5132;
    background: #d1e7dd;
}

.alert.error {
    color: #842029;
    background: #f8d7da;
}

.map-frame {
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.map-frame iframe {
    display: block;
    width: 100%;
    min-height: 360px;
    border: 0;
}

.cta-band {
    padding: 52px 0;
    background: #eef6f5;
    border-top: 1px solid #cce4e0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer {
    color: #dbe3ed;
    background: #121b28;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
    padding: 48px 0 28px;
}

.footer-grid strong,
.footer-grid span {
    display: block;
    color: #fff;
    font-weight: 800;
}

.footer-grid p,
.footer-grid a {
    display: block;
    margin: 8px 0 0;
    color: #b9c5d3;
}

.footer-bottom {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

@media (max-width: 1040px) {
    .header-call {
        display: none;
    }

    .hero-service-widget {
        position: relative;
        top: auto;
        right: auto;
        width: min(100%, 430px);
        min-width: 0;
        margin-top: 34px;
    }

    .boiler-product {
        width: min(82%, 330px);
    }

    .site-nav a {
        padding-inline: 10px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 3.35rem;
    }

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

    .brand-grid-home {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .brand-grid-large .brand-chip {
        width: calc(33.333% - 8px);
    }
}

@media (max-width: 820px) {
    .topbar-inner {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
        padding-block: 8px;
    }

    .nav-shell {
        justify-content: space-between;
        min-height: 70px;
    }

    .brand {
        min-width: 0;
    }

    .brand small {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        justify-content: center;
    }

    .hero {
        min-height: 610px;
    }

    .hero-media img {
        object-position: 60% center;
    }

    .hero-shade {
        background: linear-gradient(90deg, rgba(255, 255, 255, .97), rgba(255, 255, 255, .78));
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.65rem;
    }

    .hero p {
        font-size: 1.08rem;
    }

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

    .split-grid,
    .detail-layout,
    .contact-grid,
    .footer-grid,
    .cta-inner {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        display: grid;
    }

    .detail-aside {
        position: static;
    }

    .brand-grid-large .brand-chip {
        width: calc(50% - 6px);
    }

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

    .brand-grid-home {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 24px, 1160px);
    }

    .hero {
        min-height: 720px;
    }

    .hero-content {
        padding: 64px 0 58px;
    }

    .hero-service-widget {
        margin-top: 26px;
        width: min(100%, 340px);
    }

    .boiler-badge {
        min-height: 36px;
        padding-inline: 12px;
        font-size: .78rem;
    }

    .boiler-badge-left {
        left: 0;
        top: 51%;
    }

    .boiler-badge-top {
        right: 0;
    }

    .boiler-badge-bottom {
        right: 2%;
        bottom: 8%;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.22rem;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section,
    .split-section {
        padding: 58px 0;
    }

    .section-head h2,
    .split-grid h2,
    .cta-inner h2,
    .contact-info h2,
    .contact-form h2,
    .detail-aside h2 {
        font-size: 1.78rem;
    }

    .metric-grid,
    .card-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .brand-grid-large .brand-chip,
    .brand-chip,
    .district-grid span {
        width: 100%;
    }

    .brand-grid-home {
        grid-template-columns: 1fr;
    }

    .brand-copy h2 {
        font-size: 1.78rem;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 0;
    }
}
