/* ==============================
   ABOUT PAGE — Extends index.css
   ============================== */

/* ---- PAGE HERO ---- */
.page-hero {
    position: relative;
    z-index: 1;
    padding: 180px 20px 100px;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, var(--bg-primary) 100%);
}

.page-hero-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.page-hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- INTRO / COMPANY SUMMARY ---- */
.about-intro {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
    background: var(--bg-primary);
}

.about-intro-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-inner p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-secondary);
}

.about-intro-inner strong {
    color: var(--text-primary);
}

/* ---- STATS BANNER ---- */
.about-stats {
    position: relative;
    z-index: 1;
    padding: 60px 20px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-stats-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.about-stat-item {
    padding: 10px;
}

.about-stat-value {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* ---- TEAM SECTION ---- */
.about-team {
    position: relative;
    z-index: 1;
    padding: 100px 20px;
    background: var(--bg-primary);
}

.about-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.about-section-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

.about-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.about-section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Team Card — horizontal layout */
.team-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 50px;
    transition: border-color 0.4s ease;
}

.team-card:hover {
    border-color: rgba(212, 165, 0, 0.3);
}

.team-card-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    position: relative;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.04);
}

.team-card-content {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.team-card-role {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 500;
}

.team-card-bio {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.team-card-bio em {
    color: var(--text-primary);
    font-style: italic;
}

/* Reverse layout for second card */
.team-card--reverse {
    grid-template-columns: 1fr 380px;
}

.team-card--reverse .team-card-image {
    order: 2;
}

.team-card--reverse .team-card-content {
    order: 1;
}



/* ---- COMPANY STORY ---- */
.about-story {
    position: relative;
    z-index: 1;
    padding: 100px 20px;
    background: var(--bg-primary);
}

.story-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.3;
}

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.story-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.story-visual-item {
    padding: 30px 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    background: var(--bg-secondary);
    transition: border-color 0.3s ease;
}

.story-visual-item:hover {
    border-color: rgba(212, 165, 0, 0.3);
}

.story-visual-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}

.story-visual-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

/* ---- CTA ---- */
.about-cta {
    position: relative;
    z-index: 1;
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(212, 165, 0, 0.08) 0%, var(--bg-secondary) 50%, rgba(212, 165, 0, 0.04) 100%);
    border-top: 1px solid var(--border);
    text-align: center;
}

.about-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-primary);
    margin-bottom: 16px;
}

.about-cta p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.about-cta .btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

@media (max-width: 900px) {

    .team-card,
    .team-card--reverse {
        grid-template-columns: 1fr;
    }

    .team-card--reverse .team-card-image {
        order: 0;
    }

    .team-card--reverse .team-card-content {
        order: 0;
    }

    .team-card-image {
        min-height: 300px;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .page-hero {
        padding: 140px 20px 60px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-card-content {
        padding: 30px 24px;
    }

    .team-card-name {
        font-size: 24px;
    }

    .story-visual {
        grid-template-columns: 1fr 1fr;
    }
}