.about-page {
    --about-radius: 16px;
    --about-shadow: 0 18px 45px rgba(16, 35, 63, 0.12);
}

.about-page .section {
    padding: 88px 0;
}

.about-page .section-intro {
    max-width: 720px;
    margin-bottom: 42px;
}

.about-page .section-intro p:last-child {
    margin: 0;
    color: var(--muted);
}

/* Institution */
.about-institution {
    background: #fff;
}

.about-institution__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 48px;
}

.about-institution__media {
    position: relative;
}

.about-institution__media img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--about-radius);
    box-shadow: var(--about-shadow);
}

.about-institution__badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    box-shadow: var(--about-shadow);
}

.about-institution__badge strong {
    display: block;
    font-size: 28px;
    color: var(--blue);
    line-height: 1;
}

.about-institution__badge span {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}

.about-institution__copy h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    margin-bottom: 22px;
}

.about-institution__copy p {
    margin: 0 0 16px;
    color: var(--muted);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-stat {
    padding: 28px 22px;
    text-align: center;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--about-radius);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-stat:hover {
    transform: translateY(-6px);
    border-color: rgba(40, 76, 216, 0.28);
    box-shadow: var(--about-shadow);
}

.about-stat strong {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1;
    color: var(--blue);
}

.about-stat span {
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
}

/* Vision Mission Values */
.about-vmv {
    background: var(--soft);
}

.about-vmv__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-vmv__card {
    display: flex;
    flex-direction: column;
    min-height: 280px;
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--about-radius);
    box-shadow: var(--about-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-vmv__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(16, 35, 63, 0.14);
}

.about-vmv__card--accent {
    background: linear-gradient(145deg, var(--navy), #1b3c78);
    color: #fff;
    border-color: transparent;
}

.about-vmv__card--accent h3,
.about-vmv__card--accent p {
    color: #fff;
}

.about-vmv__card--accent .about-vmv__icon {
    background: rgba(244, 183, 64, 0.2);
    color: var(--gold);
}

.about-vmv__icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    background: rgba(40, 76, 216, 0.1);
    color: var(--blue);
    border-radius: 14px;
}

.about-vmv__icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-vmv__card h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.about-vmv__card p {
    margin: 0;
    color: var(--muted);
    flex: 1;
}

/* Why Choose Us */
.about-why {
    background: #fff;
}

.about-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-why__card {
    padding: 28px 24px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--about-radius);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-why__card:hover {
    transform: translateY(-6px);
    background: #fff;
    border-color: rgba(40, 76, 216, 0.28);
    box-shadow: var(--about-shadow);
}

.about-why__icon {
    display: inline-grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
    background: var(--blue);
    color: #fff;
    border-radius: 12px;
}

.about-why__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-why__card:nth-child(2) .about-why__icon { background: var(--green); }
.about-why__card:nth-child(3) .about-why__icon { background: var(--gold); color: var(--navy); }
.about-why__card:nth-child(4) .about-why__icon { background: var(--navy); }

.about-why__card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.about-why__card p {
    margin: 0;
    font-size: 15px;
    color: var(--muted);
}

/* Board */
.about-board {
    background: var(--soft);
}

.about-board__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-board__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100%;
    padding: 28px 22px 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--about-radius);
    box-shadow: var(--about-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-board__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(16, 35, 63, 0.16);
}

.about-board__photo {
    width: 108px;
    height: 108px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 18px;
    border: 4px solid rgba(40, 76, 216, 0.12);
}

.about-board__card h3 {
    margin: 0 0 8px;
    font-size: 17px;
}

.about-board__role {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 12px;
    background: rgba(40, 76, 216, 0.1);
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
}

.about-board__card p {
    margin: 0 0 18px;
    flex: 1;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.about-board__social {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.about-board__social a {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    background: var(--soft);
    color: var(--navy);
    border: 1px solid var(--line);
    border-radius: 10px;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.about-board__social a:hover {
    transform: translateY(-3px) scale(1.05);
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.about-board__social svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Principal */
.about-principal {
    background: #fff;
}

.about-principal__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.about-principal__media img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--about-radius);
    box-shadow: var(--about-shadow);
}

.about-principal__quote {
    margin: 0 0 22px;
    padding: 20px 24px;
    border-left: 4px solid var(--gold);
    background: var(--soft);
    color: var(--navy);
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    border-radius: 0 12px 12px 0;
}

.about-principal__copy p {
    margin: 0 0 16px;
    color: var(--muted);
}

.about-principal__signature {
    margin: 24px 0 4px;
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
    color: var(--navy);
}

.about-principal__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Gallery */
.about-gallery-section {
    background: var(--soft);
}

.about-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 16px;
}

.about-masonry__item {
    position: relative;
    padding: 0;
    border: 0;
    overflow: hidden;
    border-radius: var(--about-radius);
    cursor: pointer;
    background: var(--navy);
}

.about-masonry__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.about-masonry__item:hover img {
    transform: scale(1.08);
}

.about-masonry__zoom {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(16, 35, 63, 0.45);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-masonry__item:hover .about-masonry__zoom {
    opacity: 1;
}

.about-masonry__zoom svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-masonry__item--wide { grid-column: span 2; }
.about-masonry__item--tall { grid-row: span 2; }
.about-masonry__item--square { grid-column: span 1; grid-row: span 1; }

/* Awards */
.about-awards {
    background: #fff;
}

.about-awards__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-award {
    padding: 30px 24px;
    text-align: center;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--about-radius);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-award:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 183, 64, 0.5);
    box-shadow: var(--about-shadow);
}

.about-award__icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    background: rgba(40, 76, 216, 0.1);
    color: var(--blue);
    border-radius: 14px;
}

.about-award__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-award strong {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(28px, 3.5vw, 38px);
    line-height: 1;
    color: var(--blue);
}

.about-award h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.about-award p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

/* CTA */
.about-cta {
    position: relative;
    padding: 100px 0;
    background-image: url("../wp-content/uploads/2025/05/new-1320x734.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.about-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 6, 51, 0.92), rgba(40, 76, 216, 0.65));
}

.about-cta__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.about-cta__content .kicker {
    color: var(--gold);
}

.about-cta__content h2 {
    color: #fff;
    font-size: clamp(28px, 4vw, 42px);
}

.about-cta__content p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
}

.about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.about-cta__actions .button {
    border-radius: 10px;
    min-width: 160px;
}

/* Lightbox */
.about-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(3, 6, 51, 0.88);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.about-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.about-lightbox[hidden] {
    display: none;
}

.about-lightbox:not([hidden]) {
    display: grid;
}

.about-lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.about-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.05);
}

.about-lightbox__figure {
    margin: 0;
    max-width: min(1100px, 100%);
    text-align: center;
}

.about-lightbox__image {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.about-lightbox__caption {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1100px) {
    .about-board__grid,
    .about-why__grid,
    .about-awards__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-masonry__item--wide {
        grid-column: span 2;
    }
}

@media (max-width: 980px) {
    .about-institution__grid,
    .about-principal__grid,
    .about-vmv__grid,
    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-institution__media img,
    .about-principal__media img {
        height: 360px;
    }

    .about-page .section {
        padding: 64px 0;
    }
}

@media (max-width: 620px) {
    .about-board__grid,
    .about-why__grid,
    .about-awards__grid,
    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .about-masonry__item--wide,
    .about-masonry__item--tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .about-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-masonry__item img,
    .about-board__card,
    .about-vmv__card,
    .about-why__card,
    .about-stat,
    .about-award,
    .about-board__social a {
        transition: none;
    }
}