/* =========================================================
   IRON & OAK HOME REMODELING
   Main Stylesheet
   /assets/css/style.css
========================================================= */


/* =========================================================
   1. GLOBAL RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

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

    font-size: 16px;
    line-height: 1.65;

    color: #252525;
    background: #ffffff;
}

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

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

p {
    font-family: "adineue PRO Light Web Regular";
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    font-family: "adineue PRO Bold Web Regular";
    margin-top: 0;
    line-height: 1.15;
    color: #082e4c;
}

h1,
h2 {
    font-family: "adineue PRO Black Web Regular";
}


/* =========================================================
   2. BRAND VARIABLES
========================================================= */

:root {

    --navy: #082e4c;

    --navy-dark: #051e33;

    --gold: #cb9c41;

    --gold-dark: #ad7e2e;

    --white: #ffffff;

    --off-white: #f7f6f2;

    --light-gray: #eeeeea;

    --medium-gray: #777777;

    --dark-gray: #252525;

    --container: 1200px;

}


/* =========================================================
   3. CONTAINERS
========================================================= */

.container {
    width: min(92%, var(--container));
    margin-left: auto;
    margin-right: auto;
}

.narrow-container {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.section {
    padding: 90px 0;
}

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

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.center {
    text-align: center;
}


/* =========================================================
   4. TYPOGRAPHY
========================================================= */

h1 {
    font-size: clamp(2.8rem, 7vw, 5.7rem);
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

p {
    margin-bottom: 20px;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #444444;
}

.eyebrow {
    margin-bottom: 14px;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: var(--gold);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading p:last-child {
    color: #666666;
    font-size: 1.08rem;
}


/* =========================================================
   5. BUTTONS
========================================================= */

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 13px 28px;

    border: 2px solid transparent;

    font-size: 0.9rem;
    font-weight: 700;

    letter-spacing: 0.07em;
    text-transform: uppercase;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

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

.button-primary {
    background: var(--gold);
    color: var(--navy-dark);
}

.button-primary:hover {
    background: var(--gold-dark);
    color: var(--white);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.85);
    color: var(--white);
    background: transparent;
}

.button-secondary:hover {
    background: var(--white);
    color: var(--navy);
}

.button-outline {
    border-color: var(--navy);
    color: var(--navy);
}

.button-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.text-link {
    display: inline-block;

    color: var(--navy);

    font-weight: 700;

    border-bottom: 2px solid var(--gold);

    padding-bottom: 3px;

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.text-link:hover {
    color: var(--gold-dark);
}


/* =========================================================
   6. HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 1000;

    width: 100%;

    background: var(--white);

    border-bottom: 1px solid rgba(8, 46, 76, 0.10);

    box-shadow:
        0 3px 18px rgba(0, 0, 0, 0.05);
}

.header-container {
    width: min(94%, var(--container));

    min-height: 92px;

    margin: 0 auto;

    display: flex;

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

    gap: 30px;
}

.logo {
    display: block;
    flex-shrink: 0;
}

.logo img {
    width: auto;
    max-width: 220px;
    max-height: 72px;
}


/* =========================================================
   7. NAVIGATION
========================================================= */

.main-navigation {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 27px;
}

.main-navigation a {
    position: relative;

    padding: 34px 0;

    color: var(--navy);

    font-size: 0.88rem;
    font-weight: 700;

    letter-spacing: 0.03em;

    transition: color 0.2s ease;
}

.main-navigation a:not(.nav-contact)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 25px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width 0.25s ease;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: var(--gold-dark);
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    width: 100%;
}

.main-navigation .nav-contact {
    padding: 12px 20px;

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

    border: 2px solid var(--navy);
}

.main-navigation .nav-contact:hover {
    background: var(--gold);
    border-color: var(--gold);

    color: var(--navy-dark);
}


/* =========================================================
   8. HERO
========================================================= */

.hero {
    position: relative;

    min-height: 690px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(5, 30, 51, 0.60),
            rgba(5, 30, 51, 0.72)
        ),
        url("/assets/images/hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: var(--white);
}

.hero::after {
    content: "";

    position: absolute;

    right: -140px;
    bottom: -220px;

    width: 480px;
    height: 480px;

    border: 70px solid rgba(203, 156, 65, 0.10);

    border-radius: 50%;
}

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

    background:
        linear-gradient(
            90deg,
            rgba(5, 30, 51, 0.73) 0%,
            rgba(5, 30, 51, 0.48) 55%,
            rgba(5, 30, 51, 0.15) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 70px;
    padding-bottom: 70px;
}

.hero h1 {
    max-width: 930px;

    margin-bottom: 25px;

    color: var(--white);
}

.hero-text {
    max-width: 690px;

    margin-bottom: 35px;

    font-size: clamp(1.1rem, 2vw, 1.35rem);

    color: rgba(255, 255, 255, 0.92);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* =========================================================
   9. INTRO
========================================================= */

.intro {
    position: relative;
}

.intro::before {
    content: "";

    display: block;

    width: 80px;
    height: 3px;

    margin: 0 auto 45px;

    background: var(--gold);
}

.intro .narrow-container p:not(.eyebrow) {
    max-width: 790px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   10. SERVICES
========================================================= */

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 30px;
}

.service-card {
    background: var(--white);

    box-shadow:
        0 8px 28px rgba(8, 46, 76, 0.08);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 40px rgba(8, 46, 76, 0.13);
}

.service-image {
    overflow: hidden;

    aspect-ratio: 16 / 9;

    background: #dedede;
}

.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.035);
}

.service-content {
    padding: 34px;
}

.service-content h3 {
    font-family: "adineue PRO Bold Web Regular", Arial, Helvetica, sans-serif;

    font-size: 1.7rem;
}

.service-content p {
    color: #5e5e5e;
}


/* =========================================================
   11. PROCESS
========================================================= */

.process-grid {
    display: grid;

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

    gap: 45px;
}

.process-step {
    position: relative;

    padding: 20px 15px 20px 30px;

    border-left: 3px solid var(--gold);
}

.process-number {
    display: block;

    margin-bottom: 12px;

    font-family: "adineue PRO Bold Web Regular", Arial, Helvetica, sans-serif;

    font-size: 2rem;

    color: var(--gold);
}

.process-step h3 {
    font-family: "adineue PRO Bold Web Regular", Arial, Helvetica, sans-serif;

    font-size: 1.55rem;
}

.process-step p {
    margin-bottom: 0;
    color: #656565;
}


/* =========================================================
   12. WHY IRON & OAK
========================================================= */

.why-us {
    overflow: hidden;

    position: relative;
}

.why-us::after {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -240px;
    top: -170px;

    border: 65px solid rgba(203, 156, 65, 0.08);

    border-radius: 50%;
}

.why-us-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    gap: 80px;

    align-items: center;
}

.why-us-content p {
    color: rgba(255, 255, 255, 0.80);
}

.why-us-content .eyebrow {
    color: var(--gold);
}

.why-us-content .button {
    margin-top: 12px;
}

.why-us-features {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.feature {
    padding: 28px;

    border:
        1px solid rgba(255, 255, 255, 0.13);

    background:
        rgba(255, 255, 255, 0.04);
}

.feature h3 {
    color: var(--gold);

    font-family: "adineue PRO Bold Web Regular", Arial, Helvetica, sans-serif;
}

.feature p {
    margin-bottom: 0;

    font-size: 0.95rem;

    color:
        rgba(255, 255, 255, 0.75);
}


/* =========================================================
   13. FEATURED PROJECTS
========================================================= */

.project-grid {
    display: grid;

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

    gap: 22px;

    margin-bottom: 45px;
}

.project-card {
    position: relative;

    min-height: 380px;

    overflow: hidden;

    background: #d4d4d4;
}

.project-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.project-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 30px;

    background:
        linear-gradient(
            transparent 35%,
            rgba(5, 30, 51, 0.88) 100%
        );
}

.project-overlay span {
    position: relative;

    color: var(--white);

    font-family: "adineue PRO Bold Web Regular", Arial, Helvetica, sans-serif;

    font-size: 1.45rem;

    font-weight: 700;
}

.project-card:hover img {
    transform: scale(1.045);
}


/* =========================================================
   14. SERVICE AREA
========================================================= */

.service-area {
    text-align: center;
}

.service-area .narrow-container {
    max-width: 760px;
}


/* =========================================================
   15. CONTACT CTA
========================================================= */

.contact-cta {
    padding: 90px 0;

    text-align: center;

    background: var(--gold);
    color: var(--navy-dark);
}

.contact-cta .container {
    max-width: 820px;
}

.contact-cta .eyebrow {
    color: var(--navy);
}

.contact-cta h2 {
    color: var(--navy-dark);
}

.contact-cta p {
    max-width: 650px;

    margin-left: auto;
    margin-right: auto;

    font-size: 1.12rem;
}

.contact-cta .button-primary {
    background: var(--navy);
    color: var(--white);
}

.contact-cta .button-primary:hover {
    background: var(--navy-dark);
}


/* =========================================================
   16. FOOTER
========================================================= */

