/* ========================================
   HOME PAGE
   Levy Martin
======================================== */

/* ==========================
   HERO
========================== */

/* ==========================
   HERO
========================== */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    min-height:680px;
    margin-top:0;
    overflow:hidden;
    background:#1f0e0a;
}

.hero-image{
    position:absolute;
    inset:0;
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    animation:heroZoom 18s ease-in-out infinite alternate;
}

/* Keep most of the photograph clear */
.hero-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(12,7,5,.42) 0%,
            rgba(12,7,5,.18) 34%,
            rgba(12,7,5,.03) 65%,
            rgba(12,7,5,0) 100%
        ),
        linear-gradient(
            0deg,
            rgba(12,7,5,.30) 0%,
            rgba(12,7,5,0) 38%
        );
}

/* Small content area placed away from the image centre */
.hero-content{
    position:relative;
    z-index:2;

    width:min(90%,1400px);
    height:100%;
    margin:auto;
    padding-bottom:85px;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:flex-start;

    color:#fff;
}

/* Small introductory label */
.hero-eyebrow{
    margin-bottom:14px;

    color:rgba(255,255,255,.82);
    font-size:.72rem;
    font-weight:500;
    line-height:1;
    letter-spacing:4px;
    text-transform:uppercase;
}

/* One short headline instead of three large lines */
.hero-content h1{
    max-width:520px;
    margin:0 0 8px;

    color:#fff;
    font-size:clamp(3.4rem,6vw,6.2rem);
    font-weight:400;
    line-height:.9;
    letter-spacing:-2px;
}

/* Launch information */
.hero-status{
    margin-bottom:30px;

    color:#fff;
    font-size:.82rem;
    font-weight:500;
    line-height:1;
    letter-spacing:5px;
    text-transform:uppercase;
}

/* Refined transparent CTA */
.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:28px;

    min-width:245px;
    padding:16px 22px;

    border:1px solid rgba(255,255,255,.65);
    background:rgba(15,8,6,.12);
    backdrop-filter:blur(4px);
    -webkit-backdrop-filter:blur(4px);

    color:#fff;
    font-size:.75rem;
    font-weight:600;
    letter-spacing:1.7px;
    text-transform:uppercase;

    transition:
        background .35s ease,
        color .35s ease,
        border-color .35s ease;
}

.hero-btn span{
    font-size:1rem;
    transition:transform .35s ease;
}

.hero-btn:hover{
    background:#fff;
    border-color:#fff;
    color:var(--color-primary);
}

.hero-btn:hover span{
    transform:translateX(5px);
}

/* ==========================================
   MINIMAL HERO
========================================== */




/* ==========================
   INTRO
========================== */

.intro{

    background:#fafafa;

}

.intro .container{

    max-width:800px;

    text-align:center;

}

.intro h2{

    margin-bottom:30px;

}

.intro p{

    font-size:1.1rem;

}

/* ==========================
   FEATURED
========================== */

.featured{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:100px;

    width:min(92%,1400px);

    margin:auto;

}

.featured .image{

    overflow:hidden;

}

.featured img{

    transition:1.2s;

}

.featured:hover img{

    transform:scale(1.08);

}

.featured h2{

    margin:20px 0;

}

.featured p{

    margin-bottom:35px;

}

/* ==========================
   PRODUCTS
========================== */

.products{

    width:min(92%,1400px);

    margin:auto;

}

.product-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.product-card{

    cursor:pointer;

}

.product-card img{

    aspect-ratio:4/5;

    object-fit:cover;

    transition:.6s;

}

.product-card:hover img{

    transform:scale(1.05);

}

.product-card h3{

    margin-top:25px;

    margin-bottom:8px;

    font-size:1.3rem;

}

.product-card p{

    color:var(--color-primary);

    font-weight:600;

}

/* ==========================
   LOOKBOOK
========================== */

.lookbook{

    position:relative;

    min-height:90vh;

    background:url("../assets/images/lookbook/lookbook.jpg") center/cover;

    display:flex;

    justify-content:center;

    align-items:center;

}

.lookbook::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

.lookbook .overlay{

    position:relative;

    z-index:2;

    text-align:center;

    color:white;

}

