*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --dark:#15130f;
    --dark2:#211d17;
    --gold:#c89b52;
    --gold-light:#e6c687;
    --cream:#f7f1e7;
    --white:#ffffff;
    --text:#3d3932;
    --muted:#777167;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#fff;
    color:var(--text);
    line-height:1.7;
}

img{
    width:100%;
    display:block;
    object-fit:cover;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:min(1180px,92%);
    margin:auto;
}

/* HEADER */

.header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(0,0,0,.07);
}

.nav{
    min-height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.logo{
    font-family:Georgia,serif;
    font-size:31px;
    font-weight:700;
    letter-spacing:4px;
    color:var(--dark);
}

.logo span{
    color:var(--gold);
}

.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
}

.nav-links a{
    font-size:15px;
    font-weight:600;
    color:#37322c;
    position:relative;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--gold);
    transition:.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after{
    width:100%;
}

.nav-links a.active{
    color:var(--gold);
}

.nav-btn{
    background:var(--dark);
    color:white !important;
    padding:12px 20px;
    border-radius:30px;
}

.nav-btn::after{
    display:none;
}

.menu-toggle{
    display:none;
    border:none;
    background:none;
    font-size:28px;
    cursor:pointer;
}

/* HERO */

.hero{
    min-height:88vh;
    display:flex;
    align-items:center;
    position:relative;
    color:white;
    background:
    linear-gradient(90deg,rgba(13,12,10,.86),rgba(13,12,10,.35)),
    url("images/hero-restaurant.jpg") center/cover no-repeat;
}

.hero-content{
    max-width:720px;
    padding:80px 0;
}

.eyebrow{
    display:inline-block;
    color:var(--gold-light);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:13px;
    margin-bottom:18px;
}

.hero h1{
    font-family:Georgia,serif;
    font-size:clamp(45px,7vw,82px);
    line-height:1.05;
    margin-bottom:24px;
}

.hero p{
    max-width:650px;
    font-size:18px;
    color:#eee7dc;
    margin-bottom:30px;
}

.hero-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:0 25px;
    border-radius:30px;
    font-weight:700;
    transition:.3s;
    border:none;
    cursor:pointer;
}

.btn-gold{
    background:var(--gold);
    color:white;
}

.btn-gold:hover{
    background:#ae813e;
    transform:translateY(-2px);
}

.btn-outline{
    border:1px solid rgba(255,255,255,.6);
    color:white;
}

.btn-outline:hover{
    background:white;
    color:var(--dark);
}

/* GENERAL */

.section{
    padding:95px 0;
}

.section-soft{
    background:var(--cream);
}

.section-dark{
    background:var(--dark);
    color:white;
}

.section-head{
    max-width:700px;
    margin-bottom:45px;
}

.section-head.center{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
}

.section-head span{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:12px;
    font-weight:700;
}

.section-head h2{
    font-family:Georgia,serif;
    color:var(--dark);
    font-size:clamp(34px,4vw,52px);
    line-height:1.15;
    margin:10px 0 15px;
}

.section-dark .section-head h2{
    color:white;
}

.section-head p{
    color:var(--muted);
}

.section-dark .section-head p{
    color:#c7c0b6;
}

/* INTRO */

.intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:65px;
    align-items:center;
}

.intro-image{
    height:570px;
    border-radius:180px 180px 20px 20px;
    overflow:hidden;
}

.intro-image img{
    height:100%;
}

.intro-text h2{
    font-family:Georgia,serif;
    font-size:48px;
    line-height:1.15;
    color:var(--dark);
    margin-bottom:22px;
}

.intro-text p{
    margin-bottom:18px;
    color:var(--muted);
}

.stats{
    margin-top:35px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.stat{
    background:var(--cream);
    border-radius:16px;
    padding:20px;
}

.stat strong{
    display:block;
    font-family:Georgia,serif;
    font-size:29px;
    color:var(--gold);
}

.stat span{
    font-size:13px;
    color:var(--muted);
}

/* CARDS */

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.food-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 14px 40px rgba(0,0,0,.07);
    transition:.35s;
}

