/* =========================================================
   DAWN'S CONSTRUCTION LLC
   COMPLETE WEBSITE STYLES
========================================================= */

:root {
    --black: #0b0b0b;
    --black-soft: #111111;
    --dark: #181818;
    --dark-gray: #242424;
    --gold: #e0a128;
    --gold-light: #f0b63d;
    --white: #ffffff;
    --off-white: #f4f4f2;
    --gray: #8b8b8b;
    --border: #333333;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--black);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
}


/* =========================================================
   HEADER
========================================================= */

header {
    width: 100%;
    height: 90px;

    position: relative;
    z-index: 1000;

    display: flex;
    align-items: center;

    padding: 0 6%;

    background: #080808;

    border-bottom: 1px solid #292929;
}

.logo {
    width: 400px;
    height: 90px;

    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.logo img {
    width: 400px;
    height: auto;

    object-fit: contain;

    transform: translateY(20px);

    position: relative;
    z-index: 1001;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 30px;

    margin-left: auto;
}

nav a {
    color: #d8d8d8;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;

    transition: color .2s ease;
}

nav a:hover {
    color: var(--gold);
}

.nav-cta {
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-left: 30px;

    padding: 0 25px;

    background: var(--gold);
    color: #080808;

    border: 2px solid var(--gold);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1px;

    cursor: pointer;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.nav-cta:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);

    transform: translateY(-2px);
}


/* =========================================================
   SHARED
========================================================= */

.section-shell {
    width: min(1240px, 88%);
    margin: 0 auto;
}

.eyebrow {
    color: var(--gold);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.eyebrow.dark {
    color: #a86e00;
}

.btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 28px;

    border: 2px solid transparent;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1px;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: #080808;

    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.btn-outline {
    background: transparent;
    color: var(--white);

    border-color: #777;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-dark {
    background: #111;
    color: var(--white);

    border-color: #111;
}

.btn-dark:hover {
    background: #000;
    border-color: #000;
}


/* =========================================================
   HERO
========================================================= */

#hero {
    min-height: 670px;

    position: relative;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(3, 5, 8, .99) 0%,
            rgba(3, 5, 8, .96) 22%,
            rgba(3, 5, 8, .78) 39%,
            rgba(3, 5, 8, .34) 62%,
            rgba(3, 5, 8, .08) 100%
        ),
        url("images/Dawns image 2.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.04),
            rgba(0,0,0,.18)
        );

    pointer-events: none;
}

.hero-content {
    width: min(1240px, 88%);

    position: relative;
    z-index: 2;

    margin: 0 auto;

    padding: 85px 0 90px;
}

#hero h1 {
    max-width: 730px;

    color: var(--white);

    font-size: clamp(62px, 7.3vw, 108px);
    font-weight: 900;

    line-height: .84;

    letter-spacing: -5px;

    margin-bottom: 28px;
}

.hero-copy {
    max-width: 520px;

    color: #c3c3c3;

    font-size: 16px;
    line-height: 1.65;

    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
    min-height: 120px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    padding: 0 8%;

    background:
        linear-gradient(
            180deg,
            #171717,
            #0d0d0d
        );

    color: var(--white);

    border-bottom: 3px solid var(--gold);
}

.trust-item {
    min-height: 120px;

    display: flex;
    align-items: center;

    gap: 17px;

    padding: 20px 25px;

    border-right: 1px solid #333;
}

.trust-item:first-child {
    border-left: 1px solid #333;
}

.trust-icon {
    color: var(--gold);

    font-size: 17px;

    flex-shrink: 0;
}

.trust-item strong {
    display: block;

    color: var(--white);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1px;

    margin-bottom: 7px;
}

.trust-item span {
    display: block;

    color: #858585;

    font-size: 10px;

    line-height: 1.4;
}


/* =========================================================
   ABOUT
========================================================= */

#about {
    display: grid;
    grid-template-columns: 1fr 1fr;

    min-height: 650px;

    background: var(--off-white);
}

.about-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 85px 10% 85px 12%;
}

.about-copy h2 {
    color: var(--black);

    font-size: clamp(50px, 5.4vw, 80px);
    font-weight: 900;

    line-height: .9;

    letter-spacing: -4px;

    margin-bottom: 30px;
}

.about-copy p {
    max-width: 560px;

    color: #555;

    font-size: 14px;
    line-height: 1.75;

    margin-bottom: 17px;
}

