:root {
    --yellow: #f5b700;
    --yellow-light: #ffd34d;
    --orange: #ee6c1a;
    --black: #111214;
    --black-soft: #1b1d20;
    --asphalt: #292d31;
    --steel: #5f6871;
    --concrete: #e8e6e0;
    --sand: #f4f0e7;
    --white: #ffffff;
    --text: #232323;
    --muted: #62676c;
    --line: #d9d6cf;
    --shadow: 0 24px 70px rgba(17, 18, 20, 0.16);
    --font-heading: "Arial Black", "Arial Narrow", Arial, sans-serif;
    --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--sand);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-underline-offset: 0.2em;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(2.8rem, 7vw, 6.5rem);
}

h2 {
    font-size: clamp(2rem, 4.5vw, 4rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.8rem);
}

p:last-child {
    margin-bottom: 0;
}

::selection {
    color: var(--black);
    background: var(--yellow);
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.7rem 1rem;
    color: var(--black);
    background: var(--yellow);
    font-weight: 800;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.btn {
    border-radius: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: none;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.btn-warning {
    --bs-btn-color: var(--black);
    --bs-btn-bg: var(--yellow);
    --bs-btn-border-color: var(--yellow);
    --bs-btn-hover-color: var(--black);
    --bs-btn-hover-bg: var(--yellow-light);
    --bs-btn-hover-border-color: var(--yellow-light);
    --bs-btn-active-color: var(--black);
    --bs-btn-active-bg: var(--yellow-light);
    --bs-btn-active-border-color: var(--yellow-light);
}

.btn-dark {
    --bs-btn-bg: var(--black);
    --bs-btn-border-color: var(--black);
    --bs-btn-hover-bg: var(--asphalt);
    --bs-btn-hover-border-color: var(--asphalt);
}

.btn-outline-light:hover {
    color: var(--black);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}

.utility-bar {
    color: #f5f5f5;
    background: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
}

.utility-inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: flex-end;
    gap: 1.4rem;
}

.utility-inner span,
.utility-inner a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    white-space: nowrap;
}

.utility-inner i {
    color: var(--yellow);
}

.site-header {
    position: relative;
    z-index: 1000;
    background: var(--black-soft);
    border-bottom: 5px solid var(--yellow);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.site-header.is-sticky {
    position: sticky;
    top: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.26);
}

.navbar {
    min-height: 108px;
    padding: 0.7rem 0;
}

.navbar-brand {
    width: min(300px, 58vw);
    padding: 0;
}

.navbar-brand img {
    width: 100%;
    height: auto;
}

.navbar-toggler {
    border: 2px solid var(--yellow);
    border-radius: 0;
    background: var(--yellow);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(245, 183, 0, 0.25);
}

.nav-link {
    position: relative;
    margin: 0 0.12rem;
    padding: 0.8rem 0.72rem !important;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.035em;
    font-size: 0.88rem;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: var(--yellow);
}

.nav-link::after {
    position: absolute;
    right: 0.7rem;
    bottom: 0.48rem;
    left: 0.7rem;
    height: 3px;
    content: "";
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.btn-nav {
    padding: 0.85rem 1.2rem;
    font-size: 0.82rem;
}

.section-padding {
    padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.eyebrow span {
    display: inline-block;
    width: 42px;
    height: 5px;
    background: currentColor;
    transform: skewX(-28deg);
}

.eyebrow.text-dark {
    color: var(--black) !important;
}

.section-heading {
    max-width: 900px;
    margin-bottom: 3rem;
}

.section-heading h2 {
    margin-bottom: 1.25rem;
}

.section-heading > p:last-child,
.split-heading > p {
    color: var(--muted);
    font-size: 1.08rem;
}

.split-heading {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
    align-items: end;
    gap: 3rem;
}

.home-hero {
    position: relative;
    color: var(--white);
    background:
        linear-gradient(110deg, rgba(17, 18, 20, 0.99) 0%, rgba(17, 18, 20, 0.96) 52%, rgba(17, 18, 20, 0.87) 100%),
        repeating-linear-gradient(135deg, transparent 0, transparent 32px, rgba(255, 255, 255, 0.025) 32px, rgba(255, 255, 255, 0.025) 34px);
    padding: clamp(4rem, 7vw, 7rem) 0 clamp(4rem, 8vw, 8rem);
    overflow: hidden;
}

.home-hero::before {
    position: absolute;
    top: -120px;
    right: -160px;
    width: 620px;
    height: 620px;
    border: 95px solid rgba(245, 183, 0, 0.08);
    border-radius: 50%;
    content: "";
}

.home-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 14px;
    content: "";
    background: repeating-linear-gradient(135deg, var(--yellow) 0, var(--yellow) 24px, var(--black) 24px, var(--black) 48px);
}

.home-hero .container {
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 1040px;
    margin-bottom: 3.2rem;
}

.hero-copy h1 {
    max-width: 900px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-copy h1::first-line {
    color: var(--yellow);
}

.hero-lead {
    max-width: 860px;
    margin-bottom: 2rem;
    color: #d7d8d9;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.8rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
    color: #e9e9e9;
    font-weight: 700;
}

.hero-proof i {
    margin-right: 0.4rem;
    color: var(--yellow);
}

.hero-banner {
    position: relative;
    margin: 0;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.44);
    clip-path: polygon(0 0, calc(100% - 38px) 0, 100% 38px, 100% 100%, 38px 100%, 0 calc(100% - 38px));
}

.hero-banner img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: contain;
}

