@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Manrope:wght@300;400;500;600&display=swap');
:root{
    --sand:#F8F5F0;
    --cream:#FCFAF6;
    --stone:#E8DFD0;
    --bronze:#A7865E;
    --gold:#C8A977;
    --olive:#6D7557;
    --charcoal:#222222;
    --dark:#151515;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
body{
    font-family:'Manrope',sans-serif;
    background:var(--sand);
    color:var(--charcoal);
    overflow-x:hidden;
    line-height:1.8;
}
/* ---------------- HERO ---------------- */
.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}
.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}
.overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        rgba(0,0,0,.25),
        rgba(0,0,0,.55)
    );
}
.hero-content{
    position:relative;
    z-index:5;
    height:100%;
    max-width:1400px;
    margin:auto;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:0 10%;
}
.eyebrow{
    color:rgba(255,255,255,.9);
    text-transform:uppercase;
    letter-spacing:8px;
    font-size:.75rem;
    margin-bottom:30px;
}
.hero h1{
    font-family:'Cormorant Garamond',serif;
    color:white;
    font-size:clamp(5rem,10vw,9rem);
    line-height:.88;
    font-weight:400;
    margin-bottom:25px;
}
.subtitle{
    color:#fff;
    font-size:1.25rem;
    line-height:1.8;
    max-width:650px;
    font-weight:300;
    text-shadow:0 2px 12px rgba(0,0,0,.35);
}

.hero-quote{
    margin:0 0 35px;
    padding-left:22px;
    border-left:2px solid rgba(255,255,255,.25);
}

.hero-quote p{
    font-family:'Cormorant Garamond',serif;
    font-size:1.8rem;
    font-style:italic;
    color:white;
    line-height:1.4;
    margin-bottom:10px;
    text-shadow:0 2px 10px rgba(0,0,0,.35);
}

.hero-quote span{
    display:block;
    color:rgba(255,255,255,.82);
    font-size:.8rem;
    letter-spacing:3px;
    text-transform:uppercase;
}
.hero-button{
    display:inline-block;
    width:fit-content;
    text-decoration:none;
    color:white;
    border:1px solid rgba(255,255,255,.5);
    padding:18px 38px;
    border-radius:100px;
    backdrop-filter:blur(10px);
    transition:.4s;
}
.hero-button:hover{
    background:white;
    color:black;
}
/* ---------------- GENERAL ---------------- */
.editorial-section{
    padding:160px 10%;
    background:var(--sand);
}
.light{
    background:var(--cream);
}
.dark{
    background:var(--dark);
    color:white;
}
.editorial-content{
    max-width:900px;
    margin:auto;
}
.section-label{
    display:block;
    color:var(--bronze);
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:.8rem;
    margin-bottom:25px;
}
.editorial-section h2{
    font-family:'Cormorant Garamond',serif;
    font-size:4.5rem;
    line-height:1;
    margin-bottom:40px;
    font-weight:400;
}
.editorial-section p{
    font-size:1.15rem;
    margin-bottom:25px;
    max-width:850px;
}
/* ---------------- FULL IMAGE ---------------- */
.full-image{
    position:relative;
    height:90vh;
    overflow:hidden;
}
.full-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.image-caption{
    position:absolute;
    bottom:10%;
    left:10%;
    color:white;
}
.image-caption h2{
    font-family:'Cormorant Garamond',serif;
    font-size:5rem;
    line-height:1;
    font-weight:400;
}
/* ---------------- PILLARS ---------------- */
.pillars{
    padding:120px 10%;
    background:white;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}
.pillar{
    padding:50px;
    background:var(--cream);
    border-radius:24px;
    transition:.4s;
}
.pillar:hover{
    transform:translateY(-10px);
}
.pillar span{
    display:block;
    color:var(--bronze);
    font-size:2rem;
    margin-bottom:20px;
    font-family:'Cormorant Garamond',serif;
}
.pillar h3{
    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
    margin-bottom:15px;
    font-weight:500;
}
/* ---------------- QUOTE ---------------- */
.quote-section{
    background:#111;
    color:white;
    padding:180px 10%;
    text-align:center;
}
blockquote{
    max-width:1000px;
    margin:auto;
    font-family:'Cormorant Garamond',serif;
    font-size:4rem;
    line-height:1.3;
    font-weight:300;
}
/* ---------------- CLOSING ---------------- */
.closing{
    background:
    linear-gradient(
        180deg,
        var(--sand),
        white
    );
    text-align:center;
    padding:180px 10%;
}
.closing-content{
    max-width:900px;
    margin:auto;
}
.closing h2{
    font-family:'Cormorant Garamond',serif;
    font-size:5rem;
    line-height:1;
    margin-bottom:30px;
    font-weight:400;
}
.closing p{
    max-width:700px;
    margin:auto;
    margin-bottom:50px;
    font-size:1.2rem;
}
.closing h3{
    font-family:'Cormorant Garamond',serif;
    font-size:3rem;
    margin-bottom:40px;
    color:var(--bronze);
}
/* ---------------- MOBILE ---------------- */
@media(max-width:900px){
    .hero h1{
        font-size:4rem;
    }
    .editorial-section h2{
        font-size:3rem;
    }
    .image-caption h2{
        font-size:3rem;
    }
    .pillars{
        grid-template-columns:1fr;
    }
    blockquote{
        font-size:2rem;
    }
    .closing h2{
        font-size:3rem;
    }
}