.site-footer {
    background: var(--navy-dark);

    color: rgba(255, 255, 255, 0.75);

    padding-top: 70px;
}

.footer-container {
    width: min(92%, var(--container));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.7fr 1fr 1fr 1.1fr;

    gap: 55px;

    padding-bottom: 60px;
}

.footer-logo {
    width: auto;
    max-width: 210px;
    max-height: 85px;

    margin-bottom: 20px;
}

.footer-column h3 {
    margin-bottom: 20px;

    color: var(--white);

    font-size: 1rem;

    text-transform: uppercase;

    letter-spacing: 0.09em;
}

.footer-column p {
    font-size: 0.94rem;
}

.footer-column a {
    display: block;

    width: fit-content;

    margin-bottom: 10px;

    font-size: 0.94rem;

    color: rgba(255, 255, 255, 0.76);

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, 0.10);

    padding: 22px 20px;

    text-align: center;
}

.footer-bottom p {
    margin: 0;

    font-size: 0.82rem;

    color: rgba(255, 255, 255, 0.55);
}


/* =========================================================
   17. GENERIC INTERIOR PAGE HERO
========================================================= */

.page-hero {
    padding: 110px 0;

    background: var(--navy);

    text-align: center;

    color: var(--white);
}

.page-hero h1 {
    color: var(--white);

    font-size: clamp(2.6rem, 6vw, 4.8rem);

    margin-bottom: 20px;
}

.page-hero p {
    max-width: 720px;

    margin-left: auto;
    margin-right: auto;

    font-size: 1.15rem;

    color: rgba(255, 255, 255, 0.82);
}

.content-section {
    padding: 80px 0;
}


/* =========================================================
   18. RESPONSIVE TABLET
========================================================= */

@media (max-width: 1050px) {

    .header-container {
        flex-direction: column;

        padding: 20px 0;

        gap: 10px;
    }

    .main-navigation {
        flex-wrap: wrap;
        justify-content: center;

        gap: 10px 22px;
    }

    .main-navigation a {
        padding: 8px 0;
    }

    .main-navigation a:not(.nav-contact)::after {
        bottom: 1px;
    }

    .hero {
        min-height: 620px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

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

}


/* =========================================================
   19. RESPONSIVE MOBILE
========================================================= */

@media (max-width: 760px) {

    .section {
        padding: 65px 0;
    }

    .header-container {
        min-height: auto;

        padding: 15px 0;
    }

    .logo img {
        max-width: 180px;
    }

    .main-navigation {
        gap: 8px 15px;
    }

    .main-navigation a {
        font-size: 0.77rem;
    }

    .main-navigation .nav-contact {
        padding: 8px 12px;
    }

    .hero {
        min-height: 600px;

        background-position: center;
    }

    .hero-content {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .button {
        width: 100%;
        max-width: 310px;
    }

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

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

        gap: 25px;
    }

    .why-us-features {
        grid-template-columns: 1fr;
    }

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

    .project-card {
        min-height: 430px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

}


/* =========================================================
   20. SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .container {
        width: 90%;
    }

    h1 {
        font-size: 2.7rem;
    }

    h2 {
        font-size: 2.15rem;
    }

    .lead {
        font-size: 1.08rem;
    }

    .service-content {
        padding: 26px;
    }

    .feature {
        padding: 23px;
    }

    .project-card {
        min-height: 360px;
    }

}

/* =========================================================
   IRON & OAK HEADER / MOBILE NAVIGATION
========================================================= */

.site-header {
    position: relative;
    z-index: 1000;

    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid rgba(8, 46, 76, 0.10);

    box-shadow:
        0 3px 18px rgba(0, 0, 0, 0.05);
}


.header-container {
    width: min(94%, 1200px);

    min-height: 96px;

    margin: 0 auto;

    display: flex;

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

    gap: 35px;
}


.logo {
    display: flex;

    align-items: center;

    flex-shrink: 0;
}


.logo img {
    width: auto;

    max-width: 225px;

    max-height: 76px;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.main-navigation {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 25px;
}


.main-navigation a {
    position: relative;

    display: block;

    padding: 36px 0;

    color: #082e4c;

    font-size: 0.87rem;
    font-weight: 700;

    letter-spacing: 0.025em;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}


.main-navigation a:not(.nav-contact)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 27px;

    width: 0;
    height: 2px;

    background: #cb9c41;

    transition: width 0.25s ease;
}


.main-navigation a:hover,
.main-navigation a.active {
    color: #ad7e2e;
}


.main-navigation a:hover::after,
.main-navigation a.active::after {
    width: 100%;
}


.main-navigation .nav-contact {
    padding: 12px 20px;

    background: #082e4c;

    color: #ffffff;

    border: 2px solid #082e4c;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}


.main-navigation .nav-contact:hover,
.main-navigation .nav-contact.active {
    background: #cb9c41;

    border-color: #cb9c41;

    color: #082e4c;
}


/* =========================================================
   HAMBURGER BUTTON
========================================================= */

.mobile-menu-toggle {
    display: none;

    width: 46px;
    height: 42px;

    padding: 8px;

    border: 0;

    background: transparent;

    cursor: pointer;
}


.mobile-menu-toggle span {
    display: block;

    width: 28px;
    height: 3px;

    margin: 5px auto;

    background: #082e4c;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* Hamburger becomes X */

.mobile-menu-toggle.open span:nth-child(1) {
    transform:
        translateY(8px)
        rotate(45deg);
}


.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}


.mobile-menu-toggle.open span:nth-child(3) {
    transform:
        translateY(-8px)
        rotate(-45deg);
}


/* =========================================================
   TABLET / MOBILE NAVIGATION
========================================================= */

@media (max-width: 900px) {

    .header-container {
        position: relative;

        min-height: 82px;

        padding: 10px 0;

        flex-direction: row;
    }


    .logo img {
        max-width: 190px;

        max-height: 65px;
    }


    .mobile-menu-toggle {
        display: block;

        flex-shrink: 0;
    }


    .main-navigation {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background: #ffffff;

        border-top:
            1px solid rgba(8, 46, 76, 0.08);

        box-shadow:
            0 12px 25px rgba(0, 0, 0, 0.10);
    }


    .main-navigation.open {
        display: flex;
    }


    .main-navigation a {
        width: 100%;

        padding: 16px 24px;

        border-bottom:
            1px solid rgba(8, 46, 76, 0.08);

        font-size: 0.95rem;

        text-align: left;
    }


    .main-navigation a:not(.nav-contact)::after {
        display: none;
    }


    .main-navigation a:hover,
    .main-navigation a.active {
        background: #f7f6f2;

        color: #ad7e2e;
    }


    .main-navigation .nav-contact {
        margin: 14px 20px 18px;

        width: auto;

        padding: 13px 18px;

        text-align: center;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .header-container {
        width: 92%;
    }


    .logo img {
        max-width: 165px;
    }


    .mobile-menu-toggle {
        width: 42px;
        height: 40px;
    }


    .mobile-menu-toggle span {
        width: 25px;
    }

}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page-hero {
    position: relative;

    padding: 105px 0 115px;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #051e33 0%,
            #082e4c 75%
        );

    color: #ffffff;
}


.contact-page-hero::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -160px;
    bottom: -250px;

    border: 65px solid rgba(203, 156, 65, 0.10);

    border-radius: 50%;
}


.contact-page-hero .container {
    position: relative;
    z-index: 2;

    max-width: 900px;

    text-align: center;
}


.contact-page-hero h1 {
    margin-bottom: 24px;

    color: #ffffff;

    font-size: clamp(2.8rem, 6vw, 5rem);
}


.contact-hero-text {
    max-width: 720px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.84);

    font-size: 1.2rem;
    line-height: 1.7;
}



/* =========================================================
   CONTACT LAYOUT
========================================================= */

.contact-page {
    background: #f7f6f2;
}


.contact-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 75px;

    align-items: start;
}



/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-info {
    padding-top: 25px;
}


.contact-info h2 {
    margin-bottom: 25px;
}


.contact-intro {
    max-width: 520px;

    margin-bottom: 45px;

    color: #5b5b5b;

    font-size: 1.08rem;
}


.contact-detail {
    padding: 20px 0;

    border-bottom:
        1px solid rgba(8, 46, 76, 0.12);
}