.hero-banner figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    color: var(--yellow);
    background: rgba(17, 18, 20, 0.94);
    font-family: var(--font-heading);
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-banner figcaption span {
    width: 5px;
    height: 5px;
    background: var(--white);
}

.quick-services {
    position: relative;
    background: var(--sand);
}

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

.service-tile {
    position: relative;
    min-height: 380px;
    color: var(--white);
    background: var(--black);
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}

.service-tile-large {
    grid-row: span 2;
    min-height: 784px;
}

.service-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    transition: transform 0.5s ease, opacity 0.4s ease;
}

.service-tile::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(17, 18, 20, 0.98), rgba(17, 18, 20, 0.15) 70%);
}

.service-tile:hover img {
    opacity: 0.88;
    transform: scale(1.035);
}

.service-tile-content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: clamp(1.6rem, 4vw, 3rem);
}

.service-number {
    position: absolute;
    right: 1.5rem;
    bottom: 1rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
}

.service-tile h3 {
    position: relative;
    margin-bottom: 0.7rem;
    color: var(--yellow);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    text-transform: uppercase;
}

.service-tile p {
    position: relative;
    max-width: 520px;
    color: #e0e0e0;
}

.service-tile a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.7rem;
    color: var(--white);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.service-tile a:hover {
    color: var(--yellow);
}

.experience-band {
    position: relative;
    padding: clamp(4rem, 7vw, 7rem) 0;
    color: var(--white);
    background: var(--asphalt);
    overflow: hidden;
}

.experience-band::before {
    position: absolute;
    top: -120px;
    bottom: -120px;
    left: -130px;
    width: 400px;
    content: "";
    background: var(--yellow);
    transform: skewX(-12deg);
}

.experience-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.5fr 1.2fr 1fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
}

.experience-stat {
    color: var(--black);
    text-align: center;
}

.experience-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(5rem, 11vw, 9rem);
    line-height: 0.8;
}

