:root {
    --ink: #070809;
    --ink-soft: #15191d;
    --paper: #f7f8f8;
    --white: #ffffff;
    --text: #151618;
    --muted: #666c72;
    --line: #d5dadf;
    --aqua: #39e3df;
    --aqua-dark: #16bdbb;
    --steel: #7f91a0;
    --gold: #c69a33;
    --copper: #b65a28;
    --burgundy: #611725;
    --danger: #b42318;
    --success: #147a52;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
    --display: Impact, "Arial Black", "Arial Narrow", sans-serif;
    --body: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.55;
}

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

a {
    color: inherit;
}

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

.skip-link:focus {
    z-index: 20;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    color: var(--ink);
    background: var(--aqua);
}

.site-header {
    position: sticky;
    z-index: 10;
    top: 0;
    background: rgba(5, 6, 7, 0.96);
    border-bottom: 1px solid rgba(57, 227, 223, 0.22);
    backdrop-filter: blur(12px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 1500px);
    min-height: 96px;
    margin: 0 auto;
    padding: 0 54px;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: min(318px, 42vw);
}

.brand img {
    width: 100%;
    height: auto;
    filter: brightness(0) saturate(100%) invert(86%) sepia(61%) saturate(827%) hue-rotate(126deg) brightness(98%) contrast(89%);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 54px);
}

.site-nav a,
.button,
.nav-toggle {
    font-family: var(--display);
    letter-spacing: 0;
    text-transform: uppercase;
}

.site-nav a {
    color: var(--white);
    font-size: 19px;
    text-decoration: none;
    transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus {
    color: var(--aqua);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 44px;
    padding: 10px;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
}

.hero {
    position: relative;
    min-height: clamp(620px, 78vh, 820px);
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.hero__media,
.hero__shade {
    position: absolute;
    inset: 0;
}

.hero__media {
    background-image: url("/assets/images/hero-paintwork.png");
    background-position: center;
    background-size: cover;
}

.hero__shade {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 35%, rgba(0, 0, 0, 0.18) 68%, rgba(0, 0, 0, 0.18) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 32%);
}

.hero__content {
    position: relative;
    z-index: 1;
    width: min(940px, calc(100% - 72px));
    padding: clamp(124px, 18vh, 190px) 0 92px;
    margin-left: clamp(28px, 6vw, 88px);
}

.hero h1,
.section-heading h2,
.contact-copy h2,
.awards-note h2,
.intro h2 {
    margin: 0;
    font-family: var(--display);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    line-height: 0.92;
}

.hero h1 {
    max-width: 940px;
    font-size: clamp(68px, 8.1vw, 124px);
    white-space: nowrap;
}

.hero h1 span {
    color: var(--aqua);
}

.hero p {
    max-width: 610px;
    padding-left: 28px;
    margin: 28px 0 0;
    color: var(--white);
    border-left: 4px solid var(--aqua);
    font-size: clamp(27px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.16;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 42px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 0 38px;
    border: 2px solid transparent;
    color: var(--ink);
    background: var(--aqua);
    font-size: 20px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button::after {
    content: "";
    width: 11px;
    height: 11px;
    margin-left: 18px;
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
    transform: rotate(45deg);
}

.button:hover,
.button:focus {
    transform: translateY(-2px);
    background: #55f0ed;
}

.button--ghost,
.button--outline {
    color: var(--aqua);
    background: rgba(0, 0, 0, 0.42);
    border-color: var(--aqua);
}

.button--ghost:hover,
.button--ghost:focus,
.button--outline:hover,
.button--outline:focus {
    color: var(--ink);
    background: var(--aqua);
}

.button--wide {
    width: 100%;
}

.intro {
    padding: 52px 24px 60px;
    text-align: center;
    background: var(--paper);
}

.section-rule,
.service-card__body span,
.contact-copy h2::after,
.awards-note h2::after {
    display: block;
    width: 66px;
    height: 4px;
    background: var(--aqua);
}

.section-rule {
    margin: 0 auto 20px;
}

.intro h2 {
    font-size: clamp(29px, 3.2vw, 42px);
}

.intro p {
    max-width: 720px;
    margin: 14px auto 0;
    color: var(--muted);
    font-size: 18px;
}

.what-we-do {
    padding: 72px 24px 78px;
    background:
        linear-gradient(180deg, rgba(22, 29, 34, 0.95), rgba(10, 13, 16, 0.98)),
        var(--ink-soft);
    color: var(--white);
}

.what-we-do__intro {
    width: min(100%, 1180px);
    margin: 0 auto;
}

.what-we-do__label {
    margin: 0 0 8px;
    color: var(--aqua);
    font-family: var(--display);
    font-size: 16px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.what-we-do h2 {
    margin: 0;
    max-width: 840px;
    font-size: clamp(42px, 5vw, 74px);
    line-height: 0.92;
    text-transform: uppercase;
}

.what-we-do p {
    max-width: 760px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 20px;
}

.what-we-do__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    width: min(100%, 1320px);
    margin: 28px auto 0;
}

.what-we-do-card {
    min-height: 198px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
}

.what-we-do-card h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(28px, 2.2vw, 40px);
    line-height: 0.95;
    text-transform: uppercase;
}

.what-we-do-card p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
}

.work-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 12px;
    width: min(100%, 1460px);
    margin: 0 auto;
    padding: 30px clamp(22px, 5vw, 78px);
    background: #eef2f5;
    border-bottom: 1px solid var(--line);
}

