@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap");


body{
    margin: 0;
}
.remodel-showcase,
.remodel-showcase * {
    box-sizing: border-box;
}

.remodel-showcase {
    --remodel-orange: #e96f00;
    --remodel-black: #000000;
    --remodel-white: #ffffff;

    position: relative;
    width: 100%;
    min-height: 740px;
    padding: 88px 24px 60px;
    overflow: hidden;
    background-color: var(--remodel-black);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.84)),
        url("https://amconstructionbuilders.com/wp-content/uploads/2025/11/Untitled-design-30_11zon-1.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.remodel-showcase__inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.remodel-showcase__content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.remodel-showcase__title {
    max-width: 1100px;
    margin: 0;
    color: var(--remodel-orange);
    font-family: "Open Sans", sans-serif;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.remodel-showcase__description {
    max-width: 740px;
    margin: 18px auto 0;
    color: var(--remodel-white);
    font-family: "Roboto", sans-serif;
    font-size: clamp(17px, 1.4vw, 20px);
    font-weight: 400;
    line-height: 1.5;
}

.remodel-showcase__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 48px;
    margin-top: 39px;
    padding: 11px 27px;
    border: 2px solid var(--remodel-orange);
    border-radius: 8px;
    background-color: var(--remodel-orange);
    color: #080808;
    font-family: "Montserrat", sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.1;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.remodel-showcase__button-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: currentColor;
    transition: transform 0.25s ease;
}

.remodel-showcase__button:hover {
    background-color: transparent;
    color: var(--remodel-orange);
    box-shadow: 0 8px 25px rgba(233, 111, 0, 0.22);
    transform: translateY(-2px);
}

.remodel-showcase__button:hover .remodel-showcase__button-icon {
    transform: translateX(3px);
}

.remodel-showcase__button:focus-visible {
    outline: 3px solid var(--remodel-white);
    outline-offset: 4px;
}

/* Image gallery */

.remodel-showcase__gallery {
    display: grid;
    grid-template-columns: 0.65fr 1.15fr 1fr 1.15fr 0.65fr;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 1300px;
    min-height: 315px;
    margin: 43px auto 0;
    perspective: 1400px;
}

.remodel-card {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 11px;
    background-color: #171717;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition:
        transform 0.35s ease,
        filter 0.35s ease,
        box-shadow 0.35s ease;
}

.remodel-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Far left image */

.remodel-card--far-left {
    z-index: 1;
    height: 282px;
    border-radius: 4px 11px 11px 4px;
    transform-origin: right center;
    transform: perspective(1000px) rotateY(9deg) rotateZ(1deg);
}

/* Inner left image */

.remodel-card--left {
    z-index: 2;
    height: 246px;
    transform-origin: right center;
    transform: perspective(1000px) rotateY(8deg) rotateZ(1.2deg);
}

/* Center image */

.remodel-card--center {
    z-index: 4;
    height: 310px;
    box-shadow: 0 15px 32px rgba(0, 0, 0, 0.4);
    transform: translateZ(20px);
}

/* Inner right image */

.remodel-card--right {
    z-index: 2;
    height: 246px;
    transform-origin: left center;
    transform: perspective(1000px) rotateY(-8deg) rotateZ(-1.2deg);
}

/* Far right image */

.remodel-card--far-right {
    z-index: 1;
    height: 282px;
    border-radius: 11px 4px 4px 11px;
    transform-origin: left center;
    transform: perspective(1000px) rotateY(-9deg) rotateZ(-1deg);
}