.contact-detail-label {
    display: block;

    margin-bottom: 4px;

    color: #cb9c41;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}


.contact-detail-value {
    display: inline-block;

    color: #082e4c;

    font-size: 1.15rem;
    font-weight: 700;
}


a.contact-detail-value:hover {
    color: #cb9c41;
}



/* =========================================================
   WHAT HAPPENS NEXT
========================================================= */

.what-happens-next {
    margin-top: 55px;
}


.what-happens-next h3 {
    margin-bottom: 28px;

    font-size: 1.7rem;
}


.next-step {
    display: grid;

    grid-template-columns: 52px 1fr;

    gap: 17px;

    margin-bottom: 26px;
}


.next-step-number {
    display: flex;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    background: #082e4c;

    color: #ffffff;

    font-size: 0.78rem;
    font-weight: 700;
}


.next-step strong {
    display: block;

    margin-bottom: 4px;

    color: #082e4c;
}


.next-step p {
    margin: 0;

    color: #666666;

    font-size: 0.94rem;
}



/* =========================================================
   CONTACT FORM CARD
========================================================= */

.contact-form-wrapper {
    padding: 48px;

    background: #ffffff;

    box-shadow:
        0 12px 40px rgba(8, 46, 76, 0.10);
}


.contact-form-heading {
    margin-bottom: 36px;
}


.contact-form-heading h2 {
    margin-bottom: 12px;
}


.contact-form-heading > p:last-child {
    color: #777777;

    font-size: 0.92rem;
}



/* =========================================================
   FORM ELEMENTS
========================================================= */

.project-contact-form {
    width: 100%;
}


.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}


.form-group {
    margin-bottom: 23px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #082e4c;

    font-size: 0.86rem;
    font-weight: 700;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid #d7d7d3;

    border-radius: 0;

    background: #ffffff;

    padding: 13px 14px;

    color: #252525;

    font-family: inherit;

    font-size: 1rem;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.form-group input,
.form-group select {
    min-height: 50px;
}


.form-group textarea {
    min-height: 165px;

    resize: vertical;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #cb9c41;

    box-shadow:
        0 0 0 3px rgba(203, 156, 65, 0.12);
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}



/* =========================================================
   FILE UPLOAD
========================================================= */

.file-upload {
    padding: 20px;

    border:
        1px dashed rgba(8, 46, 76, 0.30);

    background: #fafaf8;
}


.file-upload input[type="file"] {
    padding: 0;

    border: 0;

    background: transparent;
}


.field-help {
    margin-top: 8px;
    margin-bottom: 0;

    color: #777777;

    font-size: 0.82rem;
}



/* =========================================================
   CHECKBOX
========================================================= */

.form-check {
    display: grid;

    grid-template-columns: 22px 1fr;

    gap: 11px;

    align-items: start;

    margin: 10px 0 30px;
}


.form-check input {
    width: 18px;
    height: 18px;

    margin-top: 3px;

    accent-color: #082e4c;
}


.form-check label {
    color: #5f5f5f;

    font-size: 0.88rem;
    line-height: 1.5;
}



/* =========================================================
   SUBMIT BUTTON
========================================================= */

.form-submit {
    border-top:
        1px solid rgba(8, 46, 76, 0.10);

    padding-top: 30px;
}


.contact-submit-button {
    width: 100%;

    min-height: 58px;

    border: 0;

    cursor: pointer;
}


.form-privacy {
    margin: 13px 0 0;

    text-align: center;

    color: #888888;

    font-size: 0.78rem;
}



/* =========================================================
   HONEYPOT
========================================================= */

.website-field {
    position: absolute !important;

    left: -99999px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
}



/* =========================================================
   CONTACT PAGE TABLET
========================================================= */

@media (max-width: 950px) {

    .contact-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .contact-info {
        max-width: 720px;

        padding-top: 0;
    }

}



/* =========================================================
   CONTACT PAGE MOBILE
========================================================= */

@media (max-width: 650px) {

    .contact-page-hero {
        padding: 75px 0 85px;
    }


    .contact-hero-text {
        font-size: 1.05rem;
    }


    .contact-form-wrapper {
        padding: 30px 22px;
    }


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

        gap: 0;
    }


    .next-step {
        grid-template-columns: 45px 1fr;
    }

}

/* =========================================================
   CONTACT FORM STATUS MESSAGES
========================================================= */

.form-status {
    padding: 18px 0;

    text-align: center;
}

.form-status .container {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.form-status strong {
    font-size: 1rem;
}

.form-status span {
    font-size: 0.9rem;
}


.form-status-success {
    background: #eef5ec;

    border-bottom: 1px solid #cadcc5;

    color: #274522;
}


.form-status-error {
    background: #fff0ed;

    border-bottom: 1px solid #ebccc5;

    color: #713428;
}

/* =========================================================
   THANK YOU PAGE
========================================================= */

.thank-you-page {
    min-height: 720px;

    padding: 100px 0;

    background: #f7f6f2;
}


.thank-you-container {
    max-width: 850px;

    text-align: center;
}


.thank-you-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 78px;
    height: 78px;

    margin: 0 auto 28px;

    border-radius: 50%;

    background: #cb9c41;

    color: #082e4c;

    font-size: 2.2rem;
    font-weight: 700;
}


.thank-you-page h1 {
    margin-bottom: 18px;

    color: #082e4c;

    font-size: clamp(3rem, 7vw, 5.5rem);
}


.thank-you-lead {
    margin-bottom: 14px;

    color: #082e4c;

    font-size: 1.35rem;
    font-weight: 700;
}


.thank-you-text {
    max-width: 700px;

    margin: 0 auto 55px;

    color: #626262;

    font-size: 1.05rem;
    line-height: 1.7;
}


/* =========================================================
   NEXT STEPS
========================================================= */

.thank-you-next {
    margin-top: 50px;

    padding: 45px;

    background: #ffffff;

    box-shadow:
        0 12px 40px rgba(8, 46, 76, 0.08);

    text-align: left;
}


.thank-you-next > h2 {
    margin-bottom: 35px;

    text-align: center;
}


.thank-you-steps {
    display: grid;

    gap: 28px;
}


.thank-you-step {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    align-items: start;
}


.thank-you-step-number {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    background: #082e4c;

    color: #ffffff;

    font-size: 0.82rem;
    font-weight: 700;
}


.thank-you-step h3 {
    margin-bottom: 7px;

    color: #082e4c;
}


.thank-you-step p {
    margin: 0;

    color: #666666;

    font-size: 0.94rem;
}


/* =========================================================
   CONTACT
========================================================= */

.thank-you-contact {
    margin-top: 45px;
}


.thank-you-contact p {
    margin-bottom: 6px;

    color: #777777;

    font-size: 0.9rem;
}


.thank-you-phone {
    color: #082e4c;

    font-size: 1.45rem;
    font-weight: 700;
}


.thank-you-phone:hover {
    color: #cb9c41;
}


/* =========================================================
   BUTTONS
========================================================= */

.thank-you-buttons {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 35px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .thank-you-page {
        padding: 70px 0;
    }


    .thank-you-next {
        padding: 30px 22px;
    }


    .thank-you-step {
        grid-template-columns: 45px 1fr;

        gap: 15px;
    }


    .thank-you-step-number {
        width: 40px;
        height: 40px;
    }


    .thank-you-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .thank-you-buttons .button {
        width: 100%;
    }

}

/* =========================================================
   SERVICE PAGE HERO
========================================================= */

.service-page-hero {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    background-size: cover;
    background-position: center;

    color: #ffffff;

    overflow: hidden;
}


.bathroom-hero {
    background-image:
        url("/assets/images/projects/bath-remodel-1/custom-shower-design.jpg");
}


.service-page-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 30, 51, 0.88) 0%,
            rgba(5, 30, 51, 0.66) 52%,
            rgba(5, 30, 51, 0.25) 100%
        );
}


.service-page-hero-content {
    position: relative;
    z-index: 2;

    padding-top: 75px;
    padding-bottom: 75px;
}


.service-page-hero h1 {
    max-width: 900px;

    margin-bottom: 25px;

    color: #ffffff;
}


.service-page-lead {
    max-width: 680px;

    margin-bottom: 35px;

    color: rgba(255, 255, 255, 0.90);

    font-size: 1.25rem;
}


/* =========================================================
   SERVICE INTRO
========================================================= */

.service-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 80px;

    align-items: start;
}


/* =========================================================
   FEATURE IMAGE
========================================================= */

.service-feature-image {
    height: 620px;

    overflow: hidden;
}


.service-feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   BATHROOM SERVICE CARDS
========================================================= */

.bathroom-service-grid {
    display: grid;

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

    gap: 24px;
}


.bathroom-service-card {
    padding: 34px;

    background: #ffffff;

    border-top: 3px solid #cb9c41;

    box-shadow:
        0 8px 28px rgba(8, 46, 76, 0.07);
}


.service-number {
    display: block;

    margin-bottom: 18px;

    color: #cb9c41;

    font-size: 0.85rem;
    font-weight: 700;

    letter-spacing: 0.08em;
}


.bathroom-service-card h3 {
    font-size: 1.45rem;
}


.bathroom-service-card p {
    margin-bottom: 0;

    color: #666666;
}


/* =========================================================
   CUSTOM SHOWER
========================================================= */

.custom-shower-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 75px;

    align-items: center;
}


.custom-shower-image {
    min-height: 580px;
}


.custom-shower-image img {
    width: 100%;
    height: 580px;

    object-fit: cover;
}


.service-check-list {
    margin: 28px 0 35px;

    padding: 0;

    list-style: none;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 13px 25px;
}


.service-check-list li {
    position: relative;

    padding-left: 22px;

    color: #4e4e4e;
}


