:root{
    --gold:#ffc300;
    --dark:#0b0b0b;
    --choco-dark:#4b2e1e;
    --choco-light:#6f3b1c;
}

/* ================= RESET ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--dark);
    color:#ddd;
    line-height:1.6;
}

/* ================= HEADER ================= */
header{
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    padding:16px 80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(12px);
}

header h1{
    font-family:'Playfair Display',serif;
    color:var(--gold);
}

.desktop-nav a{
    color:#fff;
    margin-left:26px;
    text-decoration:none;
    position:relative;
}

.desktop-nav a::after{
    content:'';
    position:absolute;
    bottom:-5px;
    left:50%;
    width:0;
    height:2px;
    background:var(--gold);
    transform:translateX(-50%);
    transition:.4s;
}

.desktop-nav a:hover::after{
    width:60%;
}

.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
}

.hamburger span{
    height:3px;
    width:26px;
    background:var(--gold);
    margin:4px 0;
}

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:75%;
    height:100vh;
    background:#0b0b0b;
    padding:100px 35px;
    transition:.4s;
}

.mobile-menu a{
    display:block;
    color:#fff;
    font-size:20px;
    margin-bottom:22px;
    text-decoration:none;
    font-family:'Playfair Display',serif;
}

.mobile-menu.active{
    right:0;
}

/* ================= HERO ================= */
.hero{
    height:60vh;
    background:linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.85)),
               url("https://images.unsplash.com/photo-1552566626-52f8b828add9") center/cover;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    padding-left:80px;
    padding-top:70px;
}

.hero h2{
    font-family:'Playfair Display',serif;
    font-size:56px;
    color:#fff;
}

/* ================= COMMON ================= */
section{
    padding:65px 80px;
}

.divider{
    width:70px;
    height:2px;
    background:var(--gold);
    margin:22px auto;
}

/* ================= ABOUT ================= */
.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:45px;
    align-items:center;
}

.about-grid h3{
    font-family:'Playfair Display',serif;
    font-size:40px;
    color:var(--gold);
}

.about-grid p{
    line-height:1.9;
    color:#bbb;
}

.about-grid img{
    width:100%;
    border-radius:14px;
}

/* ================= STAFF ================= */
.staff{
    text-align:center;
    background:#0d0d0d;
}

.staff h2{
    font-family:'Playfair Display',serif;
    font-size:44px;
    color:var(--gold);
}

.staff-grid{
    margin-top:45px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:35px;
}

.staff-card{
    background:#111;
    padding:25px;
    border-radius:14px;
    border:1px solid rgba(212,175,55,.15);
}

.staff-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:15px;
}

.staff-card h4{color:#fff;}
.staff-card span{color:#aaa;font-size:14px;}

/* ================= REVIEWS CAROUSEL ================= */
.reviews{
    text-align:center;
    background:#0b0b0b;
}

.reviews h2{
    font-family:'Playfair Display',serif;
    font-size:44px;
    color:var(--gold);
}

.review-carousel{
    margin-top:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
}

.review-window{
    width:1020px; /* 3 x 340 */
    overflow:hidden;
}

.review-track{
    display:flex;
    transition:transform .6s ease;
}

.review-card{
    min-width:340px;
    padding:10px;
}

.review-inner{
    background:#111;
    padding:30px;
    border-radius:14px;
    border:1px solid rgba(212,175,55,.15);
}

.review-inner img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:16px;
}

.review-inner p{
    font-style:italic;
    color:#ccc;
    margin-bottom:14px;
}

.review-inner h4{
    font-size:14px;
    letter-spacing:1px;
    color:#fff;
}

/* Review navigation */
.nav{
    background:transparent;
    border:1px solid var(--gold);
    color:var(--gold);
    font-size:22px;
    padding:10px 16px;
    cursor:pointer;
    border-radius:50%;
    transition:.3s;
}

.nav:hover{
    background:var(--gold);
    color:#000;
}

/* ================= GALLERY ================= */
.gallery{
    text-align:center;
    background:#0d0d0d;
}

.gallery h2{
    font-family:'Playfair Display',serif;
    font-size:44px;
    color:var(--gold);
}

.gallery-grid{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.gallery-grid img{
    width:100%;
    height:230px;
    object-fit:cover;
    border-radius:14px;
    cursor:pointer;
    transition:.4s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* ================= SEE MORE BUTTON ================= */
.see-more-btn{
    display:inline-block;
    padding:14px 34px;
    background:linear-gradient(135deg,var(--choco-dark),var(--choco-light));
    color:#fff;
    text-decoration:none;
    letter-spacing:2px;
    transition:.3s ease;
    border-radius:4px;
}

.see-more-btn:hover{
    background:linear-gradient(135deg,#3a1f14,#5a2d14);
}

/* ================= MODAL ================= */
.modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.9);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:2000;
}

.modal img{
    max-width:90%;
    max-height:90%;
    border-radius:14px;
}

.modal span{
    position:absolute;
    top:25px;
    right:35px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}

/* ================= FOOTER ================= */
footer{
    background:#000;
    padding:30px;
    text-align:center;
    color:#777;
}

footer span{color:var(--gold);}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    header{padding:16px 30px;}
    section{padding:55px 30px;}
    .desktop-nav{display:none;}
    .hamburger{display:flex;}
    .about-grid{grid-template-columns:1fr;}
    .review-window{width:680px;} /* 2 cards */
    .gallery-grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:600px){
    .hero h2{font-size:42px;}
    .review-window{width:100%;}
    .review-card{min-width:100%;}
    .gallery-grid{grid-template-columns:1fr;}
}
