.about {
    padding: 128px 0 0;
    background: var(--white);
    overflow: hidden;
}

.about__inner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    border-radius: 128px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.about__inner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(31, 42, 27, 0.6) 0%,
        rgba(31, 42, 27, 0.28) 24%,
        rgba(31, 42, 27, 0.1) 45%,
        rgba(31, 42, 27, 0.5) 100%
    );
}

.about__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.about__heading-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    height: clamp(190px, 24vw, 300px);
    flex-shrink: 0;
}

.about__heading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: clamp(2.6rem, 5.5vw, 4.25rem);
    line-height: 1.05;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 2px 14px rgba(31, 42, 27, 0.75), 0 10px 44px rgba(31, 42, 27, 0.55);
    padding: clamp(36px, 5vw, 64px) clamp(32px, 5vw, 64px) clamp(52px, 7vw, 84px);
}

.about__content {
    position: relative;
    z-index: 2;
    width: min(100%, calc(var(--container) + var(--container-pad) * 2));
    margin-inline: auto;
    padding: clamp(28px, 4vw, 56px) var(--container-pad) clamp(56px, 8vw, 112px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-areas:
        "lead lead"
        "body callout";
    gap: clamp(28px, 4vw, 48px) clamp(32px, 5vw, 80px);
    align-items: start;
}

.about__lead {
    grid-area: lead;
    max-width: 30ch;
    font-size: clamp(1.5rem, 2.8vw, 2.25rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--white);
    text-shadow: 0 2px 24px rgba(31, 42, 27, 0.55);
}

.about__body {
    grid-area: body;
}

.about__text {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 14px rgba(31, 42, 27, 0.55);
}

.about__callout {
    grid-area: callout;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: clamp(24px, 3vw, 32px) clamp(24px, 3vw, 32px) clamp(28px, 3.5vw, 40px);
    border-radius: var(--radius-lg);
    background: rgba(79, 138, 61, 0.92);
    box-shadow: var(--shadow);
}

.about__callout-mark {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 0.6;
    color: rgba(255, 255, 255, 0.45);
}

.about__callout-text {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.6;
    color: var(--white);
}

@media (max-width: 900px) {
    .about__content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "lead"
            "body"
            "callout";
    }
}

@media (max-width: 560px) {
    .about {
        padding: 80px 0 0;
    }

    .about__inner {
        border-radius: clamp(48px, 12vw, 128px);
        min-height: auto;
    }

    .about__heading-wrap {
        height: clamp(160px, 40vw, 220px);
    }

    .about__heading {
        font-size: clamp(2rem, 9vw, 2.75rem);
        padding-top: clamp(24px, 6vw, 40px);
        padding-bottom: clamp(40px, 10vw, 56px);
    }

    .about__content {
        padding: clamp(24px, 6vw, 40px) var(--container-pad) clamp(40px, 10vw, 56px);
    }

    .about__lead {
        font-size: clamp(1.25rem, 5.5vw, 1.6rem);
    }
}