.work-trust__item {
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid var(--line);
}

.work-trust__item h2 {
    margin: 0;
    font-size: 26px;
    line-height: 1.04;
    text-transform: uppercase;
}

.work-trust__item p {
    margin: 12px 0 0;
    color: var(--muted);
}

.vdub-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(97, 23, 37, 0.92), rgba(7, 8, 9, 0.9) 48%, rgba(18, 35, 44, 0.94)),
        var(--ink);
}

.vdub-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0 18%, rgba(198, 154, 51, 0.78) 18% 18.5%, transparent 18.5% 100%),
        linear-gradient(90deg, transparent 0 43%, rgba(182, 90, 40, 0.5) 43% 45%, transparent 45% 100%),
        linear-gradient(90deg, transparent 0 72%, rgba(198, 154, 51, 0.5) 72% 72.35%, transparent 72.35% 100%);
    opacity: 0.58;
    pointer-events: none;
}

.vdub-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr);
    gap: clamp(34px, 5vw, 82px);
    align-items: center;
    width: min(100%, 1500px);
    margin: 0 auto;
    padding: 84px 54px 92px;
}

.vdub-copy h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(56px, 6vw, 104px);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
}

.vdub-copy h2::after {
    content: "";
    display: block;
    width: 126px;
    height: 5px;
    margin-top: 24px;
    background: var(--gold);
}

.vdub-copy p {
    max-width: 560px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 21px;
}

.vdub-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.vdub-points span {
    padding: 9px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.09);
    border-left: 3px solid var(--gold);
    font-family: var(--display);
    font-size: 17px;
    text-transform: uppercase;
}

.vdub-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.vdub-detail-grid article {
    min-width: 0;
    padding: 18px;
    background: rgba(7, 8, 9, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-top: 3px solid var(--gold);
}

.vdub-detail-grid h3 {
    margin: 0 0 8px;
    color: var(--white);
    font-family: var(--display);
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 0.96;
    text-transform: uppercase;
}

.vdub-detail-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.45;
}

.vdub-media {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
    gap: 16px;
    align-items: stretch;
}

.vdub-media figure {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: #13171a;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: var(--shadow);
}

.vdub-media img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.05);
}

.vdub-media__side img {
    min-height: 390px;
}

.vdub-media figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 18px;
    color: var(--white);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
    font-family: var(--display);
    font-size: 20px;
    text-transform: uppercase;
}

