/* ===================================================
   ABOUT HERO
=================================================== */

.about-hero{

    padding:9rem 0 4rem;
    text-align:center;

}

.about-title{

    font-size:clamp(3.5rem,7vw,6rem);
    line-height:1.05;
    letter-spacing:-2px;
    max-width:900px;
    margin:1.5rem auto;

}

.about-intro{

    max-width:760px;
    margin:auto;
    font-size:1.2rem;
    line-height:1.9;
    color:var(--text-muted);

}

.about-hero-image{

    margin-top:2rem;
    margin-bottom:7rem;
    overflow:hidden;
    border-radius:32px;

    box-shadow:
    0 30px 80px rgba(0,0,0,.08);

}

.about-hero-image img{

    display:block;
    width:100%;
    height:600px;
    object-fit:cover;

}

.narrow{

    max-width:760px;

}

.section-label{

    display:inline-block;
    margin-bottom:1rem;

    font-size:.8rem;
    letter-spacing:2px;
    text-transform:uppercase;

    color:var(--accent);

    font-weight:600;

}

.narrow h2{

    font-size:2.8rem;
    line-height:1.2;
    margin-bottom:2rem;

}

.narrow p{

    font-size:1.1rem;
    line-height:1.9;
    color:var(--text-muted);
    margin-bottom:1.8rem;

}

/* ============================================= */

.quote-section{

    padding:8rem 0;
    text-align:center;

}

.quote-section blockquote{

    max-width:900px;
    margin:auto;

    font-family:'Instrument Serif',serif;

    font-size:clamp(2rem,4vw,3.5rem);

    line-height:1.3;

    color:var(--text-dark);

}



/*==================================================
  PRINCIPLES
==================================================*/

.principles-section{

    background:#fafafa;

}

.section-description{

    max-width:700px;
    margin:1.5rem auto 0;

    color:var(--text-muted);

    line-height:1.8;

    font-size:1.1rem;

}

.principles-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:2rem;

}

.principle-card{

    background:#ffffff;

    border:1px solid rgba(0,0,0,.06);

    border-radius:24px;

    padding:2.5rem;

    transition:.35s ease;

}

.principle-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.principle-number{

    display:block;

    margin-bottom:1rem;

    font-size:.85rem;

    letter-spacing:2px;

    color:var(--accent);

    font-weight:600;

    text-transform:uppercase;

}

.principle-card h3{

    font-size:1.6rem;

    margin-bottom:1rem;

    line-height:1.3;

}

.principle-card p{

    color:var(--text-muted);

    line-height:1.8;

}

.dark-card{

    background:#111111;

    color:#ffffff;

    border:none;

}

.dark-card h3{

    color:#ffffff;

}

.dark-card p{

    color:rgba(255,255,255,.75);

}

.dark-card .principle-number{

    color:#4ADEB5;

}


/*=========================================
  APPROACH TIMELINE
=========================================*/

.approach-timeline{

    max-width:900px;
    margin:0 auto;

}

.approach-item{

    display:grid;
    grid-template-columns:120px 1fr;

    gap:3rem;

    padding:3rem 0;

    border-top:1px solid rgba(0,0,0,.08);

}

.approach-item:last-child{

    border-bottom:1px solid rgba(0,0,0,.08);

}

.approach-number{

    font-family:'Instrument Serif',serif;

    font-size:4rem;

    color:#d6d6d6;

    line-height:1;

}

.timeline-label{

    display:inline-block;

    margin-bottom:1rem;

    font-size:.8rem;

    letter-spacing:2px;

    text-transform:uppercase;

    color:var(--accent);

    font-weight:600;

}

.approach-content h3{

    font-size:2rem;

    margin-bottom:1rem;

}

.approach-content p{

    max-width:700px;

    line-height:1.9;

    color:var(--text-muted);

    font-size:1.05rem;

}

/*=========================================
  VISION
=========================================*/

.vision-section{

    padding:8rem 0;

    background:#111111;

    color:#ffffff;

}

.vision-wrapper{

    max-width:850px;
    margin:auto;

}

.vision-wrapper h2{

    color:#ffffff;

    font-size:3.3rem;

    line-height:1.15;

    margin:1rem 0 2rem;

}

.vision-wrapper p{

    color:rgba(255,255,255,.78);

    line-height:1.9;

    font-size:1.15rem;

    margin-bottom:1.8rem;

}

.vision-section .section-label{

    color:#4ADEB5;

}

/*=========================================
  RESPONSIVE
=========================================*/

@media(max-width:768px){

    .approach-item{

        grid-template-columns:1fr;

        gap:1.5rem;

    }

    .approach-number{

        font-size:3rem;

    }

    .vision-wrapper h2{

        font-size:2.4rem;

    }

}