/* =========================================================
   Request a Quote CTA
   ========================================================= */

.quote-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(92px, 10vw, 155px) 0;
    background: #ffffff;
    color: #111111;
}

.quote-cta-inner {
    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(330px, 0.65fr);
    gap: clamp(70px, 10vw, 150px);
    align-items: end;

    width: min(calc(100% - 80px), 1320px);
    margin: 0 auto;
}


/* =========================================================
   Main copy
   ========================================================= */

.quote-cta-kicker {
    display: inline-block;
    margin-bottom: 22px;

    color: #8e6d19;

    font-size: 0.78rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.quote-cta-title {
    max-width: 850px;
    margin: 0;

    color: #111111;

    font-size: clamp(3.6rem, 7vw, 7.4rem);
    line-height: 0.91;
    font-weight: 500;
    letter-spacing: -0.072em;
}

.quote-cta-description {
    max-width: 680px;
    margin: clamp(28px, 3vw, 42px) 0 0;

    color: #666666;

    font-size: clamp(1rem, 1.2vw, 1.18rem);
    line-height: 1.65;
    letter-spacing: -0.015em;
}


/* =========================================================
   Actions
   ========================================================= */

.quote-cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 34px;
}

.quote-cta-primary,
.quote-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    min-height: 52px;
    padding: 0 24px;

    border-radius: 6px;

    font-size: 0.92rem;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;

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

.quote-cta-primary {
    border: 1px solid #b98b1e;
    color: #111111;
    background: #d2a737;
}

.quote-cta-primary:hover {
    gap: 17px;

    color: #111111;
    background: #dfb94e;
    border-color: #c79a2b;

    transform: translateY(-2px);
}

.quote-cta-secondary {
    border: 1px solid rgba(17, 17, 17, 0.22);
    color: #111111;
    background: transparent;
}

.quote-cta-secondary:hover {
    color: #111111;
    border-color: #111111;
    background: #f5f5f3;
}


/* =========================================================
   Details
   ========================================================= */

.quote-cta-details {
    border-top: 1px solid rgba(17, 17, 17, 0.18);
}

.quote-cta-detail {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 18px;

    padding: 26px 0;

    border-bottom: 1px solid rgba(17, 17, 17, 0.18);
}

.quote-cta-detail-number {
    padding-top: 5px;

    color: #9a7410;

    font-size: 0.7rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.quote-cta-detail h3 {
    margin: 0 0 8px;

    color: #111111;

    font-size: 1.05rem;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.quote-cta-detail p {
    margin: 0;

    color: #727272;

    font-size: 0.91rem;
    line-height: 1.55;
    letter-spacing: -0.01em;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991.98px) {
    .quote-cta-inner {
        grid-template-columns: 1fr;
        gap: 62px;

        width: calc(100% - 88px);
    }

    .quote-cta-details {
        max-width: 720px;
    }
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767.98px) {
    .quote-cta {
        padding: 78px 0 84px;
    }

    .quote-cta-inner {
        width: calc(100% - 30px);
        gap: 48px;
    }

    .quote-cta-title {
        font-size: clamp(3rem, 14vw, 4.4rem);
        line-height: 0.94;
    }

    .quote-cta-description {
        margin-top: 25px;
        font-size: 1rem;
    }

    .quote-cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .quote-cta-primary,
    .quote-cta-secondary {
        width: 100%;
    }

    .quote-cta-detail {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 13px;
        padding: 23px 0;
    }
}


/* =========================================================
   Reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .quote-cta-primary,
    .quote-cta-secondary {
        transition: none;
    }
}