:root{
    --bg:#090909;
    --panel:#111;
    --text:#f8f3ea;
    --muted:#b9b1a7;
    --orange:#ef5b25;
    --gold:#dcae3e;
    --red:#d82026;
    --line:rgba(255,255,255,.12);
    --max:1240px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:#080808;
    color:#f6f2ea;
    font-family:Montserrat,Arial,sans-serif;
    overflow-x:hidden;
}

body.nav-open{
    overflow:hidden;
    touch-action:none;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    display:block;
}

/* =========================================================
   SAME HEADER AS HOME PAGE
   ========================================================= */

.header{
    position:fixed;
    inset:0 0 auto;
    z-index:1100;

    height:86px;
    display:flex;
    align-items:center;
    gap:28px;

    padding:0 max(22px,calc((100vw - var(--max))/2));

    background:#090909;
    border-bottom:1px solid var(--line);

    transition:
        background-color .3s ease,
        border-color .3s ease;
}

.header.scrolled,
.header.menu-open{
    background:#090909;
    border-bottom:1px solid var(--line);
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    margin-right:auto;
    font-family:Manrope,Arial,sans-serif;
}

.brand img{
    width:58px;
    height:58px;
    object-fit:cover;
    border-radius:50%;
}

.brand span{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.brand b{
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:.08em;
}

.brand small{
    color:var(--gold);
    font-size:10px;
    margin-top:5px;
}

.header nav{
    display:flex;
    gap:24px;
}

.header nav a{
    font-family:Manrope,Arial,sans-serif;
    font-size:12px;
    font-weight:800;
    color:#ddd;
}

.header nav a:hover{
    color:var(--orange);
}

.pill{
    border:1px solid var(--gold);
    color:var(--gold);
    border-radius:999px;
    padding:11px 16px;
    font-family:Manrope,Arial,sans-serif;
    font-size:11px;
    font-weight:800;
}

.nav-toggle{
    display:none;
    background:none;
    border:0;
    width:44px;
}

.nav-toggle span{
    display:block;
    height:2px;
    background:#fff;
    margin:7px;
}

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

.hero{
    text-align:center;
    padding:160px 20px 60px;
}

.hero>p,
.category-head p,
.cta>p{
    color:#ef5b25;
    font-size:11px;
    font-weight:800;
    letter-spacing:.2em;
    text-transform:uppercase;
}

.hero h1,
.category h2,
.cta h2{
    font-family:"Bebas Neue",Impact,sans-serif;
    margin:0;
    line-height:.9;
}

.hero h1{
    font-size:clamp(80px,15vw,180px);
}

em{
    font-style:normal;
    color:#dcae3e;
}

.search{
    max-width:620px;
    margin:30px auto 0;
    position:relative;
}

.search input{
    width:100%;
    background:#111;
    border:1px solid #2b2b2b;
    border-radius:999px;
    color:white;
    padding:18px 54px 18px 22px;
    font:inherit;
    outline:none;
}

.search input:focus{
    border-color:#ef5b25;
}

.search span{
    position:absolute;
    right:22px;
    top:13px;
    font-size:25px;
    color:#dcae3e;
    pointer-events:none;
}

.menu-home-link{
    display:inline-block;
    margin-top:22px;
    color:var(--gold);
    font-size:11px;
    font-weight:800;
    letter-spacing:.1em;
    text-transform:uppercase;
}

/* =========================================================
   CATEGORY BAR
   ========================================================= */

.category-nav{
    position:sticky;
    top:86px;
    z-index:40;
    background:#0c0c0c;
    border-block:1px solid #222;
    overflow:auto;
    scrollbar-width:none;
}

.category-nav::-webkit-scrollbar{
    display:none;
}

.category-nav div{
    width:max-content;
    display:flex;
    gap:8px;
    padding:12px max(16px,calc((100vw - 1180px)/2));
}

.category-nav a{
    white-space:nowrap;
    border:1px solid #2c2c2c;
    border-radius:999px;
    padding:10px 14px;
    font-size:10px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
    transition:.2s ease;
}

.category-nav a:hover,
.category-nav a.active{
    background:#ef5b25;
    border-color:#ef5b25;
}

/* =========================================================
   MENU CONTENT
   ========================================================= */

main{
    max-width:1180px;
    margin:auto;
    padding:45px 20px 90px;
}

.category{
    padding:55px 0;
    border-bottom:1px solid #222;
    scroll-margin-top:155px;
}

.category-head{
    display:grid;
    grid-template-columns:1fr auto;
    align-items:end;
    margin-bottom:26px;
}

.category-head p{
    grid-column:1/-1;
    margin:0 0 7px;
}

.category h2{
    font-size:clamp(48px,7vw,82px);
}

.category-head>span{
    color:#8f8a83;
    font-size:12px;
    margin-bottom:7px;
}

.items{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:0 32px;
}

.menu-item{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:14px 0;
    border-bottom:1px dashed #292929;
    font-size:14px;
    line-height:1.4;
}

.menu-item span{
    min-width:0;
}

.menu-item strong{
    color:#ef5b25;
    white-space:nowrap;
}

.menu-item.hidden{
    display:none;
}

.category.no-results{
    display:none;
}

.reveal{
    opacity:0;
    transform:translateY(16px);
    transition:opacity .45s ease,transform .45s ease;
}

.reveal.visible{
    opacity:1;
    transform:none;
}

/* =========================================================
   CTA
   ========================================================= */

.cta{
    text-align:center;
    padding:90px 20px;
    background:#101010;
}

.cta h2{
    font-size:clamp(58px,10vw,110px);
}

/* =========================================
   ZOMATO & SWIGGY BUTTONS
   ========================================= */

.delivery-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 32px auto 0;
}