.lookbook p{

    color:white;

    letter-spacing:5px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.lookbook h2{

    color:white;

    margin-bottom:40px;

}

/* ==========================
   JOURNAL
========================== */

.journal{

    width:min(92%,1400px);

    margin:auto;

}

.journal-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.journal article{

    overflow:hidden;

}

.journal article img{

    aspect-ratio:4/3;

    transition:.8s;

}

.journal article:hover img{

    transform:scale(1.08);

}

.journal h3{

    margin-top:25px;

}

/* ==========================
   NEWSLETTER
========================== */

.newsletter{

    background:#f7f7f7;

}

.newsletter .container{

    max-width:750px;

    text-align:center;

}

.newsletter h2{

    margin:20px 0 40px;

}

.newsletter form{

    display:flex;

    gap:15px;

}

.newsletter input{

    flex:1;

}

.newsletter button{

    background:var(--color-primary);

    color:white;

    padding:0 40px;

    border:none;

    cursor:pointer;

    transition:.3s;

}

.newsletter button:hover{

    background:black;

}

/* ==========================
   ANIMATIONS
========================== */

@keyframes heroZoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}

/*==========================
NORTH STAR
===========================*/

.north-star{

padding:140px 0;

background:#f8f8f8;

}

.north-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:40px;

margin-top:70px;

}

.north-card{

padding:50px;

background:white;

text-align:center;

transition:.4s;

}

.north-card:hover{

transform:translateY(-8px);

}

.north-card h3{

margin-bottom:20px;

}

@media(max-width:900px){

.north-grid{

grid-template-columns:1fr;

}

}

/*==========================
YOUTH CODE
===========================*/

.youth-code{

padding:140px 0;

background:#1F0E0A;

color:white;

}

.youth-code h2,

.youth-code h3,

.youth-code p{

color:white;

}

.code-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:50px;

margin-top:60px;

}

.code-grid div{

text-align:center;

}

@media(max-width:900px){

.code-grid{

grid-template-columns:1fr;

}

}

/*==========================
PROMISE
===========================*/

.brand-promise{

padding:180px 0;

background:#111;

text-align:center;

}

.brand-promise h2{

color:white;

max-width:900px;

margin:auto;

}

.brand-promise p{

margin-top:40px;

font-size:1.6rem;

color:#BEC0B7;

}

/*=========================
MARKET CONTEXT
==========================*/

.market-context{

padding:140px 0;

background:#fff;

}

.market-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:40px;

margin-top:70px;

}

.market-item{

padding:45px;

background:#fafafa;

text-align:center;

border:1px solid rgba(0,0,0,.05);

transition:.4s;

}

.market-item:hover{

transform:translateY(-8px);

}

.market-item i{

font-size:52px;

color:var(--primary);

margin-bottom:25px;

display:block;

}

.market-item h3{

margin-bottom:20px;

}

@media(max-width:900px){

.market-grid{

grid-template-columns:1fr;

}

}

/*=========================
DESIGN PHILOSOPHY
==========================*/

.design-philosophy{

padding:160px 0;

background:#1F0E0A;

text-align:center;

}

.design-philosophy h2{

color:white;

max-width:700px;

margin:auto;

}

.design-philosophy p{

color:#BEC0B7;

max-width:750px;

margin:40px auto 0;

font-size:1.1rem;

line-height:1.9;

}

/*=========================
PRODUCT ECOSYSTEM
==========================*/

.ecosystem{

padding:140px 0;

background:#fff;

}

.eco-grid{

display:grid;

grid-template-columns:repeat(6,1fr);

gap:25px;

margin-top:60px;

}

.eco-grid div{

padding:35px;

background:#fafafa;

text-align:center;

font-weight:600;

transition:.4s;

}

.eco-grid div:hover{

background:#1F0E0A;

color:white;

}

@media(max-width:1100px){

.eco-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:700px){

.eco-grid{

grid-template-columns:repeat(2,1fr);

}

}

/*=========================
VISION
==========================*/

.vision{

padding:160px 0;

background:#f8f8f8;

text-align:center;

}

.vision-text{

max-width:750px;

margin:40px auto 0;

font-size:1.1rem;

line-height:1.9;

}

/* BRAND PERSONALITY */

.brand-personality{

padding:140px 0;

background:#fff;

}

.personality-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

.personality-card{

padding:40px;

background:#fafafa;

border:1px solid rgba(0,0,0,.05);

text-align:center;

transition:.4s;

}

.personality-card:hover{

transform:translateY(-8px);

}

@media(max-width:900px){

.personality-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:650px){

.personality-grid{

grid-template-columns:1fr;

}

}

/* =========================================
   Lifestyle Gallery
========================================= */

.lifestyle-gallery{

    padding:140px 0;

    background:#f8f8f8;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-top:70px;

}

.gallery-item{

    overflow:hidden;

    border-radius:18px;

}

