:root{
--bg:#0b0b0c;
--text:#f2f2f2;
--muted:#b7b7b7;
--gold:#d6b35a;
--line:#23232b;
--radius:16px;
--shadow:0 10px 30px rgba(0,0,0,.35);
}
 
*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
background:linear-gradient(180deg,var(--bg),#08080a);
color:var(--text);
}

.wrap{
max-width:1100px;
margin:0 auto;
padding:0 18px;
}

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

.header{
position:sticky;
top:0;
z-index:20;
background:rgba(10,10,12,.75);
backdrop-filter:blur(10px);
border-bottom:1px solid rgba(255,255,255,.06);
}

.header__inner{
display:flex;
align-items:center;
justify-content:space-between;
padding:12px 0;
gap:12px;
}

.brand{
display:flex;
align-items:center;
gap:10px;
}

.brand__logo{
width:44px;
height:44px;
border-radius:14px;
display:grid;
place-items:center;
background:radial-gradient(circle at 30% 30%,#2c2c36,#121218);
border:1px solid rgba(255,255,255,.08);
color:var(--gold);
font-weight:800;
}

.brand__title{font-weight:800}
.brand__sub{font-size:12px;color:var(--muted)}

.nav{
display:flex;
gap:14px;
align-items:center;
}

.nav a{
font-size:14px;
opacity:.9;
}

.nav__btn{
display:none;
background:#14141a;
border:1px solid rgba(255,255,255,.08);
color:#fff;
border-radius:12px;
padding:10px 12px;
}

.hero{
padding:34px 0 10px;
}

.hero__inner{
display:grid;
grid-template-columns:1.2fr .8fr;
gap:20px;
}

.hero__copy h1{
margin:0 0 10px;
font-size:40px;
line-height:1.05;
}

.hero__copy p{
margin:0 0 16px;
color:var(--muted);
max-width:58ch;
}

.hero__cta{
display:flex;
gap:10px;
flex-wrap:wrap;
margin-bottom:14px;
}

.hero__meta{
display:flex;
gap:8px;
flex-wrap:wrap;
}

.pill{
font-size:12px;
border:1px solid rgba(255,255,255,.10);
background:rgba(255,255,255,.04);
padding:8px 10px;
border-radius:999px;
}

.section{
padding:34px 0;
}

.section--alt{
background:linear-gradient(180deg,#0d0d11,#09090b);
}

.section__head{
margin-bottom:14px;
}

.section__head h2{
margin:0 0 8px;
font-size:26px;
}

.section__head p{
margin:0;
color:var(--muted);
}

.btn{
border-radius:14px;
padding:12px 14px;
border:1px solid rgba(255,255,255,.10);
background:rgba(255,255,255,.04);
color:#fff;
cursor:pointer;
display:inline-flex;
justify-content:center;
align-items:center;
}

.btn--primary{
background:linear-gradient(180deg,#f0d07a,#caa14b);
border:1px solid rgba(0,0,0,.25);
color:#111;
font-weight:700;
}

.btn--ghost{
background:rgba(255,255,255,.02);
}

.btn-row{
display:flex;
gap:10px;
flex-wrap:wrap;
margin-top:12px;
}

.card,
.panel{
background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
border:1px solid rgba(255,255,255,.08);
border-radius:var(--radius);
padding:14px;
box-shadow:var(--shadow);
}

.row{
display:flex;
align-items:center;
justify-content:space-between;
}

.input{
width:100%;
background:#0b0b10;
color:#fff;
border:1px solid rgba(255,255,255,.10);
border-radius:14px;
padding:12px;
}

.grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:12px;
}

.item{
background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
border:1px solid rgba(255,255,255,.08);
border-radius:var(--radius);
padding:14px;
}

.order{
display:grid;
grid-template-columns:1fr 1fr;
gap:14px;
}

.small{font-size:12px}
.muted{color:var(--muted)}

/* PHOTOS */

#photos .wrap{
max-width:1100px;
}

.photos-grid-compact{
display:grid;
grid-template-columns:1.05fr .8fr .8fr;
gap:12px;
margin-top:18px;
}

.photo-card{
position:relative;
overflow:hidden;
border-radius:16px;
display:block;
background:#111;
border:1px solid rgba(255,255,255,.06);
box-shadow:0 8px 22px rgba(0,0,0,.22);
}

.photo-card img{
width:100%;
display:block;
object-fit:cover;
aspect-ratio:16/9;
}

.photo-card.photo-card-lg img{
aspect-ratio:16/10;
}

.photo-label{
position:absolute;
left:10px;
bottom:10px;
background:rgba(0,0,0,.55);
color:#fff;
padding:6px 10px;
border-radius:999px;
font-size:.82rem;
font-weight:600;
}

.reviews{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:12px;
}

.review{
background:rgba(0,0,0,.18);
border:1px solid rgba(255,255,255,.08);
border-radius:var(--radius);
padding:12px;
}

.contact{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:12px;
}

.footer{
margin-top:18px;
padding-top:12px;
border-top:1px solid rgba(255,255,255,.08);
}

@media (max-width:920px){
.hero__inner{grid-template-columns:1fr}
.grid{grid-template-columns:repeat(2,1fr)}
.order{grid-template-columns:1fr}
.reviews{grid-template-columns:repeat(2,1fr)}
.contact{grid-template-columns:1fr}

.nav{display:none}
.nav__btn{display:inline-flex}

.nav.is-open{
display:flex;
flex-direction:column;
position:absolute;
right:18px;
top:64px;
background:#0f0f14;
border:1px solid rgba(255,255,255,.10);
padding:12px;
border-radius:16px;
}
}

@media (max-width:768px){
.photos-grid-compact{
grid-template-columns:1fr;
}
}

@media (max-width:640px){
.grid{grid-template-columns:1fr}
.reviews{grid-template-columns:1fr}
.hero__copy h1{font-size:32px}
}
/* ===== LIGHTBOX MENU GALLERY ===== */

.lightbox{
position:fixed;
inset:0;
z-index:9999;
display:none;
}

.lightbox.is-open{
display:block;
}

.lightbox__backdrop{
position:absolute;
inset:0;
background:rgba(0,0,0,.78);
backdrop-filter:blur(4px);
}

.lightbox__dialog{
position:relative;
width:min(1100px, calc(100% - 24px));
max-height:calc(100vh - 24px);
margin:12px auto;
background:#111216;
border:1px solid var(--line);
border-radius:22px;
overflow:hidden;
box-shadow:0 20px 80px rgba(0,0,0,.45);
}

.lightbox__close{
position:absolute;
top:12px;
right:12px;
z-index:3;
width:42px;
height:42px;
border-radius:999px;
border:1px solid var(--line);
background:rgba(20,20,24,.9);
color:#fff;
font-size:18px;
cursor:pointer;
}

.lightbox__content{
display:grid;
grid-template-columns:1.1fr .9fr;
min-height:620px;
}

.lightbox__media{
background:#0a0a0c;
}

.lightbox__media img{
display:block;
width:100%;
height:100%;
object-fit:cover;
}

.lightbox__info{
padding:28px 24px 24px;
overflow:auto;
}

.lightbox__price{
margin-bottom:14px;
font-size:1.2rem;
font-weight:700;
color:var(--gold);
}

.lightbox__desc{
color:var(--muted);
line-height:1.65;
margin-bottom:22px;
}

.lightbox__addons,
.lightbox__sauces{
margin-bottom:20px;
padding:16px;
border:1px solid var(--line);
border-radius:16px;
background:#0d0e12;
}

.lightbox__addons ul{
margin:0;
padding-left:18px;
}

.lightbox__addons li{
margin-bottom:6px;
color:var(--muted);
}

.lightbox__actions{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-top:10px;
}

@media (max-width:860px){

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

.lightbox__media img{
max-height:42vh;
}

}
.photo-trigger{
padding:0;
cursor:pointer;
appearance:none;
-webkit-appearance:none;
text-align:left;
color:inherit;
font:inherit;
}

.addons-box {
  margin: 12px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.02);
}