.food-card:hover{
    transform:translateY(-8px);
}

.food-card img{
    height:250px;
}

.food-content{
    padding:24px;
}

.food-top{
    display:flex;
    justify-content:space-between;
    gap:15px;
    margin-bottom:10px;
}

.food-top h3{
    font-family:Georgia,serif;
    font-size:24px;
    color:var(--dark);
}

.price{
    color:var(--gold);
    font-weight:800;
    white-space:nowrap;
}

.food-content p{
    font-size:14px;
    color:var(--muted);
}

/* EXPERIENCE */

.experience{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:0;
    min-height:600px;
}

.experience-image img{
    height:100%;
}

.experience-content{
    background:var(--dark);
    color:white;
    display:flex;
    align-items:center;
    padding:70px;
}

.experience-content h2{
    font-family:Georgia,serif;
    font-size:46px;
    line-height:1.15;
    margin:12px 0 22px;
}

.experience-content p{
    color:#cfc8bd;
    margin-bottom:18px;
}

/* REVIEWS */

.reviews{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.review{
    padding:30px;
    border:1px solid #ebe4d9;
    border-radius:18px;
    background:white;
}

.stars{
    color:var(--gold);
    letter-spacing:3px;
    margin-bottom:14px;
}

.review p{
    color:var(--muted);
    margin-bottom:22px;
}

.review strong{
    color:var(--dark);
}

.review small{
    display:block;
    color:#999;
}

/* PAGE HERO */

.page-hero{
    min-height:390px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    background:
    linear-gradient(rgba(15,13,10,.7),rgba(15,13,10,.7)),
    url("images/hero-restaurant.jpg") center/cover;
}

.page-hero h1{
    font-family:Georgia,serif;
    font-size:60px;
    margin-bottom:10px;
}

.page-hero p{
    color:#e5ded4;
    max-width:650px;
    margin:auto;
}

/* MENU */

.menu-tabs{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:45px;
}

.menu-tab{
    padding:12px 24px;
    border:1px solid #ddd2c2;
    background:white;
    border-radius:30px;
    cursor:pointer;
    font-weight:700;
}

.menu-tab.active,
.menu-tab:hover{
    background:var(--dark);
    color:white;
}

.menu-group{
    display:none;
}

.menu-group.active{
    display:block;
}

.menu-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px 45px;
}

.menu-item{
    display:flex;
    justify-content:space-between;
    gap:20px;
    border-bottom:1px dashed #d8cfc2;
    padding:20px 0;
}

.menu-item h3{
    font-family:Georgia,serif;
    font-size:21px;
    color:var(--dark);
}

.menu-item p{
    color:var(--muted);
    font-size:13px;
}

.cooking-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

.cooking-grid img{
    height:500px;
    border-radius:18px;
}

/* ABOUT */

.story-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.story-grid img{
    height:530px;
    border-radius:18px;
}

.story-grid h2{
    font-family:Georgia,serif;
    font-size:48px;
    color:var(--dark);
    margin-bottom:20px;
}