.experience-stat span {
    display: block;
    margin-top: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.experience-copy h2 {
    margin-bottom: 1.3rem;
}

.experience-copy p:not(.eyebrow) {
    color: #d8d8d8;
}

.text-link-light {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1rem;
    color: var(--yellow);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.experience-points {
    display: grid;
    gap: 1rem;
}

.experience-points > div {
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.experience-points i {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--black);
    background: var(--yellow);
    font-size: 1.2rem;
    clip-path: polygon(0 0, 78% 0, 100% 22%, 100% 100%, 22% 100%, 0 78%);
}

.experience-points strong {
    display: block;
    color: var(--yellow);
    text-transform: uppercase;
}

.process-section {
    background: var(--white);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.process-list li {
    position: relative;
    display: grid;
    min-height: 300px;
    grid-template-rows: auto 1fr;
    padding: 2rem;
    border-right: 1px solid var(--line);
}

.process-list li:last-child {
    border-right: 0;
}

.process-list > li > span {
    color: var(--yellow);
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
}

.process-list h3 {
    margin-bottom: 0.7rem;
    text-transform: uppercase;
}

.process-list p {
    color: var(--muted);
}

.local-section {
    background:
        linear-gradient(rgba(17, 18, 20, 0.03), rgba(17, 18, 20, 0.03)),
        repeating-linear-gradient(90deg, transparent 0, transparent 59px, rgba(17, 18, 20, 0.035) 60px);
}

.local-card {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    min-height: 480px;
    color: var(--white);
    background: var(--black);
    box-shadow: var(--shadow);
    clip-path: polygon(0 0, calc(100% - 38px) 0, 100% 38px, 100% 100%, 38px 100%, 0 calc(100% - 38px));
}

.local-map {
    position: relative;
    display: grid;
    min-height: 430px;
    place-items: center;
    background:
        linear-gradient(rgba(245, 183, 0, 0.82), rgba(245, 183, 0, 0.82)),
        url("../img/road-pattern.svg") center / cover;
    overflow: hidden;
}

.local-map strong {
    position: absolute;
    bottom: 2rem;
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 0.05em;
}

.map-pin {
    position: relative;
    z-index: 2;
    display: grid;
    width: 88px;
    height: 88px;
    place-items: center;
    color: var(--yellow);
    background: var(--black);
    border-radius: 50%;
    font-size: 2.4rem;
    box-shadow: 0 0 0 18px rgba(17, 18, 20, 0.16);
}

.map-ring {
    position: absolute;
    border: 2px solid rgba(17, 18, 20, 0.35);
    border-radius: 50%;
}

.ring-one {
    width: 230px;
    height: 230px;
}

.ring-two {
    width: 380px;
    height: 380px;
}

.local-copy {
    align-self: center;
    padding: clamp(2.5rem, 6vw, 5rem);
}

.local-copy p:not(.eyebrow) {
    color: #d2d2d2;
    font-size: 1.08rem;
}

.local-address {
    margin: 1.5rem 0;
    color: var(--white) !important;
    font-weight: 800;
}

.local-address i {
    margin-right: 0.5rem;
    color: var(--yellow);
}

.page-hero {
    position: relative;
    padding: clamp(4rem, 8vw, 7rem) 0;
    color: var(--white);
    background: var(--black);
    overflow: hidden;
}

.page-hero::after {
    position: absolute;
    top: -220px;
    right: -150px;
    width: 600px;
    height: 600px;
    border: 100px solid rgba(245, 183, 0, 0.08);
    border-radius: 50%;
    content: "";
}

.page-hero::before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 10px;
    content: "";
    background: repeating-linear-gradient(135deg, var(--yellow) 0, var(--yellow) 20px, var(--black) 20px, var(--black) 40px);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    align-items: center;
    gap: 3rem;
}

.page-hero h1 {
    max-width: 1050px;
    margin-bottom: 1.4rem;
    font-size: clamp(2.6rem, 6vw, 5.5rem);
    text-transform: uppercase;
}

.page-hero p:not(.eyebrow) {
    max-width: 820px;
    color: #d2d3d4;
    font-size: 1.18rem;
}

.page-hero-badge {
    display: grid;
    width: 170px;
    height: 170px;
    place-content: center;
    color: var(--black);
    background: var(--yellow);
    text-align: center;
    clip-path: polygon(0 0, 76% 0, 100% 24%, 100% 100%, 24% 100%, 0 76%);
}

.page-hero-badge strong,
.page-hero-badge i {
    display: block;
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 0.9;
}

.page-hero-badge span {
    display: block;
    margin-top: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.service-detail-section {
    background: var(--white);
}

.service-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 6rem);
    padding: 2rem 0 6rem;
    scroll-margin-top: 140px;
}

.service-detail + .service-detail {
    padding-top: 6rem;
    border-top: 1px solid var(--line);
}

.service-detail-reverse .service-detail-image {
    order: 2;
}

.service-detail-image {
    position: relative;
    min-height: 470px;
    background: var(--black);
    box-shadow: var(--shadow);
    clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 34px 100%, 0 calc(100% - 34px));
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
}

.service-detail-image > span {
    position: absolute;
    right: -1px;
    bottom: -1px;
    padding: 1rem 1.35rem;
    color: var(--black);
    background: var(--yellow);
    font-family: var(--font-heading);
    font-size: 2.8rem;
}

.service-detail-copy h2 {
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.service-detail-copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.1rem;
}

.check-list {
    display: grid;
    gap: 0.65rem;
    margin: 1.5rem 0 2rem;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    font-weight: 700;
}

.check-list li::before {
    position: absolute;
    top: 0.28rem;
    left: 0;
    width: 1.15rem;
    height: 1.15rem;
    content: "";
    background: var(--yellow);
    clip-path: polygon(0 0, 100% 0, 100% 74%, 74% 100%, 0 100%);
}

