:root{
    --black:#000;
    --white:#fff;
    --grey:#cfcfcf;
    --dark:#111;
    --gold:#d4af37;
    --max-width:1400px;
}

/* =========================
   RESET
========================= */

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

html{
    scroll-behavior:smooth;
}

body{
    background:#000;
    color:#fff;
    font-family:'Montserrat',sans-serif;
    overflow-x:hidden;
    line-height:1.8;
}

a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

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

/* =========================
   TYPOGRAPHY
========================= */

h1,h2,h3{
    font-family:'Playfair Display',serif;
}

h1{
    font-size:clamp(4rem,8vw,7rem);
    line-height:1.05;
    font-weight:600;
}

h2{
    font-size:clamp(2rem,4vw,3.5rem);
    text-align:center;
    margin-bottom:50px;
}

h3{
    font-size:1.4rem;
    margin-bottom:15px;
}

p{
    color:var(--grey);
}

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

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:9999;

    background:rgba(0,0,0,.90);
    backdrop-filter:blur(10px);

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

    padding:15px 50px;
}

.logo img{
    height:110px;
    display:block;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.85rem;
}

/* =========================
   HERO
========================= */
.hero{
    min-height:100vh;
    padding:220px 25px 100px 25px;
}

h1{
    font-size:4rem;
    line-height:1.05;
}

.hero p{
    font-size:1.1rem;
}

.hero-buttons{
    display:flex;
    flex-direction:column;
    gap:15px;
    align-items:center;
}

.button,
.button-outline{
    width:100%;
    max-width:320px;
    text-align:center;
}

.floating-contact{
    bottom:100px;
    right:20px;
}

h1{
    font-size:clamp(4rem,8vw,7rem);
    line-height:1.05;
    font-weight:600;
}

.hero p{
    font-size:1.3rem;
    margin-top:25px;
    margin-bottom:40px;
}

/* =========================
   BUTTONS
========================= */

.button,
.button-outline{

    padding:18px 36px;

    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;

    border-radius:4px;
}

.button{
    background:#fff;
    color:#000;
}

.button:hover{
    background:var(--gold);
}

.button-outline{
    border:1px solid #fff;
}

.button-outline:hover{
    border-color:var(--gold);
}

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

section{
    padding:120px 8%;
}

.intro,
.review-section,
.videos,
.price-section,
.contact{
    max-width:var(--max-width);
    margin:auto;
}

/* =========================
   FEATURES
========================= */

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:50px;
}

.feature{
    text-align:center;
}

/* =========================
   IMAGE SECTION
========================= */

.image-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.image-section img{
    width:100%;
    border-radius:8px;
    display:block;
}

blockquote{
    font-family:'Playfair Display',serif;
    font-size:2rem;
    color:#fff;
    margin:25px 0;
}

/* =========================
   REVIEWS
========================= */

.review-carousel{
    position:relative;
    min-height:220px;
    max-width:900px;
    margin:auto;
}

.review-carousel .review{
    position:absolute;
    width:100%;
    opacity:0;
    transition:opacity .6s ease;
}

.review-carousel .review.active{
    opacity:1;
}

.quote{
    font-family:'Playfair Display',serif;
    font-size:2rem;
    line-height:1.5;
}

.author{
    margin-top:25px;
    color:var(--gold);
}

/* =========================
   GALLERY
========================= */

.gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery img{
    width:100%;
    height:450px;
    object-fit:cover;
}
/* =========================
   VIDEOS
========================= */

.video-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    max-width:1400px;
    margin:0 auto;
}
@media (max-width:900px){

    .video-grid{
        grid-template-columns:1fr;
    }

}
.video-grid a{
    position:relative;
    display:block;
    overflow:hidden;

    background:#111;
    border-radius:12px;

    text-decoration:none;

    transition:0.3s ease;
}

.video-grid a:hover{
    transform:translateY(-5px);
}

/* THUMBNAIL IMAGE */