.remodel-card:hover {
    z-index: 8;
    filter: brightness(1.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
}

.remodel-card--far-left:hover {
    transform: perspective(1000px) rotateY(4deg) rotateZ(0deg) scale(1.03);
}

.remodel-card--left:hover {
    transform: perspective(1000px) rotateY(3deg) rotateZ(0deg) scale(1.03);
}

.remodel-card--center:hover {
    transform: translateZ(25px) scale(1.025);
}

.remodel-card--right:hover {
    transform: perspective(1000px) rotateY(-3deg) rotateZ(0deg) scale(1.03);
}

.remodel-card--far-right:hover {
    transform: perspective(1000px) rotateY(-4deg) rotateZ(0deg) scale(1.03);
}

/* Tablet */

@media (max-width: 1100px) {
    .remodel-showcase {
        min-height: auto;
        padding-top: 75px;
    }

    .remodel-showcase__gallery {
        max-width: 960px;
        min-height: 260px;
    }

    .remodel-card--far-left,
    .remodel-card--far-right {
        height: 220px;
    }

    .remodel-card--left,
    .remodel-card--right {
        height: 205px;
    }

    .remodel-card--center {
        height: 260px;
    }
}

/* Mobile and small tablet */

@media (max-width: 767px) {
    .remodel-showcase {
        padding: 60px 18px;
    }

    .remodel-showcase__title {
        font-size: clamp(36px, 10vw, 48px);
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .remodel-showcase__description {
        max-width: 570px;
        margin-top: 16px;
        font-size: 17px;
    }

    .remodel-showcase__button {
        margin-top: 28px;
        font-size: 18px;
    }

    .remodel-showcase__gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        min-height: 0;
        margin-top: 38px;
        perspective: none;
    }

    .remodel-card {
        height: 210px;
        border-radius: 10px;
        transform: none;
    }

    .remodel-card--center {
        grid-column: 1 / -1;
        grid-row: 1;
        height: 300px;
    }

    .remodel-card--far-left {
        grid-column: 1;
        grid-row: 2;
    }

    .remodel-card--left {
        grid-column: 2;
        grid-row: 2;
    }

    .remodel-card--right {
        grid-column: 1;
        grid-row: 3;
    }

    .remodel-card--far-right {
        grid-column: 2;
        grid-row: 3;
    }

    .remodel-card:hover,
    .remodel-card--far-left:hover,
    .remodel-card--left:hover,
    .remodel-card--center:hover,
    .remodel-card--right:hover,
    .remodel-card--far-right:hover {
        transform: translateY(-3px);
    }
}

/* Small phones */

@media (max-width: 480px) {
    .remodel-showcase {
        padding: 50px 15px;
    }

    .remodel-showcase__gallery {
        display: flex;
        flex-direction: column;
    }

    .remodel-card,
    .remodel-card--center {
        width: 100%;
        height: 235px;
    }

    .remodel-showcase__button {
        width: 100%;
        max-width: 280px;
    }
}

/* Reduce animation for accessibility */

@media (prefers-reduced-motion: reduce) {
    .remodel-showcase__button,
    .remodel-showcase__button-icon,
    .remodel-card {
        transition: none;
    }
}




.project-details,
.project-details * {
    box-sizing: border-box;
}

.project-details {
    --details-orange: #e96f00;
    --details-white: #f5f5f5;
    --details-black: #000000;

    width: 100%;
    padding: 24px 24px 88px;
    background-color: var(--details-black);
}

.project-details__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(60px, 10vw, 170px);
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}

.project-details__item {
    min-width: 0;
}

.project-details__heading {
    margin: 0 0 14px;
    color: var(--details-orange);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 2.2vw, 36px);
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.project-details__value {
    margin: 0;
    color: var(--details-white);
    font-family: "Roboto", sans-serif;
    font-size: clamp(17px, 1.3vw, 21px);
    font-weight: 400;
    line-height: 1.5;
}

/* Tablet */

@media (max-width: 900px) {
    .project-details__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(60px, 10vw, 170px);
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}

.before-remodel__content {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.before-remodel__title {
    margin: 0 0 18px;
    color: var(--before-orange);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(30px, 2.4vw, 38px);
    font-weight: 600;
    line-height: 1.2;
}

.before-remodel__description {
    max-width: 1300px;
    margin: 0 auto;
    color: var(--before-white);
    font-family: "Roboto", sans-serif;
    font-size: clamp(17px, 1.3vw, 20px);
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

.before-remodel__gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    margin-top: 40px;
}

.before-remodel__item {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 2px;
    background-color: #151515;
}

.before-remodel__item a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.before-remodel__item img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center;
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.before-remodel__item::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0);
    content: "";
    pointer-events: none;
    transition: background-color 0.35s ease;
}

