/* ============ 99 GRILL DESIGN SYSTEM ============ */
:root {
  --red: #C10305;          /* sampled from logo */
  --red-dark: #8E0204;
  --red-deep: #5C0102;
  --black: #121011;
  --white: #FFFFFF;
  --cream: #FFF6EE;
  --ink: #1C1819;
  --font-display: 'Lilita One', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-h: 76px;
  --radius: 18px;
  --shadow-lift: 0 18px 40px rgba(18, 16, 17, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, .btn { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.01em; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 0.85em 1.9em;
  border-radius: 999px;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); }
.btn-black { background: var(--black); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-lg { font-size: 1.25rem; padding: 1em 2.3em; }
.btn-block { display: block; width: 100%; }

.placeholder-tag {
  display: block;
  font-size: 0.68rem;
  opacity: 0.55;
  font-style: italic;
  margin-top: 0.35em;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--red);
  box-shadow: 0 4px 24px rgba(18,16,17,0.25);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 20px;
}
.nav-logo img { height: 58px; width: 58px; object-fit: contain; border-radius: 12px; }
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: width 0.2s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav .nav-order { background: var(--white); color: var(--red); border-color: var(--white); }
.nav .nav-order:hover { background: var(--black); color: var(--white); border-color: var(--black); }

.nav-burger {
  display: none;
  background: none; border: none;
  width: 42px; height: 36px;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 4px;
  cursor: pointer;
}
.nav-burger span { display: block; height: 4px; border-radius: 2px; background: var(--white); transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--red);
  z-index: 99;
  display: none;
  padding: 48px 28px;
}
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 30px; align-items: flex-start; }
.mobile-menu a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
}
.mobile-menu .btn { background: var(--white); color: var(--red); font-size: 1.3rem; }

/* ============ HERO ============ */
.hero { height: 300vh; position: relative; background: var(--black); }
.hero-sticky {
  position: sticky; top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* poster behind the video masks black frames while the clip loads/seeks */
  background: var(--black) url('public/media/hero-burger.jpg') center / cover no-repeat;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero-video.ready { opacity: 1; }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,16,17,0.55) 0%, rgba(18,16,17,0.25) 40%, rgba(18,16,17,0.72) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 1100px;
}
.hero-headline {
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 6px 40px rgba(0,0,0,0.45);
}
.hl-line { display: block; overflow: hidden; }
.hl-word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}
.hero.words-in .hl-word { transform: translateY(0); opacity: 1; }
.hl-red { color: var(--red); -webkit-text-stroke: 3px var(--white); paint-order: stroke fill; }
.hero-sub {
  margin-top: 22px;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}
.hero-ctas { margin-top: 34px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.halal-badge {
  position: absolute;
  top: calc(var(--nav-h) + 18px);
  right: 22px;
  z-index: 3;
  width: 92px;
  height: 92px;
  padding: 10px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  object-fit: contain;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  opacity: 0.8;
  z-index: 2;
  text-align: center;
}
.hint-arrow { display: block; animation: bob 1.4s ease-in-out infinite; font-size: 1.2rem; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* ============ DIG IN ============ */
.dig-in {
  background: var(--white);
  padding: 64px 24px 56px;
  text-align: center;
  border-bottom: 4px solid var(--red);
}
.dig-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 34px;
  position: relative;
  display: inline-block;
}
.flame-dot {
  position: absolute;
  top: -14px; right: -26px;
  width: 22px; height: 26px;
  background: var(--red);
  clip-path: polygon(50% 0%, 78% 30%, 100% 62%, 84% 100%, 16% 100%, 0% 62%, 24% 28%);
}
.dig-row {
  display: flex;
  justify-content: center;
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.dig-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 18px;
  min-width: 130px;
  border-radius: var(--radius);
  border: 3px solid transparent;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.dig-item svg {
  width: 58px; height: 58px;
  fill: none;
  stroke: var(--red);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dig-item span {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  font-size: 1rem;
}
.dig-item:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: var(--shadow-lift);
}

/* ============ SECTION HEADS ============ */
.section-head { text-align: center; padding: 0 24px; margin-bottom: 40px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  text-transform: uppercase;
  color: var(--black);
}
.menu-note { margin-top: 10px; font-size: 0.95rem; opacity: 0.65; }

/* ============ MENU ============ */
.menu-section { background: var(--cream); padding: 90px 0 100px; position: relative; }

.menu-tabs-wrap {
  position: sticky;
  top: var(--nav-h);
  z-index: 40;
  background: var(--cream);
  padding: 12px 0;
  box-shadow: 0 10px 18px -14px rgba(18,16,17,0.35);
}
.menu-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 24px;
  max-width: 1280px;
  margin: 0 auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex: 0 0 auto;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  padding: 0.65em 1.4em;
  border-radius: 999px;
  border: 3px solid var(--black);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.menu-tab:hover { transform: translateY(-2px); }
.menu-tab.active { background: var(--red); border-color: var(--red); color: var(--white); }

.menu-panels { max-width: 1280px; margin: 34px auto 0; padding: 0 24px; }
.menu-panel { display: none; }
.menu-panel.active { display: block; animation: panelIn 0.35s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.byo-banner {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.byo-flame {
  flex: 0 0 auto;
  width: 34px; height: 40px;
  background: var(--white);
  clip-path: polygon(50% 0%, 78% 30%, 100% 62%, 84% 100%, 16% 100%, 0% 62%, 24% 28%);
  margin-top: 4px;
}
.byo-banner h3 { text-transform: uppercase; font-size: 1.3rem; margin-bottom: 6px; }
.byo-banner p { font-size: 0.95rem; line-height: 1.55; opacity: 0.95; }
.byo-banner strong { font-weight: 800; }

.cat-note { margin: -8px 0 22px; font-size: 0.95rem; opacity: 0.7; font-style: italic; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px 22px;
  border: 3px solid transparent;
  box-shadow: 0 6px 18px rgba(18,16,17,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 46px; height: 6px;
  background: var(--red);
  border-radius: 0 0 6px 0;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--red);
}
.menu-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
  padding-right: 92px;
}
.menu-card p { font-size: 0.92rem; line-height: 1.5; color: #4b4344; }
.menu-price {
  position: absolute;
  top: 24px; right: 22px;
  font-family: var(--font-display);
  color: var(--red);
  font-size: 1.1rem;
  max-width: 96px;
  text-align: right;
  line-height: 1.15;
}
.card-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.3em 0.75em;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
  transform: translateY(-2px);
}
.tag-spicy { background: var(--red); color: var(--white); }
.tag-veg { background: #1E7B34; color: var(--white); }

/* ============ STORY ============ */
.story {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--black);
}
.bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.story-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(18,16,17,0.85) 0%, rgba(18,16,17,0.45) 55%, rgba(18,16,17,0.15) 100%);
}
.story-copy {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 560px;
  padding: 100px 24px 100px 7vw;
}
.story-copy h2 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  text-transform: uppercase;
  line-height: 1.02;
  margin-bottom: 20px;
}
.story-copy p { font-size: 1.1rem; line-height: 1.65; opacity: 0.92; }

