:root {
    --about-wine: #470506;
    --about-wine-deep: #2c0203;
    --about-gold: #f2b632;
    --about-ink: #191619;
    --about-muted: #6f6869;
    --about-cream: #faf7f2;
}

.about-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 520px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(35, 2, 3, .94), rgba(52, 4, 5, .7) 52%, rgba(20, 10, 10, .28)),
        var(--about-hero-image) center/cover no-repeat;
}

.about-hero::after {
    position: absolute;
    right: -90px;
    bottom: -180px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, .035), 0 0 0 140px rgba(255, 255, 255, .025);
    content: "";
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding: 80px 0;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--about-wine);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.about-kicker::before {
    width: 34px;
    height: 2px;
    background: var(--about-gold);
    content: "";
}

.about-kicker-light {
    color: #ffd573;
}

.about-hero h1 {
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(3rem, 7vw, 5.7rem);
    line-height: 1;
    letter-spacing: -.045em;
    text-transform: none;
}

.about-hero p {
    max-width: 680px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .78);
    font-size: 1.08rem;
    line-height: 1.75;
}

.about-hero .breadcrumb-item,
.about-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, .72);
}

.about-hero .breadcrumb-item.active {
    color: #ffd573;
}

.about-section {
    padding: 110px 0;
}

.about-intro {
    overflow: hidden;
    background: #fff;
}

.about-photo-wrap {
    position: relative;
    min-height: 530px;
    padding: 0 54px 48px 0;
}

.about-photo-wrap::before {
    position: absolute;
    top: 48px;
    right: 0;
    bottom: 0;
    left: 55px;
    background: var(--about-cream);
    content: "";
}

.about-photo-wrap img {
    position: relative;
    width: 100%;
    height: 480px;
    object-fit: cover;
    box-shadow: 0 25px 55px rgba(47, 20, 21, .16);
}

.photo-accent {
    position: absolute;
    right: 0;
    bottom: 0;
    display: grid;
    width: 112px;
    height: 112px;
    place-items: center;
    color: var(--about-wine);
    background: var(--about-gold);
    font-size: 2.4rem;
    box-shadow: 0 14px 30px rgba(71, 5, 6, .2);
}

.about-intro h2,
.organization-section .section-heading h2,
.coordinator-heading h2 {
    color: var(--about-ink);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.14;
    letter-spacing: -.03em;
}

.about-intro h2 {
    margin-bottom: 25px;
}

.about-description p {
    margin-bottom: 17px;
    color: var(--about-muted);
    font-size: 1.02rem;
    line-height: 1.86;
}

.about-principles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 31px;
}

.about-principles > div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: var(--about-cream);
    border-left: 3px solid var(--about-gold);
}

.about-principles i {
    color: var(--about-wine);
    font-size: 1.35rem;
}

.about-principles strong,
.about-principles span {
    display: block;
}

.about-principles strong {
    color: var(--about-ink);
}

.about-principles span {
    color: var(--about-muted);
    font-size: .82rem;
    line-height: 1.45;
}

.organization-section {
    background: var(--about-cream);
}

.organization-section .section-heading {
    max-width: 720px;
    margin: 0 auto 52px;
}

.organization-section .section-heading h2 {
    margin-bottom: 15px;
}

.organization-section .section-heading p {
    color: var(--about-muted);
    font-size: 1.02rem;
}

.organization-chart {
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(71, 5, 6, .08);
    box-shadow: 0 16px 45px rgba(40, 24, 24, .08);
}

.organization-chart img {
    display: block;
    width: 100%;
    max-height: 850px;
    object-fit: contain;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 42px;
}

.leader-card {
    display: flex;
    align-items: flex-start;
    gap: 19px;
    min-height: 132px;
    padding: 27px;
    background: #fff;
    border: 1px solid rgba(71, 5, 6, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.leader-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(40, 24, 24, .1);
}

.leader-icon {
    display: grid;
    flex: 0 0 49px;
    width: 49px;
    height: 49px;
    place-items: center;
    color: var(--about-wine);
    background: rgba(242, 182, 50, .22);
    border-radius: 50%;
}

.leader-card span {
    display: block;
    margin-bottom: 7px;
    color: var(--about-wine);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.leader-card h3 {
    margin: 0 0 5px;
    color: var(--about-ink);
    font-size: 1.05rem;
    line-height: 1.45;
}

.coordinator-panel {
    display: grid;
    grid-template-columns: .85fr 1.5fr;
    margin-top: 55px;
    overflow: hidden;
    color: #fff;
    background: var(--about-wine-deep);
    box-shadow: 0 22px 50px rgba(44, 2, 3, .2);
}

.coordinator-heading {
    padding: 48px;
    background: var(--about-wine);
}

.coordinator-heading h2 {
    margin-bottom: 18px;
    color: #fff;
    font-size: 2.25rem;
}

.coordinator-heading p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    line-height: 1.75;
}

.coordinator-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 25px 35px;
}

.coordinator-list article {
    display: flex;
    gap: 15px;
    padding: 22px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.coordinator-number {
    color: var(--about-gold);
    font-size: .72rem;
    font-weight: 800;
}

.coordinator-list h3 {
    margin-bottom: 8px;
    color: #fff;
    font-size: .95rem;
    line-height: 1.4;
}

.coordinator-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.coordinator-list li {
    margin-top: 5px;
    color: rgba(255, 255, 255, .66);
    font-size: .78rem;
    line-height: 1.5;
}

.about-cta {
    padding: 90px 0;
    background:
        linear-gradient(90deg, rgba(44, 2, 3, .97), rgba(71, 5, 6, .9)),
        url('../../img/carousels/2.jpg') center/cover;
}

.about-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-cta h2 {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.2;
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-cta .btn {
    border-radius: 4px;
    font-size: .82rem;
    letter-spacing: .05em;
}

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

    .coordinator-panel {
        grid-template-columns: 1fr;
    }

    .about-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        min-height: 440px;
    }

    .about-photo-wrap {
        min-height: 410px;
        padding: 0 25px 32px 0;
    }

    .about-photo-wrap::before {
        left: 25px;
    }

    .about-photo-wrap img {
        height: 380px;
    }

    .photo-accent {
        width: 82px;
        height: 82px;
        font-size: 1.8rem;
    }

    .about-principles,
    .leadership-grid,
    .coordinator-list {
        grid-template-columns: 1fr;
    }

    .organization-chart {
        padding: 12px;
        overflow-x: auto;
    }

    .organization-chart img {
        min-width: 650px;
    }

    .coordinator-heading {
        padding: 35px 28px;
    }

    .coordinator-list {
        padding: 18px;
    }

    .about-cta {
        padding: 70px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .leader-card {
        transition: none;
    }
}