.before-remodel__item:hover img {
    filter: brightness(1.08);
    transform: scale(1.045);
}

.before-remodel__item:hover::after {
    background-color: rgba(0, 0, 0, 0.08);
}

.before-remodel__item a:focus-visible {
    outline: 3px solid var(--before-orange);
    outline-offset: -3px;
}

/* Large screens */

@media (min-width: 1500px) {
    .before-remodel__inner {
        max-width: 1320px;
    }
}

/* Tablet */

@media (max-width: 1024px) {
    .before-remodel {
        padding: 80px 22px;
    }

    .before-remodel__gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        max-width: 760px;
        margin-right: auto;
        margin-left: auto;
    }

    .before-remodel__item img {
        aspect-ratio: 3 / 4;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .before-remodel {
        padding: 60px 16px;
    }

    .before-remodel__title {
        margin-bottom: 14px;
        font-size: 31px;
    }

    .before-remodel__description {
        font-size: 16px;
        line-height: 1.65;
    }

    .before-remodel__gallery {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 430px;
        margin-top: 32px;
    }

    .before-remodel__item {
        border-radius: 6px;
    }

    .before-remodel__item img {
        aspect-ratio: 4 / 5;
    }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
    .before-remodel__item img,
    .before-remodel__item::after {
        transition: none;
    }
}



@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap");

.project-stage,
.project-stage * {
    box-sizing: border-box;
}

.project-stage {
    --stage-orange: #e96f00;
    --stage-white: #ffffff;
    --stage-black: #000000;

    width: 100%;
    padding: 95px 24px;
    overflow: hidden;
    background-color: var(--stage-black);
}

.project-stage--after {
    padding-top: 75px;
    padding-bottom: 110px;
}

.project-stage__inner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.project-stage__header {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.project-stage__title {
    margin: 0 0 18px;
    color: var(--stage-orange);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(31px, 2.5vw, 39px);
    font-weight: 600;
    line-height: 1.2;
}

.project-stage__description {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    color: var(--stage-white);
    font-family: "Roboto", sans-serif;
    font-size: clamp(17px, 1.3vw, 20px);
    font-weight: 400;
    line-height: 1.55;
    text-align: center;
}

.project-stage__gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    margin-top: 40px;
}

.project-stage__image {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 3px;
    background-color: #171717;
}

.project-stage__image a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.project-stage__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center;
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.project-stage__image::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: transparent;
    content: "";
    pointer-events: none;
    transition: background-color 0.35s ease;
}

.project-stage__image:hover img {
    filter: brightness(1.08);
    transform: scale(1.045);
}

.project-stage__image:hover::after {
    background-color: rgba(0, 0, 0, 0.08);
}

.project-stage__image a:focus-visible {
    outline: 3px solid var(--stage-orange);
    outline-offset: -3px;
}


/* Tablet */

@media (max-width: 1024px) {
    .project-stage {
        padding: 75px 22px;
    }

    .project-stage--after {
        padding-top: 55px;
        padding-bottom: 85px;
    }

    .project-stage__gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        max-width: 760px;
        margin-right: auto;
        margin-left: auto;
    }
}


/* Mobile */

@media (max-width: 600px) {
    .project-stage {
        padding: 60px 16px;
    }

    .project-stage--after {
        padding-top: 45px;
        padding-bottom: 70px;
    }

    .project-stage__title {
        margin-bottom: 14px;
        font-size: 31px;
    }

    .project-stage__description {
        font-size: 16px;
        line-height: 1.65;
    }

    .project-stage__gallery {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 430px;
        margin-top: 32px;
    }

    .project-stage__image {
        border-radius: 6px;
    }

    .project-stage__image img {
        aspect-ratio: 4 / 5;
    }
}


/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .project-stage__image img,
    .project-stage__image::after {
        transition: none;
    }
}


@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap");