.project-section {
    padding: 86px clamp(22px, 5vw, 78px);
    background:
        linear-gradient(180deg, #f7f8f8, #e9edf0);
    border-bottom: 1px solid var(--line);
}

.project-section--dark {
    color: var(--white);
    background:
        radial-gradient(circle at 72% 18%, rgba(198, 154, 51, 0.22), transparent 28%),
        linear-gradient(135deg, #050607, #12161a 52%, #08090a);
    border-top: 1px solid rgba(198, 154, 51, 0.28);
    border-bottom: 1px solid rgba(198, 154, 51, 0.24);
}

.project-section--clean {
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(225, 231, 235, 0.86)),
        var(--paper);
}

.project-section--transporter {
    background:
        linear-gradient(120deg, rgba(182, 90, 40, 0.16), rgba(198, 154, 51, 0.12)),
        #f6f3ef;
}

.project-section--raptor {
    background:
        radial-gradient(circle at 76% 0%, rgba(43, 86, 54, 0.22), transparent 30%),
        linear-gradient(135deg, #edf1ef, #d9e0dc);
}

.project-section--repair {
    background:
        linear-gradient(135deg, #111518, #252b30);
    color: var(--white);
}

.project-section__intro {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
    gap: 44px;
    align-items: end;
    width: min(100%, 1460px);
    margin: 0 auto 42px;
}

.project-section__intro h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(48px, 5.6vw, 92px);
    line-height: 0.92;
    text-transform: uppercase;
}

.project-section__intro h2::after {
    content: "";
    display: block;
    width: 118px;
    height: 5px;
    margin-top: 22px;
    background: var(--copper);
}

.project-section__intro p {
    margin: 0;
    color: #30353a;
    max-width: 760px;
    font-size: 20px;
}

.project-section--dark .project-section__intro h2::after {
    background: var(--gold);
}

.project-section--clean .project-section__intro h2::after {
    background: var(--steel);
}

.project-section--transporter .project-section__intro h2::after {
    background: var(--gold);
}

.project-section--raptor .project-section__intro h2::after {
    background: #446b45;
}

.project-section--repair .project-section__intro h2::after {
    background: var(--aqua);
}

.project-section--dark .project-section__intro p {
    color: rgba(255, 255, 255, 0.78);
}

.project-section--repair .project-section__intro p {
    color: rgba(255, 255, 255, 0.78);
}

.project-mosaic {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    grid-auto-rows: minmax(230px, auto);
    gap: 16px;
    width: min(100%, 1460px);
    margin: 0 auto;
}

.project-mosaic--cobra {
    grid-template-columns: 1.18fr 0.82fr 0.82fr;
}

.project-mosaic--transporter {
    grid-template-columns: 1.12fr 0.94fr 0.94fr;
}

.project-mosaic--raptor {
    grid-template-columns: 1.08fr 0.96fr 0.96fr;
}

.project-mosaic--repair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-mosaic figure {
    position: relative;
    min-width: 0;
    min-height: 260px;
    margin: 0;
    overflow: hidden;
    background: #111518;
    border: 1px solid rgba(7, 8, 9, 0.18);
    box-shadow: 0 18px 46px rgba(7, 8, 9, 0.12);
}

.project-section--dark .project-mosaic figure {
    border-color: rgba(198, 154, 51, 0.28);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.38);
}

.project-section--clean .project-mosaic figure {
    border-color: rgba(127, 145, 160, 0.28);
}

.project-section--raptor .project-mosaic figure {
    border-color: rgba(68, 107, 69, 0.34);
}

.project-section--repair .project-mosaic figure {
    border-color: rgba(57, 227, 223, 0.24);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
}

.project-mosaic__large {
    grid-row: span 2;
}

.project-mosaic img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.project-mosaic figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 18px;
    color: var(--white);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0));
    font-family: var(--display);
    font-size: 20px;
    text-transform: uppercase;
}

.services {
    padding: 88px clamp(22px, 5vw, 78px) 86px;
    background: var(--paper);
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 570px);
    gap: 54px;
    align-items: start;
    width: min(100%, 1460px);
    margin: 0 auto 54px;
}

.section-heading h2,
.contact-copy h2 {
    font-size: clamp(66px, 7vw, 112px);
}

.section-heading h2::after {
    content: "";
    display: block;
    width: 126px;
    height: 4px;
    margin-top: 24px;
    background: var(--aqua);
}

