/* =====================================================
   ABOUT.CSS
   ===================================================== */

/* ===================== HERO ===================== */
.about-hero {
    min-height: 56vh;
    display: flex;
    align-items: flex-end;
    padding: 0 60px 72px;
    background:
        linear-gradient(to top, #0b0b0b 8%, rgba(0,0,0,0.45) 65%),
        url('https://images.unsplash.com/photo-1478720568477-152d9b164e26?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
}

.hero-content { max-width: 820px; padding-top: 110px; }

.hero-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    color: #b99757;
    margin-bottom: 14px;
}

.about-hero h1 {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.8px;
    margin-bottom: 18px;
}

.about-hero p {
    font-size: 18px;
    line-height: 1.7;
    color: #c8c8c8;
    max-width: 640px;
}

/* ===================== STATS STRIP ===================== */
.stats-strip {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 40px 60px;
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(16px);
}

.stat.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .55s cubic-bezier(.16,1,.3,1), transform .55s cubic-bezier(.16,1,.3,1);
}

.stat-num {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
}

/* ===================== STORY ===================== */
.story-section {
    padding: 10px 60px 60px;
    position: relative;
}

.story-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(185,151,87,0.055) 0%, transparent 65%);
    pointer-events: none;
}

.story-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.story-lead {
    margin-bottom: 48px;
}

.story-lead p {
    font-size: 21px;
    line-height: 1.75;
    color: #e0e0e0;
    font-weight: 400;
    max-width: 860px;
}

.story-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.story-col p {
    font-size: 16px;
    line-height: 1.85;
    color: #999;
    margin-bottom: 22px;
}

.story-col p:last-child { margin-bottom: 0; }

/* ===================== MISSION PULL QUOTE ===================== */
.mission-block {
    padding: 0 60px 10px;
}

.mission-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 56px;
    border-left: 3px solid #b99757;
    background: rgba(185,151,87,0.05);
    border-radius: 0 14px 14px 0;
}

.mission-inner blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.75;
    color: #ddd;
    font-weight: 400;
}

/* ===================== REACH ===================== */
.reach-section {
    padding: 60px 60px 80px;
}

.reach-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b99757;
    margin-bottom: 12px;
}

.reach-text h2 {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.4px;
    margin-bottom: 20px;
    color: #fff;
}

.reach-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #888;
    margin-bottom: 18px;
}

.reach-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.country-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #888;
}

.country-more {
    color: #b99757;
    border-color: rgba(185,151,87,0.2);
    background: rgba(185,151,87,0.06);
}

.reach-image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.reach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
}

/* ===================== TEAM TEASER ===================== */
.team-teaser {
    padding: 60px 60px 80px;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

.team-teaser-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.team-teaser .section-eyebrow { display: block; margin-bottom: 10px; }

.team-teaser h2 {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.4px;
    margin-bottom: 44px;
    color: #fff;
}

.team-thumb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.team-thumb {
    opacity: 0;
    transform: translateY(18px);
}

.team-thumb.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .55s cubic-bezier(.16,1,.3,1), transform .55s cubic-bezier(.16,1,.3,1);
}

.team-thumb-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: #141414;
    margin-bottom: 14px;
}

.team-thumb-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    opacity: 0.9;
    transition: transform .3s ease, opacity .3s ease;
}

.team-thumb:hover .team-thumb-photo img {
    transform: scale(1.04);
    opacity: 1;
}

.team-thumb-name {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.team-thumb-role {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #b99757;
}

.team-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #888;
    text-decoration: none;
    transition: color .2s;
}

.team-link:hover { color: #fff; }
.team-link:hover svg { transform: translateX(3px); }
.team-link svg { transition: transform .2s; }

/* ===================== NOVA ===================== */
.nova-section {
    padding: 60px 60px 10px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.nova-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.nova-text { max-width: 580px; }

.nova-text h2 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 14px;
    color: #fff;
    letter-spacing: -0.3px;
}

.nova-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #888;
    margin-bottom: 20px;
}

.nova-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #b99757;
    text-decoration: none;
    transition: color .2s;
}

.nova-link:hover { color: #fff; }

.nova-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.nova-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    min-width: 200px;
    transition: transform .2s, box-shadow .2s, background .2s;
}

.nova-cta-primary { background: #fff; color: #000; }
.nova-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255,255,255,0.12);
}

.nova-cta-secondary {
    background: rgba(185,151,87,0.1);
    border: 1px solid rgba(185,151,87,0.25);
    color: #b99757;
}
.nova-cta-secondary:hover { background: rgba(185,151,87,0.18); transform: translateY(-2px); }

/* ===================== SCROLL REVEAL ===================== */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity .7s cubic-bezier(.16,1,.3,1),
        transform .7s cubic-bezier(.16,1,.3,1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-card, .stat, .team-thumb {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1000px) {
    .reach-inner        { grid-template-columns: 1fr; }
    .reach-image        { max-width: 500px; }
    .nova-inner         { flex-direction: column; align-items: flex-start; }
    .nova-ctas          { flex-direction: row; }
}

@media (max-width: 760px) {
    .about-hero         { padding: 0 20px 50px; min-height: 48vh; }
    .about-hero h1      { font-size: 40px; }
    .stats-strip        { padding: 32px 20px; }
    .stats-inner        { grid-template-columns: repeat(2, 1fr); }
    .story-section      { padding: 60px 20px 48px; }
    .story-body         { grid-template-columns: 1fr; gap: 0; }
    .mission-block      { padding: 0 20px 48px; }
    .mission-inner      { padding: 32px 24px; }
    .mission-inner blockquote { font-size: 17px; }
    .reach-section      { padding: 48px 20px 60px; }
    .team-teaser        { padding: 48px 20px 60px; }
    .team-thumb-grid    { grid-template-columns: repeat(2, 1fr); }
    .nova-section       { padding: 48px 20px 70px; }
    .nova-ctas          { flex-direction: column; width: 100%; }
    .nova-cta-btn       { min-width: unset; width: 100%; }
}

@media (max-width: 440px) {
    .about-hero h1      { font-size: 32px; }
    .story-lead p       { font-size: 18px; }
}
