﻿:root {
    --black: #111;
    --black2: #191919;
    --white: #fff;
    --cream: #f4f0e6;
    --cream2: #e8e1d4;
    --gray: #6d6d67;
    --line: #dbd7ce;
    --yellow: #f5a623;
    --max: 1240px;
    --radius: 18px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--black);
    background: white;
    line-height: 1.55;
}

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

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

button,
input,
textarea {
    font: inherit;
}

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


/* HEADER */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background:
        rgba(255,255,255,.96);

    backdrop-filter: blur(12px);

    border-bottom:
        1px solid rgba(0,0,0,.07);
}

.nav {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

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

.brand-mark {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: var(--black);
    color: white;

    font-size: 14px;
    font-weight: 900;
}

.brand strong {
    display: block;

    font-size: 18px;
    line-height: 1;
}

.brand span {
    display: block;

    margin-top: 5px;

    color: #777;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .18em;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;

    font-size: 14px;
    font-weight: 700;
}

.nav-call {
    padding: 13px 18px;

    color: white;
    background: var(--black);

    border-radius: 8px;
}

.menu-button {
    display: none;

    background: none;
    border: 0;

    font-size: 27px;
}


/* HERO */

.hero {
    min-height: 760px;

    position: relative;

    background: #111;
    color: white;

    overflow: hidden;
}

.hero-photo {
    position: absolute;
    inset: 0;
}

.hero-photo img {
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10,10,10,.95),
            rgba(10,10,10,.78) 52%,
            rgba(10,10,10,.35)
        );
}

.hero-layout {
    min-height: 760px;

    position: relative;

    display: grid;

    grid-template-columns:
        1.3fr .65fr;

    align-items: center;

    gap: 70px;

    padding-block: 80px;
}

.kicker {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--yellow);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: .17em;
}

.kicker.dark {
    color: #d88700;
}

.hero h1 {
    max-width: 760px;

    font-size:
        clamp(60px, 7.5vw, 110px);

    line-height: .9;
    letter-spacing: -.065em;

    font-weight: 900;
}

.hero h1 em {
    font-style: normal;
    color: var(--yellow);
}

.hero-copy > p {
    max-width: 590px;

    margin-top: 28px;

    color:
        rgba(255,255,255,.78);

    font-size: 20px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}

.button {
    min-height: 53px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    border: 0;
    border-radius: 9px;

    font-size: 14px;
    font-weight: 900;

    cursor: pointer;
}

.yellow {
    background: var(--yellow);
    color: #111;
}

.white {
    background: white;
    color: #111;
}

.outline {
    color: white;

    border:
        1px solid rgba(255,255,255,.55);

    background:
        rgba(255,255,255,.06);
}

.full {
    width: 100%;
}

.text-link {
    display: inline-block;

    margin-top: 20px;

    color:
        rgba(255,255,255,.77);

    font-size: 14px;
    font-weight: 700;
}

.hero-panel {
    align-self: end;

    padding: 34px;

    border-radius: var(--radius);

    background:
        rgba(17,17,17,.9);

    border:
        1px solid rgba(255,255,255,.14);
}

.hero-panel > span {
    color: var(--yellow);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .15em;
}

.hero-panel h2 {
    margin: 17px 0 26px;

    font-size: 31px;
    line-height: 1.08;

    letter-spacing: -.04em;
}

.quick-service {
    padding: 14px 0;

    display: flex;
    justify-content: space-between;

    gap: 20px;

    border-bottom:
        1px solid rgba(255,255,255,.12);
}

.quick-service small {
    color:
        rgba(255,255,255,.5);
}

.hours {
    padding-top: 23px;
}

.hours small {
    display: block;

    margin-bottom: 5px;

    color:
        rgba(255,255,255,.4);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .13em;
}


/* BENEFITS */

.benefit-bar {
    background: var(--cream);
}

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

.benefit-grid article {
    min-height: 155px;

    padding: 30px 25px;

    border-right:
        1px solid var(--line);
}

.benefit-grid article:last-child {
    border: 0;
}

.benefit-grid article > span {
    color: #d88700;

    font-size: 10px;
    font-weight: 900;
}

.benefit-grid strong {
    display: block;

    margin-top: 18px;

    font-size: 18px;
}

.benefit-grid p {
    margin-top: 5px;

    color: var(--gray);

    font-size: 13px;
}


/* GENERAL */

.section {
    padding: 115px 0;
}

.section.light {
    background: var(--cream);
}

.section-intro {
    display: grid;

    grid-template-columns:
        1.1fr .7fr;

    align-items: end;

    gap: 70px;

    margin-bottom: 60px;
}

.section-intro h2,
.center-intro h2,
.area-layout h2,
.about h2,
.quote h2,
.customer-section h2,
.faq-heading h2 {
    font-size:
        clamp(46px, 5vw, 76px);

    line-height: .97;
    letter-spacing: -.055em;
}

.section-intro > p {
    color: var(--gray);

    font-size: 17px;
    line-height: 1.7;
}


/* SERVICES */

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

    gap: 17px;
}