/* ============ REVIEWS ============ */
.reviews { background: var(--white); padding: 90px 0; position: relative; }
.carousel { max-width: 860px; margin: 0 auto; padding: 0 24px; overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.review-card {
  flex: 0 0 100%;
  border-radius: var(--radius);
  padding: 44px 40px;
  text-align: center;
  position: relative;
}
.review-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.35;
  margin-bottom: 18px;
}
.review-card figcaption { font-weight: 600; font-size: 0.95rem; }
.review-stars { color: #E8A200; margin-left: 8px; letter-spacing: 2px; }
.accent-red { background: var(--red); color: var(--white); }
.accent-red .review-stars { color: #FFD34D; }
.accent-black { background: var(--black); color: var(--white); }
.accent-cream { background: var(--cream); color: var(--ink); border: 3px solid var(--red); }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 26px;
}
.carousel-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 3px solid var(--black);
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.carousel-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-2px); }
.carousel-dots { display: flex; gap: 9px; }
.carousel-dots button {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(18,16,17,0.22);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.carousel-dots button.active { background: var(--red); transform: scale(1.25); }

/* ============ ORDER CTA ============ */
.order-cta {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--red-deep);
}
.order-shade { position: absolute; inset: 0; background: rgba(18,16,17,0.5); }
.order-copy { position: relative; z-index: 2; color: var(--white); padding: 110px 24px; }
.order-copy h2 {
  font-size: clamp(3.4rem, 10vw, 8rem);
  text-transform: uppercase;
  margin-bottom: 30px;
  text-shadow: 0 6px 40px rgba(0,0,0,0.5);
}
.order-sub {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.85;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}

/* ============ FOOTER ============ */
.footer { background: var(--black); color: var(--white); padding: 74px 24px 30px; }
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 44px;
}
.signup { display: flex; gap: 10px; margin-top: 14px; }
.signup input {
  flex: 1;
  min-width: 0;
  padding: 0.85em 1.1em;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
}
.signup input::placeholder { color: rgba(255,255,255,0.5); }
.signup input:focus { outline: none; border-color: var(--red); }
.signup-thanks { color: #7CE38B; font-weight: 600; margin-top: 12px; }
.signup-error { color: #FF9B9B; font-weight: 600; margin-top: 12px; }
.footer-logo { width: 92px; border-radius: 16px; margin-bottom: 16px; }
.footer-tag { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.9; }
.socials { display: flex; gap: 14px; margin-top: 18px; }
.socials a {
  width: 42px; height: 42px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.socials a:hover { border-color: var(--red); background: var(--red); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; fill: none; stroke: var(--white); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-order { margin-top: 20px; }
.footer-col h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  filter: brightness(1.6);
  margin-bottom: 14px;
}
.footer-col p { font-size: 0.95rem; line-height: 1.7; opacity: 0.85; margin-bottom: 10px; }
.footer-col a:hover { text-decoration: underline; }
.hours-lead {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  opacity: 1 !important;
  margin-bottom: 6px !important;
}
.footer-legal {
  max-width: 1280px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: grid;
  gap: 10px;
}
.footer-legal p { font-size: 0.72rem; line-height: 1.6; opacity: 0.55; }

/* ============ STICKY MOBILE ORDER BAR ============ */
.sticky-order {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(18,16,17,0.92);
  backdrop-filter: blur(8px);
}

/* ============ GRAIN OVERLAY ============ */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ REVEAL ON SCROLL ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  /* brand takes the full width so Find Us / Hours pair up evenly below it */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .nav .nav-order { display: none; }
  .nav-burger { display: flex; }
  .nav-logo img { height: 46px; width: 46px; }

  .dig-row {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 4px 8px 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .dig-row::-webkit-scrollbar { display: none; }
  .dig-item { min-width: 108px; padding: 16px 12px; }
  .dig-item svg { width: 46px; height: 46px; }

  .halal-badge { width: 64px; height: 64px; padding: 7px; top: calc(var(--nav-h) + 12px); right: 14px; }

  .menu-grid { grid-template-columns: 1fr; }
  .story-copy { padding: 80px 24px; }

  .sticky-order { display: block; }
  .footer { padding-bottom: 96px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-ctas .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hl-word, .reveal, .carousel-track { transition: none; }
  .hint-arrow { animation: none; }
}
