.about-page {
    background-color: #fbf5ea;
}

.about-main {
    padding-top: 112px;
}

.about-hero {
    position: relative;
    overflow: hidden;
    height: 700px;
    min-height: 700px;
    padding: clamp(30px, 4.5vw, 44px) clamp(24px, 5vw, 72px) clamp(20px, 3vw, 30px);
    background: #fbf5ea;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("hero-background.png") right center / cover no-repeat;
    opacity: 0.98;
    pointer-events: none;
}

.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #fbf5ea 0%, rgba(251, 245, 234, 0.93) 42%, rgba(251, 245, 234, 0.2) 74%, rgba(251, 245, 234, 0.03) 100%);
    pointer-events: none;
}

.about-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    gap: clamp(18px, 3.4vw, 42px);
    align-items: center;
}

.about-hero__left {
    max-width: 600px;
    transform: translateY(-46px);
}

.about-hero__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #b17d2d;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.about-hero__eyebrow::before {
    content: "";
    width: 40px;
    height: 2px;
    border-radius: 999px;
    background: #b17d2d;
}

/* ============================================================
   STATS + WHY CHOOSE
============================================================ */
.about-metrics {
    background: #fbf5ea;
    padding: clamp(54px, 8vw, 84px) clamp(24px, 5vw, 72px);
    border-top: 1px solid rgba(177, 125, 45, 0.12);
}

.about-metrics__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: clamp(26px, 4vw, 54px);
    align-items: start;
}

.about-metrics__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 700;
    line-height: 1.2;
    color: #111111;
    margin: 0 0 22px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.about-metrics__title--underlined {
    position: relative;
    padding-bottom: 12px;
}

.about-metrics__title--underlined::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 68px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #b17d2d, rgba(232, 200, 137, 0.8));
}

.about-metrics__bar {
    margin: 0 0 16px;
}

.about-metrics__bar:last-child {
    margin-bottom: 0;
}

.about-metrics__bar-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

.about-metrics__bar-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1f1f1f;
}

.about-metrics__track {
    position: relative;
    width: 100%;
    height: 16px;
    border-radius: 999px;
    background: rgba(239, 228, 210, 0.95);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.06);
    transition: transform 0.18s ease;
}

.about-metrics__fill {
    position: relative;
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, #b17d2d, #e8c889);
    box-shadow: 0 12px 24px rgba(177, 125, 45, 0.22);
    transition: width 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.about-metrics__badge {
    position: absolute;
    top: -38px;
    left: 0%;
    transform: translateX(-50%);
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(251, 245, 234, 0.92);
    border: 1px solid rgba(177, 125, 45, 0.25);
    box-shadow: 0 14px 34px rgba(12, 19, 34, 0.12);
    transition: left 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
    pointer-events: none;
    z-index: 3;
}

.about-metrics__track.is-animated .about-metrics__badge {
    left: min(calc(var(--pct) * 1%), calc(100% - 8px));
}

.about-metrics__badge {
    left: 8px;
    transform: translateX(-50%);
}

.about-metrics__badge-num {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #1f1f1f;
    letter-spacing: 0.02em;
}

.about-metrics__track:hover {
    transform: scaleY(1.08);
}

.about-metrics__track:hover .about-metrics__fill {
    box-shadow:
        0 0 0 1px rgba(177, 125, 45, 0.25),
        0 16px 34px rgba(177, 125, 45, 0.28);
}

.about-metrics__track.is-animated .about-metrics__fill {
    width: calc(var(--pct) * 1%);
}

.about-metrics__bar-desc {
    margin: 9px 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(17, 17, 17, 0.78);
    text-align: center;
    transition: color 0.2s ease;
}

.about-metrics__bar-desc:hover {
    color: #945f22;
}

/* ============================================================
   OUR LEGACY — premium split section
============================================================ */
.legacy {
    position: relative;
    padding: clamp(64px, 7vw, 92px) clamp(24px, 5vw, 72px);
    background: #fbf5ea;
    border-top: 1px solid rgba(177, 125, 45, 0.12);
    overflow: hidden;
}

.legacy::before {
    content: "";
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(circle at 20% 15%, rgba(177, 125, 45, 0.14), transparent 55%),
        radial-gradient(circle at 78% 40%, rgba(16, 24, 39, 0.10), transparent 58%);
    opacity: 0.65;
    pointer-events: none;
}

.legacy::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='640' viewBox='0 0 640 640'%3E%3Cg fill='none' stroke='%23b17d2d' stroke-width='10' opacity='0.12'%3E%3Cpath d='M320 120v280'/%3E%3Cpath d='M170 220h300'/%3E%3Cpath d='M220 220l-70 120h140z'/%3E%3Cpath d='M420 220l-70 120h140z'/%3E%3Cpath d='M260 420h120'/%3E%3Cpath d='M220 470h200'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 92% 52%;
    background-size: clamp(260px, 32vw, 420px);
    opacity: 0.28;
    pointer-events: none;
}

