<style>
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }

:root{
    --dark:#0e0e0e;
    --dark-card:#181818;
    --dark-border:#2a2a2a;
    --gold:#FFD28D;
    --gold-dim:#c9a25a;
    --text-white:#f0f0f0;
    --text-muted:#888;
    --font-display:'Playfair Display',Georgia,serif;
    --font-body:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

body{
    font-family:var(--font-body);
    font-size:16px;
    background:var(--dark);
    color:var(--text-white);
    line-height:1.6;
}

.container{
    max-width:1200px;
    margin:0 auto;
    padding:0 24px;
}

/* ─── HERO ─── */
.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    background:#0e0e0e;
}

/* Slider backgrounds */
.hero-slider{
    position:absolute;
    inset:0;
    z-index:0;
}
.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 1s ease;
}
.hero-slide.active{
    opacity:1;
}
.hero-slide-bg{
    width:100%;
    height:100%;
}
.hero-slide-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transform:scale(1.05);
    transition:transform 6s ease;
}
.hero-slide.active .hero-slide-bg img{
    transform:scale(1);
}

/* Overlay */
.hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(to bottom,rgba(14,14,14,.55) 0%,rgba(14,14,14,.75) 100%);
    pointer-events:none;
}

/* Content */
.hero-content{
    position:relative;
    z-index:2;
    padding:100px 24px 80px;
    max-width:800px;
}
.hero-subtitle{
    font-family:var(--font-body);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:13px;
    color:var(--gold);
    margin-bottom:16px;
}
.hero-title{
    font-family:var(--font-display);
    font-size:clamp(42px,7vw,86px);
    font-weight:700;
    letter-spacing:-1px;
    line-height:1.05;
    margin-bottom:0;
    color:#fff;
}
.hero-title-accent{
    font-family:var(--font-display);
    font-size:clamp(28px,4.5vw,56px);
    font-weight:400;
    font-style:italic;
    color:var(--gold);
    margin:0 0 24px;
    line-height:1.2;
}
.hero-meta{
    font-size:15px;
    color:rgba(255,255,255,.7);
    margin-bottom:6px;
}
.meta-dot{
    display:inline-block;
    width:4px;
    height:4px;
    border-radius:50%;
    background:var(--gold);
    vertical-align:middle;
    margin:0 8px;
}
.hero-meta-sub{
    font-size:13px;
    color:rgba(255,255,255,.5);
    letter-spacing:1px;
    margin-bottom:8px;
}

/* CTA Button */
.hero-cta{
    display:inline-block;
    margin-top:32px;
    padding:14px 40px;
    font-family:var(--font-body);
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    text-decoration:none;
    color:var(--dark);
    background:var(--gold);
    border-radius:999px;
    transition:all .3s ease;
}
.hero-cta:hover{
    background:#fff;
    color:var(--dark);
}

/* Navigation arrows */
.hero-nav{
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
    z-index:3;
    display:flex;
    gap:20px;
    align-items:center;
}
.hero-nav-btn{
    background:none;
    border:2px solid rgba(255,210,141,.3);
    border-radius:50%;
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:all .3s ease;
    padding:0;
}
.hero-nav-btn:hover{
    border-color:var(--gold);
    background:rgba(255,210,141,.1);
}
.hero-nav-btn svg{
    width:24px;
    height:auto;
}

/* ─── MARQUEE ─── */
.marquee-wrap{
    overflow:hidden;
    border-top:1px solid var(--dark-border);
    border-bottom:1px solid var(--dark-border);
    padding:18px 0;
    background:var(--dark);
}
.marquee-track{
    display:flex;
    width:max-content;
    animation:marquee 30s linear infinite;
}
.marquee-track span{
    font-family:var(--font-display);
    font-size:clamp(18px,2.5vw,28px);
    text-transform:uppercase;
    letter-spacing:3px;
    color:var(--gold-dim);
    white-space:nowrap;
    padding-right:24px;
}
@keyframes marquee{
    0%{ transform:translateX(0); }
    100%{ transform:translateX(-50%); }
}