.about-copy .about-lead {
    color: #1d1d1d;

    font-size: 16px;
    font-weight: 700;
}

.about-copy .btn {
    width: fit-content;

    margin-top: 16px;
}

.about-image {
    min-height: 650px;

    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   SERVICES
========================================================= */

#services {
    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            #161616,
            #080808
        );

    color: var(--white);
}

.section-heading {
    max-width: 760px;

    margin-bottom: 55px;
}

.section-heading h2 {
    font-size: clamp(50px, 5vw, 75px);
    font-weight: 900;

    line-height: .9;

    letter-spacing: -3px;

    margin-bottom: 20px;
}

.section-heading.light h2 {
    color: var(--white);
}

.section-heading > p:last-child {
    max-width: 500px;

    color: #898989;

    font-size: 14px;
    line-height: 1.6;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #333;
    border-left: 1px solid #333;
}

.service-card {
    min-height: 270px;

    position: relative;

    padding: 38px 30px;

    background: rgba(255,255,255,.015);

    border-right: 1px solid #333;
    border-bottom: 1px solid #333;

    transition:
        background .25s ease,
        transform .25s ease;
}

.service-card:hover {
    background: #191919;

    transform: translateY(-3px);
}

.service-icon {
    min-height: 34px;

    display: flex;
    align-items: center;

    color: var(--gold);

    font-size: 22px;
    font-weight: 900;

    margin-bottom: 34px;
}

.service-card h3 {
    max-width: 230px;

    color: var(--white);

    font-size: 17px;
    font-weight: 900;

    line-height: 1.15;

    margin-bottom: 17px;
}

.service-card p {
    max-width: 245px;

    color: #7f7f7f;

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   PROJECTS
========================================================= */

#projects {
    padding: 100px 0 110px;

    background: var(--white);
}

.projects-header {
    display: grid;
    grid-template-columns: 1.4fr .6fr;

    align-items: end;

    gap: 60px;

    margin-bottom: 50px;
}

.projects-header h2 {
    color: var(--black);

    font-size: clamp(50px, 5vw, 76px);
    font-weight: 900;

    line-height: .9;

    letter-spacing: -4px;
}

.projects-header > p {
    max-width: 400px;

    color: #656565;

    font-size: 14px;
    line-height: 1.7;

    padding-bottom: 5px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.project-card {
    min-height: 380px;

    position: relative;

    overflow: hidden;

    background: #222;
}

.project-card img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    object-fit: cover;

    transition: transform .5s ease;
}

.project-card:hover img {
    transform: scale(1.035);
}

.project-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(0,0,0,.85) 100%
        );
}

.project-label {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 28px;

    z-index: 2;
}

.project-label span {
    display: block;

    color: var(--gold);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.4px;

    margin-bottom: 8px;
}

.project-label h3 {
    color: var(--white);

    font-size: 22px;
    font-weight: 900;
}


/* =========================================================
   WHY DAWN'S
========================================================= */

#why-dawns {
    padding: 105px 0;

    background: var(--off-white);
}

.why-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;

    gap: 100px;
}

.why-layout h2 {
    color: var(--black);

    font-size: clamp(50px, 5vw, 74px);
    font-weight: 900;

    line-height: .9;

    letter-spacing: -4px;
}

.why-list {
    border-top: 1px solid #c9c9c9;
}

.why-list > div {
    display: grid;
    grid-template-columns: 1fr 1.25fr;

    gap: 35px;

    padding: 28px 0;

    border-bottom: 1px solid #c9c9c9;
}

.why-list h3 {
    color: var(--black);

    font-size: 13px;
    font-weight: 900;

    line-height: 1.3;
}

.why-list p {
    color: #696969;

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   INDUSTRIES
========================================================= */

#industries {
    padding: 100px 0;

    background: #111;

    color: var(--white);
}

.industries-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;

    gap: 100px;

    align-items: start;
}

.industries-layout h2 {
    color: var(--white);

    font-size: clamp(55px, 6vw, 90px);
    font-weight: 900;

    line-height: .88;

    letter-spacing: -4px;
}

.industries-list {
    border-top: 1px solid #353535;
}

.industries-list > div {
    min-height: 67px;

    display: flex;
    align-items: center;

    border-bottom: 1px solid #353535;

    transition:
        padding-left .2s ease,
        color .2s ease;
}

.industries-list > div:hover {
    padding-left: 8px;

    color: var(--gold);
}

.industries-list strong {
    font-size: 13px;
    font-weight: 900;

    letter-spacing: .5px;
}


