/* About hero */
.about-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.94) 32%,
            rgba(255, 255, 255, 0.72) 52%,
            rgba(255, 255, 255, 0.08) 78%
        ),
        url('../images/about-01.webp') 72% center / cover no-repeat;
}

/* About hero gradient divider */
.about-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 5px;
    content: "";
    background: linear-gradient(
        90deg,
        var(--color-primary),
        var(--color-secondary),
        var(--color-accent)
    );
}

/* About hero content */
.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 690px;
    padding-block: 5rem;
    transform: translateY(-90px);
}

/* About hero heading */
.about-hero-content h1 {
    max-width: 680px;
    margin-bottom: 1.5rem;
    color: var(--color-heading);
    font-size: clamp(2.75rem, 4.5vw, 4.5rem);
    line-height: 1.05;
}

/* About hero text */
.about-hero-text {
    max-width: 600px;
    margin-bottom: 1.75rem;
    color: var(--color-text-light);
    font-size: 1.15rem;
    line-height: 1.75;
}

/* About hero points */
.about-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

/* About hero point */
.about-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-heading);
    font-weight: 700;
}

/* About hero point icon */
.about-hero-points i {
    color: var(--color-secondary);
}

/* About story */
.about-story {
    background: var(--color-white);
}

/* About story layout */
.about-story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4.5rem;
    align-items: center;
}

/* About story heading */
.about-story-content h2 {
    margin-bottom: 1.5rem;
    color: var(--color-heading);
}

/* About story text */
.about-story-content > p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* About story media */
.about-story-media {
    position: relative;
    padding: 4px;
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-secondary),
        var(--color-accent)
    );
    border-radius: calc(var(--border-radius-large) + 2px);
    box-shadow: var(--shadow-medium);
}

/* About story image */
.about-story-media img {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 7;
    object-fit: cover;
    border-radius: calc(var(--border-radius-large) - 2px);
}

/* About story note */
.about-story-note {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    max-width: 390px;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(11, 95, 165, 0.12);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(8px);
}

/* About story note accent */
.about-story-note::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    content: "";
    background: linear-gradient(
        180deg,
        var(--color-primary),
        var(--color-secondary),
        var(--color-accent)
    );
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

/* About story note icon */
.about-story-note > i {
    flex-shrink: 0;
    color: var(--color-secondary);
    font-size: 1.4rem;
}

/* About story note content */
.about-story-note div {
    display: grid;
    gap: 0.1rem;
}

/* About story note strong */
.about-story-note strong {
    color: var(--color-heading);
}

/* About story note text */
.about-story-note span {
    color: var(--color-text-light);
    font-size: 0.88rem;
}

/* Expect section */
.about-expect {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at top left,
            rgba(11, 95, 165, 0.07),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            rgba(11, 95, 165, 0.035),
            rgba(22, 125, 141, 0.04)
        ),
        var(--color-light);
}

/* Expect heading */
.about-expect .section-heading {
    max-width: 820px;
    margin-bottom: 3rem;
}

/* Expect grid */
.about-expect-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

/* Expect card */
.about-expect-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 2.25rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-small);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

/* Expect card accent */
.about-expect-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    content: "";
    background: linear-gradient(
        90deg,
        var(--color-primary),
        var(--color-secondary),
        var(--color-accent)
    );
}

/* Expect card hover */
.about-expect-card:hover {
    border-color: rgba(22, 125, 141, 0.28);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

/* Expect icon */
.about-expect-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 1.35rem;
    color: var(--color-secondary);
    background: linear-gradient(
        135deg,
        rgba(11, 95, 165, 0.08),
        rgba(22, 125, 141, 0.12)
    );
    border: 1px solid rgba(22, 125, 141, 0.15);
    border-radius: 50%;
    font-size: 1.4rem;
}

/* Expect card heading */
.about-expect-card h3 {
    color: var(--color-heading);
}

/* Expect card text */
.about-expect-card p {
    margin-bottom: 0;
    color: var(--color-text-light);
    line-height: 1.75;
}

/* Florida focus */
.about-florida {
    background: var(--color-white);
}

/* Florida panel */
.about-florida-panel {
    position: relative;
    display: grid;
    grid-template-columns: 0.55fr 1.45fr;
    align-items: center;
    min-height: 430px;
    overflow: hidden;
    padding: 4rem;
    background:
        radial-gradient(
            circle at top left,
            rgba(233, 168, 37, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            rgba(11, 95, 165, 0.07),
            rgba(22, 125, 141, 0.08)
        ),
        var(--color-light);
    border: 1px solid rgba(11, 95, 165, 0.14);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-small);
}