.section-heading p {
    margin: 6px 0 0;
    font-size: 20px;
    color: #30353a;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100%, 1460px);
    margin: 0 auto;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-card {
    min-width: 0;
    background: var(--white);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service-card img {
    width: 100%;
    aspect-ratio: 1.08;
    object-fit: cover;
}

.service-card__body {
    padding: 28px 26px 40px;
}

.service-card__body span {
    margin-bottom: 20px;
}

.service-card h3 {
    margin: 0 0 10px;
    font-family: var(--display);
    font-size: clamp(30px, 2.3vw, 42px);
    line-height: 0.96;
    text-transform: uppercase;
}

.service-card p {
    margin: 0;
    color: #30353a;
}

.service-story {
    display: grid;
    gap: 26px;
    width: min(100%, 1460px);
    margin: 0 auto;
}

.service-panel {
    display: grid;
    grid-template-columns: minmax(360px, 0.95fr) minmax(320px, 1.05fr);
    min-height: 430px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 20px 60px rgba(7, 8, 9, 0.08);
}

.service-panel--reverse .service-panel__media {
    order: 2;
}

.service-panel__media {
    min-height: 430px;
    background: #15191d;
}

.service-panel__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-panel__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 5vw, 72px);
    border-top: 8px solid var(--aqua);
}

.service-panel:nth-child(2n) .service-panel__copy {
    border-top-color: var(--gold);
}

.service-panel:nth-child(3n) .service-panel__copy {
    border-top-color: var(--copper);
}

.service-panel h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(42px, 5vw, 78px);
    line-height: 0.92;
    text-transform: uppercase;
}

.service-panel p {
    max-width: 680px;
    margin: 22px 0 0;
    color: #30353a;
    font-size: 19px;
}

.service-panel ul {
    display: grid;
    gap: 10px;
    max-width: 680px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.service-panel li {
    position: relative;
    padding-left: 24px;
    color: #1f252b;
    font-weight: 700;
}

.service-panel li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 11px;
    height: 3px;
    background: var(--gold);
}

.estimate-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 0;
    padding: 38px clamp(26px, 6vw, 88px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.64)),
        url("/assets/images/hero-paintwork.png") center 58% / cover;
}

.estimate-band h2 {
    margin: 0 0 6px;
    font-family: var(--display);
    font-size: clamp(34px, 3.2vw, 52px);
    text-transform: uppercase;
}

.estimate-band p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

.contact-copy h2::after,
.awards-note h2::after {
    content: "";
    margin-top: 18px;
}

.profile-section {
    padding: 82px clamp(24px, 6vw, 88px);
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(7, 8, 9, 0.94), rgba(21, 25, 29, 0.88)),
        var(--ink-soft);
}

.profile-card {
    display: grid;
    grid-template-columns: minmax(360px, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(30px, 5vw, 72px);
    align-items: center;
    width: min(100%, 1360px);
    margin: 0 auto;
}

.profile-card__media {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: #111518;
    box-shadow: var(--shadow);
}

.profile-card__media img {
    width: 100%;
    aspect-ratio: 1.45;
    object-fit: cover;
}

.profile-card__copy h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(44px, 5.4vw, 82px);
    line-height: 0.92;
    text-transform: uppercase;
}

.profile-card__copy h2::after {
    content: "";
    display: block;
    width: 104px;
    height: 5px;
    margin-top: 22px;
    background: var(--aqua);
}

.profile-card__copy p {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 20px;
}

.profile-card__copy .profile-card__note {
    padding-top: 18px;
    color: rgba(255, 255, 255, 0.66);
    border-top: 1px solid rgba(57, 227, 223, 0.28);
    font-size: 15px;
}

.awards-note {
    padding: 48px clamp(26px, 6vw, 88px);
    color: var(--white);
    background: var(--ink-soft);
}

.awards-note > div {
    display: grid;
    grid-template-columns: minmax(220px, 360px) minmax(260px, 520px) minmax(260px, 420px);
    align-items: center;
    gap: 44px;
    width: min(100%, 1360px);
    margin: 0 auto;
}