.service-check-list li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: #cb9c41;

    font-weight: 700;
}


/* =========================================================
   WATERPROOFING
========================================================= */

.waterproofing-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);

    gap: 80px;

    align-items: center;
}


.waterproofing-section p {
    color: rgba(255, 255, 255, 0.78);
}


.waterproofing-highlight {
    padding: 48px;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    background:
        rgba(255, 255, 255, 0.05);
}


.large-number {
    display: block;

    margin-bottom: 10px;

    color: #cb9c41;

    font-size: clamp(3.8rem, 7vw, 6.5rem);

    font-weight: 700;

    line-height: 1;
}


.waterproofing-highlight h3 {
    color: #ffffff;

    font-size: 1.6rem;
}


/* =========================================================
   PROCESS
========================================================= */

.bathroom-process-grid {
    display: grid;

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

    gap: 25px;
}


.bathroom-process-step {
    padding: 28px 22px;

    border-left: 2px solid #cb9c41;
}


.bathroom-process-step > span {
    display: block;

    margin-bottom: 16px;

    color: #cb9c41;

    font-weight: 700;
}


.bathroom-process-step p {
    margin-bottom: 0;

    color: #666666;
}


/* =========================================================
   WARRANTY
========================================================= */

.warranty-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 70px;

    align-items: start;
}


.warranty-grid h3 {
    font-size: 1.8rem;
}


/* =========================================================
   PROJECT CTA CARD
========================================================= */

.project-cta-card {
    display: flex;

    align-items: center;
    justify-content: center;

    background: #082e4c;
}


.project-cta-content {
    position: relative;
    z-index: 2;

    padding: 40px;

    text-align: center;
}


.project-cta-content h3 {
    color: #ffffff;

    font-size: 2rem;
}


.project-cta-content span {
    color: #cb9c41;

    font-weight: 700;
}


/* =========================================================
   FINAL CTA
========================================================= */

.bathroom-final-cta {
    padding: 95px 0;

    text-align: center;

    background: #cb9c41;
}


.bathroom-final-cta .container {
    max-width: 850px;
}


.bathroom-final-cta .eyebrow {
    color: #082e4c;
}


.bathroom-final-cta h2 {
    color: #082e4c;
}


.bathroom-final-cta p {
    max-width: 700px;

    margin: 0 auto 30px;

    color: #27394a;

    font-size: 1.08rem;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .service-intro-grid,
    .custom-shower-grid,
    .waterproofing-grid,
    .warranty-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


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


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


    .service-feature-image {
        height: 500px;
    }

}


@media (max-width: 650px) {

    .service-page-hero {
        min-height: 570px;
    }


    .service-page-lead {
        font-size: 1.08rem;
    }


    .service-feature-image {
        height: 400px;
    }


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


    .custom-shower-image,
    .custom-shower-image img {
        min-height: 0;

        height: 420px;
    }


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


    .waterproofing-highlight {
        padding: 32px 25px;
    }

}

/* =========================================================
   BATHROOM CREDIBILITY STRIP
========================================================= */

.bathroom-credibility {
    background: #082e4c;

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

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

.bathroom-credibility-grid {
    display: grid;

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

    text-align: center;
}

.bathroom-credibility-grid div {
    padding: 22px 15px;

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

    color: #ffffff;

    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.bathroom-credibility-grid div:last-child {
    border-right: 0;
}

@media (max-width: 760px) {

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

    .bathroom-credibility-grid div {
        border-bottom:
            1px solid rgba(255, 255, 255, 0.12);
    }

}

@media (max-width: 480px) {

    .bathroom-credibility-grid {
        grid-template-columns: 1fr;
    }

    .bathroom-credibility-grid div {
        border-right: 0;
    }

}

/* =========================================================
   KITCHEN PAGE
========================================================= */

.kitchen-hero {
    background-image:
        url("/assets/images/projects/kitchen-remodel-1/kitchen-gut.jpg");
}


/* Credibility */

.kitchen-credibility {
    background: #082e4c;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kitchen-credibility-grid {
    display: grid;

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

    text-align: center;
}

.kitchen-credibility-grid div {
    padding: 22px 15px;

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

    color: #ffffff;

    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.kitchen-credibility-grid div:last-child {
    border-right: 0;
}


/* Service Cards */

.kitchen-service-grid {
    display: grid;

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

    gap: 24px;
}

.kitchen-service-card {
    padding: 34px;

    background: #ffffff;

    border-top: 3px solid #cb9c41;

    box-shadow:
        0 8px 28px rgba(8, 46, 76, 0.07);
}

.kitchen-service-card h3 {
    font-size: 1.45rem;
}

.kitchen-service-card p {
    margin-bottom: 0;

    color: #666666;
}


/* Kitchen Feature */

.kitchen-feature-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 75px;

    align-items: center;
}

.kitchen-feature-image img {
    width: 100%;
    height: 580px;

    object-fit: cover;
}


/* Tile Section */

.kitchen-tile-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);

    gap: 80px;

    align-items: center;
}

.kitchen-tile-section p {
    color: rgba(255, 255, 255, 0.78);
}

.kitchen-tile-highlight {
    padding: 48px;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    background:
        rgba(255, 255, 255, 0.05);
}

.kitchen-kicker {
    display: block;

    margin-bottom: 18px;

    color: #cb9c41;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.kitchen-tile-highlight h3 {
    color: #ffffff;

    font-size: clamp(1.8rem, 3vw, 2.6rem);

    line-height: 1.15;
}


/* Process */

.kitchen-process-grid {
    display: grid;

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

    gap: 25px;
}

.kitchen-process-step {
    padding: 28px 22px;

    border-left: 2px solid #cb9c41;
}

.kitchen-process-step > span {
    display: block;

    margin-bottom: 16px;

    color: #cb9c41;

    font-weight: 700;
}

.kitchen-process-step p {
    margin-bottom: 0;

    color: #666666;
}


/* Warranty */

.kitchen-warranty {
    position: relative;

    overflow: hidden;

    background: #f7f6f2;
}

.kitchen-warranty-feature {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 75px;

    align-items: center;
}

.kitchen-warranty-word {
    color: #082e4c;

    font-size: clamp(4rem, 9vw, 8.5rem);
    font-weight: 700;

    letter-spacing: -0.05em;
    line-height: 0.85;

    opacity: 0.10;
}

.kitchen-warranty-content {
    position: relative;

    z-index: 2;
}

.kitchen-warranty-content .lead {
    color: #082e4c;
}


/* Final CTA */

.kitchen-final-cta {
    padding: 95px 0;

    text-align: center;

    background: #cb9c41;
}

.kitchen-final-cta .container {
    max-width: 850px;
}

.kitchen-final-cta .eyebrow {
    color: #082e4c;
}

.kitchen-final-cta h2 {
    color: #082e4c;
}

.kitchen-final-cta p {
    max-width: 700px;

    margin: 0 auto 30px;

    color: #27394a;

    font-size: 1.08rem;
}


/* Responsive */

@media (max-width: 950px) {

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

    .kitchen-feature-grid,
    .kitchen-tile-grid,
    .kitchen-warranty-feature {
        grid-template-columns: 1fr;

        gap: 45px;
    }

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

}


@media (max-width: 760px) {

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

    .kitchen-credibility-grid div {
        border-bottom:
            1px solid rgba(255, 255, 255, 0.12);
    }

}


@media (max-width: 650px) {

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

    .kitchen-feature-image img {
        height: 420px;
    }

    .kitchen-tile-highlight {
        padding: 32px 25px;
    }

}


@media (max-width: 480px) {

    .kitchen-credibility-grid {
        grid-template-columns: 1fr;
    }

    .kitchen-credibility-grid div {
        border-right: 0;
    }

}

/* =========================================================
   TILE & STONE PAGE
========================================================= */

.tile-hero {
    background-image:
        url("/assets/images/tile-stone.jpg");
}


/* Credibility Strip */

.tile-credibility {
    background: #082e4c;

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

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

.tile-credibility-grid {
    display: grid;

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

    text-align: center;
}

.tile-credibility-grid div {
    padding: 22px 15px;

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

    color: #ffffff;

    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tile-credibility-grid div:last-child {
    border-right: 0;
}


/* Tile Service Cards */

.tile-service-grid {
    display: grid;

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

    gap: 24px;
}

.tile-service-card {
    padding: 34px;

    background: #ffffff;

    border-top: 3px solid #cb9c41;

    box-shadow:
        0 8px 28px rgba(8, 46, 76, 0.07);
}

.tile-service-card h3 {
    font-size: 1.45rem;
}

.tile-service-card p {
    margin-bottom: 0;

    color: #666666;
}


/* Craftsmanship */

.tile-craft-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 75px;

    align-items: center;
}

.tile-craft-image img {
    width: 100%;
    height: 600px;

    object-fit: cover;
}


/* Preparation */

.tile-prep-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);

    gap: 80px;

    align-items: center;
}

.tile-prep-section p {
    color: rgba(255, 255, 255, 0.78);
}

