/* ==========================================
   ABOUT / ADVISORY PAGE
   ========================================== */

/* 1. Cinematic Hero */
.about-hero {
    position: relative;
    height: 75vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-top: calc(-1 * var(--header-height, 100px)); /* Pulls under transparent header */
    padding-top: var(--header-height, 100px);
}

.about-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.about-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.about-hero .hero-subtitle {
    font-family: var(--font-sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    display: block;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
}

.about-hero .hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1;
    margin: 0;
    letter-spacing: -0.02em;
}

/* 2. Editorial Manifesto */
.about-manifesto {
    padding: 140px 20px;
    background-color: #fcfcfc;
}

.manifesto-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: #1a1a1a;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.manifesto-text {
    max-width: 720px; /* Golden reading ratio */
    margin: 0 auto;
    font-family: var(--font-serif);
    font-size: 20px;
    line-height: 1.8;
    color: #444444;
}

.manifesto-text p { 
    margin-bottom: 25px; 
}

/* 3. Process Grid (Architectural Lines) */
.about-process {
    padding: 0 20px 140px;
    background-color: #fcfcfc;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1240px;
    margin: 0 auto;
    border-top: 1px solid #1a1a1a; /* Strong black anchor line */
    padding-top: 60px;
}

.process-card {
    display: flex;
    flex-direction: column;
}

.process-number {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    color: #1a1a1a; /* Stripped the teal, replaced with black */
    margin-bottom: 20px;
    letter-spacing: 0.15em;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.process-card h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 400;
}

.process-card p {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
}

/* 4. The Black Box CTA */
.about-cta {
    padding: 120px 20px;
    background-color: #111111;
    color: #ffffff;
}

.about-cta h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #ffffff;
    margin: 0 0 20px 0;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.about-cta p {
    font-family: var(--font-sans);
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Elite Sharp Buttons */
.lux-btn {
    display: inline-block;
    padding: 18px 36px;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    text-decoration: none;
    border-radius: 0; /* Sharp corners */
    transition: all 0.4s ease;
}

.primary-btn {
    background: #ffffff;
    color: #111111;
    border: 1px solid #ffffff;
}

.primary-btn:hover { 
    background: transparent; 
    color: #ffffff; 
}

.secondary-btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.3);
}

.secondary-btn:hover { 
    border-color: #ffffff; 
    background: #ffffff;
    color: #111111;
}

/* Responsive */
@media (max-width: 900px) {
    .process-grid { 
        grid-template-columns: 1fr; 
        gap: 50px; 
    }
}

@media (max-width: 600px) {
    .cta-actions { 
        flex-direction: column; 
    }
}