:root{

    --gold:#d6b06f;

    --bg-dark:#0b0b0b;
    --bg-dark-2:#121212;

    --bg-light:#ece3d7;

    --panel-dark:#171717;
    --panel-light:#ffffff;

    --text-light:#f5f1ea;
    --text-dark:#151515;
}

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

html{
    scroll-behavior:smooth;
}

body{

    background:var(--bg-dark);

    color:var(--text-light);

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

    line-height:1.9;

    overflow-x:hidden;
}

/* ================= HEADER ================= */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    height:90px;

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

    padding:0 60px;

    background:rgba(8,8,8,.78);

    backdrop-filter:blur(14px);

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

    z-index:9999;
}

.logo{

    font-family:'Cormorant Garamond',serif;

    font-size:40px;

    color:var(--gold);
}

nav{

    display:flex;
    align-items:center;
    gap:30px;
}

nav a{

    color:#ddd;

    text-decoration:none;

    text-transform:uppercase;

    font-size:12px;

    letter-spacing:2px;

    transition:.25s;
}

nav a:hover{
    color:var(--gold);
}

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

.hero{

    min-height:100vh;

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

    text-align:center;

    position:relative;

    padding:140px 40px 80px 40px;

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    background-repeat:no-repeat;

    isolation:isolate;
}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.58),
        rgba(0,0,0,.82)
    );
}

.hero-content{

    position:relative;

    z-index:2;

    max-width:1100px;
}

.hero-tag{

    display:inline-block;

    padding:10px 24px;

    border:1px solid rgba(255,255,255,.15);

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:11px;

    margin-bottom:35px;
}

.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(82px,10vw,150px);

    font-weight:300;

    color:#f1d29c;

    line-height:1;

    text-shadow:
    0 0 30px rgba(0,0,0,.5);
}

.hero p{

    margin-top:35px;

    font-size:24px;

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

    line-height:1.8;
}

/* ================= SECTIONS ================= */

.section{
    padding:130px 0;
}

.section-dark{
    background:var(--bg-dark);
}

.section-dark-alt{
    background:var(--bg-dark-2);
}

.section-light{
    background:var(--bg-light);
    color:var(--text-dark);
}

.container{

    width:100%;
    max-width:1180px;

    margin:auto;

    padding:0 40px;
}

/* ================= TITLES ================= */

.section-title{

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(50px,6vw,74px);

    color:var(--gold);

    margin-bottom:40px;

    line-height:1.1;
}

/* ================= GRID ================= */

.grid{

    display:grid;

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

    gap:30px;

    margin-top:50px;
}

.grid-card{

    min-height:320px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    background:rgba(255,255,255,.04);

    padding:40px;

    border-top:4px solid var(--gold);

    transition:.3s;
}

.section-light .grid-card{
    background:white;
}

.grid-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.35);
}

.grid-card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:38px;

    color:var(--gold);

    margin-bottom:24px;
}

/* ================= CARD ================= */

.card{

    margin-top:40px;

    padding:45px;

    border-left:4px solid var(--gold);

    background:var(--panel-dark);

    transition:.3s;
}

.section-light .card{
    background:white;
}

.card:hover{

    transform:translateY(-4px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.25);
}

/* ================= QUOTE ================= */

.quote{

    margin-top:80px;

    padding:50px;

    border-left:4px solid var(--gold);

    background:rgba(255,255,255,.03);

    font-family:'Cormorant Garamond',serif;

    font-size:48px;

    color:#f1d29c;

    line-height:1.5;
}

.section-light .quote{
    background:rgba(0,0,0,.04);
}

/* ================= BANNER ================= */

.banner{

    position:relative;

    padding:220px 40px;

    text-align:center;

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    overflow:hidden;
}

.banner::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.65)
    );

    z-index:1;
}

.banner-content{

    position:relative;

    z-index:2;

    max-width:1100px;

    margin:auto;
}

.banner h2{

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(52px,6vw,84px);

    font-weight:600;

    color:#f1d29c;

    line-height:1.35;

    text-shadow:
    0 0 20px rgba(0,0,0,.65);
}

/* ================= FOOTER ================= */

footer{

    padding:90px 40px;

    text-align:center;

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

    background:#080808;
}

footer p{

    font-family:'Cormorant Garamond',serif;

    font-size:38px;

    color:var(--gold);

    max-width:1000px;

    margin:auto;
}

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

@media(max-width:900px){

header{
    padding:0 24px;
}

nav{
    display:none;
}

.container{
    padding:0 24px;
}

.banner{
    padding:140px 24px;
}

.hero p{
    font-size:20px;
}

.quote{
    font-size:34px;
}

}