.tile-prep-highlight {
    padding: 48px;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    background:
        rgba(255, 255, 255, 0.05);
}

.tile-kicker {
    display: block;

    margin-bottom: 18px;

    color: #cb9c41;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tile-prep-highlight h3 {
    color: #ffffff;

    font-size: clamp(1.8rem, 3vw, 2.6rem);
}


/* Large Format */

.large-format-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);

    gap: 80px;

    align-items: center;
}

.large-format-stat {
    padding: 45px;

    border-left: 4px solid #cb9c41;

    background: #f7f6f2;
}

.large-format-stat > span {
    display: block;

    color: #082e4c;

    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 700;

    line-height: 1;
}

.large-format-stat h3 {
    margin-top: 10px;

    font-size: 1.7rem;
}


/* Process */

.tile-process-grid {
    display: grid;

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

    gap: 25px;
}

.tile-process-step {
    padding: 28px 22px;

    border-left: 2px solid #cb9c41;
}

.tile-process-step > span {
    display: block;

    margin-bottom: 16px;

    color: #cb9c41;

    font-weight: 700;
}

.tile-process-step p {
    margin-bottom: 0;

    color: #666666;
}


/* Warranty */

.tile-warranty {
    position: relative;

    overflow: hidden;

    background: #ffffff;
}

.tile-warranty-feature {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 75px;

    align-items: center;
}

.tile-warranty-word {
    color: #082e4c;

    font-size: clamp(4rem, 9vw, 8.5rem);
    font-weight: 700;

    letter-spacing: -0.05em;
    line-height: 0.85;

    opacity: 0.10;
}

.tile-warranty-content {
    position: relative;

    z-index: 2;
}

.tile-warranty-content .lead {
    color: #082e4c;
}


/* Final CTA */

.tile-final-cta {
    padding: 95px 0;

    text-align: center;

    background: #cb9c41;
}

.tile-final-cta .container {
    max-width: 850px;
}

.tile-final-cta .eyebrow {
    color: #082e4c;
}

.tile-final-cta h2 {
    color: #082e4c;
}

.tile-final-cta p {
    max-width: 700px;

    margin: 0 auto 30px;

    color: #27394a;

    font-size: 1.08rem;
}


/* Responsive */

@media (max-width: 950px) {

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

    .tile-craft-grid,
    .tile-prep-grid,
    .large-format-grid,
    .tile-warranty-feature {
        grid-template-columns: 1fr;

        gap: 45px;
    }

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

}


@media (max-width: 760px) {

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

    .tile-credibility-grid div {
        border-bottom:
            1px solid rgba(255, 255, 255, 0.12);
    }

}


@media (max-width: 650px) {

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

    .tile-craft-image img {
        height: 420px;
    }

    .tile-prep-highlight,
    .large-format-stat {
        padding: 32px 25px;
    }

}


@media (max-width: 480px) {

    .tile-credibility-grid {
        grid-template-columns: 1fr;
    }

    .tile-credibility-grid div {
        border-right: 0;
    }

}

/* =========================================================
   BASEMENT PAGE
========================================================= */

.basement-hero {
    background-image:
        url("/assets/images/basement-remodeling.jpg");
}


/* =========================================================
   CREDIBILITY STRIP
========================================================= */

.basement-credibility {
    background: #082e4c;

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

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


.basement-credibility-grid {
    display: grid;

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

    text-align: center;
}


.basement-credibility-grid div {
    padding: 22px 15px;

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

    color: #ffffff;

    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.basement-credibility-grid div:last-child {
    border-right: 0;
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.basement-service-grid {
    display: grid;

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

    gap: 24px;
}


.basement-service-card {
    padding: 34px;

    background: #ffffff;

    border-top: 3px solid #cb9c41;

    box-shadow:
        0 8px 28px rgba(8, 46, 76, 0.07);
}


.basement-service-card h3 {
    font-size: 1.45rem;
}


.basement-service-card p {
    margin-bottom: 0;

    color: #666666;
}


/* =========================================================
   BASEMENT FEATURE
========================================================= */

.basement-feature-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 75px;

    align-items: center;
}


.basement-feature-image img {
    width: 100%;
    height: 580px;

    object-fit: cover;
}


/* =========================================================
   DETAILS
========================================================= */

.basement-details-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);

    gap: 80px;

    align-items: center;
}


.basement-details p {
    color: rgba(255, 255, 255, 0.78);
}


.basement-details-highlight {
    padding: 48px;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    background:
        rgba(255, 255, 255, 0.05);
}


.basement-kicker {
    display: block;

    margin-bottom: 18px;

    color: #cb9c41;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.basement-details-highlight h3 {
    color: #ffffff;

    font-size:
        clamp(1.8rem, 3vw, 2.6rem);

    line-height: 1.15;
}


/* =========================================================
   COMPLETE PROJECT
========================================================= */

.basement-complete-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(0, 0.9fr);

    gap: 80px;

    align-items: center;
}


.basement-scope-list {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    border-top:
        1px solid #d8d8d8;

    border-left:
        1px solid #d8d8d8;
}


.basement-scope-list div {
    padding: 22px;

    border-right:
        1px solid #d8d8d8;

    border-bottom:
        1px solid #d8d8d8;

    color: #082e4c;

    font-weight: 700;
}


/* =========================================================
   PROCESS
========================================================= */

.basement-process-grid {
    display: grid;

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

    gap: 25px;
}


.basement-process-step {
    padding: 28px 22px;

    border-left:
        2px solid #cb9c41;
}


.basement-process-step > span {
    display: block;

    margin-bottom: 16px;

    color: #cb9c41;

    font-weight: 700;
}


.basement-process-step p {
    margin-bottom: 0;

    color: #666666;
}


/* =========================================================
   WARRANTY
========================================================= */

.basement-warranty {
    position: relative;

    overflow: hidden;

    background: #ffffff;
}


.basement-warranty-feature {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 75px;

    align-items: center;
}


.basement-warranty-word {
    color: #082e4c;

    font-size:
        clamp(4rem, 9vw, 8.5rem);

    font-weight: 700;

    letter-spacing: -0.05em;

    line-height: 0.85;

    opacity: 0.10;
}


.basement-warranty-content {
    position: relative;

    z-index: 2;
}


.basement-warranty-content .lead {
    color: #082e4c;
}


/* =========================================================
   FINAL CTA
========================================================= */

.basement-final-cta {
    padding: 95px 0;

    text-align: center;

    background: #cb9c41;
}


.basement-final-cta .container {
    max-width: 850px;
}


.basement-final-cta .eyebrow {
    color: #082e4c;
}


.basement-final-cta h2 {
    color: #082e4c;
}


.basement-final-cta p {
    max-width: 700px;

    margin: 0 auto 30px;

    color: #27394a;

    font-size: 1.08rem;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

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


    .basement-feature-grid,
    .basement-details-grid,
    .basement-complete-grid,
    .basement-warranty-feature {
        grid-template-columns: 1fr;

        gap: 45px;
    }


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

}


@media (max-width: 760px) {

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


    .basement-credibility-grid div {
        border-bottom:
            1px solid rgba(255, 255, 255, 0.12);
    }

}


@media (max-width: 650px) {

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


    .basement-feature-image img {
        height: 420px;
    }


    .basement-details-highlight {
        padding: 32px 25px;
    }


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

}


@media (max-width: 480px) {

    .basement-credibility-grid {
        grid-template-columns: 1fr;
    }


    .basement-credibility-grid div {
        border-right: 0;
    }

}

/* =========================================================
   ABOUT PAGE
========================================================= */


/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image:
        url("/assets/images/about/about-hero.jpg");

    background-size: cover;
    background-position: center;

    color: #ffffff;
}


.about-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 30, 51, 0.90) 0%,
            rgba(5, 30, 51, 0.70) 55%,
            rgba(5, 30, 51, 0.30) 100%
        );
}


.about-hero-content {
    position: relative;
    z-index: 2;

    padding-top: 80px;
    padding-bottom: 80px;
}


.about-hero h1 {
    max-width: 900px;

    margin-bottom: 25px;

    color: #ffffff;
}


.about-hero-lead {
    max-width: 720px;

    margin-bottom: 35px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 1.22rem;
}


/* =========================================================
   ABOUT INTRO
========================================================= */

.about-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 80px;

    align-items: start;
}


/* =========================================================
   OWNER OPERATED
========================================================= */

.owner-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 75px;

    align-items: center;
}


.owner-image {
    overflow: hidden;
}


.owner-image img {
    display: block;

    width: 100%;
    height: 600px;

    object-fit: cover;
}


/* =========================================================
   MEET THE CREW
========================================================= */

.crew-section {
    background: #ffffff;
}


.crew-section .section-heading {
    max-width: 760px;

    margin-bottom: 55px;
}


.crew-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 40px;
}


.crew-card {
    overflow: hidden;

    background: #f7f6f2;

    border-bottom: 4px solid #cb9c41;
}


.crew-photo {
    position: relative;

    width: 100%;
    height: 520px;

    overflow: hidden;

    background: #e8e8e8;
}


.crew-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