/* ─── SECTION MENU ─── */
.section-menu{
    padding:80px 0 60px;
}
.section-heading{
    text-align:center;
    margin-bottom:48px;
}
.section-subtitle{
    font-family:var(--font-body);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:12px;
    color:var(--gold);
    margin-bottom:10px;
}
.section-title{
    font-family:var(--font-display);
    font-size:clamp(28px,4vw,48px);
    font-weight:700;
    color:#fff;
}

/* ─── CATEGORY PILLS ─── */
.product-categories{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:center;
    margin-bottom:48px;
}
.cat-pill{
    font-family:var(--font-body);
    font-size:13px;
    font-weight:500;
    padding:10px 22px;
    border-radius:999px;
    border:1px solid var(--dark-border);
    background:transparent;
    color:var(--text-muted);
    cursor:pointer;
    transition:all .3s ease;
}
.cat-pill:hover{
    border-color:var(--gold);
    color:var(--gold);
}
.cat-pill.active{
    background:var(--gold);
    border-color:var(--gold);
    color:var(--dark);
    font-weight:600;
}
.cat-pill.disabled{
    opacity:.25;
    cursor:not-allowed;
    pointer-events:none;
}
.pill-count{
    font-size:11px;
    opacity:.7;
}

/* ─── PRODUCT GRID ─── */
.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(270px,1fr));
    gap:24px;
}

/* ─── CARD ─── */
.product-card{
    background:var(--dark-card);
    border-radius:16px;
    overflow:hidden;
    border:1px solid var(--dark-border);
    transition:all .35s ease;
}
.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 48px rgba(0,0,0,.4);
    border-color:var(--gold-dim);
}

/* ─── CARD IMAGE ─── */
.card-img-wrap{
    position:relative;
    overflow:hidden;
}
.card-img-wrap img{
    width:100%;
    height:200px;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}
.product-card:hover .card-img-wrap img{
    transform:scale(1.05);
}

/* ─── CARD BODY ─── */
.card-body{
    padding:20px 22px 22px;
}
.card-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:12px;
}
.card-title{
    font-family:var(--font-display);
    font-size:17px;
    font-weight:600;
    color:#fff;
    margin:0;
    flex:1;
}
.card-price{
    font-family:var(--font-body);
    font-size:18px;
    font-weight:700;
    color:var(--gold);
    white-space:nowrap;
}
.card-hr{
    height:1px;
    background:var(--dark-border);
    margin:14px 0;
}
.card-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
}

/* ─── BADGE ─── */
.badge{
    display:inline-block;
    padding:4px 12px;
    border-radius:6px;
    font-size:10px;
    font-weight:500;
    letter-spacing:.5px;
    text-transform:uppercase;
    background:rgba(255,210,141,.1);
    color:var(--gold-dim);
    border:1px solid rgba(255,210,141,.15);
}

/* ─── SOLD OUT ─── */
.sold-out{
    position:absolute;
    top:14px;
    right:14px;
    z-index:2;
    background:#ff3b30;
    color:#fff;
    padding:5px 14px;
    border-radius:999px;
    font-size:11px;
    font-weight:600;
    letter-spacing:.5px;
    text-transform:uppercase;
}

/* ─── BUTTON ─── */
.add-btn{
    font-family:var(--font-body);
    padding:8px 20px;
    border:none;
    border-radius:999px;
    background:var(--gold);
    color:var(--dark);
    cursor:pointer;
    font-size:12px;
    font-weight:600;
    letter-spacing:.3px;
    transition:all .25s ease;
}
.add-btn:hover{
    background:#fff;
    color:var(--dark);
}

/* ─── MAP ─── */
.section-map{
    width:100%;
    background:var(--dark);
}
.map-container{
    width:100%;
    line-height:0;
}
.map-container iframe{
    width:100%;
    height:450px;
    display:block;
    filter:grayscale(.3) brightness(.85);
    transition:filter .4s ease;
}
.map-container iframe:hover{
    filter:grayscale(0) brightness(1);
}

