* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --black: #000000;
    --panel: #0d0d0d;
    --panel-2: #111111;
    --line: #252525;
    --white: #f5f5f5;
    --muted: #a9a9a9;
    --teal: #19a9b7;
    --teal-dark: #0c6d76;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 104px;
    padding: 12px 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, .96);
    border-bottom: 1px solid var(--line);
}

.brand {
    display: block;
    line-height: 0;
}

.brand img {
    display: block;
    width: 250px;
    height: 82px;
    object-fit: contain;
    object-position: left center;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: .88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.main-nav a {
    text-decoration: none;
}

.main-nav a:hover {
    color: var(--teal);
}

.nav-cta {
    padding: 13px 22px;
    border: 1px solid var(--teal);
    color: var(--white);
}

.hero {
    min-height: 610px;
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-copy {
    padding: 90px 0 90px 9%;
    position: relative;
    z-index: 2;
}

.eyebrow {
    margin: 0 0 12px;
    color: #d0d0d0;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 3px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(3.2rem, 6vw, 6.4rem);
    line-height: .92;
    letter-spacing: -3px;
    text-transform: uppercase;
}

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

.hero-text {
    max-width: 620px;
    margin: 28px 0 0;
    color: #c3c3c3;
    font-size: 1.05rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 190px;
    margin-top: 28px;
    padding: 13px 24px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .6px;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button span {
    font-size: 1.5rem;
    line-height: .5;
}

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

.button-primary {
    background: var(--teal);
    color: #fff;
}

.button-primary:hover {
    background: #22c0ce;
}

.button-outline {
    border: 1px solid var(--teal);
    color: #fff;
    background: transparent;
}

.button-outline:hover {
    background: rgba(25, 169, 183, .12);
}

.hero-art {
    position: relative;
    align-self: stretch;
    min-height: 610px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 75%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25, 169, 183, .15), transparent 65%);
    filter: blur(15px);
}

.hero-placeholder {
    position: relative;
    width: 72%;
    max-width: 560px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px dashed #444;
    color: #666;
    background: linear-gradient(145deg, #0b0b0b, #151515);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.split-section,
.process-section {
    max-width: 1450px;
    margin: 0 auto;
    padding: 72px 4%;
    border-bottom: 1px solid var(--line);
}

.section-heading {
    margin-bottom: 34px;
}

.section-heading.centered {
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    line-height: 1;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.service-card {
    min-height: 260px;
    padding: 28px 22px;
    text-align: center;
    background: linear-gradient(145deg, #121212, #080808);
    border: 1px solid #292929;
    border-radius: 7px;
}

.service-card:hover {
    border-color: var(--teal);
}

.service-icon {
    height: 48px;
    color: var(--teal);
    font-size: 2rem;
    line-height: 48px;
}

.service-card h3 {
    margin: 16px 0 12px;
    font-size: 1.12rem;
    text-transform: uppercase;
}

.service-card p,
.process-step p,
.estimate-section p {
    color: var(--muted);
}

.section-action {
    text-align: center;
}

.gallery-section {
    border-bottom: 1px solid var(--line);
}

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

.gallery-placeholder {
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #666;
    background: #0b0b0b;
    border: 1px solid #292929;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.process-step {
    position: relative;
}

.step-number {
    margin-bottom: 10px;
    color: var(--teal);
    font-size: 2rem;
    font-weight: 900;
}

.process-step h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    text-transform: uppercase;
}

.process-step p {
    margin: 0;
    font-size: .92rem;
}

.estimate-section {
    max-width: 1400px;
    margin: 28px auto;
    padding: 26px 5%;
    display: grid;
    grid-template-columns: 180px 1fr 330px;
    align-items: center;
    gap: 30px;
    background: linear-gradient(145deg, #111, #070707);
    border: 1px solid #3a3a3a;
    border-radius: 8px;
}

.estimate-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.estimate-section h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    text-transform: uppercase;
}

.estimate-section .button {
    margin-top: 0;
}

.site-footer {
    padding: 45px 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid var(--line);
}

.site-footer p {
    margin: 0;
    color: #666;
    font-size: .85rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand img {
    width: 190px;
    height: 65px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand div {
    display: flex;
    flex-direction: column;
}

.footer-brand span {
    color: var(--teal);
    font-size: .82rem;
}

@media (max-width: 1000px) {
    .site-header {
        flex-direction: column;
        gap: 10px;
    }

    .brand img {
        width: 220px;
        height: 72px;
        object-position: center;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }

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

    .hero-copy {
        padding: 75px 7% 30px;
        text-align: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-art {
        min-height: 360px;
    }

    .hero-placeholder {
        width: 48%;
    }

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

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

    .estimate-section {
        grid-template-columns: 120px 1fr;
    }

    .estimate-section .button {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

@media (max-width: 600px) {
    .site-header {
        padding: 10px 18px 16px;
    }

    .main-nav {
        font-size: .74rem;
    }

    .nav-cta {
        padding: 9px 14px;
    }

    .hero-copy {
        padding: 60px 20px 20px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 14vw, 4.5rem);
        letter-spacing: -2px;
    }

    .hero-art {
        min-height: 300px;
    }

    .hero-placeholder {
        width: 70%;
    }

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

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

    .estimate-section {
        margin: 18px;
        padding: 30px 20px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .estimate-logo {
        justify-self: center;
        width: 125px;
        height: 125px;
    }

    .estimate-section .button {
        grid-column: auto;
        width: 100%;
    }

    .site-footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
    }

    .footer-brand img {
        object-position: center;
    }
}