.remodel-overview,
.remodel-overview * {
    box-sizing: border-box;
}

.remodel-overview {
    --overview-orange: #e96f00;
    --overview-white: #ffffff;
    --overview-black: #000000;

    width: 100%;
    padding: 22px 24px;
    overflow: hidden;
    background-color: var(--overview-black);
}

.remodel-overview__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1190px;
    margin: 0 auto;
}


/* ========================================
   BEFORE/AFTER COMPARISON
======================================== */

.remodel-overview__comparison {
    min-width: 0;
}

.remodel-compare {
    position: relative;
    width: 100%;
    height: clamp(620px, 52vw, 790px);
    overflow: hidden;
    border-radius: 10px;
    background-color: #1a1a1a;
    user-select: none;
    touch-action: pan-y;
}

.remodel-compare::after {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.32);
    content: "";
    pointer-events: none;
}

.remodel-compare__image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.remodel-compare__image--after {
    z-index: 1;
}

.remodel-compare__before {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: var(--comparison-position);
    overflow: hidden;
}

.remodel-compare__before .remodel-compare__image {
    width: calc(100% / (var(--comparison-position) / 100%));
    max-width: none;
}


/* Labels */

.remodel-compare__label {
    position: absolute;
    top: 50%;
    z-index: 5;
    min-width: 74px;
    padding: 11px 16px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--overview-white);
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.3px;
    text-align: center;
    transform: translateY(-50%);
    pointer-events: none;
}

.remodel-compare__label--before {
    left: 11px;
}

.remodel-compare__label--after {
    right: 11px;
}


/* Divider and handle */

.remodel-compare__divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--comparison-position);
    z-index: 6;
    width: 2px;
    background-color: var(--overview-white);
    transform: translateX(-50%);
    pointer-events: none;
}

.remodel-compare__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 43px;
    height: 43px;
    border: 3px solid var(--overview-white);
    border-radius: 50%;
    background-color: var(--overview-white);
    color: #000000;
    place-items: center;
    transform: translate(-50%, -50%);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.35);
}

.remodel-compare__handle svg {
    display: block;
    width: 25px;
    height: 18px;
    fill: currentColor;
}


/* Invisible range input covers the whole comparison */

.remodel-compare__range {
    position: absolute;
    inset: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
}

.remodel-compare:focus-within .remodel-compare__handle {
    outline: 3px solid var(--overview-orange);
    outline-offset: 4px;
}


/* ========================================
   OVERVIEW CONTENT
======================================== */

.remodel-overview__content {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: clamp(620px, 52vw, 790px);
    overflow: hidden;
    border-radius: 10px;
    align-items: center;
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.58),
            rgba(0, 0, 0, 0.58)
        ),
        url("https://amconstructionbuilders.com/wp-content/uploads/2025/11/Home-Rework-12.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.remodel-overview__content-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: clamp(30px, 3.3vw, 45px) 20px;
}

.remodel-overview__eyebrow {
    margin: 0 0 17px;
    color: var(--overview-white);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(25px, 2vw, 30px);
    font-weight: 600;
    line-height: 1.2;
}

.remodel-overview__title {
    max-width: 520px;
    margin: 0 0 20px;
    color: var(--overview-orange);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(27px, 2.25vw, 35px);
    font-weight: 400;
    line-height: 1.18;
    text-transform: capitalize;
}