.service-card {
    min-height: 300px;

    padding: 34px;

    display: flex;
    flex-direction: column;

    border:
        1px solid var(--line);

    border-radius: var(--radius);

    transition: .25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: var(--cream);
}

.service-num {
    color: #d88700;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .15em;
}

.service-card h3 {
    margin-top: 45px;

    font-size: 30px;
}

.service-card p {
    max-width: 470px;

    margin-top: 12px;

    color: var(--gray);

    line-height: 1.7;
}

.service-card a {
    margin-top: auto;
    padding-top: 25px;

    font-size: 14px;
    font-weight: 800;
}


/* SPLIT */

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;

    min-height: 750px;

    background: var(--black);
    color: white;
}

.split-image img {
    height: 100%;
    object-fit: cover;
}

.split-copy {
    padding:
        clamp(60px, 7vw, 115px);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-copy h2 {
    font-size:
        clamp(48px, 5vw, 78px);

    line-height: .95;
    letter-spacing: -.055em;
}

.split-copy > p {
    max-width: 610px;

    margin-top: 23px;

    color:
        rgba(255,255,255,.68);

    font-size: 17px;
    line-height: 1.75;
}

.split-lines {
    margin: 38px 0;

    border-top:
        1px solid rgba(255,255,255,.13);
}

.split-lines div {
    display: grid;

    grid-template-columns:
        140px 1fr;

    gap: 20px;

    padding: 17px 0;

    border-bottom:
        1px solid rgba(255,255,255,.13);
}

.split-lines strong {
    color: var(--yellow);
}

.split-lines span {
    color:
        rgba(255,255,255,.6);
}


/* PROCESS */

.center-intro {
    max-width: 760px;

    margin: 0 auto 60px;

    text-align: center;
}

.center-intro p {
    max-width: 620px;

    margin: 20px auto 0;

    color: var(--gray);

    font-size: 16px;
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}

.process-grid article {
    min-height: 260px;

    padding: 30px;

    background: white;

    border-radius: var(--radius);
}

.process-grid article > span {
    width: 47px;
    height: 47px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--yellow);

    font-size: 11px;
    font-weight: 900;
}

.process-grid h3 {
    margin-top: 42px;

    font-size: 23px;
}

.process-grid p {
    margin-top: 10px;

    color: var(--gray);

    font-size: 14px;
    line-height: 1.65;
}


/* CUSTOMER */

.customer-section {
    padding: 115px 0;

    background: #111;
    color: white;
}

.customer-section h2 {
    max-width: 820px;
}

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

    gap: 15px;

    margin-top: 55px;
}

.customer-grid article {
    min-height: 220px;

    padding: 28px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: var(--radius);
}

.customer-grid strong {
    font-size: 20px;
}

.customer-grid p {
    margin-top: 14px;

    color:
        rgba(255,255,255,.55);

    font-size: 14px;
}


/* GALLERY */

.gallery {
    display: grid;

    grid-template-columns:
        1.5fr 1fr;

    grid-template-rows:
        1fr 1fr;

    gap: 15px;
}

.gallery figure {
    min-height: 320px;

    position: relative;

    overflow: hidden;

    border-radius: var(--radius);

    background: #222;
}

.gallery-main {
    grid-row: span 2;
}

.gallery img {
    height: 100%;
    object-fit: cover;

    transition: transform .4s ease;
}

.gallery figure:hover img {
    transform: scale(1.03);
}

.gallery figcaption {
    position: absolute;

    left: 17px;
    right: 17px;
    bottom: 17px;

    padding: 15px 17px;

    border-radius: 8px;

    color: white;

    background:
        rgba(0,0,0,.78);
}

.gallery figcaption span {
    display: block;

    margin-top: 4px;

    color:
        rgba(255,255,255,.55);

    font-size: 11px;
}


/* AREA */

.service-area {
    background: var(--cream);
}

.area-layout {
    display: grid;

    grid-template-columns:
        1fr .9fr;

    gap: 85px;

    align-items: start;
}

.area-layout > div > p {
    margin-top: 24px;

    color: var(--gray);
}

.area-card {
    padding: 35px;

    background: white;

    border-radius: var(--radius);
}

.area-card > div {
    padding: 18px 0;

    display: flex;
    flex-direction: column;

    border-bottom:
        1px solid #eeeae2;
}

.area-card > div:last-child {
    border: 0;
}

.area-card small {
    margin-bottom: 5px;

    color: #d88700;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .14em;
}


/* ABOUT */

.about {
    padding: 115px 0;

    background: #111;
    color: white;
}

.about-layout {
    display: grid;

    grid-template-columns:
        .5fr 1.3fr;

    gap: 75px;
}

