/* About Us page-specific styles */

.about-hero {
    background: linear-gradient(180deg, #1F2A55 0%, #2a3870 100%);
    color: #fff;
    padding: 64px 0 88px;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(228, 121, 34, 0.16) 0%, transparent 70%);
    pointer-events: none;
}
.about-hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}
.about-hero__inner {
    max-width: 880px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.about-hero__eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e47922;
    background: rgba(228, 121, 34, 0.12);
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 28px;
}
.about-hero__title {
    font-family: 'Crimson Pro', 'Georgia', serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
}
.about-hero__title em {
    color: #e47922;
    font-style: italic;
    font-weight: 600;
}
.about-hero__sub {
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    max-width: 640px;
    margin: 0 auto 48px;
}
.about-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 720px;
    margin: 0 auto;
    padding: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}
.about-stat {
    text-align: center;
}
.about-stat__num {
    display: block;
    font-family: 'Crimson Pro', serif;
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 600;
    color: #e47922;
    line-height: 1;
    margin-bottom: 8px;
}
.about-stat__label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.78);
}

/* Story section */
.about-story {
    padding: 100px 0;
}
.about-story__inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.about-story__lede .section__title {
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.15;
}
.about-story__lede .section__title em {
    color: #e47922;
    font-style: italic;
}
.about-story__body p {
    font-size: 16px;
    line-height: 1.75;
    color: #4a5066;
    margin-bottom: 18px;
}
.about-story__body p:last-child {
    margin-bottom: 0;
}

/* Leadership / founders */
.about-leadership {
    padding: 100px 0;
}
.section__head--centered {
    text-align: center;
    margin: 0 auto 56px;
    max-width: 720px;
}
.section__head--centered .section__lede {
    margin: 0 auto;
}
.founder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.founder-card {
    background: #fff;
    border: 1px solid #ECE9E2;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(31, 42, 85, 0.05);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.founder-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(31, 42, 85, 0.1);
}
.founder-card__photo {
    aspect-ratio: 1;
    max-width: 200px;
    background: linear-gradient(135deg, #FFE6D5 0%, #FFC2A1 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
}
.founder-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.founder-card__photo-fallback {
    font-family: 'Crimson Pro', serif;
    font-size: 80px;
    font-weight: 600;
    color: #e47922;
}
.founder-card__name {
    font-family: 'Crimson Pro', 'Georgia', serif;
    font-size: 30px;
    font-weight: 600;
    color: #1F2A55;
    margin-bottom: 6px;
}
.founder-card__role {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e47922;
    margin-bottom: 22px;
}
.founder-card__bio p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5066;
    margin-bottom: 16px;
}
.founder-card__bio p:last-child {
    margin-bottom: 0;
}
.founder-card__socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #ECE9E2;
}
.founder-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f6f4ee;
    color: #1F2A55;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.founder-social:hover {
    background: #e47922;
    color: #fff;
    transform: translateY(-2px);
}

/* Final CTA */
.about-cta {
    padding: 80px 0 120px;
}
.about-cta__card {
    background: linear-gradient(135deg, #e47922 0%, #c8651a 100%);
    color: #fff;
    border-radius: 24px;
    padding: 64px 48px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 60px rgba(228, 121, 34, 0.25);
}
.about-cta__card h2 {
    font-family: 'Crimson Pro', 'Georgia', serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #fff;
}
.about-cta__card p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}
.about-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
}
.about-cta__actions .btn--primary {
    background: #fff;
    color: #e47922;
}
.about-cta__actions .btn--primary:hover {
    background: #1F2A55;
    color: #fff;
}
.about-cta__actions .btn--play {
    background: #1F2A55;
    color: #fff;
    border: 0;
}
.about-cta__actions .btn--play:hover {
    background: #0F1730;
    transform: translateY(-2px);
}

/* Active nav link */
.navbar__link--active {
    color: #e47922 !important;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 960px) {
    .about-hero { padding: 48px 0 64px; }
    .about-hero__stats { grid-template-columns: 1fr; gap: 20px; }
    .about-story { padding: 64px 0; }
    .about-story__inner { grid-template-columns: 1fr; gap: 32px; }
    .about-leadership { padding: 64px 0; }
    .founder-grid { grid-template-columns: 1fr; gap: 24px; }
    .founder-card { padding: 28px; }
    .about-cta { padding: 48px 0 80px; }
    .about-cta__card { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
    .about-cta__actions { align-items: center; }
}
@media (max-width: 480px) {
    .about-hero__title { font-size: 34px; }
    .founder-card__name { font-size: 26px; }
    .founder-card__photo { max-width: 140px; }
    .founder-card__photo-fallback { font-size: 60px; }
}