.crew-content {
    padding: 35px 38px 40px;
}


.crew-role {
    margin-bottom: 8px;

    color: #cb9c41;

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


.crew-content h3 {
    margin-top: 0;
    margin-bottom: 20px;

    color: #082e4c;

    font-size: clamp(1.8rem, 3vw, 2.5rem);
}


.crew-content p {
    color: #5f5f5f;
}


.crew-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   HOW WE WORK / VALUES
========================================================= */

.about-values-grid {
    display: grid;

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

    gap: 24px;
}


.about-value-card {
    padding: 30px;

    border-top: 3px solid #cb9c41;

    background: #ffffff;

    box-shadow:
        0 8px 28px rgba(8, 46, 76, 0.07);
}


.about-value-number {
    display: block;

    margin-bottom: 18px;

    color: #cb9c41;

    font-size: 0.85rem;
    font-weight: 700;
}


.about-value-card h3 {
    color: #082e4c;
}


.about-value-card p {
    margin-bottom: 0;

    color: #666666;
}


/* =========================================================
   PHILOSOPHY
========================================================= */

.about-philosophy-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);

    gap: 80px;

    align-items: center;
}


.about-philosophy p {
    color: rgba(255, 255, 255, 0.78);
}


.about-philosophy-highlight {
    padding: 48px;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    background:
        rgba(255, 255, 255, 0.05);
}


.about-kicker {
    display: block;

    margin-bottom: 18px;

    color: #cb9c41;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.about-philosophy-highlight h3 {
    color: #ffffff;

    font-size:
        clamp(1.8rem, 3vw, 2.6rem);

    line-height: 1.15;
}


/* =========================================================
   ABOUT PROCESS
========================================================= */

.about-process-grid {
    display: grid;

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

    gap: 30px;
}


.about-process-step {
    padding: 28px 25px;

    border-left: 2px solid #cb9c41;
}


.about-process-step > span {
    display: block;

    margin-bottom: 16px;

    color: #cb9c41;

    font-weight: 700;
}


.about-process-step h3 {
    color: #082e4c;
}


.about-process-step p {
    margin-bottom: 0;

    color: #666666;
}


/* =========================================================
   WARRANTY
========================================================= */

.about-warranty {
    overflow: hidden;
}


.about-warranty-feature {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 75px;

    align-items: center;
}


.about-warranty-word {
    color: #082e4c;

    font-size:
        clamp(4rem, 9vw, 8.5rem);

    font-weight: 700;

    letter-spacing: -0.05em;

    line-height: 0.85;

    opacity: 0.10;
}


.about-warranty-content {
    position: relative;

    z-index: 2;
}


.about-warranty-content .lead {
    color: #082e4c;
}


/* =========================================================
   SERVICE AREA
========================================================= */

.about-service-area-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 80px;

    align-items: start;
}


/* =========================================================
   FINAL CTA
========================================================= */

.about-final-cta {
    padding: 95px 0;

    text-align: center;

    background: #cb9c41;
}


.about-final-cta .container {
    max-width: 850px;
}


.about-final-cta .eyebrow {
    color: #082e4c;
}


.about-final-cta h2 {
    color: #082e4c;
}


.about-final-cta p {
    max-width: 700px;

    margin: 0 auto 30px;

    color: #27394a;

    font-size: 1.08rem;
}


/* =========================================================
   ABOUT PAGE RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .about-intro-grid,
    .owner-grid,
    .about-philosophy-grid,
    .about-warranty-feature,
    .about-service-area-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


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


    .crew-photo {
        height: 460px;
    }

}


@media (max-width: 760px) {

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


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


    .crew-photo {
        height: 520px;
    }

}


@media (max-width: 650px) {

    .about-hero {
        min-height: 560px;
    }


    .about-hero-lead {
        font-size: 1.08rem;
    }


    .owner-image img {
        height: 420px;
    }


    .about-values-grid {
        grid-template-columns: 1fr;
    }


    .about-philosophy-highlight {
        padding: 32px 25px;
    }


    .crew-photo {
        height: 430px;
    }


    .crew-content {
        padding: 28px 25px 32px;
    }

}


@media (max-width: 480px) {

    .crew-photo {
        height: 380px;
    }


    .about-warranty-word {
        font-size: 4rem;
    }

}

/* =========================================================
   IRON & OAK BRAND MEANING
========================================================= */

.brand-meaning {
    background: #f7f6f2;
}

.brand-meaning-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        1px
        minmax(0, 1fr);

    gap: 55px;

    align-items: stretch;
}

.brand-meaning-item {
    padding: 20px 0;
}

.brand-word {
    display: block;

    margin-bottom: 18px;

    color: #cb9c41;

    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 700;

    line-height: 1;
    letter-spacing: -0.04em;
}

.brand-meaning-item h3 {
    margin-bottom: 15px;

    color: #082e4c;

    font-size: 1.55rem;
}

.brand-meaning-item p {
    max-width: 500px;

    margin-bottom: 0;

    color: #666666;
}

.brand-meaning-divider {
    width: 1px;

    background: rgba(8, 46, 76, 0.15);
}


/* =========================================================
   ACCESSIBLE LUXURY
========================================================= */

.accessible-luxury {
    background: #ffffff;
}

.accessible-luxury-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 80px;

    align-items: start;
}

.accessible-luxury-statement {
    margin-top: 32px;

    padding-left: 22px;

    border-left: 3px solid #cb9c41;

    color: #082e4c;

    font-size: 1.3rem;
    font-weight: 700;
}


/* Responsive */

@media (max-width: 800px) {

    .brand-meaning-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .brand-meaning-divider {
        width: 100%;
        height: 1px;
    }

    .accessible-luxury-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

}

/* =========================================================
   WARRANTY PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.warranty-hero {
    position: relative;

    min-height: 610px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image:
        url("/assets/images/warranty/warranty-hero.jpg");

    background-size: cover;
    background-position: center;

    color: #ffffff;
}


.warranty-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 30, 51, 0.92) 0%,
            rgba(5, 30, 51, 0.72) 55%,
            rgba(5, 30, 51, 0.30) 100%
        );
}


.warranty-hero-content {
    position: relative;
    z-index: 2;

    padding-top: 80px;
    padding-bottom: 80px;
}


.warranty-hero h1 {
    max-width: 900px;

    margin-bottom: 25px;

    color: #ffffff;
}


.warranty-hero-lead {
    max-width: 700px;

    margin-bottom: 35px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 1.22rem;
}


/* =========================================================
   MAIN LIFETIME FEATURE
========================================================= */

.warranty-main {
    overflow: hidden;

    background: #ffffff;
}


.warranty-main-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 80px;

    align-items: center;
}


.warranty-main-word {
    color: #082e4c;

    font-size:
        clamp(4rem, 9vw, 9rem);

    font-weight: 700;

    letter-spacing: -0.055em;

    line-height: 0.85;

    opacity: 0.09;
}


.warranty-main-content .lead {
    color: #082e4c;
}


/* =========================================================
   WHAT IT MEANS
========================================================= */

.warranty-meaning-grid {
    display: grid;

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

    gap: 25px;
}


.warranty-meaning-card {
    padding: 32px;

    background: #ffffff;

    border-top:
        3px solid #cb9c41;

    box-shadow:
        0 8px 28px rgba(8, 46, 76, 0.07);
}


.warranty-meaning-card > span {
    display: block;

    margin-bottom: 18px;

    color: #cb9c41;

    font-weight: 700;
}


.warranty-meaning-card h3 {
    color: #082e4c;
}


.warranty-meaning-card p {
    margin-bottom: 0;

    color: #666666;
}


/* =========================================================
   SCOPE
========================================================= */

.warranty-scope-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    gap: 80px;

    align-items: center;
}


.warranty-scope-list {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    border-top:
        1px solid #d8d8d8;

    border-left:
        1px solid #d8d8d8;
}


.warranty-scope-list div {
    padding: 22px;

    border-right:
        1px solid #d8d8d8;

    border-bottom:
        1px solid #d8d8d8;

    color: #082e4c;

    font-weight: 700;
}


/* =========================================================
   MATERIAL WARRANTIES
========================================================= */

.warranty-materials-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);

    gap: 80px;

    align-items: center;
}


.warranty-materials p {
    color: rgba(255, 255, 255, 0.78);
}


.warranty-materials-highlight {
    padding: 48px;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    background:
        rgba(255, 255, 255, 0.05);
}


.warranty-kicker {
    display: block;

    margin-bottom: 18px;

    color: #cb9c41;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.warranty-materials-highlight h3 {
    color: #ffffff;

    font-size:
        clamp(1.8rem, 3vw, 2.6rem);

    line-height: 1.15;
}


/* =========================================================
   APPROACH
========================================================= */

.warranty-approach-grid {
    display: grid;

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

    gap: 24px;
}


.warranty-approach-item {
    padding: 28px 25px;

    border-left:
        2px solid #cb9c41;
}


.warranty-approach-item h3 {
    color: #082e4c;
}


