:root {
    --red: #EB5C5A;
    --red-soft: #fdeceb;
    --ink: #1c1c1e;
    --charcoal: #333334;
    --muted: #6d6d75;
    --line: #ececee;
    --band: #f5f7fb;
    --serif: "Playfair Display", Georgia, serif;
    --sans: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, sans-serif;
}

.ab {
    font-family: var(--sans);
    color: var(--charcoal);
}

.ab h1,
.ab h2,
.ab h3 {
    font-family: var(--serif);
    color: var(--ink);
    font-weight: 600;
    margin: 0;
    letter-spacing: -.01em;
}

.ab .eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    margin: 0 0 14px;
}

.ab .serif-em {
    font-style: italic;
    color: var(--red);
    font-weight: 500;
}

.ab-narrow {
    max-width: 760px;
}

.ab-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.ab-lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
    margin: 26px 0 0;
}

/* ---------- Hero ---------- */
.ab-hero {
    padding: 96px 0 88px;
}

.ab-hero h1 {
    font-size: 56px;
    line-height: 1.06;
    letter-spacing: -.02em;
}

.ab-hero .ab-lead {
    max-width: 700px;
}

/* ---------- Principles band ---------- */
.ab-band {
    background: var(--band);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.ab-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 66px 0;
}

.ab-principle h3 {
    font-family: var(--sans);
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 10px;
}

.ab-principle p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--muted);
    max-width: 300px;
}

/* ---------- Team / CTA ---------- */
.ab-team {
    padding: 110px 0 120px;
}

.ab-team h2 {
    font-size: 38px;
    line-height: 1.1;
}

.ab-team .ab-lead {
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

.ab-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

/* btn base comes from layouthome.css; add the outline variant used here */
.ab .btn-outline {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: none;
}

.ab .btn-outline:hover {
    border-color: #d6d6da;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .ab-hero {
        padding: 66px 0 58px;
    }

    .ab-hero h1 {
        font-size: 42px;
    }

    .ab-principles {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 48px 0;
    }

    .ab-team {
        padding: 72px 0 84px;
    }

    .ab-team h2 {
        font-size: 30px;
    }
}

@media (max-width: 560px) {
    .ab-hero h1 {
        font-size: 34px;
    }

    .ab-lead {
        font-size: 16px;
    }
}