.legacy__inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.legacy__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: clamp(18px, 3.2vw, 46px);
    align-items: center;
}

.legacy__portrait {
    margin: 0;
}

.legacy__portrait-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(177, 125, 45, 0.22);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(16, 24, 39, 0.14);
}

.legacy__portrait-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    max-height: clamp(420px, 48vw, 560px);
    object-fit: cover;
    object-position: 50% 12%;
    display: block;
    filter: saturate(0.98) contrast(1.02);
}

.legacy__portrait-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.18) 100%);
    opacity: 0.22;
    pointer-events: none;
}

.legacy__portrait-card {
    position: relative;
}

.legacy__portrait-caption {
    padding: 16px 18px 18px;
    display: grid;
    gap: 4px;
    background: linear-gradient(180deg, rgba(253, 250, 245, 0.92), rgba(253, 250, 245, 0.98));
}

.legacy__portrait-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #101827;
}

.legacy__portrait-role {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(16, 24, 39, 0.72);
}

.legacy__content {
    max-width: 72ch;
    padding-top: 4px;
}

.legacy__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #b17d2d;
    margin: 0 0 12px;
}

.legacy__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 700;
    line-height: 1.08;
    color: #101827;
    margin: 0 0 10px;
}

.legacy__sub {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(16, 24, 39, 0.72);
    margin: 0 0 18px;
}

.legacy__rule {
    width: 86px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #b17d2d, rgba(232, 200, 137, 0.8));
    margin: 0 0 18px;
}

.legacy__body p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #5c5952;
    margin: 0 0 14px;
}

.legacy__quote {
    margin: 22px 0 18px;
    padding: 18px 18px;
    border-left: 3px solid #b17d2d;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 16px 40px rgba(16, 24, 39, 0.08);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    color: #101827;
}

.legacy__timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    align-items: center;
    padding: 14px 14px;
    border-radius: 18px;
    background: rgba(16, 24, 39, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
}

.legacy__timeline-item {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.legacy__timeline-year {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: #e8c889;
    font-size: 12px;
    text-transform: uppercase;
}

.legacy__timeline-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.86);
}

.legacy__timeline-dot {
    display: none;
}

@media screen and (max-width: 1024px) {
    .legacy__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .legacy__content {
        max-width: 80ch;
    }
}

@media screen and (max-width: 768px) {
    .legacy::after {
        background-position: 50% 100%;
        opacity: 0.22;
    }

    .legacy__timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 520px) {
    .legacy__portrait-card img {
        max-height: 420px;
    }

    .legacy__quote {
        font-size: 16px;
    }
}

/* Standard Breakpoints */
@media screen and (max-width: 1024px) {
    .about-metrics__inner {
        grid-template-columns: 1fr;
    }
    .about-metrics {
        padding: clamp(44px, 8vw, 72px) 18px;
    }
    .about-metrics__title--underlined::after {
        width: 56px;
    }
}

@media screen and (max-width: 768px) {
    .about-metrics__point {
        grid-template-columns: 50px 1fr;
        padding: 14px 14px;
    }
    .about-metrics__icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        font-size: 22px;
    }
}

@media screen and (max-width: 520px) {
    .about-metrics__title {
        font-size: 22px;
        margin-bottom: 18px;
    }
    .about-metrics__bar {
        margin-bottom: 14px;
    }
    .about-metrics__badge {
        top: -34px;
        padding: 6px 9px;
    }
}

/* Right column points (icons + key points) */
.about-metrics__points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-metrics__point {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 16px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(177, 125, 45, 0.16);
    box-shadow: 0 18px 46px rgba(12, 19, 34, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about-metrics__point:hover {
    transform: translateY(-2px);
    border-color: rgba(177, 125, 45, 0.26);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 22px 54px rgba(12, 19, 34, 0.11);
}

.about-metrics__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(177, 125, 45, 0.12);
    border: 1px solid rgba(177, 125, 45, 0.22);
    color: #b17d2d;
    font-size: 24px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.about-metrics__point:hover .about-metrics__icon {
    transform: scale(1.04);
    background: rgba(177, 125, 45, 0.16);
}

.about-metrics__point-title {
    margin: 0 0 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #121212;
    letter-spacing: 0.01em;
}

.about-metrics__point-text {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(17, 17, 17, 0.74);
    transition: color 0.2s ease;
}

.about-metrics__point:hover .about-metrics__point-text {
    color: #945f22;
}

.about-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.1vw, 40px);
    line-height: 1.2;
    font-weight: 600;
    color: #151515;
    margin: 0 0 18px;
}

.about-hero__highlight {
    color: #b17d2d;
    font-style: italic;
}

.about-hero__body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #463b31;
    max-width: 510px;
    margin: 0 0 26px;
}

.about-hero__signature {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7b5b2a;
}

