:root{
  --black:#070707;
  --soft-black:#111111;
  --yellow:#ffc400;
  --yellow-dark:#e2a900;
  --white:#ffffff;
  --muted:#b7b7b7;
  --line:rgba(255,255,255,.13);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Inter,Arial,sans-serif;
  background:var(--black);
  color:var(--white);
  line-height:1.5;
  overflow-x:hidden;
}

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

img{
  max-width:100%;
  display:block;
}

/* =========================
HEADER
========================= */

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  display:grid;
  grid-template-columns:1fr auto auto;
  align-items:center;
  gap:34px;
  padding:34px 6vw;
  background:linear-gradient(to bottom,rgba(0,0,0,.78),rgba(0,0,0,0));
}

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

.nav a{
  font-family:'Bebas Neue',sans-serif;
  font-size:28px;
  text-transform:uppercase;
  letter-spacing:1px;
  color:#fff;
  transition:.2s;
}

.nav a:first-child{
  color:var(--yellow);
}

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

.call-btn{
  border:2px solid var(--yellow);
  border-radius:999px;
  padding:14px 26px;
  font-family:'Bebas Neue',sans-serif;
  font-size:27px;
  letter-spacing:1px;
  color:#fff;
  background:rgba(0,0,0,.35);
  transition:.2s;
  box-shadow:0 0 18px rgba(255,196,0,.15);
}

.call-btn:hover{
  background:var(--yellow);
  color:#111;
}

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

.hero-image-only{
  min-height:100vh;
  background:
  linear-gradient(rgba(0,0,0,.08),rgba(0,0,0,.08)),
  url('uploads/C5FF63D2-D7F2-432C-8C3A-B372B7F0F8C9.jpeg')
  center center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:flex-end;
  padding:0 6vw 80px;
}

.hero-buttons{
  position:relative;
  z-index:5;
  display:flex;
  gap:18px;
}

/* =========================
BUTTONS
========================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:18px 34px;
  font-family:'Bebas Neue',sans-serif;
  font-size:28px;
  letter-spacing:1px;
  text-transform:uppercase;
  transition:.2s;
}

.btn.primary{
  background:var(--yellow);
  color:#111;
  box-shadow:0 10px 30px rgba(255,196,0,.25);
}

.btn.primary:hover{
  background:#fff;
}

.btn.ghost{
  border:2px solid rgba(255,255,255,.85);
  color:#fff;
  background:rgba(0,0,0,.35);
}

.btn.ghost:hover{
  border-color:var(--yellow);
  color:var(--yellow);
}

.btn.full{
  width:100%;
  margin-top:14px;
}

/* =========================
SECTIONS
========================= */

.section{
  padding:110px 6vw;
}

.eyebrow{
  color:var(--yellow);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:12px;
  font-size:13px;
}

h2{
  font-family:'Bebas Neue',sans-serif;
  line-height:.9;
  text-transform:uppercase;
  font-size:clamp(48px,6vw,86px);
  letter-spacing:1px;
  margin-bottom:18px;
}

.section-head{
  max-width:850px;
  margin-bottom:42px;
}

.section-head p{
  color:var(--muted);
  font-size:18px;
}

/* =========================
CARDS
========================= */

.cards-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:22px;
}

.food-card{
  background:var(--soft-black);
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  min-height:430px;
  display:flex;
  flex-direction:column;
}

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

.food-card div{
  padding:24px;
}

.tag{
  display:inline-block;
  background:rgba(255,196,0,.12);
  color:var(--yellow);
  border:1px solid rgba(255,196,0,.35);
  padding:7px 12px;
  border-radius:99px;
  font-weight:900;
  font-size:12px;
  text-transform:uppercase;
  margin-bottom:14px;
}

.food-card h3{
  font-size:28px;
  margin-bottom:8px;
}

.food-card p{
  color:var(--muted);
}

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

.menu-section{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:50px;
  align-items:center;
  background:linear-gradient(180deg,#080808,#111);
}

.menu-text p{
  color:var(--muted);
  font-size:18px;
  margin-bottom:25px;
}

.menu-card{
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  box-shadow:0 25px 70px rgba(0,0,0,.45);
}

.menu-card img{
  width:100%;
  height:auto;
}

/* =========================
STORY
========================= */

.story{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:55px;
  align-items:center;
}

.story-img img{
  border-radius:34px;
  height:560px;
  width:100%;
  object-fit:cover;
}

.story-content p{
  color:var(--muted);
  font-size:18px;
}

.stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:32px;
}

.stats div{
  border-left:2px solid var(--yellow);
  padding-left:16px;
}

.stats strong{
  display:block;
  font-size:18px;
  text-transform:uppercase;
}

/* =========================
ORDER BANNER
========================= */

.order-banner{
  margin:0 6vw 70px;
  padding:70px 30px;
  border-radius:38px;
  text-align:center;
  background:radial-gradient(circle at top,var(--yellow-dark),#141414 38%,#090909 100%);
  border:1px solid rgba(255,196,0,.3);
}

.order-banner p{
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:2px;
}

.order-banner h2{
  font-size:clamp(54px,8vw,112px);
}

.order-actions{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}

/* =========================
CONTACT
========================= */

.contact{
  display:grid;
  grid-template-columns:1fr .7fr;
  gap:30px;
  background:#0d0d0d;
}

.contact p{
  color:var(--muted);
  font-size:18px;
  margin-bottom:12px;
}

.contact-box{
  background:#161616;
  border:1px solid var(--line);
  border-radius:30px;
  padding:32px;
}

.contact-box h3{
  font-size:28px;
  margin-bottom:12px;
}

.highlight{
  font-family:'Bebas Neue',sans-serif;
  font-size:42px!important;
  color:var(--yellow)!important;
}

/* =========================
FOOTER
========================= */

.footer{
  padding:34px 6vw;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid var(--line);
  color:var(--muted);
}

.footer strong{
  font-family:'Bebas Neue',sans-serif;
  font-size:38px;
}

.footer span{
  color:var(--yellow);
}

/* =========================
MOBILE
========================= */

@media(max-width:900px){

  .site-header{
    display:flex;
    justify-content:flex-end;
    padding:18px 20px;
    background:rgba(0,0,0,.58);
    backdrop-filter:blur(10px);
  }

  .nav{
    display:none;
  }

  .call-btn{
    font-size:18px;
    padding:10px 16px;
  }

  .hero-image-only{
    min-height:100vh;
    background-position:center center;
    padding:0 22px 35px;
  }

  .hero-buttons{
    width:100%;
    flex-direction:column;
    gap:12px;
  }

  .btn{
    width:100%;
    font-size:22px;
    padding:15px 24px;
  }

  .section{
    padding:70px 22px;
  }

  .cards-grid,
  .menu-section,
  .story,
  .contact{
    grid-template-columns:1fr;
  }

  .food-card{
    min-height:auto;
  }

  .food-card img{
    height:260px;
  }

  .story-img img{
    height:420px;
  }

  .order-banner{
    margin:0 22px 50px;
    padding:50px 22px;
  }

  .footer{
    flex-direction:column;
    text-align:center;
  }
}