.secondary-services {
    background: var(--concrete);
}

.secondary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.secondary-card {
    min-height: 360px;
    padding: 2rem;
    background: var(--white);
    border-top: 8px solid var(--black);
    box-shadow: 0 15px 40px rgba(17, 18, 20, 0.07);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.secondary-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.secondary-icon {
    display: grid;
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    place-items: center;
    color: var(--black);
    background: var(--yellow);
    font-size: 1.7rem;
    clip-path: polygon(0 0, 78% 0, 100% 22%, 100% 100%, 22% 100%, 0 78%);
}

.secondary-card h3 {
    min-height: 3.6rem;
    text-transform: uppercase;
}

.secondary-card p {
    color: var(--muted);
}

.equipment-strip {
    padding: clamp(4rem, 8vw, 7rem) 0;
    color: var(--white);
    background: var(--black);
}

.equipment-inner {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: clamp(2rem, 6vw, 6rem);
}

.equipment-inner img {
    width: 100%;
    min-height: 400px;
    object-fit: cover;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.equipment-inner p:not(.eyebrow) {
    color: #d2d2d2;
    font-size: 1.08rem;
}

.illustration-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.25rem 1.4rem;
    color: var(--black);
    background: #fff4c7;
    border-left: 6px solid var(--yellow);
}

.illustration-note i {
    margin-top: 0.2rem;
    font-size: 1.3rem;
}

.illustration-note strong {
    display: block;
    text-transform: uppercase;
}

.gallery-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 360px;
    gap: 1.2rem;
}

.gallery-card {
    position: relative;
    margin: 0;
    background: var(--black);
    overflow: hidden;
}

.gallery-card-wide {
    grid-column: span 2;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.84;
    transition: transform 0.5s ease, opacity 0.4s ease;
}

.gallery-card:hover img {
    opacity: 1;
    transform: scale(1.035);
}

.gallery-card figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 3rem 1.5rem 1.4rem;
    color: var(--white);
    background: linear-gradient(transparent, rgba(17, 18, 20, 0.96));
}

.gallery-card figcaption span {
    display: block;
    color: var(--yellow);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.gallery-card figcaption strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-transform: uppercase;
}

.project-types {
    background: var(--concrete);
}

.project-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.project-tag-list span {
    padding: 0.8rem 1rem;
    color: var(--white);
    background: var(--black);
    font-weight: 900;
    text-transform: uppercase;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.company-story {
    background: var(--white);
}

.company-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(2.5rem, 7vw, 7rem);
}

.company-image {
    position: relative;
}

.company-image img {
    width: 100%;
    min-height: 600px;
    object-fit: cover;
    box-shadow: var(--shadow);
    clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 36px, 100% 100%, 36px 100%, 0 calc(100% - 36px));
}

.company-image-label {
    position: absolute;
    right: -1rem;
    bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.3rem;
    color: var(--black);
    background: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
}

.company-copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
}

.company-values {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.company-values > div {
    display: grid;
    grid-template-columns: 58px 100px 1fr;
    align-items: baseline;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
}

.company-values span {
    color: var(--yellow);
    font-family: var(--font-heading);
    font-size: 2rem;
}

.company-values strong {
    text-transform: uppercase;
}

.company-values p {
    color: var(--muted);
}

.commitments {
    background: var(--concrete);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: #cfcac0;
}

.commitment-card {
    min-height: 320px;
    padding: 2rem;
    background: var(--sand);
}

.commitment-card i {
    margin-bottom: 2rem;
    color: var(--yellow);
    font-size: 2.4rem;
}

.commitment-card h3 {
    text-transform: uppercase;
}

.commitment-card p {
    color: var(--muted);
}

.company-area {
    padding: clamp(4rem, 8vw, 7rem) 0;
    color: var(--white);
    background: var(--asphalt);
}

.company-area-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.6fr;
    align-items: center;
    gap: 4rem;
}

.company-area-inner > div:first-child p:not(.eyebrow) {
    max-width: 700px;
    color: #d0d0d0;
}