/* =========================================================
   SERVICE AREA
========================================================= */

#service-area {
    padding: 100px 0;

    background:
        linear-gradient(
            120deg,
            #171717,
            #080808
        );

    color: var(--white);

    border-top: 1px solid #282828;
}

.service-area-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.service-area-layout h2 {
    color: var(--white);

    font-size: clamp(56px, 6vw, 90px);
    font-weight: 900;

    line-height: .88;

    letter-spacing: -4px;
}

.service-area-copy {
    max-width: 560px;
}

.service-area-copy p {
    color: #8e8e8e;

    font-size: 13px;
    line-height: 1.7;

    margin-bottom: 17px;
}

.service-area-copy .service-area-lead {
    color: var(--white);

    font-size: 17px;
    font-weight: 700;
}


/* =========================================================
   LEADERSHIP
========================================================= */

#leadership {
    padding: 100px 0;

    background: #0b0b0b;

    color: var(--white);

    border-top: 1px solid #262626;
}

.leadership-heading {
    margin-bottom: 50px;
}

.leadership-heading h2 {
    color: var(--white);

    font-size: clamp(48px, 5vw, 74px);
    font-weight: 900;

    line-height: .9;

    letter-spacing: -3px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #333;
    border-left: 1px solid #333;
}

.leader-card {
    min-height: 250px;

    display: flex;
    flex-direction: column;

    padding: 38px 30px;

    border-right: 1px solid #333;
    border-bottom: 1px solid #333;

    transition: background .2s ease;
}

.leader-card:hover {
    background: #151515;
}

.leader-card h3 {
    color: var(--white);

    font-size: 25px;
    font-weight: 900;

    margin-bottom: 10px;
}

.leader-card > strong {
    color: var(--gold);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;

    line-height: 1.4;
}

.leader-contact {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    margin-top: auto;
    padding: 0 0 7px;

    background: transparent;
    color: var(--white);

    border-bottom: 2px solid var(--gold);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1px;

    cursor: pointer;

    transition: color .2s ease;
}

.leader-contact:hover {
    color: var(--gold);
}


/* =========================================================
   CONTACT CTA
========================================================= */

#contact {
    background: var(--gold);
}

.contact-strip {
    width: min(1240px, 88%);

    min-height: 330px;

    display: grid;
    grid-template-columns: 1.25fr .75fr;

    align-items: center;

    gap: 80px;

    margin: 0 auto;

    padding: 65px 0;
}

.contact-strip h2 {
    color: #111;

    font-size: clamp(50px, 5vw, 76px);
    font-weight: 900;

    line-height: .9;

    letter-spacing: -4px;
}

.contact-action p {
    max-width: 420px;

    color: #352600;

    font-size: 14px;
    line-height: 1.7;

    margin-bottom: 25px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #070707;

    color: var(--white);
}

.footer-main {
    width: min(1240px, 88%);

    min-height: 220px;

    display: grid;
    grid-template-columns: 220px 1fr auto;

    align-items: center;

    gap: 50px;

    margin: 0 auto;

    padding: 40px 0;
}

.footer-logo img {
    width: 190px;
}

.footer-main strong {
    display: block;

    font-size: 15px;
    font-weight: 900;

    margin-bottom: 14px;
}

.footer-main p {
    color: #777;

    font-size: 11px;
    line-height: 1.7;
}

.footer-nav {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-nav a {
    color: #aaa;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .8px;

    transition: color .2s ease;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-bottom {
    width: min(1240px, 88%);

    margin: 0 auto;

    padding: 22px 0;

    color: #555;

    border-top: 1px solid #222;

    font-size: 9px;

    letter-spacing: .5px;
}


/* =========================================================
   SERVICE REQUEST POPUP
========================================================= */

.service-modal {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .2s ease,
        visibility .2s ease;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}

.service-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .84);

    backdrop-filter: blur(6px);
}

.service-modal-box {
    width: min(760px, 100%);
    max-height: 90vh;

    position: relative;
    z-index: 2;

    overflow-y: auto;

    padding: 48px;

    background:
        linear-gradient(
            145deg,
            #181818,
            #090909
        );

    color: var(--white);

    border-top: 4px solid var(--gold);
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    border-left: 1px solid #333;

    box-shadow:
        0 30px 100px rgba(0,0,0,.65);
}