.cta .delivery-btn {
    width: 190px;
    min-height: 62px;

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

    gap: 3px;

    padding: 12px 24px;

    border-radius: 999px;
    border: none;

    color: #fff;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.delivery-name {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .08em;
}

.cta .delivery-btn small {
    color: rgba(255, 255, 255, .75);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .14em;
}

/* ZOMATO */

.cta .zomato-btn {
    background: #e23744;

    box-shadow:
        0 10px 30px rgba(226, 55, 68, .18);
}

.cta .zomato-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(226, 55, 68, .32);
}

/* SWIGGY */

.cta .swiggy-btn {
    background: #fc8019;

    box-shadow:
        0 10px 30px rgba(252, 128, 25, .18);
}

.cta .swiggy-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(252, 128, 25, .32);
}

.cta small{
    color:#999;
    line-height:1.7;
}

.wa{
    position:fixed;
    right:20px;
    bottom:20px;
    width:56px;
    height:56px;
    border-radius:50%;
    background:#20c965;
    display:grid;
    place-items:center;
    font-weight:900;
    box-shadow:0 10px 30px #0008;
    z-index:1000;
}

/* =========================================================
   MOBILE HEADER — SAME BEHAVIOUR AS HOME
   ========================================================= */

@media(max-width:1000px){

    .pill{
        display:none;
    }

    .nav-toggle{
        position:relative;
        z-index:1200;
        display:block;
        width:44px;
        height:44px;
        padding:0;
        background:transparent;
        border:0;
        cursor:pointer;
    }

    .nav-toggle span{
        display:block;
        width:28px;
        height:2px;
        margin:7px auto;
        background:#fff;
        transition:transform .3s ease;
        transform-origin:center;
    }

    .nav-toggle.active span:first-child{
        transform:translateY(4.5px) rotate(45deg);
    }

    .nav-toggle.active span:last-child{
        transform:translateY(-4.5px) rotate(-45deg);
    }

    .header nav{
        position:fixed;
        inset:0;
        z-index:1050;

        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:flex-start;
        gap:30px;

        width:100%;
        height:100dvh;
        padding:110px 35px 50px;

        background:#090909;

        opacity:0;
        visibility:hidden;
        pointer-events:none;

        transform:translateX(100%);
        transition:
            transform .42s cubic-bezier(.22,1,.36,1),
            opacity .3s ease,
            visibility .3s ease;

        overflow-y:auto;
        overscroll-behavior:contain;
    }

    .header nav.open{
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        transform:translateX(0);
    }

    .header nav a{
        position:relative;
        font-family:"Bebas Neue",Impact,sans-serif;
        font-size:clamp(42px,9vw,68px);
        line-height:1;
        color:#fff;

        opacity:0;
        transform:translateX(34px);

        transition:
            color .2s ease,
            opacity .35s ease,
            transform .35s ease;
    }

    .header nav.open a{
        opacity:1;
        transform:translateX(0);
    }

    .header nav.open a:nth-child(1){transition-delay:.06s}
    .header nav.open a:nth-child(2){transition-delay:.11s}
    .header nav.open a:nth-child(3){transition-delay:.16s}
    .header nav.open a:nth-child(4){transition-delay:.21s}
    .header nav.open a:nth-child(5){transition-delay:.26s}

    .header nav a:hover,
    .header nav a:focus-visible{
        color:var(--gold);
    }
}

@media(max-width:700px){

    .header{
        height:74px;
    }

    .brand img{
        width:48px;
        height:48px;
    }

    .brand small{
        display:none;
    }

    .category-nav{
        top:74px;
    }

    .hero{
        padding:130px 18px 45px;
    }

    .hero h1{
        font-size:clamp(76px,25vw,110px);
    }

    main{
        padding:25px 18px 70px;
    }

    .category{
        padding:42px 0;
        scroll-margin-top:140px;
    }

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

    .category-head{
        grid-template-columns:1fr;
    }

    .category-head>span{
        margin-top:8px;
    }

    .menu-item{
        font-size:13px;
    }

    .cta div{
        flex-direction:column;
    }

    .cta a{
        width:100%;
    }
}

@media(prefers-reduced-motion:reduce){
    html{
        scroll-behavior:auto;
    }

    *,
    *::before,
    *::after{
        animation-duration:.01ms!important;
        animation-iteration-count:1!important;
        transition-duration:.01ms!important;
    }
}