.addons-summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.addons-summary::-webkit-details-marker {
  display: none;
}

.addons-list {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.addon-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.item .label {
  display: block;
  margin: 10px 0 6px;
  font-size: 14px;
  font-weight: 600;
}

.choice-box{
  margin:14px 0;
  padding:12px;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(255,255,255,.02);
}

.choices-list,
.addons-list{
  display:grid;
  gap:10px;
  margin-top:10px;
}

.addon-option{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#111114;
  cursor:pointer;
}

.addon-option input{
  margin-top:3px;
}

.addons-box{
  margin:14px 0;
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 12px;
  background:rgba(255,255,255,.02);
}

.addons-summary{
  cursor:pointer;
  font-weight:600;
  color:var(--gold);
}

.choice-box .label,
.addons-box .label{
  font-weight:600;
}
.gallery-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  display:none;
  z-index:1000;
  padding:40px;
  overflow:auto;
}

.gallery-modal.active{
  display:block;
}

.gallery-content{
  max-width:1100px;
  margin:auto;
}

.gallery-close{
  font-size:34px;
  cursor:pointer;
  color:white;
  float:right;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:16px;
  margin-top:30px;
}

.gallery-grid img{
  width:100%;
  border-radius:12px;
  cursor:pointer;
  transition:transform .2s;
}

.gallery-grid img:hover{
  transform:scale(1.05);
}
.truck{
  padding:80px 0;
}

.truck-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
  margin-top:40px;
}

.truck-card{
  border:1px solid var(--line);
  padding:24px;
  border-radius:var(--radius);
  background:#111;
  transition:transform .2s ease;
}

.truck-card:hover{
  transform:translateY(-5px);
}

.truck-card h3{
  color:var(--gold);
  margin-bottom:10px;
}

.truck-cta{
  margin-top:50px;
  text-align:center;
}

.btn-primary{
  display:inline-block;
  padding:14px 26px;
  background:var(--gold);
  color:#000;
  border-radius:10px;
  font-weight:600;
}
.truck-exp{
  padding:90px 0;
}

.exp-title{
  text-align:center;
  font-size:32px;
}

.exp-sub{
  text-align:center;
  color:var(--muted);
  margin-bottom:50px;
}

.exp-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:28px;
}

.exp-card{
  background:#111;
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:transform .25s ease;
}

.exp-card:hover{
  transform:translateY(-6px);
}

.exp-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.exp-content{
  padding:18px;
}

.exp-content h3{
  color:var(--gold);
}

.exp-cta{
  text-align:center;
  margin-top:50px;
}

.exp-button{
  background:var(--gold);
  padding:16px 32px;
  border-radius:12px;
  color:black;
  font-weight:600;
}