.gallery-item img{

    width:100%;
    height:100%;
    object-fit:cover;

    /* Keeps the top of the image visible */
    object-position:center top;

    display:block;
    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item.large{

    height:620px;

}

.gallery-item.wide{

    height:620px;

}

.gallery-item{

    height:620px;

}

@media (max-width:768px){

.gallery-grid{

    grid-template-columns:1fr;
    gap:20px;

}

.gallery-item,
.gallery-item.large,
.gallery-item.wide{

    height:600px;
    grid-column:span 1;

}

.gallery-item img{

    object-fit:cover;
    object-position:center top;

}

}

/*==================================
LM EXPERIENCE
==================================*/

.experience-point{

    padding:140px 0;

    background:#ffffff;

}

.experience-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.experience-card{

    padding:45px;

    background:#fafafa;

    border-radius:16px;

    text-align:center;

    transition:.4s;

}

.experience-card:hover{

    transform:translateY(-8px);

}

.experience-card i{

    font-size:48px;

    color:var(--primary);

    margin-bottom:20px;

    display:block;

}

@media(max-width:900px){

.experience-grid{

grid-template-columns:1fr;

}

}

/* ==========================================
   MINIMAL HOMEPAGE
========================================== */

/* INTRODUCTION */

.minimal-intro{
    padding:150px 20px;
    background:#fff;
    text-align:center;
}

.minimal-intro .container-mini{
    max-width:850px;
}

.minimal-intro h2{
    margin:0 0 30px;
    font-size:clamp(2.8rem,5vw,5rem);
    line-height:1.05;
}

.minimal-intro-text{
    max-width:570px;
    margin:0 auto 35px;
    font-size:1rem;
    line-height:1.8;
}


/* SIMPLE EDITORIAL LINK */

.editorial-link{
    display:inline-flex;
    align-items:center;
    gap:16px;

    padding-bottom:7px;

    border-bottom:1px solid var(--color-primary);

    color:var(--color-primary);
    font-size:.72rem;
    font-weight:600;
    letter-spacing:1.8px;
    text-transform:uppercase;
}

.editorial-link span{
    font-size:1rem;
    transition:transform .3s ease;
}

.editorial-link:hover span{
    transform:translateX(5px);
}


/* COLLECTION PREVIEW */

.collection-preview{
    padding:0;
    width:100%;
    max-width:none;
    gap:0;

    display:grid;
    grid-template-columns:1.2fr .8fr;

    background:#f6f4f1;
}

.collection-preview .image{
    height:820px;
}

.collection-preview .image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.collection-preview .content{
    padding:100px 8vw;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
}

.collection-preview .content h2{
    margin:15px 0 30px;
    font-size:clamp(3rem,5vw,5rem);
    line-height:.98;
}

.collection-preview .content > p:not(.section-title):not(.launch-label){
    max-width:480px;
    margin-bottom:28px;
}

.launch-label{
    margin-bottom:35px;

    color:var(--color-primary);
    font-size:.72rem;
    font-weight:600;
    line-height:1;
    letter-spacing:4px;
    text-transform:uppercase;
}


/* MINIMAL GALLERY */

.minimal-gallery{
    padding:150px 0;
    background:#fff;
}

.gallery-heading{
    margin-bottom:60px;

    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
}

.gallery-heading h2{
    margin-top:10px;
}

.minimal-gallery .gallery-grid{
    margin-top:0;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.minimal-gallery .gallery-item{
    height:650px;
    border-radius:0;
}

.minimal-gallery .gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.minimal-gallery .gallery-feature{
    grid-row:span 2;
    height:auto;
    min-height:1318px;
}


/* BRAND STATEMENT */

.brand-statement{
    padding:180px 20px;
    background:var(--color-primary);
    text-align:center;
}

.brand-statement .section-title{
    color:rgba(255,255,255,.65);
}

.brand-statement h2{
    margin-bottom:20px;
    color:#fff;
    font-size:clamp(3rem,6vw,6rem);
}

.brand-statement p:last-child{
    color:rgba(255,255,255,.75);
    font-family:var(--font-heading);
    font-size:clamp(1.5rem,3vw,2.5rem);
}


/* MINIMAL NEWSLETTER */

.minimal-newsletter{
    padding:150px 20px;
}

.minimal-newsletter .container{
    max-width:760px;
}

.minimal-newsletter h2{
    margin:15px 0 25px;
}

.newsletter-description{
    max-width:540px;
    margin:0 auto 45px;
}