.warranty-approach-item p {
    margin-bottom: 0;

    color: #666666;
}


/* =========================================================
   CONTACT
========================================================= */

.warranty-contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 80px;

    align-items: start;
}


/* =========================================================
   WARRANTY NOTE
========================================================= */

.warranty-note {
    padding: 30px 0;

    background: #f7f6f2;

    border-top:
        1px solid rgba(8, 46, 76, 0.08);
}


.warranty-note .container {
    max-width: 950px;
}


.warranty-note p {
    margin: 0;

    text-align: center;

    color: #777777;

    font-size: 0.83rem;
}


/* =========================================================
   FINAL CTA
========================================================= */

.warranty-final-cta {
    padding: 95px 0;

    text-align: center;

    background: #cb9c41;
}


.warranty-final-cta .container {
    max-width: 850px;
}


.warranty-final-cta .eyebrow {
    color: #082e4c;
}


.warranty-final-cta h2 {
    color: #082e4c;
}


.warranty-final-cta p {
    max-width: 700px;

    margin: 0 auto 30px;

    color: #27394a;

    font-size: 1.08rem;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .warranty-main-grid,
    .warranty-scope-grid,
    .warranty-materials-grid,
    .warranty-contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


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

}


@media (max-width: 760px) {

    .warranty-meaning-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 650px) {

    .warranty-hero {
        min-height: 550px;
    }


    .warranty-hero-lead {
        font-size: 1.08rem;
    }


    .warranty-scope-list,
    .warranty-approach-grid {
        grid-template-columns: 1fr;
    }


    .warranty-materials-highlight {
        padding: 32px 25px;
    }


    .warranty-main-word {
        font-size: 4.4rem;
    }

}

/* =========================================================
   SERVICE AREA PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.area-hero {
    position: relative;

    min-height: 610px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image:
        url("/assets/images/service-area/service-area-hero.jpg");

    background-size: cover;
    background-position: center;

    color: #ffffff;
}


.area-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 30, 51, 0.92) 0%,
            rgba(5, 30, 51, 0.72) 55%,
            rgba(5, 30, 51, 0.28) 100%
        );
}


.area-hero-content {
    position: relative;
    z-index: 2;

    padding-top: 80px;
    padding-bottom: 80px;
}


.area-hero h1 {
    max-width: 900px;

    margin-bottom: 25px;

    color: #ffffff;
}


.area-hero-lead {
    max-width: 720px;

    margin-bottom: 35px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 1.22rem;
}


/* =========================================================
   SERVICE STRIP
========================================================= */

.area-service-strip {
    background: #082e4c;

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

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


.area-service-strip-grid {
    display: grid;

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

    text-align: center;
}


.area-service-strip-grid a {
    padding: 22px 15px;

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

    color: #ffffff;

    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.area-service-strip-grid a:last-child {
    border-right: 0;
}


.area-service-strip-grid a:hover {
    background: #cb9c41;

    color: #082e4c;
}


/* =========================================================
   INTRO
========================================================= */

.area-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 80px;

    align-items: start;
}


/* =========================================================
   COMMUNITY CARDS
========================================================= */

.area-community-grid {
    display: grid;

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

    gap: 25px;
}


.area-community-card {
    padding: 34px;

    background: #ffffff;

    border-top:
        3px solid #cb9c41;

    box-shadow:
        0 8px 28px rgba(8, 46, 76, 0.07);
}


.area-community-card > span {
    display: block;

    margin-bottom: 18px;

    color: #cb9c41;

    font-weight: 700;
}


.area-community-card h3 {
    color: #082e4c;
}


.area-community-card p {
    margin-bottom: 0;

    color: #666666;
}


/* =========================================================
   CITY LIST
========================================================= */

.area-cities-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 80px;

    align-items: start;
}


.area-city-list {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    border-top:
        1px solid #d8d8d8;

    border-left:
        1px solid #d8d8d8;
}


.area-city-list div {
    padding: 18px 22px;

    border-right:
        1px solid #d8d8d8;

    border-bottom:
        1px solid #d8d8d8;

    color: #082e4c;

    font-weight: 700;
}


.area-city-list div:last-child {
    grid-column: 1 / -1;

    color: #cb9c41;
}


/* =========================================================
   LOCAL SECTION
========================================================= */

.area-local-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);

    gap: 80px;

    align-items: center;
}


.area-local p {
    color: rgba(255, 255, 255, 0.78);
}


.area-local-highlight {
    padding: 48px;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    background:
        rgba(255, 255, 255, 0.05);
}


.area-kicker {
    display: block;

    margin-bottom: 18px;

    color: #cb9c41;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.area-local-highlight h3 {
    color: #ffffff;

    font-size:
        clamp(1.8rem, 3vw, 2.6rem);

    line-height: 1.15;
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.area-services-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 25px;
}


.area-service-card {
    display: block;

    padding: 38px;

    background: #ffffff;

    border-top:
        3px solid #cb9c41;

    box-shadow:
        0 8px 28px rgba(8, 46, 76, 0.07);

    color: inherit;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.area-service-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 14px 35px rgba(8, 46, 76, 0.12);
}


.area-service-number {
    display: block;

    margin-bottom: 18px;

    color: #cb9c41;

    font-weight: 700;
}


.area-service-card h3 {
    color: #082e4c;

    font-size: 1.55rem;
}


.area-service-card p {
    color: #666666;
}


.area-service-link {
    color: #082e4c;

    font-weight: 700;
}


/* =========================================================
   LOCATION QUESTION
========================================================= */

.area-question-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 80px;

    align-items: start;
}


/* =========================================================
   WARRANTY
========================================================= */

.area-warranty-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 75px;

    align-items: center;
}


.area-warranty-word {
    color: #082e4c;

    font-size:
        clamp(4rem, 9vw, 8.5rem);

    font-weight: 700;

    letter-spacing: -0.05em;

    line-height: 0.85;

    opacity: 0.10;
}


/* =========================================================
   FINAL CTA
========================================================= */

.area-final-cta {
    padding: 95px 0;

    text-align: center;

    background: #cb9c41;
}


.area-final-cta .container {
    max-width: 850px;
}


.area-final-cta .eyebrow {
    color: #082e4c;
}


.area-final-cta h2 {
    color: #082e4c;
}


.area-final-cta p {
    max-width: 700px;

    margin: 0 auto 30px;

    color: #27394a;

    font-size: 1.08rem;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .area-intro-grid,
    .area-cities-grid,
    .area-local-grid,
    .area-question-grid,
    .area-warranty-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

}


@media (max-width: 760px) {

    .area-community-grid {
        grid-template-columns: 1fr;
    }


    .area-services-grid {
        grid-template-columns: 1fr;
    }


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


    .area-service-strip-grid a {
        border-bottom:
            1px solid rgba(255, 255, 255, 0.12);
    }

}


@media (max-width: 650px) {

    .area-hero {
        min-height: 550px;
    }


    .area-hero-lead {
        font-size: 1.08rem;
    }


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


    .area-city-list div:last-child {
        grid-column: auto;
    }


    .area-local-highlight {
        padding: 32px 25px;
    }

}


@media (max-width: 480px) {

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


    .area-service-strip-grid a {
        border-right: 0;
    }


    .area-warranty-word {
        font-size: 4rem;
    }

}

/* =========================================================
   SERVICE RADIUS
========================================================= */

.area-radius {
    background: #ffffff;
}

.area-radius-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 80px;

    align-items: start;
}

.area-radius-grid .lead {
    color: #082e4c;
}


/* Four regional cards instead of three */

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


/* Responsive */

@media (max-width: 950px) {

    .area-radius-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

}

@media (max-width: 760px) {

    .area-community-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   OUR PROCESS PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.process-page-hero {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image:
        url("/assets/images/process/process-hero.jpg");

    background-size: cover;
    background-position: center;

    color: #ffffff;
}


.process-page-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 30, 51, 0.93) 0%,
            rgba(5, 30, 51, 0.72) 55%,
            rgba(5, 30, 51, 0.28) 100%
        );
}


.process-page-hero-content {
    position: relative;
    z-index: 2;

    padding-top: 80px;
    padding-bottom: 80px;
}


.process-page-hero h1 {
    max-width: 900px;

    margin-bottom: 25px;

    color: #ffffff;
}


.process-page-lead {
    max-width: 700px;

    margin-bottom: 35px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 1.22rem;
}


/* =========================================================
   PHASE STRIP
========================================================= */

.process-phase-strip {
    background: #082e4c;
}


.process-phase-strip-grid {
    display: grid;

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

    text-align: center;
}


.process-phase-strip a {
    padding: 23px 18px;

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

    color: #ffffff;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.06em;

    text-transform: uppercase;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.process-phase-strip a:last-child {
    border-right: 0;
}


.process-phase-strip a span {
    margin-right: 8px;

    color: #cb9c41;
}


.process-phase-strip a:hover {
    background: #cb9c41;

    color: #082e4c;
}


.process-phase-strip a:hover span {
    color: #082e4c;
}


/* =========================================================
   INTRO
========================================================= */

.process-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 80px;

    align-items: start;
}


