/* ===== LAYOUT ===== */
.container {
    width: min(100% - 40px, 1240px);
    margin-inline: auto;
}

.section {
    padding-block: clamp(76px, 9vw, 132px);
}

.section-light {
    background: var(--surface);
    color: var(--ink);
}

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

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

.narrow {
    width: min(760px, 100%);
    margin-inline: auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

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

.btn--primary {
    color: var(--white);
    background: var(--brand);
    box-shadow: 0 12px 34px rgba(224, 15, 39, .24);
}

.btn--primary:hover {
    background: var(--brand-dark);
    box-shadow: 0 16px 42px rgba(224, 15, 39, .3);
}

.btn--ghost {
    color: var(--white);
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.15);
}

.btn--ghost:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.25);
}

.btn--light {
    color: var(--dark);
    background: var(--white);
}

.btn--light:hover {
    background: #f1f1f2;
}

.btn--ghost-light {
    color: var(--white);
    border-color: rgba(255,255,255,.28);
    background: rgba(255,255,255,.08);
}

.btn--ghost-light:hover {
    background: rgba(255,255,255,.14);
}

.btn--full {
    width: 100%;
}

/* ===== SHARED CONTENT ===== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #E00F27;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 34px;
    height: 2px;
    background: currentColor;
}

.eyebrow--dark {
    color: var(--brand);
}

.eyebrow--center {
    justify-content: center;
}

.section-heading {
    margin-bottom: clamp(38px, 5vw, 68px);
}

.section-heading h2,
.benefits-copy h2,
.about-copy h2,
.faq-heading h2,
.contact-copy h2 {
    max-width: 760px;
    font-size: clamp(34px, 4.3vw, 60px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.section-heading p,
.benefits-copy > p,
.about-copy > p,
.faq-heading > p,
.contact-copy > p {
    color: var(--muted);
    line-height: 1.8;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .75fr);
    gap: 48px;
    align-items: end;
}

.section-heading--split > p {
    margin-bottom: 4px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: inherit;
    font-weight: 800;
}

.text-link i {
    transition: transform .2s ease;
}

.text-link:hover i {
    transform: translateX(5px);
}

.photo-slot {
    display: grid;
    place-items: center;
    min-height: 230px;
    border: 1px dashed rgba(255,255,255,.25);
    background:
        linear-gradient(145deg, rgba(224,15,39,.2), transparent 55%),
        #1b1b1f;
    color: rgba(255,255,255,.72);
    text-align: center;
    overflow: hidden;
}

.photo-slot span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0,0,0,.38);
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1240px);
    }

    .btn {
        width: 100%;
    }
}