.company-address-card {
    display: grid;
    padding: 2rem;
    color: var(--black);
    background: var(--yellow);
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

.company-address-card i {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.company-address-card strong {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
}

.company-address-card a {
    margin-top: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-section {
    background: var(--concrete);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: clamp(2rem, 6vw, 6rem);
}

.contact-info {
    position: sticky;
    top: 150px;
}

.contact-info-list {
    display: grid;
    gap: 0;
    margin-top: 2rem;
    background: var(--white);
    border-top: 6px solid var(--black);
}

.contact-info-list > div {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 1rem;
    padding: 1.2rem;
    border-bottom: 1px solid var(--line);
}

.contact-info-list i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--black);
    background: var(--yellow);
}

.contact-info-list strong {
    display: block;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}

.contact-tip {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    margin-top: 1.3rem;
    padding: 1.3rem;
    color: var(--white);
    background: var(--black);
}

.contact-tip i {
    color: var(--yellow);
    font-size: 1.3rem;
}

.contact-tip strong {
    display: block;
    color: var(--yellow);
    text-transform: uppercase;
}

.contact-form-card {
    padding: clamp(1.5rem, 5vw, 3.5rem);
    background: var(--white);
    box-shadow: var(--shadow);
    border-top: 10px solid var(--yellow);
}

.form-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-heading-icon {
    display: grid;
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--black);
    background: var(--yellow);
    font-size: 1.4rem;
}

.form-heading p {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-heading h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    text-transform: uppercase;
}

.form-label {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
}

.form-label span {
    color: #b53317;
}

.form-control,
.form-select {
    min-height: 54px;
    color: var(--black);
    background: #f8f7f3;
    border: 2px solid #d1cec6;
    border-radius: 0;
}

textarea.form-control {
    min-height: 180px;
}

.form-control:focus,
.form-select:focus {
    background: var(--white);
    border-color: var(--yellow);
    box-shadow: 0 0 0 0.2rem rgba(245, 183, 0, 0.22);
}

.form-help,
.recaptcha-notice {
    margin-top: 0.6rem;
    color: var(--muted);
    font-size: 0.84rem;
}

.recaptcha-notice {
    margin: 1.25rem 0 0;
    text-align: center;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.alert {
    border: 0;
    border-left: 6px solid currentColor;
    border-radius: 0;
}

.legal-hero {
    padding: clamp(4rem, 7vw, 6rem) 0;
    color: var(--white);
    background: var(--black);
    border-bottom: 10px solid var(--yellow);
}

.legal-hero h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.6rem, 6vw, 5rem);
    text-transform: uppercase;
}

.legal-hero p:not(.eyebrow) {
    max-width: 760px;
    color: #d7d7d7;
}

.legal-section {
    background: var(--white);
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: start;
    gap: 4rem;
}

.legal-content {
    max-width: 880px;
}

.legal-content section + section {
    margin-top: 3.5rem;
    padding-top: 3.5rem;
    border-top: 1px solid var(--line);
}

.legal-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-transform: uppercase;
}

.legal-content p {
    color: #4c5155;
}

.legal-content a {
    color: #6e4d00;
    font-weight: 800;
}

.legal-data {
    margin: 0 0 1.5rem;
}

.legal-data > div {
    display: grid;
    grid-template-columns: minmax(170px, 0.4fr) minmax(0, 1fr);
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
}

.legal-data dt {
    color: var(--black);
    font-weight: 900;
}

.legal-data dd {
    margin: 0;
    color: #4c5155;
}

.legal-nav {
    position: sticky;
    top: 150px;
    display: grid;
    padding: 1.5rem;
    background: var(--concrete);
    border-top: 6px solid var(--yellow);
}

.legal-nav strong {
    margin-bottom: 0.7rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.legal-nav a {
    padding: 0.7rem 0;
    color: var(--text);
    border-bottom: 1px solid #c8c3b9;
    font-weight: 800;
    text-decoration: none;
}

.legal-nav a[aria-current="page"],
.legal-nav a:hover {
    color: #6e4d00;
}

.error-page {
    min-height: 70vh;
    padding: clamp(5rem, 10vw, 10rem) 0;
    background: var(--concrete);
}

.error-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: clamp(2rem, 6vw, 6rem);
}

.error-code {
    color: var(--yellow);
    font-family: var(--font-heading);
    font-size: clamp(7rem, 20vw, 16rem);
    line-height: 0.8;
    text-shadow: 12px 12px 0 var(--black);
}

.error-inner h1 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    text-transform: uppercase;
}

.footer-cta {
    padding: 3rem 0;
    color: var(--black);
    background: var(--yellow);
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-cta h2 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    text-transform: uppercase;
}

.footer-cta-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 0.8rem;
}

.site-footer {
    color: #cbcdce;
    background: var(--black);
}

.footer-logo {
    width: min(260px, 85%);
    height: auto;
}