/* ─── FOOTER ─── */
.site-footer{
    background:var(--dark);
    padding:0;
    margin-top:0;
}
.footer-inner{
    max-width:1200px;
    margin:0 auto;
    padding:60px 24px 40px;
}
.footer-logo{
    text-align:center;
    margin-bottom:40px;
}
.footer-brand{
    font-family:var(--font-display);
    font-size:28px;
    color:var(--gold);
    margin:0;
}
.footer-hr-top,
.footer-hr-bottom{
    height:1px;
    background:var(--dark-border);
}
.footer-main{
    padding:40px 0;
}
.footer-email-menu{
    text-align:left;
    margin-bottom:0;
}
.footer-email-menu .footer-email a{
    font-family:var(--font-display);
    font-size:clamp(16px,2vw,22px);
    color:#fff;
    text-decoration:none;
    transition:color .3s ease;
}
.footer-email-menu .footer-email a:hover{
    color:var(--gold);
}
.footer-info > .footer-email{
    display:flex;
    align-items:center;
    gap:10px;
}
.footer-info > .footer-email a{
    font-size:14px;
    color:var(--text-muted);
    text-decoration:none;
    transition:color .3s ease;
}
.footer-info > .footer-email a:hover{
    color:var(--gold);
}
.footer-info > .footer-email span{
    font-size:14px;
    color:var(--text-muted);
}
.footer-info{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
    gap:24px 32px;
    text-align:left;
}
.footer-phone a,
.footer-phone {
    display: flex;          
    flex-direction: row;   
    gap: 15px;          
    align-items: center;  
}

.footer-phone span {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    display: inline-block;
    line-height: 1; 
    margin: 0;  
}
.footer-phone a:hover{
    color:var(--gold);
}
.footer-address{
    max-width:220px;
}
.footer-address a,
.footer-address p{
    font-size:14px;
    color:var(--text-muted);
    text-decoration:none;
    line-height:1.8;
    margin:0;
    word-wrap:break-word;
    transition:color .3s ease;
}
.footer-address a:hover{
    color:var(--gold);
}
.footer-time p{
    font-size:14px;
    color:var(--text-muted);
    margin:0;
    line-height:1.8;
}
.footer-email span,
.footer-phone span{
    color:var(--text-muted);
}
.footer-cta{
    display:inline-block;
    padding:12px 32px;
    font-family:var(--font-body);
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    text-decoration:none;
    color:var(--dark);
    background:var(--gold);
    border-radius:999px;
    transition:all .3s ease;
}
.footer-cta:hover{
    background:#fff;
    color:var(--dark);
}
.footer-copy-section{
    padding-top:32px;
    text-align:center;
}
.footer-copy{
    font-size:11px;
    color:var(--text-muted);
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin:0;
}

/* ─── FOOD SHOWCASE ─── */
.section-showcase{
    padding:80px 0 60px;
    overflow:hidden;
}
.showcase-slider{
    overflow:hidden;
    padding:0 24px;
}
.showcase-track{
    display:flex;
    gap:24px;
    animation:showcase-scroll 25s linear infinite;
}
.showcase-track:hover{
    animation-play-state:paused;
}
@keyframes showcase-scroll{
    0%{ transform:translateX(0); }
    100%{ transform:translateX(-50%); }
}
.showcase-card{
    flex:0 0 320px;
    position:relative;
    border-radius:16px;
    overflow:hidden;
    cursor:pointer;
}
.showcase-card img{
    width:100%;
    height:400px;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}
.showcase-card:hover img{
    transform:scale(1.08);
}
.showcase-card-info{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:30px 24px 24px;
    background:linear-gradient(to top,rgba(0,0,0,.85) 0%,transparent 100%);
}
.showcase-card-title{
    font-family:var(--font-display);
    font-size:18px;
    font-weight:600;
    color:#fff;
    margin:0 0 4px;
}
.showcase-card-subtitle{
    font-size:13px;
    color:var(--gold-dim);
    text-transform:uppercase;
    letter-spacing:1px;
}