.about-word {
    color:
        rgba(255,255,255,.06);

    font-size:
        clamp(100px, 15vw, 220px);

    line-height: .7;
    letter-spacing: -.08em;

    font-weight: 900;

    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.about-copy {
    max-width: 760px;
}

.about-copy p {
    max-width: 670px;

    margin-top: 24px;

    color:
        rgba(255,255,255,.65);

    font-size: 17px;
    line-height: 1.8;
}

.about-copy .button {
    margin-top: 35px;
}


/* FAQ */

.faq-heading {
    margin-bottom: 45px;
}

.faq-list details {
    padding: 22px 0;

    border-top:
        1px solid var(--line);
}

.faq-list details:last-child {
    border-bottom:
        1px solid var(--line);
}

.faq-list summary {
    cursor: pointer;

    font-size: 18px;
    font-weight: 800;
}

.faq-list p {
    max-width: 750px;

    margin-top: 16px;

    color: var(--gray);

    line-height: 1.7;
}


/* QUOTE */

.quote {
    padding: 115px 0;

    background: #151515;
    color: white;
}

.quote-layout {
    display: grid;

    grid-template-columns:
        .8fr 1fr;

    gap: 85px;
}

.quote-layout > div > p {
    margin-top: 22px;

    color:
        rgba(255,255,255,.6);
}

.direct-contact {
    margin-top: 38px;

    border-top:
        1px solid rgba(255,255,255,.12);
}

.direct-contact a {
    display: flex;
    flex-direction: column;

    padding: 17px 0;

    border-bottom:
        1px solid rgba(255,255,255,.12);
}

.direct-contact small {
    color: var(--yellow);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .14em;
}

.direct-contact strong {
    margin-top: 4px;
}

.quote form {
    padding: 35px;

    border-radius: var(--radius);

    background: white;
    color: #111;
}

.quote label {
    display: block;

    margin-bottom: 17px;

    font-size: 12px;
    font-weight: 800;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 13px;
}

.quote input,
.quote textarea {
    width: 100%;

    margin-top: 7px;

    padding: 14px 15px;

    border:
        1px solid #d8d3c9;

    border-radius: 8px;

    outline: none;
}

.quote input:focus,
.quote textarea:focus {
    border-color: #d88700;
}

.form-disclaimer {
    display: block;

    margin-top: 11px;

    color: #777;

    font-size: 10px;
}


/* FOOTER */

footer {
    padding: 65px 0 25px;

    background: #080808;
    color: white;
}

.footer-layout {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 50px;
}

.footer-layout > div {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 7px;
}

.footer-layout p,
.footer-layout span,
.footer-layout a {
    color:
        rgba(255,255,255,.5);

    font-size: 13px;
}

.footer-layout small {
    margin-bottom: 7px;

    color: var(--yellow);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .14em;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    gap: 25px;

    margin-top: 50px;
    padding-top: 20px;

    border-top:
        1px solid rgba(255,255,255,.09);

    color:
        rgba(255,255,255,.3);

    font-size: 10px;
}


/* MOBILE */

.mobile-actions {
    display: none;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

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

    .hero-panel {
        max-width: 520px;
    }

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

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

}

@media (max-width: 820px) {

    body {
        padding-bottom: 64px;
    }

    .menu-button {
        display: block;
    }

    nav {
        display: none;

        position: absolute;

        left: 20px;
        right: 20px;
        top: 88px;

        padding: 20px;

        flex-direction: column;
        align-items: stretch;

        background: white;

        border-radius: 12px;

        box-shadow:
            0 20px 50px rgba(0,0,0,.15);
    }

    nav.open {
        display: flex;
    }

    nav a {
        padding: 8px;
    }

    .nav-call {
        text-align: center;
    }

    .hero-layout {
        min-height: auto;

        padding-block: 70px;
    }

    .hero-shade {
        background:
            rgba(0,0,0,.83);
    }

    .section,
    .customer-section,
    .about,
    .quote {
        padding: 85px 0;
    }

    .section-intro {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

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

    .split-image {
        min-height: 450px;
    }

    .gallery {
        display: block;
    }

    .gallery figure {
        margin-bottom: 15px;
    }

    .area-layout,
    .about-layout,
    .quote-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-word {
        display: none;
    }

    .footer-layout {
        grid-template-columns: 1fr 1fr;
    }

    .mobile-actions {
        position: fixed;

        z-index: 2000;

        left: 0;
        right: 0;
        bottom: 0;

        height: 64px;

        display: grid;
        grid-template-columns: repeat(3,1fr);

        background: #111;
    }

    .mobile-actions a {
        display: grid;
        place-items: center;

        color: white;

        font-size: 13px;
        font-weight: 800;

        border-right:
            1px solid rgba(255,255,255,.1);
    }

    .mobile-actions a:last-child {
        background: var(--yellow);
        color: #111;
    }

}

@media (max-width: 560px) {

    .container {
        width: min(calc(100% - 28px), var(--max));
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-copy > p {
        font-size: 17px;
    }

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

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

    .benefit-grid,
    .process-grid,
    .customer-grid {
        grid-template-columns: 1fr;
    }

    .benefit-grid article {
        border-right: 0;

        border-bottom:
            1px solid var(--line);
    }

    .split-copy {
        padding: 65px 24px;
    }

    .split-lines div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .quote form {
        padding: 24px;
    }

    .footer-layout {
        grid-template-columns: 1fr;
    }

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

}
