body.fireplace-landing-page {
    margin: 0;
    background: #101010;
    font-family: "Barlow Condensed", Arial, sans-serif;
    scroll-behavior: smooth;
}

.fireplace-page {
    min-height: 100vh;
}

.fireplace-page h1,
.fireplace-page h2,
.fireplace-page h3,
.fireplace-page p {
    font-family: "Barlow Condensed", Arial, sans-serif;
}

.fireplace-hero {
    position: relative;
    max-height: 80vh;
    color: #fff !important;
    background-image: url("../landing-page/hero-image.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fireplace-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.64) 40%, rgba(0, 0, 0, 0.3) 100%);
}

.fireplace-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 86vh;
    padding: 54px 64px;
    gap: 24px;
}

.fireplace-hero__logo {
    width: clamp(90px, 8vw, 132px);
    height: auto;
    margin-left: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.fireplace-hero__content {
    align-self: center;
    max-width: 630px;
    margin-right: auto;
    margin-left: clamp(40px, 9vw, 190px);
}

.fireplace-hero__title {
    margin: 0;
    color: white !important;
    font-size: clamp(42px, 7vw, 74px);
    line-height: 0.95;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.fireplace-hero__subtitle {
    margin: 18px 0 0;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.2;
}

.fireplace-hero__description {
    margin: 26px 0 0;
    max-width: 620px;
    font-size: clamp(21px, 2vw, 33px);
    line-height: 1.35;
    font-weight: 700;
}

.fireplace-hero__cta {
    display: inline-flex;
    margin-top: 34px;
    align-items: center;
    justify-content: center;
    min-width: 420px;
    min-height: 94px;
    padding: 0 24px;
    border-radius: 26px;
    border: 4px solid #1d1d1d;
    background: #dc3a3f;
    color: #fff;
    text-decoration: none;
    font-size: clamp(28px, 2.8vw, 48px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.04em;
    transition: background-color 0.2s ease;
}

.fireplace-hero__cta:hover,
.fireplace-hero__cta:focus {
    background: #c52f34;
}

.fireplace-intro {
    background: linear-gradient(180deg, #000 0%, #d43b3e 100%);
    color: #fff;
    text-align: center;
    padding: 54px 20px 22px;
}

.fireplace-intro__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.fireplace-intro__title {
    margin: 0;
    font-size: clamp(38px, 4.2vw, 64px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: white !important;
    text-transform: uppercase;
}

.fireplace-intro__text {
    max-width: 1280px;
    margin: 26px auto 0;
    font-size: clamp(34px, 2.95vw, 47px);
    line-height: 1.38;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.fireplace-intro__serving {
    margin: 30px;
    font-size: clamp(40px, 3.3vw, 54px);
    line-height: 1.2;
    font-weight: 700;
}

.fireplace-services {
    position: relative;
    z-index: 1;
    background: #efefef;
    padding: 56px 22px 48px;
}

.fireplace-services__inner {
    max-width: 1640px;
    margin: 0 auto;
}

.fireplace-services__title {
    margin: 0;
    text-align: center;
    font-size: clamp(50px, 4.2vw, 80px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #000 0%, #d43b3e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #7a1f25;
}

.fireplace-services__title::after {
    content: "";
    display: block;
    width: min(620px, 62vw);
    height: 6px;
    margin: 16px auto 0;
    border-radius: 4px;
    background: linear-gradient(90deg, #d43b3e 0%, #000 100%);
}

.fireplace-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.fireplace-service-card {
    text-align: center;
}

.fireplace-service-card__image-wrap {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.fireplace-service-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fireplace-service-card__label {
    position: absolute;
    left: 50%;
    top: 18px;
    transform: translateX(-50%);
    margin: 0;
    min-width: min(82%, 420px);
    padding: 10px 18px;
    border-radius: 10px;
    background: #dd3c40;
    color: #fff;
    font-size: clamp(26px, 2vw, 42px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.fireplace-service-card__text {
    margin: 24px auto 0;
    max-width: 92%;
    color: #202020;
    font-size: clamp(22px, 1.95vw, 38px);
    line-height: 1.35;
    font-weight: 400;
    letter-spacing: 0.005em;
}

.fireplace-service-card__brands {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

.fireplace-service-card__brand {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
}

.fireplace-service-card__brand--mendota {
    max-height: 46px;
    max-width: 220px;
}

.fireplace-service-card__brand--valor {
    max-height: 100px;
    max-width: 170px;
}

.fireplace-why {
    position: relative;
    z-index: 3;
    background: #313238;
    color: #fff;
    padding: 0 24px 44px;
    overflow: visible;
}

.fireplace-why::before {
    content: "";
    display: block;
    width: 100%;
    height: 64px;
    margin-top: -1px;
    background: #efefef;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.fireplace-why__inner {
    max-width: 1520px;
    margin: 0 auto;
    padding-top: 8px;
}

.fireplace-why__flame {
    position: relative;
    z-index: 2;
    display: block;
    width: clamp(30px, 3vw, 52px);
    height: auto;
    margin: -80px auto 0;
    opacity: 0.3;
}

.fireplace-why__title {
    margin: 40px 0 0;
    padding: 8px 0 14px;
    text-align: center;
    font-size: clamp(48px, 3.8vw, 74px);
    line-height: 1.05;
    color: white !important;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.fireplace-why__list {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
}

.fireplace-why__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 16px;
    font-size: clamp(22px, 2.2vw, 45px);
    line-height: 1.2;
    font-weight: 400;
}

.fireplace-why__item:first-child {
    margin-top: 0;
}

.fireplace-why__check {
    width: clamp(20px, 2vw, 34px);
    height: auto;
    margin-top: 0.2em;
    flex-shrink: 0;
}

.fireplace-process {
    background: #efefef;
    padding: 56px 24px 46px;
}

.fireplace-process__inner {
    max-width: 1500px;
    margin: 0 auto;
}

.fireplace-process__title {
    margin: 0;
    font-size: clamp(50px, 4.2vw, 82px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #d43b3e 0%, #111 55%, #111 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #7a1f25;
}

.fireplace-process__list {
    margin: 20px 0 0;
    padding-left: 1em;
    color: #1d1d1d;
    font-size: clamp(27px, 2.35vw, 45px);
    line-height: 1.4;
    font-weight: 400;
}

.fireplace-process__closing {
    margin: 24px 0 0;
    text-align: center;
    color: #111;
    font-size: clamp(36px, 3vw, 58px);
    line-height: 1.25;
    font-weight: 700;
}

.fireplace-contact {
    background: #efefef;
    padding: 46px 20px 58px;
}

.fireplace-contact__inner {
    max-width: 1640px;
    margin: 0 auto;
}

.fireplace-contact__title {
    margin: 0;
    text-align: center;
    font-size: clamp(52px, 4vw, 84px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #d43b3e 0%, #111 56%, #111 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #7a1f25;
}

.fireplace-contact__title::after {
    content: "";
    display: block;
    width: min(560px, 55vw);
    height: 5px;
    margin: 14px auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, #d43b3e 0%, #111 100%);
}

.fireplace-contact__form {
    margin-top: 24px;
}

.fireplace-contact__form .gform_wrapper .gform_title {
    display: none;
}

.fireplace-contact__form .gform_wrapper .gfield_label,
.fireplace-contact__form .gform_wrapper legend.gfield_label {
    font-size: clamp(20px, 1.4vw, 28px);
    font-weight: 600;
    color: #1d1d1d;
}

.fireplace-contact__form .gform_wrapper .gfield_required,
.fireplace-contact__form .gform_wrapper .gfield_required_text,
.fireplace-contact__form .gform_wrapper .gfield_required_asterisk {
    font-size: clamp(18px, 1.2vw, 24px);
    font-weight: 600;
    color: #d43b3e;
}

.fireplace-contact__form .gform_wrapper .gfield_description,
.fireplace-contact__form .gform_wrapper .instruction {
    font-size: clamp(16px, 1.05vw, 20px);
    color: #4a4a4a;
}

.fireplace-contact__form .gform_wrapper .gchoice label,
.fireplace-contact__form .gform_wrapper .gfield_checkbox label,
.fireplace-contact__form .gform_wrapper .gform-field-label {
    font-size: clamp(20px, 1.35vw, 28px);
    font-weight: 500;
    color: #1d1d1d;
}

.fireplace-contact__form .gform_wrapper .gchoice {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.fireplace-contact__form .gform_wrapper .gchoice input[type="checkbox"] {
    margin: 0;
    padding-right: 12px;
}

.fireplace-contact__form .gform_wrapper .gchoice label {
    margin: 0;
    line-height: 1.2;
    padding-left: 12px;
}

.fireplace-contact__form .gform_wrapper .gform_footer,
.fireplace-contact__form .gform_wrapper .gform_page_footer {
    display: flex;
    justify-content: center;
}

.fireplace-contact__form .gform_wrapper .gform_button,
.fireplace-contact__form .gform_wrapper .gform_next_button,
.fireplace-contact__form .gform_wrapper .gform_previous_button {
    min-width: 280px;
    min-height: 72px;
    padding: 14px 30px;
    border: 3px solid #1d1d1d;
    border-radius: 16px;
    background: #d43b3e;
    color: #fff;
    font-size: clamp(26px, 1.9vw, 38px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.fireplace-contact__form .gform_wrapper .gform_button:hover,
.fireplace-contact__form .gform_wrapper .gform_button:focus,
.fireplace-contact__form .gform_wrapper .gform_next_button:hover,
.fireplace-contact__form .gform_wrapper .gform_next_button:focus {
    background: #bf2f37;
}

.fireplace-contact__form .gform_wrapper #gform_submit_button_1 {
    min-width: 340px;
    min-height: 84px;
    padding: 16px 36px;
    background: #d43b3e;
    font-size: clamp(30px, 2.3vw, 44px);
}

.fireplace-testimonials {
    background: #2f3036;
    padding: 42px 20px 56px;
}

.fireplace-testimonials__inner {
    max-width: 1640px;
    margin: 0 auto;
}

.fireplace-testimonials__title {
    margin: 0;
    color: #f4f4f4;
    font-size: clamp(48px, 3.8vw, 74px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.fireplace-testimonials__grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.fireplace-testimonial-card {
    background: #efefef;
    border: 1px solid #d4d4d4;
    padding: 24px 28px 20px;
}

.fireplace-testimonial-card__text {
    margin: 0;
    min-height: 270px;
    color: #1f1f1f;
    font-size: clamp(26px, 1.8vw, 33px);
    line-height: 1.35;
    font-weight: 400;
}

.fireplace-testimonial-card__divider {
    margin-top: 18px;
    height: 6px;
    border-radius: 4px;
    background: #dedede;
}

.fireplace-testimonial-card__author {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.fireplace-testimonial-card__check {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}

.fireplace-testimonial-card__name {
    color: #111;
    font-size: clamp(31px, 2vw, 39px);
    line-height: 1.1;
    font-weight: 700;
}

.fireplace-testimonial-card__location {
    margin-top: 6px;
    color: #282828;
    font-size: clamp(25px, 1.6vw, 30px);
    line-height: 1.1;
    font-weight: 400;
}

.fireplace-gradient-divider {
    width: 100%;
    height: 25px;
    background: linear-gradient(90deg, #d43b3e 0%, #000 100%);
}

.fireplace-final {
    background: #000;
    color: #fff;
    padding: 34px 28px;
}

.fireplace-final__inner {
    max-width: 1640px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    align-items: center;
    gap: 26px;
}

.fireplace-final__brand-image {
    width: 100%;
    max-width: 760px;
    height: auto;
    display: block;
}

.fireplace-final__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.fireplace-final__social {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fireplace-final__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fireplace-final__social-link img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.fireplace-final__details {
    display: grid;
    gap: 20px;
}

.fireplace-final__label {
    margin: 0 0 8px;
    color: #d43b3e;
    font-size: clamp(30px, 2vw, 42px);
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: 700;
    text-transform: uppercase;
}

.fireplace-final__block p {
    margin: 0;
    font-size: clamp(27px, 1.75vw, 36px);
    line-height: 1.3;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .fireplace-hero__inner {
        padding: 32px 24px 46px;
    }

    .fireplace-hero__content {
        max-width: 100%;
        margin-left: clamp(24px, 6vw, 88px);
    }

    .fireplace-hero__cta {
        min-width: 0;
        width: 100%;
        max-width: 520px;
    }

    .fireplace-intro {
        padding-top: 40px;
    }

    .fireplace-intro__text {
        max-width: 980px;
    }

    .fireplace-services {
        padding-top: 44px;
    }

    .fireplace-services__title::after {
        height: 4px;
    }

    .fireplace-services__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .fireplace-service-card__image-wrap {
        aspect-ratio: 16 / 10;
    }

    .fireplace-service-card__text {
        max-width: 100%;
    }

    .fireplace-why::before {
        height: 52px;
    }

    .fireplace-why__inner {
        padding-top: 8px;
    }

    .fireplace-why__item {
        gap: 12px;
    }

    .fireplace-process {
        padding-top: 42px;
    }

    .fireplace-contact {
        padding-top: 40px;
    }

    .fireplace-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .fireplace-testimonial-card__text {
        min-height: 0;
    }

    .fireplace-final__inner {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 24px;
    }

    .fireplace-final__brand-image {
        max-width: 620px;
    }

    .fireplace-final__right {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .fireplace-hero {
        min-height: 86svh;
    }

    .fireplace-hero__overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.72) 100%);
    }

    .fireplace-hero__inner {
        min-height: 86svh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 28px;
    }

    .fireplace-hero__logo {
        width: 110px;
        margin: 14px auto 0;
    }

    .fireplace-hero__content {
        margin-top: 8px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .fireplace-hero__title {
        font-size: clamp(34px, 14vw, 56px);
    }

    .fireplace-hero__subtitle {
        margin-top: 12px;
        font-size: clamp(24px, 7vw, 36px);
    }

    .fireplace-hero__description {
        margin-top: 16px;
        font-size: clamp(19px, 5.6vw, 29px);
        line-height: 1.35;
    }

    .fireplace-hero__cta {
        margin: 22px auto 0;
        min-width: 0;
        width: min(84vw, 360px);
        min-height: 60px;
        padding: 0 16px;
        border-radius: 14px;
        border-width: 3px;
        font-size: clamp(18px, 5vw, 28px);
    }

    .fireplace-intro {
        padding: 36px 16px 18px;
    }

    .fireplace-intro__title {
        font-size: clamp(28px, 8vw, 42px);
    }

    .fireplace-intro__text {
        margin-top: 18px;
        font-size: clamp(22px, 7vw, 33px);
        line-height: 1.32;
    }

    .fireplace-intro__serving {
        margin-top: 20px;
        font-size: clamp(26px, 7.6vw, 36px);
        line-height: 1.25;
    }

    .fireplace-services {
        padding: 34px 14px 36px;
    }

    .fireplace-services__title {
        font-size: clamp(36px, 11vw, 52px);
    }

    .fireplace-services__title::after {
        width: min(320px, 72vw);
        margin-top: 10px;
    }

    .fireplace-services__grid {
        margin-top: 22px;
        gap: 20px;
    }

    .fireplace-service-card__image-wrap {
        border-radius: 16px;
    }

    .fireplace-service-card__label {
        top: 10px;
        padding: 9px 12px;
        border-radius: 8px;
        font-size: clamp(20px, 6.6vw, 30px);
    }

    .fireplace-service-card__text {
        margin-top: 16px;
        font-size: clamp(22px, 7vw, 30px);
        line-height: 1.28;
    }

    .fireplace-service-card__brands {
        margin-top: 16px;
        gap: 14px;
    }

    .fireplace-service-card__brand--mendota {
        max-height: 32px;
        max-width: 160px;
    }

    .fireplace-service-card__brand--valor {
        max-height: 40px;
        max-width: 120px;
    }

    .fireplace-why {
        padding: 0 14px 28px;
    }

    .fireplace-why::before {
        height: 40px;
    }

    .fireplace-why__inner {
        padding-top: 6px;
    }

    .fireplace-why__title {
        margin-top: 28px;
        font-size: clamp(34px, 10vw, 52px);
    }

    .fireplace-why__list {
        margin-top: 18px;
    }

    .fireplace-why__item {
        margin-top: 12px;
        font-size: clamp(22px, 5.8vw, 32px);
        line-height: 1.25;
    }

    .fireplace-why__check {
        width: 18px;
        margin-top: 0.3em;
    }

    .fireplace-process {
        padding: 34px 14px 28px;
    }

    .fireplace-process__title {
        font-size: clamp(34px, 10vw, 52px);
        line-height: 1.14;
    }

    .fireplace-process__list {
        margin-top: 14px;
        font-size: clamp(22px, 5.8vw, 32px);
        line-height: 1.35;
    }

    .fireplace-process__closing {
        margin-top: 18px;
        font-size: clamp(28px, 7.2vw, 40px);
        line-height: 1.24;
    }

    .fireplace-contact {
        padding: 34px 14px 40px;
    }

    .fireplace-contact__title {
        font-size: clamp(38px, 10.2vw, 56px);
    }

    .fireplace-contact__title::after {
        width: min(300px, 72vw);
        margin-top: 10px;
    }

    .fireplace-contact__form {
        margin-top: 18px;
    }

    .fireplace-contact__form .gform_wrapper .gfield_label,
    .fireplace-contact__form .gform_wrapper legend.gfield_label {
        font-size: clamp(18px, 5.2vw, 24px);
    }

    .fireplace-contact__form .gform_wrapper .gfield_required,
    .fireplace-contact__form .gform_wrapper .gfield_required_text,
    .fireplace-contact__form .gform_wrapper .gfield_required_asterisk {
        font-size: clamp(15px, 4.2vw, 20px);
    }

    .fireplace-contact__form .gform_wrapper .gfield_description,
    .fireplace-contact__form .gform_wrapper .instruction {
        font-size: clamp(14px, 3.8vw, 18px);
    }

    .fireplace-contact__form .gform_wrapper .gchoice label,
    .fireplace-contact__form .gform_wrapper .gfield_checkbox label,
    .fireplace-contact__form .gform_wrapper .gform-field-label {
        font-size: clamp(18px, 5vw, 24px);
    }

    .fireplace-contact__form .gform_wrapper .gform_button,
    .fireplace-contact__form .gform_wrapper .gform_next_button,
    .fireplace-contact__form .gform_wrapper .gform_previous_button {
        min-width: 220px;
        min-height: 62px;
        font-size: clamp(21px, 5.8vw, 28px);
    }

    .fireplace-testimonials {
        padding: 32px 14px 38px;
    }

    .fireplace-testimonials__title {
        font-size: clamp(34px, 10vw, 52px);
    }

    .fireplace-testimonials__grid {
        margin-top: 16px;
        gap: 14px;
    }

    .fireplace-testimonial-card {
        padding: 16px 14px;
    }

    .fireplace-testimonial-card__text {
        font-size: clamp(23px, 6vw, 30px);
    }

    .fireplace-testimonial-card__author {
        margin-top: 14px;
        gap: 12px;
    }

    .fireplace-testimonial-card__check {
        width: 52px;
        height: 52px;
    }

    .fireplace-testimonial-card__name {
        font-size: clamp(25px, 7vw, 34px);
    }

    .fireplace-testimonial-card__location {
        font-size: clamp(21px, 6vw, 28px);
    }

    .fireplace-gradient-divider {
        height: 16px;
    }

    .fireplace-final {
        padding: 24px 14px;
    }

    .fireplace-final__inner {
        gap: 18px;
    }

    .fireplace-final__brand-image {
        max-width: 100%;
    }

    .fireplace-final__right {
        width: 100%;
        gap: 14px;
        align-items: flex-start;
    }

    .fireplace-final__social {
        gap: 10px;
    }

    .fireplace-final__social-link img {
        width: 44px;
        height: 44px;
    }

    .fireplace-final__details {
        gap: 14px;
    }

    .fireplace-final__label {
        font-size: clamp(24px, 6.6vw, 32px);
        margin-bottom: 6px;
    }

    .fireplace-final__block p {
        font-size: clamp(21px, 5.6vw, 27px);
        line-height: 1.28;
    }
}
