/* ============================================================
   ABOUT PAGE — Styles
   Supplements styles.css
   ============================================================ */

.about-page {
    background: var(--navy);
}

/* ── Hero ─────────────────────────────────────────────────── */
.about-hero {
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 0 0 6rem;
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 10rem 2rem 2rem;
    width: 100%;
}

.about-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -0.02em;
    margin: 1.5rem 0 1rem;
}

.about-hero-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
    letter-spacing: 0.03em;
}

/* ── Main layout ──────────────────────────────────────────── */
.about-main {
    background: var(--navy);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Gold divider line ────────────────────────────────────── */
.about-gold-line {
    height: 1px;
    background:
        linear-gradient(90deg, transparent 0%, rgba(255, 245, 200, 0.6) 50%, transparent 100%) no-repeat,
        linear-gradient(90deg, transparent, var(--gold), transparent);
    background-size: 40% 100%, 100% 100%;
    animation: goldLineSweep 8s ease-in-out infinite;
    margin: 0;
}

/* ── Story ────────────────────────────────────────────────── */
.about-story {
    padding: 7rem 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 4rem;
    align-items: start;
}

.about-story-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 0.5rem;
}

.about-vert-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--gold-dark), transparent);
}

.about-story-body p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--white-dim);
    margin-bottom: 1.5rem;
}

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

.about-section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

/* ── Values ───────────────────────────────────────────────── */
.about-values {
    padding: 7rem 0;
    background: var(--navy-mid);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
}

.value-card {
    background: var(--navy-light);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    height: 2px;
    background:
        linear-gradient(90deg, transparent 0%, rgba(255, 248, 210, 0.65) 50%, transparent 100%) no-repeat,
        linear-gradient(90deg, var(--gold), var(--gold-dark), transparent);
    background-size: 30% 100%, 100% 100%;
    animation: goldLineSweep 6s ease-in-out infinite;
    transform: scaleX(0);
    transform-origin: inline-start;
    transition: transform 0.4s var(--ease-out);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    background: #111D32;
}

.value-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: transform 0.3s var(--ease-out);
}

.value-card:hover .value-icon {
    transform: scale(1.08);
}

.value-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.value-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ── Team ─────────────────────────────────────────────────── */
.about-team {
    padding: 7rem 0;
}

.about-team-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.team-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    background: var(--navy-light);
    border: 1px solid var(--navy-border);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

.team-card:hover {
    border-color: rgba(184, 151, 90, 0.25);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    height: 2px;
    background:
        linear-gradient(90deg, transparent 0%, rgba(255, 248, 210, 0.7) 50%, transparent 100%) no-repeat,
        linear-gradient(90deg, var(--gold), var(--gold-dark), transparent);
    background-size: 35% 100%, 100% 100%;
    animation: goldLineSweep 7s ease-in-out infinite;
}

/* Photo placeholder */
.team-photo-placeholder {
    background: linear-gradient(160deg, #0E1826, #111D32);
    border-inline-end: 1px solid var(--navy-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 2rem;
    color: var(--gold-dark);
    min-height: 320px;
}

.team-photo-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.5;
}

.photo-cta {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.6;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Team info */
.team-info {
    padding: 3rem 3rem;
}

.team-meta {
    margin-bottom: 0.75rem;
}

.team-role-tag {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.team-name {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--white-dim);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.team-bio:last-of-type {
    margin-bottom: 1.5rem;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-block-start: 1.25rem;
    border-block-start: 1px solid var(--navy-border);
}

.team-tags span {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(184, 151, 90, 0.08);
    border: 1px solid rgba(184, 151, 90, 0.2);
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
}

/* ── CTA ──────────────────────────────────────────────────── */
.about-cta {
    padding: 8rem 0;
    background: var(--navy-mid);
    position: relative;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    height: 1px;
    background:
        linear-gradient(90deg, transparent 0%, rgba(255, 245, 200, 0.6) 50%, transparent 100%) no-repeat,
        linear-gradient(90deg, transparent, var(--gold), transparent);
    background-size: 40% 100%, 100% 100%;
    animation: goldLineSweep 9s ease-in-out infinite 2s;
}

.about-cta-inner {
    text-align: center;
}

.about-cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--white);
    margin: 1rem 0 1.25rem;
}

.about-cta-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .team-photo-placeholder {
        border-inline-end: none;
        border-block-end: 1px solid var(--navy-border);
        min-height: 200px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-story-label {
        flex-direction: row;
        align-items: center;
    }

    .about-vert-line {
        width: 40px;
        height: 1px;
        background: linear-gradient(to right, var(--gold-dark), transparent);
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-info {
        padding: 2rem 1.5rem;
    }
}