﻿:root {
    --section-padding: 96px 48px;
    --section-padding-mobile: 56px 20px;
}

section {
    padding: var(--section-padding);
}

.section-eyebrow {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}

.vision-eyebrow {
    color: var(--stone);
    text-align: center;
    margin-bottom: 32px;
}
.section-title {
    font-family: var(--ff-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text);
}

    .section-title em {
        font-style: italic;
    }

.divider {
    width: 48px;
    height: 1px;
    background: var(--stone);
    margin: 24px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-contact-btn {
    margin-top: 24px;
    display: inline-block;
}

.btn-primary {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 14px 32px;
    background: var(--text);
    color: var(--white);
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
    display: inline-block;
    border: none;
}

    .btn-primary:hover {
        background: var(--stone-dark);
    }

.btn-outline {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 13px 32px;
    border: 1px solid var(--text);
    color: var(--text);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

    .btn-outline:hover {
        background: var(--text);
        color: var(--white);
    }

.btn-outline-light {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    padding: 12px 28px;
    border: 1px solid rgba(248,246,242,0.3);
    color: var(--white);
    text-decoration: none;
    transition: border-color 0.2s;
    white-space: nowrap;
    cursor: pointer;
}

    .btn-outline-light:hover {
        border-color: rgba(248,246,242,0.7);
    }

.about-intro {
    padding: 80px 48px;
    background: var(--white);
}

.about-intro-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-intro-text p {
    font-family: var(--ff-display);
    font-size: 25px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 24px;
}

    .about-intro-text p.body {
        font-family: var(--ff-body);
        font-size: 20px;
        font-weight: 300;
        line-height: 1.8;
        color: var(--muted);
    }

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    margin-top: 40px;
}

.about-stat {
    padding: 28px 24px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, #c8bfaf 0%, #9a8f7e 50%, #6a5f4e 100%);
}

.about-stat-num {
    font-family: var(--ff-display);
    font-size: 44px;
    font-weight: 300;
    color: var(--text);
    line-height: 1;
}

.about-stat-label {
    font-size: 15px;
    color: var(--muted);
    letter-spacing: 0.04em;
    margin-top: 6px;
}

.timeline-section {
    padding: 96px 48px;
    background: var(--stone-light);
}

.timeline-inner {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-header {
    margin-bottom: 64px;
}

.timeline-list {
    position: relative;
}

    .timeline-list::before {
        content: '';
        position: absolute;
        left: 80px;
        top: 0;
        bottom: 0;
        width: 1px;
        background: var(--border);
    }

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-year {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 300;
    color: var(--muted);
    padding-top: 2px;
    text-align: right;
    padding-right: 20px;
}

.timeline-dot {
    position: absolute;
    left: 74px;
    top: 6px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--stone-dark);
}

.timeline-content {
    padding-left: 20px;
}

.timeline-event {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.timeline-desc {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
}

.vision-section {
    padding: 80px 48px;
    background: var(--accent);
}

.vision-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vision-quote {
    font-family: var(--ff-display);
    font-size: clamp(24px, 3.5vw, 35px);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 32px;
}

.vision-author {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--stone);
}


.tiles-section {
    padding: var(--section-padding);
    background: var(--white);
}

.tiles-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.tiles-header {
    margin-bottom: 56px;
}

.tiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.tile {
    padding: 48px 32px;
    background: #dad7d2;
    position: relative;
}

.tile-number {
    font-family: var(--ff-display);
    font-size: 64px;
    font-weight: 300;
    color: #95918b;
    line-height: 1;
    margin-bottom: 24px;
}

.tile-title {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 16px;
}

.tile-text {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
}

.reach-section {
    padding: var(--section-padding);
    background: var(--stone-light);
    border-top: 1px solid var(--border);
}

.reach-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.reach-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

.reach-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.country-tag {
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    font-size: 14px;
    color: var(--text);
    letter-spacing: 0.04em;
}



.cta-band {
    padding: 80px 48px;
    background: var(--text);
    text-align: center;
}

.cta-band-title {
    font-family: var(--ff-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 8px;
}

    .cta-band-title em {
        font-style: italic;
        color: var(--stone);
    }

.cta-band-sub {
    font-size: 13px;
    color: rgba(248,246,242,0.5);
    margin-bottom: 40px;
    letter-spacing: 0.04em;
}

.cta-band-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-band-primary {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 14px 36px;
    background: var(--white);
    color: var(--text);
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}

    .btn-band-primary:hover {
        background: var(--stone-light);
    }

.btn-band-ghost {
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 14px 36px;
    border: 1px solid rgba(248,246,242,0.2);
    color: rgba(248,246,242,0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s;
    cursor: pointer;
}

    .btn-band-ghost:hover {
        border-color: rgba(248,246,242,0.5);
    }


@media (max-width: 1024px) {

    section {
        padding: 72px 32px;
    }

    .about-intro-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 24px;
    }

    .timeline-list::before {
        left: 25px;
    }

    .timeline-dot {
        left: 20px;
    }

    .reach-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}


@media (max-width: 768px) {

    section {
        padding: var(--section-padding-mobile);
    }

    .about-intro {
        padding: var(--section-padding-mobile);
    }

    .about-intro-text p {
        font-size: 18px;
    }

        .about-intro-text p.body {
            font-size: 14px;
        }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-stat {
        padding: 20px;
    }

    .about-stat-num {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .tiles-grid {
        grid-template-columns: 1fr;
    }

    .tile {
        padding: 32px 20px;
    }

    .tile-number {
        font-size: 48px;
    }

    .timeline-list::before {
        left: 40px;
    }

    .timeline-item {
        grid-template-columns: 40px 1fr;
        gap: 16px;
    }

    .timeline-year {
        font-size: 14px;
        padding-right: 10px;
    }

    .timeline-dot {
        left: 35px;
        width: 10px;
        height: 10px;
    }

    .timeline-content {
        padding-left: 10px;
    }

    .vision-quote {
        font-size: 22px;
    }

    .cta-band {
        padding: var(--section-padding-mobile);
    }

    .cta-band-title {
        font-size: 26px;
    }

    .cta-band-sub {
        font-size: 12px;
    }

    .btn-band-primary {
        width: 100%;
        text-align: center;
    }
}


@media (max-width: 480px) {

    .section-eyebrow {
        font-size: 9px;
    }

    .section-title {
        font-size: 24px;
    }

    .about-intro-text p {
        font-size: 16px;
    }

        .about-intro-text p.body {
            font-size: 13px;
        }

    .tile-title {
        font-size: 18px;
    }

    .tile-text {
        font-size: 12px;
    }

    .country-tag {
        font-size: 11px;
        padding: 6px 12px;
    }
}


.est-image {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #c8bfaf 0%, #9a8f7e 50%, #6a5f4e 100%);
    position: relative;
    overflow: hidden;
}

.est-image-inner {
    position: absolute;
    inset: 0;
    background-image: url('../images/who-we-are.jpg'); 
    background-size: cover;
    background-position: center;
}

.est-image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(14,14,14,0.7), transparent);
}

    .est-image-label span {
        font-size: 11px;
        letter-spacing: 0.1em;
        color: var(--stone-light);
    }


.video-highlight-section {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 🔥 YOUR BACKGROUND IMAGE */
    background: url('../images/about-video-bg.png') center/cover no-repeat;
}

/* dark overlay for readability */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.video-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 40px 20px;
}

.video-play-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(0,0,0,.25);
    transition: all .35s ease;
}

    .video-play-btn i {
        font-size: 60px;
        color: #FF0000; /* Official YouTube Red */
        transition: all .35s ease;
    }

    .video-play-btn:hover {
        transform: translateY(-6px) scale(1.06);
        box-shadow: 0 22px 50px rgba(0,0,0,.35);
    }

        .video-play-btn:hover i {
            transform: scale(1.12);
            color: #cc0000;
        }

.video-title {
    font-size: 28px;
    font-family: var(--ff-display);
    font-weight: 300;
    margin-bottom: 8px;
}

.video-sub {
    font-size: 13px;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .video-highlight-section {
        min-height: 320px;
    }

    .video-play-btn {
        width: 90px;
        height: 90px;
    }

    .video-title {
        font-size: 22px;
    }
}

