:root{

    --ivory:#F7F3EC;
    --white:#FFFFFF;

    --gold:#C9A86A;
    --gold-soft:#D8C096;

    --charcoal:#1C1C1C;
    --muted:#6E675F;

    --border:rgba(0,0,0,0.08);

}

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:var(--ivory);

    color:var(--charcoal);

    font-family:'Inter',sans-serif;

    line-height:1.8;

    overflow-x:hidden;
}

/* NAVBAR */

.navbar{

    position:fixed;

    top:0;
    left:0;
    right:0;

    height:90px;

    padding:0 8%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:rgba(247,243,236,0.95);

    backdrop-filter:blur(12px);

    border-bottom:1px solid transparent;

    opacity:0;
    visibility:hidden;

    transition:all .4s ease;

    z-index:999;
}

.navbar.show{

    opacity:1;
    visibility:visible;

    border-bottom:1px solid var(--border);
}

.navbar-logo img{

    width:65px;
}

.navbar ul{

    display:flex;
    gap:35px;

    list-style:none;
}

.navbar a{

    text-decoration:none;

    color:var(--charcoal);

    font-size:.95rem;

    transition:.3s;
}

.navbar a:hover{

    color:var(--gold);
}

/* HERO */

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;
    align-items:center;

    text-align:center;

    padding:120px 30px;
}

.hero-inner{

    max-width:850px;
}

.hero-logo{

    width:280px;

    margin-bottom:40px;

    transition:all .5s ease;
}

.gold-line{

    width:80px;
    height:2px;

    background:var(--gold);

    margin:0 auto 40px auto;

    animation:growLine 1.8s ease forwards;
}

@keyframes growLine{

    from{
        width:0;
        opacity:0;
    }

    to{
        width:80px;
        opacity:1;
    }
}

.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:5rem;

    font-weight:500;

    margin-bottom:25px;

    letter-spacing:.5px;
}

.hero-text{

    max-width:700px;

    margin:0 auto;

    color:var(--muted);

    font-size:1.15rem;

    margin-bottom:45px;
}

/* BUTTON */

.btn{

    display:inline-block;

    background:var(--gold);

    color:white;

    text-decoration:none;

    padding:14px 34px;

    border-radius:40px;

    transition:.3s ease;
}

.btn:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(201,168,106,.25);
}

/* SECTIONS */

.section{

    padding:140px 8%;
}

.alt{

    background:white;
}

.container{

    max-width:1200px;

    margin:auto;
}

.narrow{

    max-width:850px;
}

.center{

    text-align:center;
}

.section-label{

    display:inline-block;

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.8rem;

    margin-bottom:25px;
}

.section h2{

    font-family:'Cormorant Garamond',serif;

    font-size:3.4rem;

    line-height:1.2;

    margin-bottom:35px;
}

/* STORY */

.story-content p{

    margin-bottom:28px;

    color:var(--muted);
}

blockquote{

    font-family:'Cormorant Garamond',serif;

    font-size:2rem;

    line-height:1.4;

    color:var(--charcoal);

    margin:50px 0;

    padding-left:25px;

    border-left:3px solid var(--gold);
}

/* CARDS */

.cards{

    display:grid;

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

    gap:30px;
}

.card{

    background:var(--white);

    padding:40px;

    border-radius:24px;

    border:1px solid var(--border);

    transition:.3s ease;
}

.card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);
}

.card h3{

    margin-bottom:18px;

    font-size:1.2rem;
}

.card p{

    color:var(--muted);
}

/* COMING SOON */

.coming-text{

    margin-bottom:18px;

    color:var(--muted);
}

/* CONTACT */

.contact{

    background:linear-gradient(
    180deg,
    var(--ivory),
    white
    );
}

/* FOOTER */

footer{

    padding:70px 30px;

    text-align:center;

    border-top:1px solid var(--border);

    background:white;
}

footer img{

    width:150px;

    margin-bottom:20px;
}

footer p{

    margin-bottom:12px;
}

footer small{

    color:var(--muted);
}

/* RESPONSIVE */

@media(max-width:900px){

    .hero h1{

        font-size:3.5rem;
    }

    .section h2{

        font-size:2.7rem;
    }

    .hero-logo{

        width:220px;
    }

    .navbar{

        padding:0 20px;
    }

    .navbar ul{

        gap:18px;
    }
}

@media(max-width:768px){

    .navbar{

        height:auto;

        padding:15px 20px;

        flex-direction:column;

        gap:15px;
    }

    .navbar ul{

        flex-wrap:wrap;

        justify-content:center;
    }

    .hero{

        min-height:90vh;
    }

    .hero h1{

        font-size:2.8rem;
    }

    blockquote{

        font-size:1.6rem;
    }

    .section{

        padding:100px 8%;
    }
}