/* ─── ABOUT SECTION (FLEX) ─── */
.section-about{
    background:var(--dark);
    overflow:hidden;
}
.about-flex{
    display:flex;
    min-height:500px;
}
.about-img-side{
    flex:1;
    min-width:0;
    overflow:hidden;
}
.about-img-side img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}
.about-img-side:hover img{
    transform:scale(1.04);
}
.about-text-side{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:60px 48px;
    background:var(--dark);
    border-left:1px solid var(--dark-border);
}
.about-title{
    font-family:var(--font-display);
    font-size:clamp(28px,4vw,44px);
    font-weight:700;
    color:#fff;
    line-height:1.2;
    margin-bottom:28px;
}
.about-title-accent{
    color:var(--gold);
    font-style:italic;
}
.about-text{
    font-size:15px;
    color:var(--text-muted);
    line-height:1.8;
    margin-bottom:20px;
}
.about-btn{
    display:inline-block;
    font-family:var(--font-body);
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--gold);
    text-decoration:none;
    padding-bottom:4px;
    border-bottom:1px solid var(--gold);
    transition:all .3s ease;
    margin-top:12px;
    align-self:flex-start;
}
.about-btn:hover{
    color:#fff;
    border-color:#fff;
}

/* ─── OPENING HOURS ─── */
.section-opening{
    background:var(--dark-card);
    overflow:hidden;
}
.opening-flex{
    display:flex;
    min-height:500px;
}
.opening-img-side{
    position:relative;
    flex:1;
    min-width:0;
    overflow:hidden;
}
.opening-img-side img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.opening-img-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right,transparent 30%,var(--dark-card) 100%);
}
.opening-text-side{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:60px 48px;
}
.opening-title{
    font-family:var(--font-display);
    font-size:clamp(24px,3vw,36px);
    font-weight:700;
    color:var(--gold);
    margin-bottom:16px;
}
.opening-subtext{
    font-size:15px;
    color:var(--text-muted);
    line-height:1.7;
    margin-bottom:28px;
}
.opening-schedule{
    margin-bottom:28px;
}
.schedule-row{
    display:flex;
    justify-content:space-between;
    padding:8px 0;
    border-bottom:1px solid var(--dark-border);
}
.schedule-row:last-child{
    border-bottom:none;
}
.schedule-day{
    font-size:14px;
    color:var(--text-white);
    font-weight:500;
}
.schedule-time{
    font-size:14px;
    color:var(--text-muted);
}
.opening-contact{
    display:flex;
    gap:32px;
    margin-bottom:28px;
}
.opening-contact-item{
    display:flex;
    align-items:center;
    gap:10px;
}
.contact-icon{
    flex-shrink:0;
}
.contact-label{
    display:none;
}
.opening-contact-item a{
    font-size:14px;
    color:var(--text-white);
    text-decoration:none;
    transition:color .3s ease;
}
.opening-contact-item a:hover{
    color:var(--gold);
}
.opening-contact-item span:not(.contact-label){
    font-size:14px;
    color:var(--text-muted);
}

/* ─── RESPONSIVE ─── */
@media(max-width:768px){
    .hero{ min-height:80vh; }
    .hero-content{ padding:60px 20px 100px; }
    .hero-nav{ bottom:24px; gap:14px; }
    .hero-nav-btn{ width:48px; height:48px; }
    .hero-nav-btn svg{ width:18px; }
    .section-menu{ padding:50px 0 40px; }
    .product-grid{ grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:16px; }
    .card-img-wrap img{ height:160px; }
    .showcase-card{ flex:0 0 260px; }
    .showcase-card img{ height:320px; }
    .about-flex{ flex-direction:column; min-height:auto; }
    .about-img-side{ height:300px; }
    .about-text-side{ padding:40px 24px; border-left:none; border-top:1px solid var(--dark-border); }
    .opening-flex{ flex-direction:column; min-height:auto; }
    .opening-img-side{ height:280px; }
    .opening-img-overlay{ background:linear-gradient(to bottom,transparent 30%,var(--dark-card) 100%); }
    .opening-text-side{ padding:40px 24px; }
    .opening-contact{ flex-direction:column; gap:16px; }
    .map-container iframe{ height:320px; }
    .footer-info{ flex-direction:column; gap:16px; }
    .footer-inner{ padding:40px 20px 30px; }
}
@media(max-width:480px){
    .hero{ min-height:70vh; }
    .product-grid{ grid-template-columns:1fr; }
    .showcase-card{ flex:0 0 220px; }
    .showcase-card img{ height:280px; }
    .about-img-side{ height:220px; }
    .map-container iframe{ height:250px; }
}
</style>