/* =========================================================
   PHASE HEADINGS
========================================================= */

.process-phase-heading {
    display: grid;

    grid-template-columns: 190px 1fr;

    gap: 50px;

    align-items: start;

    margin-bottom: 60px;
}


.process-phase-number {
    color: #082e4c;

    font-size:
        clamp(5rem, 10vw, 9rem);

    font-weight: 700;

    line-height: 0.8;

    opacity: 0.10;
}


/* =========================================================
   DETAIL CARDS
========================================================= */

.process-step-grid {
    display: grid;

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

    gap: 25px;
}


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

    max-width: 900px;

    margin: 0 auto;
}


.process-detail-card {
    padding: 35px;

    background: #ffffff;

    border-top:
        3px solid #cb9c41;

    box-shadow:
        0 8px 28px rgba(8, 46, 76, 0.07);
}


.process-detail-number {
    display: block;

    margin-bottom: 17px;

    color: #cb9c41;

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 0.12em;
}


.process-detail-card h3 {
    color: #082e4c;

    font-size: 1.5rem;
}


.process-detail-card p {
    color: #666666;
}


.process-detail-card p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TRANSITION
========================================================= */

.process-transition {
    padding: 30px 0;

    background: #cb9c41;
}


.process-transition .container {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 70px;

    flex-wrap: wrap;
}


.process-transition span {
    color: #082e4c;

    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 700;

    letter-spacing: 0.08em;
}


/* =========================================================
   BUILD SECTION
========================================================= */

.process-build {
    background: #ffffff;
}


/* =========================================================
   CRAFT PHILOSOPHY
========================================================= */

.process-craft-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);

    gap: 80px;

    align-items: center;
}


.process-craft p {
    color: rgba(255, 255, 255, 0.78);
}


.process-craft-highlight {
    padding: 48px;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    background:
        rgba(255, 255, 255, 0.05);
}


.process-kicker {
    display: block;

    margin-bottom: 18px;

    color: #cb9c41;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.process-craft-highlight h3 {
    color: #ffffff;

    font-size:
        clamp(1.8rem, 3vw, 2.6rem);

    line-height: 1.15;
}


/* =========================================================
   EXPECTATIONS
========================================================= */

.process-expectation-grid {
    display: grid;

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

    gap: 24px;
}


.process-expectation-item {
    padding: 28px 25px;

    border-left:
        2px solid #cb9c41;
}


.process-expectation-item h3 {
    color: #082e4c;
}


.process-expectation-item p {
    margin-bottom: 0;

    color: #666666;
}


/* =========================================================
   TIMELINE
========================================================= */

.process-timeline-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 80px;

    align-items: start;
}


.process-timeline p {
    color: rgba(255, 255, 255, 0.78);
}


.process-timeline .lead {
    color: #ffffff;
}


/* =========================================================
   FINAL CTA
========================================================= */

.process-final-cta {
    padding: 95px 0;

    text-align: center;

    background: #cb9c41;
}


.process-final-cta .container {
    max-width: 850px;
}


.process-final-cta .eyebrow {
    color: #082e4c;
}


.process-final-cta h2 {
    color: #082e4c;
}


.process-final-cta p {
    max-width: 700px;

    margin: 0 auto 30px;

    color: #27394a;

    font-size: 1.08rem;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .process-intro-grid,
    .process-craft-grid,
    .process-timeline-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .process-phase-heading {
        grid-template-columns: 120px 1fr;

        gap: 30px;
    }


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


    .process-final-grid {
        max-width: none;
    }


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

}


@media (max-width: 700px) {

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


    .process-phase-strip a {
        border-right: 0;

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


    .process-phase-heading {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .process-phase-number {
        font-size: 5rem;
    }


    .process-transition .container {
        gap: 25px;

        flex-direction: column;
    }


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

}


@media (max-width: 650px) {

    .process-page-hero {
        min-height: 550px;
    }


    .process-page-lead {
        font-size: 1.08rem;
    }


    .process-detail-card {
        padding: 28px 24px;
    }


    .process-craft-highlight {
        padding: 32px 25px;
    }

}

/* =========================================================
   FAQ PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.faq-hero {
    position: relative;

    min-height: 590px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image:
        url("/assets/images/faq/faq-hero.jpg");

    background-size: cover;
    background-position: center;

    color: #ffffff;
}


.faq-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 30, 51, 0.93) 0%,
            rgba(5, 30, 51, 0.72) 55%,
            rgba(5, 30, 51, 0.28) 100%
        );
}


.faq-hero-content {
    position: relative;
    z-index: 2;

    padding-top: 80px;
    padding-bottom: 80px;
}


.faq-hero h1 {
    max-width: 900px;

    margin-bottom: 25px;

    color: #ffffff;
}


.faq-hero-lead {
    max-width: 720px;

    margin-bottom: 35px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 1.22rem;
}


/* =========================================================
   INTRO
========================================================= */

.faq-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 80px;

    align-items: start;
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {
    max-width: 1000px;

    margin: 0 auto;
}


.faq-item {
    margin-bottom: 14px;

    background: #ffffff;

    border:
        1px solid rgba(8, 46, 76, 0.12);

    box-shadow:
        0 5px 18px rgba(8, 46, 76, 0.04);
}


.faq-item summary {
    position: relative;

    padding: 24px 65px 24px 26px;

    color: #082e4c;

    font-size: 1.08rem;
    font-weight: 700;

    cursor: pointer;

    list-style: none;
}


.faq-item summary::-webkit-details-marker {
    display: none;
}


.faq-item summary::after {
    content: "+";

    position: absolute;

    right: 25px;
    top: 50%;

    transform: translateY(-50%);

    color: #cb9c41;

    font-size: 1.8rem;
    font-weight: 400;

    line-height: 1;
}


.faq-item[open] summary::after {
    content: "–";
}


.faq-item[open] summary {
    border-bottom:
        1px solid rgba(8, 46, 76, 0.10);
}


.faq-answer {
    padding: 25px 28px 30px;
}


.faq-answer p {
    color: #626262;
}


.faq-answer p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   QUESTION SECTION
========================================================= */

.faq-question-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 80px;

    align-items: start;
}


.faq-question p {
    color: rgba(255, 255, 255, 0.78);
}


.faq-question .lead {
    color: #ffffff;
}


/* =========================================================
   FINAL CTA
========================================================= */

.faq-final-cta {
    padding: 95px 0;

    text-align: center;

    background: #cb9c41;
}


.faq-final-cta .container {
    max-width: 850px;
}


.faq-final-cta .eyebrow {
    color: #082e4c;
}


.faq-final-cta h2 {
    color: #082e4c;
}


.faq-final-cta p {
    max-width: 700px;

    margin: 0 auto 30px;

    color: #27394a;

    font-size: 1.08rem;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .faq-intro-grid,
    .faq-question-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

}


@media (max-width: 650px) {

    .faq-hero {
        min-height: 540px;
    }


    .faq-hero-lead {
        font-size: 1.08rem;
    }


    .faq-item summary {
        padding:
            20px
            55px
            20px
            20px;

        font-size: 1rem;
    }


    .faq-item summary::after {
        right: 20px;
    }


    .faq-answer {
        padding:
            22px
            20px
            25px;
    }

}

/* =========================================================
   CUSTOMER REVIEWS
========================================================= */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.review-card {
    position: relative;
    background: #ffffff;
    padding: 36px 32px;
    border: 1px solid rgba(8, 46, 76, 0.12);
    box-shadow: 0 8px 28px rgba(8, 46, 76, 0.06);

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-card-featured {
    border-top: 4px solid #cb9c41;
}

.review-featured-label {
    color: #082e4c;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    text-align: center;
}

.review-stars {
    color: #cb9c41;
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin-bottom: 22px;
    text-align: center;
}

.review-text {
    margin: 0 auto 28px;
    padding: 0;
    border: 0;
    max-width: 620px;

    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
}

.review-customer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;

    width: 100%;

    color: #082e4c;
    text-align: center;
}

.review-customer strong {
    display: block;
    font-size: 1rem;
}

.review-customer span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.75;
}

.review-source {
    width: 100%;

    margin-top: 18px;
    padding-top: 15px;

    border-top: 1px solid rgba(8, 46, 76, 0.12);

    font-size: 0.8rem;
    opacity: 0.7;

    text-align: center;
}

.review-source a {
    color: inherit;
}


/* =========================================================
   REVIEWS - TABLET
========================================================= */

@media (max-width: 1000px) {

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

}


/* =========================================================
   REVIEWS - MOBILE
========================================================= */

@media (max-width: 650px) {

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

    .review-card {
        padding: 28px 24px;
    }

}

/* =========================================================
   HOMEPAGE FEATURED REVIEWS
========================================================= */

.home-reviews .reviews-grid {
    margin-bottom: 42px;
}

.home-review-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 650px) {

    .home-review-buttons {
        flex-direction: column;
    }

    .home-review-buttons .button {
        width: 100%;
        max-width: 320px;
    }

}