.about-hero {
    display: grid;
    gap: 20px;
    align-items: center;
    grid-template-columns: 1fr;
    padding: 28px 16px 12px;
}

@media (min-width:900px) {
    .about-hero {
        grid-template-columns: 1fr 1.3fr;
        gap: 32px;
    }
}

.hero-media {
    display: flex;
    justify-content: center;
}

.logo-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.logo-circle.lg {
    width: 220px;
    height: 220px;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-copy h1 {
    font-size: clamp(26px, 3.2vw, 40px);
    margin: 6px 0 8px;
    font-weight: 800;
}

.hero-copy .lead {
    color: var(--muted);
    max-width: 60ch;
}

.hero-copy .cta {
    margin-top: 14px;
}

.about-values {
    padding: 22px 16px;
}

.about-values .grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}

@media (min-width:800px) {
    .about-values .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value {
    border: 1px solid var(--ring);
    border-radius: calc(var(--radius) + 4px);
    padding: 16px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
    text-align: center;
}

.value i {
    font-size: 26px;
    margin-bottom: 6px;
}

.value h3 {
    margin: 6px 0;
}

.value p {
    color: var(--muted);
    margin: 0;
}

.about-timeline {
    padding: 22px 16px;
}

.about-timeline h2 {
    text-align: center;
    margin-bottom: 10px;
}

.timeline {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 720px;
    position: relative;
}

.timeline li {
    display: grid;
    grid-template-columns: 32px 80px 1fr;
    gap: 12px;
    align-items: center;
    padding: 8px 0;
    position: relative;
}

.timeline .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    margin-left: 11px;
}

.timeline .year {
    font-weight: 700;
}

.timeline p {
    margin: 0;
    color: var(--muted);
}

.about-cta {
    display: grid;
    place-items: center;
    padding: 28px 16px;
}

.about-cta .card {
    width: 100%;
    max-width: 720px;
    text-align: center;
    padding: 22px;
    border: 1px solid var(--ring);
    border-radius: calc(var(--radius) + 4px);
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
}

.about-cta .card h2 {
    margin: 0 0 8px;
}

.about-cta .card p {
    color: var(--muted);
    margin: 0 0 14px;
}