.remodel-overview__description {
    max-width: 535px;
    margin: 0;
    color: var(--overview-white);
    font-family: "Roboto", sans-serif;
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 400;
    line-height: 1.42;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1024px) {
    .remodel-overview {
        padding: 20px;
    }

    .remodel-overview__inner {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .remodel-compare,
    .remodel-overview__content {
        height: 700px;
        min-height: 0;
    }

    .remodel-overview__content-inner {
        padding: 45px 35px;
    }

    .remodel-overview__description {
        max-width: 590px;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {
    .remodel-overview {
        padding: 15px;
    }

    .remodel-overview__inner {
        gap: 15px;
    }

    .remodel-compare {
        height: 570px;
        border-radius: 8px;
    }

    .remodel-overview__content {
        min-height: 570px;
        height: auto;
        border-radius: 8px;
        background-position: center;
    }

    .remodel-overview__content-inner {
        padding: 45px 22px;
    }

    .remodel-overview__eyebrow {
        margin-bottom: 13px;
        font-size: 25px;
    }

    .remodel-overview__title {
        margin-bottom: 17px;
        font-size: 27px;
    }

    .remodel-overview__description {
        font-size: 16px;
        line-height: 1.55;
    }

    .remodel-compare__label {
        min-width: 62px;
        padding: 9px 11px;
        font-size: 12px;
    }

    .remodel-compare__label--before {
        left: 8px;
    }

    .remodel-compare__label--after {
        right: 8px;
    }

    .remodel-compare__handle {
        width: 39px;
        height: 39px;
    }
}


/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .remodel-compare__before,
    .remodel-compare__divider {
        transition: none;
    }
}

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto:wght@400;500;600&display=swap");

.remodel-cta,
.remodel-cta * {
    box-sizing: border-box;
}

.remodel-cta {
    --cta-orange: #e96f00;
    --cta-white: #ffffff;
    --cta-black: #000000;

    width: 100%;
    padding: 50px 24px;
    background:
        linear-gradient(
            180deg,
            #e9700c 0%,
            #eb893e 34%,
            #f1b17f 65%,
            #fffaf7 100%
        );
}

.remodel-cta__card {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 1090px;
    min-height: 422px;
    margin: 0 auto;
    overflow: hidden;
    border: 2px solid var(--cta-orange);
    border-radius: 20px;
    align-items: center;
    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.51) 48%,
            rgba(0, 0, 0, 0.42) 100%
        ),
        url("https://amconstructionbuilders.com/wp-content/uploads/2025/11/Untitled-design-33_11zon-1.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.remodel-cta__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 56px 48px 58px;
}

.remodel-cta__eyebrow {
    margin: 0 0 18px;
    color: var(--cta-orange);
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    text-transform: uppercase;
}

.remodel-cta__title {
    max-width: 980px;
    margin: 0 0 20px;
    color: var(--cta-white);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(40px, 4vw, 58px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1.2px;
    text-transform: capitalize;
}

.remodel-cta__description {
    max-width: 995px;
    margin: 0 0 34px;
    color: var(--cta-white);
    font-family: "Roboto", sans-serif;
    font-size: clamp(16px, 1.25vw, 18px);
    font-weight: 400;
    line-height: 1.5;
}

.remodel-cta__button {
    display: inline-flex;
    min-height: 45px;
    padding: 10px 23px;
    border: 2px solid var(--cta-white);
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    background-color: var(--cta-white);
    color: #111111;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.remodel-cta__button:hover {
    border-color: var(--cta-orange);
    background-color: var(--cta-orange);
    color: var(--cta-white);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.remodel-cta__button:focus-visible {
    outline: 3px solid var(--cta-orange);
    outline-offset: 4px;
}


/* Tablet */

@media (max-width: 900px) {
    .remodel-cta {
        padding: 42px 22px;
    }

    .remodel-cta__card {
        min-height: 430px;
        background-position: center;
    }

    .remodel-cta__content {
        padding: 50px 38px;
    }

    .remodel-cta__title {
        font-size: clamp(38px, 6vw, 50px);
        line-height: 1.08;
    }
}


/* Mobile */

@media (max-width: 600px) {
    .remodel-cta {
        padding: 30px 15px;
    }

    .remodel-cta__card {
        min-height: 520px;
        border-radius: 15px;
        background-image:
            linear-gradient(
                rgba(0, 0, 0, 0.61),
                rgba(0, 0, 0, 0.61)
            ),
            url("https://amconstructionbuilders.com/wp-content/uploads/2025/11/Untitled-design-33_11zon-1.webp");
        background-position: 58% center;
    }

    .remodel-cta__content {
        padding: 42px 24px;
    }

    .remodel-cta__eyebrow {
        margin-bottom: 15px;
        font-size: 14px;
    }

    .remodel-cta__title {
        margin-bottom: 20px;
        font-size: clamp(34px, 10vw, 43px);
        line-height: 1.08;
        letter-spacing: -0.7px;
    }

    .remodel-cta__description {
        margin-bottom: 28px;
        font-size: 16px;
        line-height: 1.6;
    }

    .remodel-cta__button {
        width: 100%;
        max-width: 250px;
    }
}


/* Small phones */

@media (max-width: 400px) {
    .remodel-cta__content {
        padding: 38px 19px;
    }

    .remodel-cta__title {
        font-size: 32px;
    }
}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {
    .remodel-cta__button {
        transition: none;
    }
}


@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap");

.am-advantages,
.am-advantages * {
    box-sizing: border-box;
}

.am-advantages {
    --advantages-orange: #e96f00;
    --advantages-white: #ffffff;
    --advantages-black: #000000;

    width: 100%;
    padding: 42px 24px 82px;
    overflow: hidden;
    background-color: var(--advantages-black);
}

.am-advantages__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.am-advantages__title {
    margin: 0 0 52px;
    color: var(--advantages-orange);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(34px, 3.4vw, 47px);
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}

.am-advantages__card {
    display: flex;
    width: 100%;
    min-height: 470px;
    padding: 30px 45px 44px;
    border: 1px solid rgba(233, 111, 0, 0.72);
    border-radius: 12px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    box-shadow:
        0 0 7px rgba(233, 111, 0, 0.58),
        0 0 18px rgba(233, 111, 0, 0.18);
}

.am-advantages__logo-link {
    display: block;
    width: 108px;
    margin: 0 auto 28px;
    text-decoration: none;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.am-advantages__logo-link:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.am-advantages__logo-link:focus-visible {
    border-radius: 4px;
    outline: 3px solid var(--advantages-orange);
    outline-offset: 5px;
}

.am-advantages__logo {
    display: block;
    width: 100%;
    height: 68px;
    object-fit: contain;
}

.am-advantages__list {
    width: 100%;
    max-width: 500px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.am-advantages__item {
    position: relative;
    margin: 0;
    padding: 0 0 0 29px;
    color: var(--advantages-white);
    font-family: "Roboto", sans-serif;
    font-size: clamp(16px, 1.25vw, 18px);
    font-weight: 400;
    line-height: 1.45;
}

.am-advantages__item + .am-advantages__item {
    margin-top: 12px;
}

/* Orange circular check icon */

.am-advantages__item::before {
    position: absolute;
    top: 0.28em;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--advantages-orange);
    content: "";
}

.am-advantages__item::after {
    position: absolute;
    top: 0.58em;
    left: 5px;
    width: 8px;
    height: 4px;
    border-bottom: 2px solid #000000;
    border-left: 2px solid #000000;
    content: "";
    transform: rotate(-45deg);
}


/* Tablet */

@media (max-width: 900px) {
    .am-advantages {
        padding: 50px 22px 70px;
    }

    .am-advantages__title {
        margin-bottom: 38px;
    }

    .am-advantages__card {
        min-height: 440px;
        padding: 38px 35px;
    }
}


/* Mobile */

@media (max-width: 600px) {
    .am-advantages {
        padding: 45px 15px 60px;
    }

    .am-advantages__title {
        margin-bottom: 30px;
        font-size: 34px;
    }

    .am-advantages__card {
        min-height: 0;
        padding: 34px 22px 38px;
        border-radius: 10px;
    }

    .am-advantages__logo-link {
        width: 105px;
        margin-bottom: 27px;
    }

    .am-advantages__item {
        padding-left: 27px;
        font-size: 16px;
        line-height: 1.5;
    }

    .am-advantages__item + .am-advantages__item {
        margin-top: 14px;
    }
}


/* Small phones */

@media (max-width: 380px) {
    .am-advantages__title {
        font-size: 30px;
    }

    .am-advantages__card {
        padding-right: 17px;
        padding-left: 17px;
    }

    .am-advantages__item {
        font-size: 15px;
    }
}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {
    .am-advantages__logo-link {
        transition: none;
    }
}

.site-lightbox,
.site-lightbox * {
    box-sizing: border-box;
}

.site-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    padding: 24px;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.site-lightbox.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.site-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.92);
    cursor: zoom-out;
}

.site-lightbox__dialog {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    max-width: 1250px;
    height: calc(100vh - 48px);
    align-items: center;
    justify-content: center;
    outline: none;
}

.site-lightbox__figure {
    position: relative;
    display: flex;
    max-width: calc(100% - 130px);
    max-height: 100%;
    margin: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.site-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 130px);
    border-radius: 6px;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.97);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.site-lightbox__image.is-loaded {
    opacity: 1;
    transform: scale(1);
}

.site-lightbox__caption {
    min-height: 24px;
    margin-top: 14px;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

.site-lightbox__close,
.site-lightbox__arrow {
    border: 0;
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.site-lightbox__close:hover,
.site-lightbox__arrow:hover {
    background-color: #e96f00;
    color: #000000;
}

.site-lightbox__close:focus-visible,
.site-lightbox__arrow:focus-visible {
    outline: 3px solid #e96f00;
    outline-offset: 3px;
}

.site-lightbox__close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    display: grid;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-size: 34px;
    line-height: 1;
    place-items: center;
}

.site-lightbox__arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 50px;
    height: 60px;
    border-radius: 7px;
    font-size: 27px;
    place-items: center;
    transform: translateY(-50%);
}

.site-lightbox__arrow:hover {
    transform: translateY(-50%) scale(1.05);
}

.site-lightbox__arrow--previous {
    left: 0;
}

.site-lightbox__arrow--next {
    right: 0;
}

.site-lightbox__counter {
    position: absolute;
    right: 64px;
    bottom: 0;
    color: rgba(255, 255, 255, 0.85);
    font-family: "Roboto", sans-serif;
    font-size: 14px;
}

.site-lightbox__loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 38px;
    height: 38px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: #e96f00;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation: site-lightbox-spin 0.75s linear infinite;
    pointer-events: none;
}

