/* ============================================================
   ABOUT PAGE — Scroll-Scrub Video Redesign
   ============================================================ */

:root {
    --gold-primary: #e6a95f;
    --gold-hover: #d49b56;
    --gold-glow: rgba(230, 169, 95, 0.4);
    --gold-dim: rgba(230, 169, 95, 0.15);
    --dark-bg: #070707;
    --text-color: #f0f0f0;
    --text-dim: rgba(240, 240, 240, 0.55);
    --text-gold: #e6a95f;
}

/* --- Global --- */
body.using-page-about-override {
    background-color: var(--dark-bg);
    overflow-x: hidden;
    color: var(--text-color);
}

/* === SCROLL-SCRUB SECTION (two-column layout) === */
.about-scrub-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
}

/* Hidden video element (outside grid) */
#aboutScrubVideo {
    display: block;
    position: fixed;
    top: -9999px; left: -9999px;
    width: 1px; height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* --- Left column: scrolling text (reordered via grid) --- */
.about-scrub-text {
    padding: 120px 60px 120px 80px;
    position: relative;
    z-index: 2;
    order: 1;
}

.about-scrub-hero {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(230, 169, 95, 0.1);
}

/* --- Right column: sticky video (reordered via grid) --- */
.about-scrub-video {
    position: relative;
    height: auto;
    order: 2;
}

.about-scrub-canvas-wrap {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.about-scrub-canvas-wrap.visible {
    opacity: 1;
}

.about-scrub-canvas-wrap canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.about-scrub-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, var(--dark-bg) 0%, transparent 15%),
        linear-gradient(to top, var(--dark-bg) 0%, transparent 20%),
        linear-gradient(to bottom, var(--dark-bg) 0%, transparent 15%);
    pointer-events: none;
    z-index: 1;
}

/* --- Hero text styles --- */
.about-hero-label {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    color: var(--gold-primary);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
    opacity: 0;
    animation: aboutFadeUp 1.2s ease-out 0.8s forwards;
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 2px;
    margin-bottom: 16px;
    opacity: 0;
    animation: aboutFadeUp 1.2s ease-out 1.0s forwards;
}

.about-hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-dim);
    letter-spacing: 2px;
    font-weight: 400;
    opacity: 0;
    animation: aboutFadeUp 1.2s ease-out 1.2s forwards;
}

@keyframes aboutFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Section Labels --- */
.about-section-label {
    font-family: 'Playfair Display', serif;
    font-size: 0.7rem;
    color: var(--gold-primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(230,169,95,0.3), transparent);
}

/* --- Biography --- */
.about-bio-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 50px;
}

.about-bio-title em {
    color: var(--gold-primary);
    font-style: italic;
}

.about-bio-text {
    columns: 1;
}

.about-bio-text p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.9;
    margin-bottom: 24px;
}

.about-bio-text p:first-of-type::first-letter {
    font-size: 3.5rem;
    float: left;
    color: var(--gold-primary);
    font-weight: 700;
    line-height: 1;
    margin-right: 12px;
    margin-top: 4px;
}

/* --- Pull Quote --- */
.about-pull-quote {
    border-left: 2px solid var(--gold-primary);
    padding: 30px 0 30px 40px;
    margin: 60px 0;
}

.about-pull-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.about-pull-quote cite {
    display: block;
    margin-top: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    color: var(--gold-primary);
    letter-spacing: 2px;
    font-style: normal;
}

/* --- Stats Bar (inside left column) --- */
.about-scrub-text .about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 50px 0;
    border-top: 1px solid rgba(230, 169, 95, 0.1);
    border-bottom: 1px solid rgba(230, 169, 95, 0.1);
    margin: 60px 0 0;
    text-align: center;
}

.about-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-family: 'Playfair Display', serif;
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* === BELOW-SCRUB CONTENT === */
.about-content-area {
    position: relative;
    z-index: 10;
    background-color: var(--dark-bg);
}

.about-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px;
}

.about-section + .about-section {
    padding-top: 0;
}

/* --- Divider --- */
.about-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
    margin: 80px auto;
}

/* --- The World Section --- */
.about-world-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.about-world-item {
    padding: 30px 0;
    border-top: 1px solid rgba(230, 169, 95, 0.12);
}

.about-world-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 14px;
}

.about-world-item p {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.8;
}

/* --- CTA Section --- */
.about-cta-section {
    text-align: center;
    padding: 80px 40px 120px;
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-cta-text {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-btn {
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: none;
}

.about-cta-btn.primary {
    background: var(--gold-primary);
    color: #000;
    border: 1px solid var(--gold-primary);
}

.about-cta-btn.primary:hover {
    background: var(--gold-hover);
    box-shadow: 0 8px 30px rgba(230, 169, 95, 0.3);
    transform: translateY(-2px);
}

.about-cta-btn.secondary {
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(230, 169, 95, 0.3);
}

.about-cta-btn.secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
}

/* --- Scroll Reveal --- */
.about-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.about-reveal-d1 { transition-delay: 0.1s; }
.about-reveal-d2 { transition-delay: 0.2s; }
.about-reveal-d3 { transition-delay: 0.3s; }
.about-reveal-d4 { transition-delay: 0.4s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .about-scrub-text {
        padding: 100px 40px 100px 50px;
    }
    
    .about-bio-title {
        font-size: 2rem;
    }
    
    .about-world-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-scrub-section {
        display: block;
        position: relative;
        min-height: 400vh;
    }
    
    .about-scrub-text {
        padding: 80vh 24px 60px;
        position: relative;
        z-index: 2;
        background: transparent;
    }
    
    .about-scrub-video {
        position: sticky;
        top: 0;
        height: 100vh;
        width: 100%;
        z-index: 1;
    }
    
    .about-scrub-canvas-wrap {
        position: relative;
        height: 100vh;
        width: 100%;
    }
    
    .about-scrub-vignette {
        background: 
            linear-gradient(to top, var(--dark-bg) 0%, transparent 30%),
            linear-gradient(to bottom, var(--dark-bg) 0%, transparent 10%);
    }
    
    .about-hero-title {
        font-size: 3rem;
    }
    
    .about-scrub-hero {
        margin-bottom: 50px;
        padding-bottom: 40px;
    }
    
    .about-section {
        padding: 60px 24px;
    }
    
    .about-bio-title {
        font-size: 1.8rem;
    }
    
    .about-world-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .about-scrub-text .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 40px 0;
        margin: 40px 0 0;
    }
    
    .about-pull-quote blockquote {
        font-size: 1.2rem;
    }
    
    .about-pull-quote {
        padding-left: 24px;
        margin: 40px 0;
    }
    
    .about-cta-section {
        padding: 60px 24px 80px;
    }
    
    .about-cta-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .about-scrub-text {
        padding: 80px 16px 60px;
    }
    
    .about-section {
        padding: 40px 16px;
    }
    
    .about-bio-title {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    
    .about-bio-text p {
        font-size: 0.9rem;
    }
    
    .about-scrub-text .about-stats {
        gap: 16px;
    }
    
    .about-stat-number {
        font-size: 1.8rem;
    }
    
    .about-cta-buttons {
        flex-direction: column;
    }
    
    .about-cta-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 375px) {
    .about-hero-title {
        font-size: 1.8rem;
    }
    
    .about-scrub-text {
        padding: 70px 14px 50px;
    }
    
    .about-section {
        padding: 30px 14px;
    }
}

@media (pointer: coarse) {
    .about-cta-btn {
        cursor: pointer;
    }
}