.about-hero__signature-line {
    display: inline-block;
    width: 52px;
    height: 1px;
    background: rgba(177, 125, 45, 0.7);
}

.about-hero__right {
    display: flex;
    justify-content: flex-end;
    align-self: end;
}

.about-hero__visual {
    position: relative;
    width: min(640px, 126%);
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.about-hero__halo {
    position: absolute;
    inset: 12% 8% 7%;
    border-radius: 999px;
    border: 1.5px solid rgba(177, 125, 45, 0.36);
    background: radial-gradient(circle at 42% 24%, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0) 60%);
    opacity: 0.75;
}

.about-hero__court-bg {
    position: absolute;
    inset: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.about-hero__statue {
    position: absolute;
    inset: 3% 2% -8% auto;
    width: 132%;
    height: 132%;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(0 18px 34px rgba(28, 20, 10, 0.26));
}

@media screen and (max-width: 1024px) {
    .about-main {
        padding-top: 106px;
    }
    .about-hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 0.84fr);
    }
}

@media screen and (max-width: 768px) {
    .about-hero {
        padding-inline: 18px;
        padding-top: 44px;
        height: auto;
        min-height: auto;
    }
    .about-hero__inner {
        grid-template-columns: 1fr;
    }
    .about-hero__right {
        min-height: 220px;
    }
    .about-hero__visual {
        width: min(420px, 108%);
        margin-left: auto;
    }
}

@media screen and (max-width: 520px) {
    .about-main {
        padding-top: 94px;
    }
    .about-hero__title {
        font-size: clamp(26px, 7vw, 30px);
    }
}

/* Standalone Stats Ribbon (About Page) */
.advocate-stats-bridge--standalone {
    padding: clamp(80px, 12vw, 120px) clamp(24px, 4vw, 48px);
    height: auto;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}

.advocate-stats-bridge--standalone .advocate-stats-strip {
    transform: none;
    margin: 0 auto;
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.stats-parallax-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.stats-parallax-bg-img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 140%;
    max-width: none;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
    will-change: transform;
}

.stats-parallax-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(16, 24, 39, 0.75), rgba(16, 24, 39, 0.6));
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .advocate-stats-bridge--standalone {
        padding: clamp(60px, 10vw, 80px) clamp(16px, 4vw, 24px);
    }
}

/* ============================================================
   OUR TEAM SECTION
============================================================ */
.our-team {
    background-color: #fdfaf5;
    /* Light beige / off-white */
    padding: clamp(60px, 10vw, 100px) clamp(24px, 4vw, 48px);
    position: relative;
    border-top: 1px solid rgba(177, 125, 45, 0.15);
    /* Subtle gold line at top */
}

.our-team-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: clamp(40px, 7vw, 64px);
}

.team-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
}

.team-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.8vw, 16px);
    color: #b17d2d;
    /* Gold accent color */
    font-style: italic;
    margin: 0;
}

.team-title-line {
    width: 60px;
    height: 3px;
    background: #b17d2d;
    margin: 20px auto 0;
    border-radius: 2px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 40px);
    align-items: stretch;
}

.team-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft drop shadow */
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.team-portrait-wrap {
    margin-bottom: 0;
    display: block;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
}

.team-portrait {
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.team-card:hover .team-portrait {
    transform: scale(1.08);
    /* Portrait enlarges on hover */
}

.team-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: clamp(24px, 4vw, 36px) clamp(20px, 3vw, 32px);
}

.team-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 6px;
    transition: color 0.3s ease;
}

.team-name__suffix {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: rgba(26, 18, 9, 0.62);
    text-transform: uppercase;
    margin-left: 6px;
    white-space: nowrap;
}

.team-role {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #757575;
    /* Lighter grey font */
    margin: 0 0 18px;
}

.team-bio {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 0 24px;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.team-card:hover .team-bio {
    color: #b17d2d;
    /* Bio changes to gold on card hover */
}

.team-actions {
    margin-top: auto;
}

.team-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.team-contact-btn i {
    font-size: 20px;
    color: #b17d2d;
    transition: transform 0.3s ease;
}

.team-contact-btn:hover {
    color: #b17d2d;
}

.team-contact-btn:hover i {
    transform: scale(1.2);
    /* Icon zoom effect */
}

/* Vertical Dividers on Desktop */
@media screen and (min-width: 1025px) {
    .team-card:not(:last-child)::after {
        content: "";
        position: absolute;
        right: calc(clamp(24px, 4vw, 40px) / -2);
        top: 20%;
        bottom: 20%;
        width: 1px;
        background-color: rgba(0, 0, 0, 0.12); /* Slightly darker for visibility */
        z-index: 1;
    }
}

/* Responsive View */
/* Standard Breakpoints */
@media screen and (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-card:hover {
        transform: none;
    }
}

@media screen and (max-width: 520px) {
    .our-team {
        padding: 60px 18px;
    }
    .team-portrait-wrap {
        height: 260px;
    }
}