:root {
    --brand: #55bda8;
    --brand-dark: #2f9f90;
    --ink: #252525;
    --soft: #f7f7f4;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Montserrat", Arial, sans-serif;
    background: #fff;
}

.logo-strip {
    padding: clamp(34px, 5.3vw, 72px) 0 clamp(26px, 4.2vw, 52px);
}

.logo-strip__image {
    display: block;
    width: min(100%, 1080px);
    margin: 0 auto;
    height: auto;
}

.hero {
    position: relative;
    z-index: 1;
}

.hero__image {
    display: block;
    width: 100%;
    height: clamp(420px, 50vw, 730px);
    object-fit: cover;
    object-position: center top;
}

.open-house-badge {
    position: absolute;
    left: 50%;
    bottom: -43px;
    transform: translateX(-50%);
    z-index: 2;
    width: min(calc(100% - 32px), 630px);
    min-height: 86px;
    padding: 24px 34px;
    background: #fff;
    color: #2b2b2b;
    text-align: center;
    font-size: clamp(1.05rem, 2vw, 1.55rem);
    font-weight: 500;
    letter-spacing: .02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.open-house-badge strong {
    color: var(--brand-dark);
    font-weight: 800;
}

.lead-section {
    position: relative;
    z-index: 0;
    background: var(--brand);
    padding: 104px 0 88px;
}

.lead-section__title {
    margin-bottom: 46px;
    color: #fff;
    text-align: center;
    font-size: clamp(1.35rem, 2.3vw, 2rem);
    line-height: 1.18;
    font-weight: 500;
}

.lead-section__title strong {
    font-weight: 800;
}

.lead-form .form-control {
    min-height: 48px;
    border: 0;
    border-radius: 0;
    color: #303030;
    font-size: 1.05rem;
    font-weight: 500;
    background: #fff;
    box-shadow: none;
}

.lead-form .form-control::placeholder {
    color: #5c5c5c;
    opacity: 1;
}

.lead-form textarea.form-control {
    min-height: 88px;
    resize: vertical;
}

.form-control:focus {
    outline: 3px solid rgba(255, 255, 255, .45);
    outline-offset: 2px;
    box-shadow: none;
}

.privacy-check {
    min-height: 36px;
    color: #fff;
    font-size: .86rem;
    font-weight: 700;
}

.privacy-check .form-check-input {
    width: 27px;
    height: 27px;
    margin-top: 0;
    border: 0;
    border-radius: 0;
}

.privacy-check .form-check-label {
    padding-left: 9px;
    line-height: 27px;
}

.btn-send {
    min-width: 160px;
    min-height: 48px;
    padding: 10px 34px;
    border: 0;
    border-radius: 0;
    background: #282828;
    color: var(--brand);
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.btn-send:hover,
.btn-send:focus {
    background: #111;
    color: #fff;
}

.btn-send:disabled {
    opacity: .75;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.turnstile-wrap {
    display: flex;
    justify-content: flex-start;
}

.contact-bar {
    background: #242424;
    color: #fff;
    padding: 10px 0;
    font-size: clamp(.95rem, 1.8vw, 1.24rem);
    line-height: 1.2;
}

.contact-bar strong {
    color: var(--brand);
    font-weight: 800;
}

.site-footer {
    padding: 52px 0 62px;
    background: #fff;
    font-size: clamp(.98rem, 1.5vw, 1.16rem);
    line-height: 1.18;
}

.footer-logo {
    display: block;
    width: min(100%, 365px);
    height: auto;
}

.site-footer address {
    font-style: normal;
}

.footer-hours {
    padding-top: 78px;
}

.alert {
    border-radius: 0;
    border: 0;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .footer-hours {
        padding-top: 0;
    }
}

@media (max-width: 767.98px) {
    .logo-strip {
        padding: 26px 0 20px;
    }

    .hero__image {
        height: 380px;
    }

    .open-house-badge {
        bottom: -34px;
        min-height: auto;
        padding: 18px 18px;
        white-space: normal;
        line-height: 1.25;
    }

    .lead-section {
        padding: 82px 0 58px;
    }

    .lead-section__title {
        margin-bottom: 30px;
    }

    .btn-send {
        width: 100%;
    }

    .turnstile-wrap {
        justify-content: center;
    }

    .site-footer {
        padding: 40px 0;
    }
}