.service-modal-box h2 {
    color: var(--white);

    font-size: clamp(38px, 5vw, 58px);
    font-weight: 900;

    line-height: .95;

    letter-spacing: -2px;

    margin-bottom: 16px;
}

.modal-intro {
    max-width: 590px;

    color: #aaa;

    font-size: 14px;
    line-height: 1.6;

    margin-bottom: 32px;
}

.modal-close {
    width: 42px;
    height: 42px;

    position: absolute;

    right: 20px;
    top: 15px;

    background: transparent;
    color: var(--gold);

    font-size: 34px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition: color .2s ease;
}

.modal-close:hover {
    color: var(--white);
}


/* =========================================================
   FORM
========================================================= */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 16px;
}

.form-field {
    margin-bottom: 17px;
}

.form-field label {
    display: block;

    color: var(--gold);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1px;

    margin-bottom: 7px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    padding: 14px 15px;

    background: #111;
    color: var(--white);

    border: 1px solid #3a3a3a;

    outline: none;

    font-family: inherit;
    font-size: 14px;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.form-field input,
.form-field select {
    height: 49px;
}

.form-field textarea {
    min-height: 125px;

    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--gold);

    background: #151515;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #666;
}

.form-field select option {
    background: #111;
    color: var(--white);
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-top: 10px;
}

.requested-contact-display {
    color: #777;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .8px;
}

.requested-contact-display strong {
    display: block;

    color: var(--gold);

    font-size: 12px;

    margin-top: 4px;
}

.form-submit {
    min-height: 52px;

    padding: 0 28px;

    background: var(--gold);
    color: #080808;

    border: 2px solid var(--gold);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: .8px;

    cursor: pointer;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.form-submit:hover {
    background: var(--gold-light);

    border-color: var(--gold-light);

    transform: translateY(-2px);
}

.form-status {
    min-height: 20px;

    color: var(--gold);

    font-size: 12px;

    margin-top: 16px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    header {
        padding: 0 4%;
    }

    .logo {
        width: 200px;
    }

    nav {
        gap: 18px;
    }

    nav a {
        font-size: 9px;
    }

    .nav-cta {
        margin-left: 18px;

        padding: 0 18px;
    }

    .trust-strip {
        padding: 0 4%;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-layout,
    .industries-layout,
    .service-area-layout {
        gap: 60px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    header {
        height: auto;
        min-height: 82px;

        padding: 12px 5%;
    }

    .logo {
        width: 165px;
        height: 70px;
    }

    .logo img {
        height: 125px;

        transform: translateY(22px);
    }

    nav {
        display: none;
    }

    .nav-cta {
        min-height: 42px;

        margin-left: auto;

        padding: 0 15px;

        font-size: 9px;
    }


    #hero {
        min-height: 620px;

        background-position: 60% center;
    }

    .hero-content {
        width: 90%;

        padding: 100px 0 70px;
    }

    #hero h1 {
        font-size: clamp(54px, 16vw, 80px);

        letter-spacing: -3px;
    }

    .hero-copy {
        max-width: 90%;

        font-size: 14px;
    }


    .trust-strip {
        grid-template-columns: 1fr 1fr;

        padding: 0;
    }

    .trust-item {
        border-bottom: 1px solid #333;
    }


    #about {
        grid-template-columns: 1fr;
    }

    .about-copy {
        padding: 80px 7%;
    }

    .about-image {
        min-height: 430px;
    }


    #services,
    #projects,
    #why-dawns,
    #industries,
    #service-area,
    #leadership {
        padding: 80px 0;
    }


    .service-grid {
        grid-template-columns: 1fr;
    }


    .projects-header {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        min-height: 330px;
    }


    .why-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .why-list > div {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .industries-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .service-area-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .leadership-grid {
        grid-template-columns: 1fr 1fr;
    }


    .contact-strip {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 70px 0;
    }


    .footer-main {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 50px 0;
    }

    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;

        gap: 20px;
    }


    .service-modal {
        padding: 12px;
    }

    .service-modal-box {
        max-height: 94vh;

        padding: 42px 22px 28px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .form-footer {
        flex-direction: column;

        align-items: stretch;
    }

    .form-submit {
        width: 100%;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .nav-cta {
        padding: 0 11px;

        font-size: 8px;
    }

    #hero h1 {
        font-size: 52px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .trust-item {
        min-height: 95px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .about-copy h2,
    .projects-header h2,
    .why-layout h2,
    .contact-strip h2 {
        letter-spacing: -2px;
    }

}