/* ========================================
   ABOUT PAGE
   Levy Martin
======================================== */

/* ==========================
   PAGE HERO
========================== */

.page-hero{

    position:relative;
    height:100vh;
    overflow:hidden;

}

.page-hero img{

    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center center;

}

.page-hero::after{

    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.60) 0%,
        rgba(0,0,0,.42) 32%,
        rgba(0,0,0,.18) 62%,
        rgba(0,0,0,.08) 100%
    );

}

.overlay{

    position:absolute;
    inset:0;

    z-index:2;

}

.about-hero-content{

    position:absolute;

    left:8%;

    top:50%;

    transform:translateY(-50%);

    width:560px;

    display:flex;
    flex-direction:column;
    align-items:flex-start;

    text-align:left;

    color:#fff;

}

.about-hero-content h1,
.about-hero-content p,
.about-hero-subtitle{

    text-align:left;

}

.about-hero-subtitle{

    color:white;

    font-size:.85rem;

    letter-spacing:6px;

    text-transform:uppercase;

    margin-bottom:25px;

}

.about-hero-content h1{

    color:white;

    font-size:clamp(4rem,7vw,6rem);

    line-height:.95;

    margin-bottom:30px;

}

.about-hero-description{

    color:rgba(255,255,255,.92);

    max-width:500px;

    font-size:1.1rem;

    line-height:1.9;

    margin-bottom:45px;

}

.about-hero-content .btn{

    background:white;

    color:#1F0E0A;

    border:1px solid white;

}

.about-hero-content .btn:hover{

    background:transparent;

    color:white;

}



.page-hero p{
    color:white;
    text-transform:uppercase;
    letter-spacing:5px;
    margin-bottom:25px;
}

.page-hero h1{
    color:white;
    max-width:900px;
}

/* ==========================
   STORY
========================== */

.story{
    background:#fafafa;
}

.story .container-mini{
    text-align:center;
}

.story h2{
    margin:20px 0 35px;
}

.story p:last-child{
    max-width:720px;
    margin:auto;
}

/* ==========================
   VALUES
========================== */

.values{
    padding:140px 0;
}

.values .container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.value-card{
    padding:60px 45px;
    background:white;
    text-align:center;
    transition:.4s ease;
    border:1px solid #eeeeee;
}

.value-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.value-card h3{
    margin-bottom:20px;
    font-size:2rem;
}

.value-card p{
    line-height:1.8;
}

/* ==========================
   EDITORIAL
========================== */

.editorial{
    padding:0;
}

.editorial img{
    width:100%;
    height:85vh;
    object-fit:cover;
}

/* ==========================
   PHILOSOPHY
========================== */

.philosophy{
    background:white;
}

.philosophy .container-mini{
    text-align:center;
}

.philosophy h2{
    margin:20px 0 35px;
}

/* ==========================
   CTA
========================== */

.about-cta{
    background:var(--color-primary);
    color:white;
    text-align:center;
}

.about-cta h2{
    color:white;
    margin-bottom:35px;
}

.about-cta .btn{
    background:white;
    color:var(--color-primary);
    border:1px solid white;
}

.about-cta .btn:hover{
    background:transparent;
    color:white;
}

/* ==========================
   IMAGE EFFECT
========================== */

.editorial{
    overflow:hidden;
}

.editorial img{
    transition:1.4s ease;
}

.editorial:hover img{
    transform:scale(1.05);
}

/* ==========================
   VALUE CARD ICON SPACE
========================== */

.value-card::before{
    content:"";
    display:block;
    width:70px;
    height:2px;
    background:var(--color-primary);
    margin:0 auto 30px;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

    .values .container{
        grid-template-columns:1fr;
    }

    .page-hero{
        height:75vh;
    }

}

@media(max-width:768px){

    .page-hero h1{
        font-size:3rem;
    }

    .editorial img{
        height:60vh;
    }

    .value-card{
        padding:45px 30px;
    }

}

@media(max-width:576px){

    .page-hero{
        height:65vh;
    }

    .page-hero p{
        letter-spacing:3px;
        font-size:.75rem;
    }

    .page-hero h1{
        font-size:2.3rem;
    }

}

/*==================================
MISSION
==================================*/

.mission{

padding:120px 0;

background:#f8f8f8;

}

.mission .container{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:50px;

}

.mission-card{

background:#fff;

padding:50px;

box-shadow:0 15px 40px rgba(0,0,0,.05);

}

/*==================================
CUSTOMERS
==================================*/

.customers{

padding:140px 0;

}

.customer-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.customer-grid div{

padding:40px;

background:#fafafa;

text-align:center;

}

/*==================================
DESIGN PHILOSOPHY
==================================*/

.design-philosophy{

padding:140px 0;

background:#1F0E0A;

text-align:center;

}

.design-philosophy h2,
.design-philosophy p{

color:white;

}

/*==================================
QUOTE
==================================*/

.brand-quote{

padding:160px 0;

text-align:center;

}

.brand-quote h2{

max-width:900px;

margin:auto;

}

.brand-quote p{

margin-top:40px;

font-size:1.5rem;

color:#777;

}

@media(max-width:900px){

.mission .container,
.customer-grid{

grid-template-columns:1fr;

}

}

/*======================================
BRAND STORY
======================================*/

.brand-story{

    padding:140px 0;

    background:#fff;

}

.story-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.story-image{

    overflow:hidden;

}

.story-image img{

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    border-radius:0;

}

.ecosystem-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.ecosystem-grid div{

    position:relative;

    min-height:260px;

    background:#f7f7f7;

    overflow:hidden;

    display:flex;

    align-items:flex-end;

    padding:40px;

    font-family:var(--font-heading);

    font-size:2rem;

    transition:.45s;

}

.ecosystem-grid div::after{

    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
        transparent 45%,
        rgba(0,0,0,.15)
    );

}

.ecosystem-grid div:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.story-content p{

    margin-top:25px;

}

@media(max-width:991px){

.story-grid{

grid-template-columns:1fr;

}

}

/*======================================
TARGET CUSTOMER
======================================*/

.target-customer{

padding:140px 0;

background:#f8f8f8;

}

.customer-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.customer-card{

padding:45px;

background:white;

border-radius:16px;

text-align:center;

box-shadow:0 10px 35px rgba(0,0,0,.05);

}

@media(max-width:900px){

.customer-grid{

grid-template-columns:1fr;

}

}