/* ============================================================
   ABOUT PAGE — Styles
   ============================================================ */

/* --- PAGE HERO --- */
.page-hero {
    padding: calc(var(--nav-height) + 6rem) clamp(1.5rem, 4vw, 4rem) 4rem;
    text-align: center;
}

.page-hero-inner {
    max-width: 700px;
    margin: 0 auto;
}

.page-hero .section-label {
    justify-content: center;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 600;
    line-height: 0.92;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.page-hero-desc {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* --- MISSION --- */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}

.mission-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-text.accent {
    color: var(--gold);
    font-style: italic;
    border-left: 2px solid var(--gold-dim);
    padding-left: 1.5rem;
}

/* --- VALUES --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-block {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.4s var(--ease-smooth);
}

.value-block:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.value-num {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.025);
    position: absolute;
    top: -1rem;
    right: 0.5rem;
    line-height: 1;
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--gold);
}

.value-text {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
}

/* --- TIMELINE --- */
.timeline {
    margin-top: 4rem;
    padding-left: 3rem;
    border-left: 1px solid var(--border-light);
    max-width: 700px;
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -3.45rem;
    top: 0.3rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ember);
    border: 3px solid var(--bg-primary);
}

.timeline-date {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.timeline-body h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.timeline-body p {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    max-width: 520px;
}

/* --- PHILOSOPHY --- */
.philosophy-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.philosophy-quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 400;
    line-height: 1.4;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.philosophy-attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.philosophy-dash {
    width: 30px;
    height: 1px;
    background: var(--text-tertiary);
}

/* --- CTA (shared) --- */
.cta-section {
    padding: clamp(6rem, 14vh, 12rem) clamp(1.5rem, 4vw, 4rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner { position: relative; z-index: 2; }

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

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