.story-grid p{
    color:var(--muted);
    margin-bottom:16px;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.team-card{
    background:white;
    border-radius:18px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.team-card img{
    height:330px;
}

.team-card div{
    padding:22px;
}

.team-card h3{
    font-family:Georgia,serif;
    font-size:24px;
}

.team-card span{
    color:var(--gold);
    font-size:14px;
}

/* CHAT */

.chat-section{
    background:var(--cream);
}

.chat-container{
    max-width:830px;
    margin:auto;
    background:white;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.1);
}

.chat-header{
    background:var(--dark);
    color:white;
    padding:25px 30px;
}

.chat-header h2{
    font-family:Georgia,serif;
}

.chat-header p{
    color:#c9c1b6;
    font-size:14px;
}

.chat-body{
    height:470px;
    overflow-y:auto;
    padding:25px;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.message{
    max-width:78%;
    padding:13px 17px;
    border-radius:17px;
    font-size:14px;
}

.bot-message{
    background:#f0ebe2;
    align-self:flex-start;
    border-bottom-left-radius:4px;
}

.user-message{
    background:var(--dark);
    color:white;
    align-self:flex-end;
    border-bottom-right-radius:4px;
}

.chat-form{
    display:flex;
    padding:18px;
    border-top:1px solid #eee;
    gap:10px;
}

.chat-form input{
    flex:1;
    border:1px solid #ddd;
    border-radius:30px;
    padding:14px 18px;
    outline:none;
}

.chat-form button{
    border:none;
    background:var(--gold);
    color:white;
    border-radius:30px;
    padding:0 24px;
    font-weight:700;
    cursor:pointer;
}

/* CONTACT */

.contact-grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:60px;
}

.contact-info h2{
    font-family:Georgia,serif;
    font-size:48px;
    color:var(--dark);
    margin-bottom:20px;
}

.contact-info p{
    color:var(--muted);
}

.info-box{
    margin-top:30px;
}

.info-row{
    padding:18px 0;
    border-bottom:1px solid #eee3d5;
}

.info-row strong{
    display:block;
    color:var(--gold);
    margin-bottom:4px;
}

.contact-form{
    background:var(--cream);
    padding:35px;
    border-radius:20px;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.field{
    margin-bottom:15px;
}

.field.full{
    grid-column:1/-1;
}

.field label{
    font-weight:700;
    font-size:13px;
    display:block;
    margin-bottom:7px;
}

.field input,
.field select,
.field textarea{
    width:100%;
    border:1px solid #ddd1c0;
    background:white;
    border-radius:10px;
    padding:14px;
    outline:none;
}

.field textarea{
    min-height:130px;
    resize:vertical;
}

/* FOOTER */

.footer{
    background:#100f0c;
    color:white;
    padding:70px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.4fr;
    gap:45px;
    padding-bottom:50px;
}

.footer-logo{
    font-family:Georgia,serif;
    font-size:34px;
    letter-spacing:4px;
    margin-bottom:14px;
}

.footer p,
.footer a{
    color:#aaa49a;
    font-size:14px;
}

.footer h4{
    color:var(--gold-light);
    margin-bottom:16px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:9px;
}

.footer-links a:hover{
    color:white;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:24px;
    color:#7e7972;
    font-size:13px;
    display:flex;
    justify-content:space-between;
    gap:20px;
}

/* RESPONSIVE */

@media(max-width:900px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:78px;
        left:0;
        width:100%;
        background:white;
        display:none;
        flex-direction:column;
        padding:28px;
        gap:20px;
        box-shadow:0 20px 30px rgba(0,0,0,.08);
    }

    .nav-links.open{
        display:flex;
    }

    .intro-grid,
    .experience,
    .cooking-grid,
    .story-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .cards,
    .reviews,
    .team-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .intro-image,
    .story-grid img,
    .cooking-grid img{
        height:450px;
    }

    .experience-content{
        padding:50px 7%;
    }
}

@media(max-width:650px){

    .section{
        padding:70px 0;
    }

    .hero{
        min-height:82vh;
    }

    .hero h1{
        font-size:48px;
    }

    .cards,
    .reviews,
    .team-grid,
    .menu-list,
    .form-grid,
    .stats,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .page-hero h1{
        font-size:44px;
    }

    .intro-text h2,
    .story-grid h2,
    .contact-info h2{
        font-size:37px;
    }

    .food-card img{
        height:230px;
    }

    .chat-body{
        height:420px;
    }

    .message{
        max-width:90%;
    }

    .footer-bottom{
        flex-direction:column;
    }
}