.footer-address i {
    margin-right: 0.45rem;
    color: var(--yellow);
}

.footer-title {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links,
.footer-hours {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li + li,
.footer-hours li + li {
    margin-top: 0.5rem;
}

.footer-links a,
.footer-contact-link {
    color: #cbcdce;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact-link:hover {
    color: var(--yellow);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.footer-hours strong {
    color: var(--white);
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 0.86rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom > div {
    display: flex;
    gap: 1.2rem;
}

.footer-bottom a {
    color: #cbcdce;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--yellow);
}

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1199.98px) {
    .secondary-grid,
    .commitment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .experience-grid {
        grid-template-columns: 0.45fr 1.1fr;
    }

    .experience-points {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .experience-band::before {
        width: 330px;
    }
}

@media (max-width: 991.98px) {
    .utility-inner {
        justify-content: center;
    }

    .utility-inner span:nth-child(3) {
        display: none;
    }

    .navbar {
        min-height: 88px;
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        background: #101113;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        padding: 0.8rem 0 !important;
    }

    .nav-link::after {
        right: auto;
        bottom: 0.35rem;
        left: 0;
        width: 40px;
    }

    .btn-nav {
        display: block;
        margin-top: 0.8rem;
        text-align: center;
    }

    .split-heading,
    .local-card,
    .service-detail,
    .equipment-inner,
    .company-story-grid,
    .company-area-inner,
    .contact-grid,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .service-detail-reverse .service-detail-image {
        order: initial;
    }

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

    .process-list li:nth-child(2) {
        border-right: 0;
    }

    .process-list li:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .page-hero-inner {
        grid-template-columns: 1fr;
    }

    .page-hero-badge {
        width: 120px;
        height: 120px;
    }

    .page-hero-badge strong,
    .page-hero-badge i {
        font-size: 3rem;
    }

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

    .gallery-card-wide {
        grid-column: span 1;
    }

    .contact-info,
    .legal-nav {
        position: static;
    }

    .legal-nav {
        order: -1;
    }

    .footer-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .utility-inner {
        min-height: 34px;
        gap: 0.8rem;
        font-size: 0.72rem;
    }

    .utility-inner span:nth-child(2) {
        display: none;
    }

    .home-hero {
        padding-top: 3.2rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.55rem, 13vw, 4.5rem);
    }

    .hero-actions,
    .footer-cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn,
    .footer-cta-actions .btn {
        width: 100%;
    }

    .hero-banner figcaption {
        position: static;
        justify-content: center;
        padding: 0.75rem;
    }

    .service-grid,
    .secondary-grid,
    .commitment-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .service-tile-large {
        grid-row: auto;
        min-height: 430px;
    }

    .service-tile {
        min-height: 430px;
    }

    .experience-band::before {
        top: 0;
        right: 0;
        bottom: auto;
        left: 0;
        width: auto;
        height: 210px;
        transform: none;
    }

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

    .experience-stat {
        min-height: 150px;
    }

    .experience-points {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .process-list {
        grid-template-columns: 1fr;
    }

    .process-list li,
    .process-list li:nth-child(2) {
        min-height: 220px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .process-list li:last-child {
        border-bottom: 0;
    }

    .local-map {
        min-height: 330px;
    }

    .service-detail-image,
    .service-detail-image img {
        min-height: 340px;
    }

    .gallery-grid {
        grid-auto-rows: 350px;
    }

    .company-image img {
        min-height: 430px;
    }

    .company-values > div {
        grid-template-columns: 48px 1fr;
    }

    .company-values p {
        grid-column: 2;
    }

    .legal-data > div {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }

    .error-inner {
        grid-template-columns: 1fr;
    }

    .error-code {
        font-size: 8rem;
    }

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

    .footer-bottom > div {
        flex-direction: column;
        gap: 0.4rem;
    }
}

@media (max-width: 479.98px) {
    .container {
        --bs-gutter-x: 1.4rem;
    }

    .navbar-brand {
        width: 220px;
    }

    .hero-proof {
        display: grid;
    }

    .hero-banner figcaption {
        gap: 0.4rem;
        font-size: 0.68rem;
    }

    .service-tile-content {
        padding: 1.4rem;
    }

    .page-hero-badge {
        display: none;
    }

    .contact-form-card {
        margin-right: -0.2rem;
        margin-left: -0.2rem;
        padding: 1.25rem;
    }

    .form-heading-icon {
        width: 50px;
        height: 50px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