.site-lightbox__loader.is-visible {
    opacity: 1;
}

@keyframes site-lightbox-spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

body.site-lightbox-open {
    overflow: hidden;
}

@media (max-width: 700px) {
    .site-lightbox {
        padding: 12px;
    }

    .site-lightbox__dialog {
        height: calc(100vh - 24px);
    }

    .site-lightbox__figure {
        max-width: 100%;
    }

    .site-lightbox__image {
        max-height: calc(100vh - 115px);
    }

    .site-lightbox__close {
        top: 5px;
        right: 5px;
        width: 42px;
        height: 42px;
        background-color: rgba(0, 0, 0, 0.72);
        font-size: 30px;
    }

    .site-lightbox__arrow {
        top: auto;
        bottom: 5px;
        width: 48px;
        height: 44px;
        background-color: rgba(255, 255, 255, 0.16);
        transform: none;
    }

    .site-lightbox__arrow:hover {
        transform: none;
    }

    .site-lightbox__arrow--previous {
        left: 5px;
    }

    .site-lightbox__arrow--next {
        right: 5px;
    }

    .site-lightbox__caption {
        padding: 0 60px;
        font-size: 14px;
    }

    .site-lightbox__counter {
        right: 50%;
        bottom: 18px;
        transform: translateX(50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-lightbox,
    .site-lightbox__image,
    .site-lightbox__close,
    .site-lightbox__arrow {
        transition: none;
    }

    .site-lightbox__loader {
        animation: none;
    }
}

.contact-section {
    --contact-background: #ffe6d3;
    --contact-accent: #e56600;
    --contact-accent-hover: #c95600;
    --contact-heading: #111111;
    --contact-text: #1f1f1f;
    --contact-white: #ffffff;
    padding: 84px 24px 80px;
    background-color: var(--contact-background);
    font-family: "Roboto", sans-serif;
}

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

.contact-section__container {
  display: grid;
  grid-template-columns: minmax(0, 610px) minmax(0, 650px);
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
}

.contact-section__info {
  min-width: 0;
}

.contact-section__heading {
  margin: 0 0 18px;
  color: var(--contact-heading);
  font-family: "Open Sans", sans-serif;
  font-size: clamp(37px, 2.6vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}

.contact-section__intro {
  max-width: 580px;
  margin: 0 0 38px;
  color: var(--contact-text);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-section__details {
  display: flex;
  max-width: 485px;
  flex-direction: column;
  gap: 21px;
}

.contact-detail {
  display: flex;
  min-height: 124px;
  align-items: center;
  gap: 17px;
  padding: 21px 22px;
  border-radius: 11px;
  color: var(--contact-heading);
  background-color: var(--contact-white);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-detail:hover {
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.contact-detail:focus-visible {
  outline: 3px solid var(--contact-accent);
  outline-offset: 4px;
}

.contact-detail__icon {
  display: flex;
  width: 79px;
  height: 79px;
  flex: 0 0 79px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: var(--contact-white);
  background-color: var(--contact-accent);
}

.contact-detail__icon svg {
  display: block;
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.contact-detail__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-detail__title {
  margin-bottom: 3px;
  font-family: "Open Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
}

.contact-detail__value {
  overflow-wrap: anywhere;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.contact-form-card {
  position: relative;
  isolation: isolate;
  min-height: 475px;
  overflow: hidden;
  padding: 51px 33px 52px;
  border-radius: 12px;
  background-image:
    url("https://amconstructionbuilders.com/wp-content/uploads/2025/11/AM-Construction-46.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.contact-form__group {
  width: 100%;
}

.contact-form__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.contact-form__field {
  display: block;
  width: 100%;
  height: 45px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  color: #202020;
  background-color: var(--contact-white);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form__field::placeholder {
  color: #707070;
  opacity: 1;
}

.contact-form__field:focus {
  border-color: var(--contact-accent);
  box-shadow: 0 0 0 3px rgba(229, 102, 0, 0.23);
}

.contact-form__textarea {
  height: 105px;
  min-height: 105px;
  resize: vertical;
}

.contact-form__button {
  align-self: flex-start;
  min-height: 54px;
  padding: 13px 27px;
  border: 2px solid var(--contact-accent);
  border-radius: 5px;
  cursor: pointer;
  color: var(--contact-white);
  background-color: var(--contact-accent);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form__button:hover {
  border-color: var(--contact-accent-hover);
  background-color: var(--contact-accent-hover);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.contact-form__button:focus-visible {
  outline: 3px solid var(--contact-white);
  outline-offset: 4px;
}

@media (max-width: 1050px) {
  .contact-section__container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 35px;
  }

  .contact-detail__value {
    font-size: 17px;
  }

  .contact-form-card {
    padding-inline: 27px;
  }
}

@media (max-width: 820px) {
  .contact-section {
    padding: 60px 22px;
  }

  .contact-section__container {
    grid-template-columns: 1fr;
    max-width: 680px;
    gap: 45px;
  }

  .contact-section__details {
    max-width: none;
  }

  .contact-form-card {
    min-height: 470px;
  }
}

@media (max-width: 560px) {
  .contact-section {
    padding: 45px 18px;
  }

  .contact-section__heading {
    font-size: 34px;
  }

  .contact-section__intro {
    margin-bottom: 30px;
    font-size: 16px;
  }

  .contact-detail {
    min-height: 105px;
    gap: 14px;
    padding: 17px;
  }

  .contact-detail__icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .contact-detail__icon svg {
    width: 32px;
    height: 32px;
  }

  .contact-detail__title {
    font-size: 21px;
  }

  .contact-detail__value {
    font-size: 15px;
  }

  .contact-form-card {
    min-height: 450px;
    padding: 32px 20px;
    border-radius: 9px;
  }

  .contact-form {
    gap: 15px;
  }

  .contact-form__field {
    height: 47px;
  }

  .contact-form__textarea {
    height: 115px;
  }

  .contact-form__button {
    width: 100%;
  }
}




