:root{
    --bg:#0d0d0d;
    --panel:#171717;
    --soft:#232323;
    --text:#f8f2e8;
    --muted:#cfc6b7;
    --gold:#d5a84b;
    --red:#9f1d20;
    --line:#343434;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:#111;
    color:var(--text);
    line-height:1.5;
}
a{color:inherit;text-decoration:none}
.topbar{
    position:sticky;
    top:0;
    z-index:10;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:16px clamp(18px,4vw,60px);
    background:rgba(13,13,13,.96);
    border-bottom:1px solid var(--line);
}
.brand{display:flex;align-items:center;gap:14px}
.brand h1{font-size:20px;margin:0}
.brand p{margin:2px 0 0;color:var(--muted);font-size:13px}
.logo{
    width:48px;height:48px;border-radius:50%;
    display:grid;place-items:center;
    font-weight:800;
    color:#111;background:var(--gold);
    border:2px solid #f1d28a;
}
.cart-link{
    background:var(--gold);
    color:#111;
    padding:10px 14px;
    border-radius:999px;
    font-weight:700;
}
.cart-link span{
    display:inline-grid;place-items:center;
    width:23px;height:23px;border-radius:50%;
    background:#111;color:#fff;margin-left:6px;
}
.hero{
    min-height:440px;
    display:flex;align-items:center;
    padding:60px clamp(20px,7vw,100px);
    background:
        linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.35)),
        radial-gradient(circle at 80% 40%, #6b241f 0, #28110f 33%, #111 67%);
}
.hero-content{max-width:680px}
.hero h2{font-size:clamp(38px,6vw,72px);line-height:1.03;margin:18px 0}
.hero p{font-size:18px;color:var(--muted);max-width:580px}
.badge{
    display:inline-block;
    padding:8px 12px;
    border:1px solid rgba(213,168,75,.5);
    color:#f7d992;border-radius:999px;
    background:rgba(213,168,75,.1);
}
.container{width:min(1180px,92%);margin:0 auto;padding:55px 0}
.narrow{width:min(780px,92%)}
.section-heading{
    display:flex;justify-content:space-between;align-items:end;
    gap:20px;margin-bottom:35px
}
.section-heading h2,.container>h2{font-size:34px;margin:4px 0}
.eyebrow{text-transform:uppercase;letter-spacing:.16em;color:var(--gold);font-size:12px;font-weight:800}
.menu-section{margin:42px 0}
.menu-section h3{font-size:25px;border-bottom:1px solid var(--line);padding-bottom:10px}
.menu-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.menu-card{
    display:flex;flex-direction:column;justify-content:space-between;
    min-height:180px;padding:22px;border-radius:18px;
    background:var(--panel);border:1px solid var(--line);
}
.menu-card h4{font-size:21px;margin:0 0 8px}
.menu-card p{color:var(--muted);margin:0}
.card-bottom{display:flex;justify-content:space-between;align-items:center;gap:12px;margin-top:22px}
.card-bottom strong{color:var(--gold);font-size:18px}
.btn{
    display:inline-block;border:0;cursor:pointer;
    padding:12px 17px;border-radius:10px;
    font-weight:800;font-size:14px;
}
.btn.primary,.btn.small{background:var(--gold);color:#111}
.btn.secondary{background:var(--soft);color:#fff;border:1px solid var(--line)}
.btn.small{padding:9px 12px}
.btn.full{width:100%;text-align:center;font-size:16px;padding:15px}
.fineprint{color:#9e978c;font-size:12px}
footer{text-align:center;padding:35px;border-top:1px solid var(--line);color:var(--muted)}
.back-link{color:var(--gold)}
.empty,.cart-box,.summary,.checkout-form{
    padding:24px;border:1px solid var(--line);
    border-radius:18px;background:var(--panel)
}
.empty{text-align:center}
.cart-row{
    display:grid;grid-template-columns:1fr 80px 110px 42px;
    gap:15px;align-items:center;padding:18px 0;border-bottom:1px solid var(--line)
}
.cart-row:last-of-type{border-bottom:0}
.cart-info h3{margin:0 0 5px}
.cart-info p{margin:0;color:var(--muted)}
.qty,input,select,textarea{
    width:100%;padding:12px 13px;border-radius:10px;
    border:1px solid #424242;background:#0f0f0f;color:#fff;
    font:inherit
}
.qty{text-align:center}
.remove{
    width:38px;height:38px;border-radius:50%;border:1px solid #5a3131;
    background:#2a1515;color:#ffb1b1;font-size:22px;cursor:pointer
}
.cart-actions{padding-top:20px;text-align:right}
.summary{margin-top:18px}
.summary>div{display:flex;justify-content:space-between;padding:9px 0}
.summary .total{font-size:22px;border-top:1px solid var(--line);margin-top:8px;padding-top:18px}
.checkout-form{display:grid;gap:17px;margin-top:25px}
.checkout-form label{display:grid;gap:7px;font-weight:700}
.checkout-total{display:flex;justify-content:space-between;font-size:22px;padding:18px 0;border-top:1px solid var(--line)}
.alert{padding:14px 18px;background:#35191a;border:1px solid #6c2b2e;border-radius:12px;color:#ffc4c4}
.alert p{margin:4px 0}
.success{text-align:center;padding-top:110px}
.success-icon{
    margin:0 auto 20px;width:74px;height:74px;border-radius:50%;
    display:grid;place-items:center;background:var(--gold);color:#111;font-size:38px;font-weight:900
}
@media(max-width:760px){
    .menu-grid{grid-template-columns:1fr}
    .section-heading{align-items:start;flex-direction:column}
    .topbar{padding:12px 14px}
    .brand p{display:none}
    .brand h1{font-size:16px}
    .logo{width:40px;height:40px}
    .cart-row{grid-template-columns:1fr 70px}
    .cart-row strong{grid-column:1}
    .remove{grid-column:2;grid-row:2}
}