/* Florida panel accent */
.about-florida-panel::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    content: "";
    background: linear-gradient(
        90deg,
        var(--color-primary),
        var(--color-secondary),
        var(--color-accent)
    );
}

/* Florida watermark */
.about-florida-mark {
    color: rgba(11, 95, 165, 0.08);
    font-size: clamp(9rem, 18vw, 16rem);
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -0.08em;
    user-select: none;
}

/* Florida content */
.about-florida-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

/* Florida heading */
.about-florida-content h2 {
    color: var(--color-heading);
}

/* Florida text */
.about-florida-content > p:last-of-type {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Florida facts */
.about-florida-facts {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

/* Florida fact */
.about-florida-fact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-heading);
    font-weight: 700;
}

/* Florida fact icon */
.about-florida-fact i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    color: var(--color-white);
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-secondary)
    );
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(11, 95, 165, 0.15);
    font-size: 0.9rem;
}

/* Team section */
.about-team {
    position: relative;
    overflow: hidden;
    text-align: center;
    background:
        linear-gradient(
            135deg,
            rgba(11, 95, 165, 0.035),
            rgba(233, 168, 37, 0.025)
        ),
        var(--color-light);
}

/* Team heading */
.about-team-heading {
    max-width: 780px;
    margin: 0 auto 3rem;
}

/* Team heading title */
.about-team-heading h2 {
    margin-bottom: 1rem;
    color: var(--color-heading);
}

/* Team heading text */
.about-team-heading > p:last-child {
    max-width: 650px;
    margin: 0 auto;
    color: var(--color-text-light);
    line-height: 1.75;
}

/* Team grid */
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 820px;
    margin-inline: auto;
}

/* Person card */
.about-person-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem;
    text-align: left;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-small);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

/* Person card accent */
.about-person-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    content: "";
    background: linear-gradient(
        90deg,
        var(--color-primary),
        var(--color-secondary),
        var(--color-accent)
    );
}

/* Person card hover */
.about-person-card:hover {
    border-color: rgba(22, 125, 141, 0.25);
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

/* Person avatar */
.about-person-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    padding: 3px;
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-secondary),
        var(--color-accent)
    );
    border-radius: 50%;
    box-shadow: 0 5px 14px rgba(11, 95, 165, 0.15);
}

/* Person avatar image */
.about-person-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 3px solid var(--color-white);
    border-radius: 50%;
}

/* Person heading */
.about-person-card h3 {
    margin-bottom: 0.25rem;
    color: var(--color-heading);
}

/* Person role */
.about-person-role {
    margin: 0;
    color: var(--color-text-light);
}

/* Team CTA */
.about-team .section-cta {
    margin-top: 2.5rem;
}

/* Closing section */
.about-closing {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at bottom right,
            rgba(233, 168, 37, 0.06),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            rgba(11, 95, 165, 0.045),
            rgba(22, 125, 141, 0.05)
        ),
        var(--color-white);
}

/* Closing gradient divider */
.about-closing::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    content: "";
    background: linear-gradient(
        90deg,
        var(--color-primary),
        var(--color-secondary),
        var(--color-accent)
    );
}

/* Closing content */
.about-closing-inner {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin-inline: auto;
    text-align: center;
}

/* Closing heading */
.about-closing-inner h2 {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
    color: var(--color-heading);
}

/* Closing text */
.about-closing-inner > p {
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Closing buttons */
.about-closing-inner .cta-group {
    justify-content: center;
    margin-top: 2rem;
}

/* Tablet about */
@media (max-width: 900px) {

    .about-hero {
        min-height: 560px;
        background:
            linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.97) 0%,
                rgba(255, 255, 255, 0.90) 48%,
                rgba(255, 255, 255, 0.28) 82%
            ),
            url('../images/about-01.webp') 68% center / cover no-repeat;
    }

    .about-hero-content {
        transform: translateY(-55px);
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 2.75rem;
    }

    .about-expect-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin-inline: auto;
    }

    .about-florida-panel {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-florida-mark {
        position: absolute;
        left: -1rem;
        opacity: 0.7;
    }

    .about-team-grid {
        max-width: 700px;
    }
}