.awards-note h2 {
    font-size: clamp(42px, 4.8vw, 76px);
}

.awards-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
}

.award-details {
    display: grid;
    gap: 22px;
}

.award-item {
    max-width: 560px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(57, 227, 223, 0.45);
}

.award-item span,
.award-item h3 {
    font-family: var(--display);
    text-transform: uppercase;
}

.award-item span {
    display: block;
    color: var(--aqua);
    font-size: 18px;
}

.award-item h3 {
    margin: 4px 0 2px;
    color: var(--white);
    font-size: clamp(30px, 3vw, 44px);
    line-height: 0.98;
}

.award-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-width: 0;
}

.award-media {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: #111518;
}

.award-media img {
    width: 100%;
    aspect-ratio: 1.25;
    object-fit: cover;
}

.award-media--wide {
    grid-column: 1 / -1;
}

.award-media--wide img {
    aspect-ratio: 1.9;
}

.local-section {
    padding: 54px clamp(26px, 6vw, 88px);
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(198, 154, 51, 0.16), rgba(57, 227, 223, 0.1)),
        var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.local-section > div {
    width: min(100%, 1180px);
    margin: 0 auto;
}

.local-section h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(38px, 4.4vw, 68px);
    line-height: 0.95;
    text-transform: uppercase;
}

.local-section h2::after {
    content: "";
    display: block;
    width: 112px;
    height: 4px;
    margin-top: 18px;
    background: var(--gold);
}

.local-section p {
    max-width: 920px;
    margin: 22px 0 0;
    color: #30353a;
    font-size: 20px;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
    gap: 52px;
    width: min(100%, 1460px);
    margin: 0 auto;
    padding: 70px 54px 76px;
    background: var(--paper);
}

.contact-copy p {
    max-width: 540px;
    margin: 26px 0 30px;
    color: var(--muted);
    font-size: 19px;
}

.contact-methods {
    display: grid;
    gap: 9px;
    color: #2c3237;
}

.contact-methods a {
    color: var(--ink);
    font-weight: 700;
    text-decoration-color: var(--aqua);
    text-underline-offset: 4px;
}

.estimate-form {
    padding-top: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
}

.form-grid label {
    display: grid;
    gap: 7px;
}

.form-grid span {
    font-family: var(--display);
    font-size: 16px;
    text-transform: uppercase;
}

.form-grid__message {
    grid-row: span 2;
}

input,
select,
textarea {
    width: 100%;
    min-height: 50px;
    padding: 13px 15px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid #bfc6cc;
    border-radius: 0;
    font: 16px/1.3 var(--body);
}

textarea {
    min-height: 132px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(57, 227, 223, 0.42);
    border-color: var(--aqua-dark);
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.form-status {
    margin-bottom: 18px;
    padding: 13px 16px;
    color: var(--white);
    font-weight: 700;
}

.form-status--success {
    background: var(--success);
}

.form-status--error {
    background: var(--danger);
}

.faq-section {
    padding: 74px clamp(24px, 6vw, 88px);
    background: var(--paper);
}

.faq-section h2 {
    margin: 0;
    max-width: 1080px;
    font-size: clamp(46px, 5.2vw, 80px);
    line-height: 0.92;
    text-transform: uppercase;
}

.faq-section__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: min(100%, 1460px);
    margin: 30px auto 0;
}

.faq-item {
    padding: 20px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 12px 34px rgba(7, 8, 9, 0.06);
}

.faq-item h3 {
    margin: 0;
    font-family: var(--display);
    font-size: 26px;
    line-height: 1.02;
    text-transform: uppercase;
}

.faq-item p {
    margin: 12px 0 0;
    color: #2d343a;
    font-size: 17px;
}

.site-footer {
    color: var(--white);
    background: #0d0f11;
    border-top: 1px solid rgba(57, 227, 223, 0.35);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 42px;
    width: min(100%, 1360px);
    margin: 0 auto;
    padding: 34px 54px;
}

.footer-brand img {
    max-width: 270px;
    filter: brightness(0) saturate(100%) invert(86%) sepia(61%) saturate(827%) hue-rotate(126deg) brightness(98%) contrast(89%);
}