.video-grid img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    object-position:center;
    display:block;
}

/* PLAY BUTTON */

.video-grid a::before{
    content:"▶";

    position:absolute;

    top:35%;
    left:50%;

    transform:translate(-50%,-50%);

    width:80px;
    height:80px;

    border-radius:50%;

    background:rgba(212,175,55,0.9);

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

    font-size:2rem;
    color:#000;

    z-index:10;

    transition:.3s ease;
}

.video-grid a:hover::before{
    transform:translate(-50%,-50%) scale(1.1);
}

/* TITLE */

.video-grid span{
    display:block;

    padding:18px;

    text-align:center;

    background:#111;

    color:#fff;

    font-size:1rem;
    font-weight:500;
}
/* =========================
   PRICE
========================= */

.price-section{
    text-align:center;
}

.price{
    font-family:'Playfair Display',serif;
    font-size:6rem;
    color:var(--gold);
    margin:20px 0;
}

/* =========================
   CONTACT
========================= */

.contact{
    text-align:center;
}

.contact p{
    margin-bottom:20px;
}

.contact a{
    color:#fff;
}

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

footer{
    background:#111;
    text-align:center;
    padding:50px 20px;
}

footer p{
    color:#777;
}

/* =========================
   FLOATING BUTTON
========================= */

.floating-contact{
    position:fixed;
    bottom:20px;
    right:20px;

    background:var(--gold);
    color:#000;

    padding:15px 25px;

    border-radius:50px;

    font-weight:600;

    z-index:9999;
}
.floating-contact,
.floating-contact:visited{
    color:#000000 !important;
}
.hero-content{
    text-align:center;
    margin:0 auto;
}

.hero h1,
.hero p,
.eyebrow{
    text-align:center;
}
/* ==========================================
   MOBILE
   ========================================== */

@media (max-width:900px){

    /* HEADER */

    header{
        flex-direction:column;
        padding:20px;
    }

    .logo img{
        height:80px;
    }

    nav{
        margin-top:15px;
        gap:15px;
        flex-wrap:wrap;
        justify-content:center;
    }

    nav a{
        font-size:0.8rem;
    }

    /* HERO */

    .hero{
        min-height:100vh;
        padding:240px 25px 80px 25px;

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

    .hero-content{
        width:100%;
        text-align:center;
        margin:0 auto;
    }

    .eyebrow{
        display:block;
        margin:0 0 20px 0;
        text-align:center;
        font-size:0.75rem;
        letter-spacing:3px;
        line-height:1.5;
    }

    h1{
        font-size:2.5rem;
        line-height:1.05;
        text-align:center;
    }

    .hero p{
        font-size:1.1rem;
        text-align:center;
        margin-top:20px;
        margin-bottom:20px;
    }

    .hero-buttons{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:15px;
        margin-top:30px;
    }

    .button,
    .button-outline{
        width:100%;
        max-width:320px;
        text-align:center;
    }

    /* SECTIONS */

    .image-section{
        grid-template-columns:1fr;
    }

    .gallery{
        grid-template-columns:1fr;
    }

    .gallery img{
        height:auto;
    }

    section{
        padding:80px 25px;
    }

    .price{
        font-size:4rem;
    }

    .quote{
        font-size:1.5rem;
    }

    .floating-contact{
    display:block;
    bottom:20px;
    right:20px;

    padding:12px 20px;
    font-size:0.9rem;
}

}
.youtube-section{
    text-align:center;
    max-width:900px;
    margin:auto;
}

.youtube-section p{
    margin-bottom:30px;
}

.youtube-button{
    display:inline-block;
    background:#d4af37;
    color:#000;
    padding:18px 40px;
    border-radius:50px;
    font-weight:600;
    font-size:1.1rem;
    transition:0.3s;
}

.youtube-button:hover{
    background:#fff;
    color:#000;
}
.button,
.button:visited,
.button:hover,
.button:focus,
.button:active{
    color:#000 !important;
}