/* Mobile about */
@media (max-width: 600px) {

    .about-hero {
        min-height: 650px;
        align-items: flex-end;
        padding-top: 0;
        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.08) 0%,
                rgba(255, 255, 255, 0.18) 20%,
                rgba(255, 255, 255, 0.55) 38%,
                rgba(255, 255, 255, 0.92) 53%,
                rgba(255, 255, 255, 1) 70%
            ),
            url('../images/about-01.webp') 70% top / auto 300px no-repeat,
            var(--color-white);
    }

    .about-hero-content {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding-top: 12rem;
    padding-bottom: 2.5rem;
    transform: translateY(-65px);
    text-align: center;
}


    .about-hero-content .eyebrow {
        text-align: center;
    }

    .about-hero-content h1 {
        max-width: 100%;
        margin-right: auto;
        margin-bottom: 1rem;
        margin-left: auto;
        font-size: clamp(2.15rem, 9vw, 2.65rem);
        line-height: 1.07;
        text-align: center;
    }

    .about-hero-text {
        max-width: 100%;
        margin-right: auto;
        margin-bottom: 1.5rem;
        margin-left: auto;
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }

    .about-hero-points {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
        width: 100%;
    }

    .about-hero-points span {
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .about-story-grid {
        gap: 2rem;
    }

    .about-story-content {
        text-align: center;
    }

    .about-story-content h2 {
        text-align: center;
    }

    .about-story-content > p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: center;
    }

    .about-story-media {
        padding: 3px;
    }

    .about-story-note {
        position: relative;
        right: auto;
        bottom: auto;
        justify-content: center;
        margin: -1.25rem 1rem 0;
        text-align: left;
    }

    .about-expect .section-heading {
        margin-right: auto;
        margin-bottom: 2rem;
        margin-left: auto;
        text-align: center;
    }

    .about-expect-grid {
        gap: 1.25rem;
    }

    .about-expect-card {
        padding: 1.5rem;
        text-align: center;
    }

    .about-expect-icon {
        margin-right: auto;
        margin-left: auto;
    }

    .about-expect-card:hover,
    .about-person-card:hover {
        transform: none;
    }

    .about-florida-panel {
        min-height: auto;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .about-florida-mark {
        top: 1.5rem;
        left: 50%;
        font-size: 9rem;
        transform: translateX(-50%);
    }

    .about-florida-content {
        width: 100%;
        margin-inline: auto;
    }

    .about-florida-content h2 {
        text-align: center;
    }

    .about-florida-content > p {
        text-align: center;
    }

    .about-florida-facts {
        justify-items: center;
        margin-top: 1.5rem;
    }

    .about-florida-fact {
        justify-content: flex-start;
        width: min(100%, 320px);
        text-align: left;
    }

    .about-team-heading {
        margin-bottom: 2rem;
    }

    .about-team-heading h2,
    .about-team-heading > p {
        text-align: center;
    }

    .about-team-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .about-person-card {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
    }

    .about-person-avatar {
        margin-inline: auto;
    }

    .about-team .section-cta {
        margin-top: 2rem;
    }

    .about-team .section-cta .btn {
        width: 100%;
    }

    .about-closing-inner {
        text-align: center;
    }

    .about-closing-inner .cta-group {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .about-closing-inner .btn {
        width: 100%;
    }
}

/* Small mobile about */
@media (max-width: 420px) {

    .about-hero {
        min-height: 620px;
        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.08) 0%,
                rgba(255, 255, 255, 0.20) 20%,
                rgba(255, 255, 255, 0.58) 38%,
                rgba(255, 255, 255, 0.94) 54%,
                rgba(255, 255, 255, 1) 70%
            ),
            url('../images/about-01.webp') 70% top / auto 265px no-repeat,
            var(--color-white);
    }

    .about-hero-content {
        padding-top: 10.5rem;
        padding-bottom: 2.25rem;
    }

    .about-hero-content h1 {
        font-size: clamp(2rem, 9vw, 2.35rem);
    }

    .about-hero-text {
        font-size: 0.98rem;
    }

    .about-story-note {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
        padding: 0.9rem 1rem;
    }

    .about-expect-card {
        padding: 1.25rem;
    }

    .about-florida-panel {
        padding: 1.75rem 1.25rem;
    }

    .about-person-card {
        padding: 1.25rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .about-expect-card,
    .about-person-card {
        transition: none;
    }

    .about-expect-card:hover,
    .about-person-card:hover {
        transform: none;
    }
}