.footer-brand p,
.site-footer__base {
    color: var(--aqua);
    font-family: var(--display);
    text-transform: uppercase;
}

.footer-contact,
.footer-links {
    display: grid;
    gap: 9px;
    align-content: center;
    padding-left: 42px;
    border-left: 1px solid rgba(255, 255, 255, 0.24);
    font-style: normal;
}

.footer-contact a,
.footer-links a {
    color: var(--white);
    text-decoration-color: var(--aqua);
    text-underline-offset: 4px;
}

.site-footer__base {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 54px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.site-footer__base a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration-color: var(--aqua);
    text-underline-offset: 4px;
}

@media (max-width: 1100px) {
    .site-header__inner {
        padding: 0 28px;
    }

    .site-nav {
        gap: 24px;
    }

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

    .vdub-layout,
    .vdub-media,
    .vdub-detail-grid,
    .what-we-do__grid,
    .faq-section__list,
    .work-trust,
    .project-section__intro,
    .project-mosaic,
    .service-panel,
    .profile-card {
        grid-template-columns: 1fr;
    }

    .service-panel--reverse .service-panel__media {
        order: 0;
    }

    .service-panel__media,
    .vdub-media img,
    .vdub-media__side img {
        min-height: 340px;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 76px;
    }

    .site-header__inner {
        min-height: 76px;
        padding: 0 18px;
    }

    .brand {
        width: 210px;
    }

    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: 76px;
        right: 0;
        left: 0;
        display: none;
        padding: 18px;
        background: rgba(5, 6, 7, 0.98);
        border-top: 1px solid rgba(57, 227, 223, 0.2);
    }

    .site-nav.is-open {
        display: grid;
        gap: 18px;
    }

    .site-nav a {
        font-size: 21px;
    }

    .hero {
        min-height: 670px;
    }

    .hero__media {
        background-position: 68% center;
    }

    .hero__shade {
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.62)),
            linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));
    }

    .hero__content {
        width: calc(100% - 36px);
        padding-top: 112px;
        margin-left: 18px;
    }

    .hero h1 {
        font-size: clamp(58px, 18vw, 86px);
        white-space: normal;
    }

    .hero p {
        padding-left: 18px;
        font-size: 28px;
    }

    .hero__actions {
        gap: 14px;
    }

    .button {
        width: 100%;
        min-height: 58px;
        padding: 0 24px;
        font-size: 18px;
    }

    .section-heading,
    .awards-note > div {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services,
    .vdub-layout,
    .project-section,
    .profile-section,
    .contact-section {
        padding-right: 18px;
        padding-left: 18px;
    }

    .service-grid,
    .form-grid,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .estimate-band {
        display: grid;
        padding: 34px 18px;
    }

    .vdub-layout {
        padding-top: 58px;
        padding-bottom: 62px;
    }

    .vdub-copy h2 {
        font-size: clamp(50px, 16vw, 74px);
    }

    .vdub-copy p {
        font-size: 18px;
    }

    .vdub-media img,
    .vdub-media__side img,
    .project-mosaic img,
    .service-panel__media {
        min-height: 260px;
    }

    .service-panel {
        min-height: 0;
    }

    .service-panel__copy {
        padding: 30px 22px 34px;
    }

    .service-panel h3,
    .profile-card__copy h2 {
        font-size: clamp(40px, 14vw, 62px);
    }

    .what-we-do__grid,
    .work-trust,
    .faq-section__list {
        grid-template-columns: 1fr;
    }

    .work-trust__item h2 {
        font-size: 34px;
    }

    .profile-section {
        padding-top: 54px;
        padding-bottom: 58px;
    }

    .contact-copy h2,
    .section-heading h2 {
        font-size: clamp(52px, 18vw, 76px);
    }

    .form-grid__message {
        grid-row: auto;
    }

    .footer-contact,
    .footer-links {
        padding-left: 0;
        border-left: 0;
    }

    .site-footer__inner {
        padding: 32px 18px;
    }

    .site-footer__base {
        display: grid;
        padding: 14px 18px;
    }
}

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