:root {
  --black: #121212;
  --black-2: #1a1a1a;
  --black-3: #222;
  --yellow: #ffe600;
  --yellow-2: #f7c800;
  --white: #f5f5f2;
  --muted: #9a9a94;
  --display: 'Archivo Black', 'Inter', sans-serif;
  --body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); text-transform: uppercase; line-height: 1.05; }
.yellow { color: var(--yellow); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: .9rem 1.8rem; font-weight: 700; font-size: .95rem;
  border-radius: 999px; transition: transform .25s, box-shadow .25s, background .25s, color .25s;
  letter-spacing: .02em;
}
.btn-yellow { background: var(--yellow); color: #111; }
.btn-yellow:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 30px rgba(255, 230, 0, .35); }
.btn-ghost { border: 2px solid rgba(255,255,255,.35); color: var(--white); }
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-3px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5vw; transition: background .35s, padding .35s, box-shadow .35s;
}
.nav.scrolled { background: rgba(18,18,18,.92); backdrop-filter: blur(12px); padding: .7rem 5vw; box-shadow: 0 4px 30px rgba(0,0,0,.5); }
.nav-logo { font-family: var(--display); font-size: 1.35rem; letter-spacing: .02em; }
.nav-logo span { color: var(--yellow); }
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a { font-weight: 600; font-size: .92rem; opacity: .85; position: relative; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px;
  background: var(--yellow); transition: width .3s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: .6rem 1.4rem; font-size: .88rem; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { width: 26px; height: 3px; background: var(--white); border-radius: 2px; transition: .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(18,18,18,.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--display); font-size: 1.5rem; text-transform: uppercase; }
.mobile-menu a.btn { font-family: var(--body); font-size: 1rem; }

/* ---------- Mascot ---------- */
.mascot { overflow: visible; }
.mascot .m-line { fill: none; stroke: var(--yellow); stroke-width: 9; stroke-linecap: round; stroke-linejoin: round; }
.mascot .m-seed { fill: var(--yellow); }
.mascot .leg { fill: none; stroke: #fff; stroke-width: 13; stroke-linecap: round; stroke-linejoin: round; }
/* Leg run-cycle + body bob are SMIL (animateTransform) inside the SVG markup,
   so they work in every browser regardless of CSS transform-box support. */
.mascot .m-speed line { stroke: var(--yellow); stroke-width: 7; stroke-linecap: round; opacity: 0; animation: whoosh 0.84s ease-out infinite; }
.mascot .m-speed line:nth-child(2) { animation-delay: .2s; }
.mascot .m-speed line:nth-child(3) { animation-delay: .4s; }
@keyframes whoosh {
  0% { opacity: 0; transform: translateX(26px); }
  30% { opacity: .8; }
  100% { opacity: 0; transform: translateX(-30px); }
}

.mascot-hero { width: clamp(110px, 16vw, 170px); margin: 0 auto 1.2rem; display: block; transform: rotate(-4deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: -12% 0; background: url('assets/hero.jpg') center/cover no-repeat;
  will-change: transform; transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,18,18,.62) 0%, rgba(18,18,18,.78) 60%, var(--black) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 6.5rem 5vw 7.5rem; max-width: 1000px; width: 100%; }
.hero-kicker { font-weight: 600; letter-spacing: .22em; text-transform: uppercase; font-size: .78rem; color: var(--yellow); margin-bottom: 1.1rem; }
.hero-title { font-size: clamp(2.6rem, 9.5vw, 7.5rem); }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; transform: translateY(110%); animation: riseUp .9s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-title .line:nth-child(2) > span { animation-delay: .12s; }
.hero-title .line:nth-child(3) > span { animation-delay: .24s; }
@keyframes riseUp { to { transform: translateY(0); } }
.hero-sub { margin-top: 1.4rem; font-size: clamp(1rem, 2.2vw, 1.25rem); color: #d8d8d2; }
.hero-sub strong { color: var(--yellow); }
.hero-ctas { margin-top: 2.2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 2;
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.hero-scroll-line { width: 1px; height: 34px; background: var(--muted); overflow: hidden; position: relative; display: block; }
.hero-scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--yellow); animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown { 60%, 100% { top: 100%; } }
@media (max-height: 760px) { .hero-scroll { display: none; } }

/* ---------- Marquee ---------- */
.marquee-wrap { overflow: hidden; padding: 1.1rem 0; }
.marquee {
  position: relative; background: var(--yellow); color: #111;
  width: 104vw; margin-left: -2vw; transform: rotate(-1.2deg);
  overflow: hidden; padding: .9rem 0;
}
.marquee-track { display: flex; gap: 2.2rem; white-space: nowrap; width: max-content; animation: marquee 22s linear infinite; }
.marquee-track span { font-family: var(--display); font-size: 1.25rem; text-transform: uppercase; }
.marquee-track i { font-style: normal; font-size: .8rem; align-self: center; }
@keyframes marquee { to { transform: translateX(-33.333%); } }
.runner {
  position: absolute; top: 50%; left: 0; width: 54px; height: 54px;
  transform: translateY(-58%);
  animation: runAcross 11s linear infinite;
}
.runner .m-line { stroke: #111; stroke-width: 14; }
.runner .leg { stroke: #111; stroke-width: 18; }
@keyframes runAcross {
  from { left: -70px; }
  to { left: calc(100vw + 70px); }
}

/* ---------- Sections ---------- */
.section { padding: 6.5rem 5vw; max-width: 1200px; margin: 0 auto; }
.section-dark { max-width: none; background: var(--black-2); }
.section-dark > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section-head { text-align: center; margin-bottom: 3.2rem; }
.section-head h2 { font-size: clamp(2rem, 5.5vw, 3.6rem); }
.section-head .sub { color: var(--muted); margin-top: .8rem; }
.eyebrow { color: var(--yellow); font-weight: 700; letter-spacing: .25em; text-transform: uppercase; font-size: .78rem; margin-bottom: .8rem; }

/* ---------- Featured cards ---------- */
.featured-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.6rem; }
.card {
  background: var(--black-2); border: 1px solid #2b2b2b; border-radius: 18px; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s, box-shadow .35s;
}
.card:hover { transform: translateY(-8px); border-color: var(--yellow); box-shadow: 0 20px 50px rgba(0,0,0,.55); }
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.card:hover .card-img img { transform: scale(1.07); }
.card-body { padding: 1.4rem 1.5rem 1.6rem; }
.card-top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: .6rem; }
.card-top h3 { font-size: 1.25rem; }
.price { color: var(--yellow); font-weight: 800; white-space: nowrap; }
.inline-price { color: var(--yellow); font-weight: 700; }
.card-body p { color: var(--muted); font-size: .92rem; }
.tag {
  display: inline-block; margin-top: 1rem; font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; background: #2b2b2b; padding: .35rem .8rem; border-radius: 999px;
}

/* ---------- Menu tabs (sticky) ---------- */
.tabs-wrap {
  position: sticky; top: 56px; z-index: 60;
  background: rgba(26,26,26,.94); backdrop-filter: blur(10px);
  margin: 0 -5vw 2.2rem; padding: .8rem 5vw;
  /* .section-dark > * caps children at 1200px; combined with the -5vw
     full-bleed margins that pinned the bar to the left on wide screens */
  max-width: none;
}
.tabs {
  display: flex; gap: .55rem; flex-wrap: nowrap; overflow-x: auto;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  justify-content: flex-start;
}
.tabs::-webkit-scrollbar { display: none; }
@media (min-width: 760px) { .tabs { justify-content: center; } }
.tab {
  font-family: var(--body); font-weight: 700; font-size: .88rem; cursor: pointer; flex-shrink: 0;
  background: none; border: 2px solid #3a3a3a; color: var(--muted);
  padding: .6rem 1.3rem; border-radius: 999px; transition: .25s;
}
.tab:hover { border-color: var(--yellow); color: var(--white); }
.tab.active { background: var(--yellow); border-color: var(--yellow); color: #111; }

.menu-panels { position: relative; }
.panel { display: none; grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr)); gap: 1.1rem; }
.panel.active { display: grid; animation: fadeIn .45s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.menu-item {
  display: flex; gap: 1.1rem; align-items: center;
  background: var(--black); border: 1px solid #2b2b2b; border-radius: 14px; padding: 1rem;
  transition: border-color .3s, transform .3s;
}
.menu-item:hover { border-color: var(--yellow); transform: translateX(4px); }
.menu-item img { width: 92px; height: 92px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.menu-item > div { width: 100%; }
.menu-item h4 {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  font-size: 1.02rem; font-weight: 800; margin-bottom: .25rem;
}
.menu-item p { color: var(--muted); font-size: .86rem; line-height: 1.5; }
.menu-item.no-img { padding-left: 1.3rem; }
.menu-item.sauce { padding-top: .8rem; padding-bottom: .8rem; }
.menu-item.sauce h4 { margin-bottom: 0; }
.menu-item.extras { border-style: dashed; border-color: #3a3a3a; }
.menu-note { text-align: center; color: var(--muted); font-size: .8rem; margin-top: 2.5rem; }

/* ---------- Combos ---------- */
.combos { background: var(--yellow); color: #111; padding: 6rem 5vw; }
.combos-inner { max-width: 1100px; margin: 0 auto; }
.combos .eyebrow.dark { color: #111; opacity: .65; }
.combos h2 { color: #111; }
.combos .outline {
  color: transparent; -webkit-text-stroke: 2px #111;
}
.combo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.combo-card {
  position: relative; background: #111; color: var(--white); border-radius: 18px;
  padding: 2rem 1.8rem 1.8rem; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.combo-card:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 18px 40px rgba(0,0,0,.3); }
.combo-num {
  position: absolute; top: -.6rem; right: .6rem; font-family: var(--display);
  font-size: 4.5rem; color: transparent; -webkit-text-stroke: 2px rgba(255,230,0,.35);
}
.combo-card h3 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--yellow); }
.combo-card ul { list-style: none; margin-bottom: 1.4rem; }
.combo-card li { padding: .3rem 0; font-weight: 600; font-size: .95rem; color: #d8d8d2; }
.combo-card li::before { content: '+ '; color: var(--yellow); font-weight: 800; }
.combo-card li:first-child::before { content: ''; }
.combo-price { font-family: var(--display); font-size: 1.9rem; color: var(--yellow); }

/* ---------- Cocktails ---------- */
.cocktails { background: linear-gradient(135deg, #15120a 0%, var(--black) 60%); padding: 6.5rem 5vw; }
.cocktails-inner {
  max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 4rem; align-items: center;
}
.cocktails-text h2 { font-size: clamp(2rem, 5.5vw, 3.6rem); margin-bottom: 1.2rem; }
.cocktails-text .big { font-size: 1.15rem; color: #d8d8d2; margin-bottom: 2rem; }
.cocktail-item { border-left: 3px solid var(--yellow); padding-left: 1.2rem; margin-bottom: 1.5rem; }
.cocktail-item h4 { display: flex; gap: 1.5rem; align-items: baseline; font-size: 1.15rem; font-weight: 800; }
.cocktail-item p { color: var(--muted); font-size: .9rem; }
.cocktails-img img { border-radius: 20px; transform: rotate(2deg); box-shadow: 0 25px 60px rgba(0,0,0,.6); transition: transform .5s; }
.cocktails-img:hover img { transform: rotate(0deg) scale(1.02); }

/* ---------- Order ---------- */
.order-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.2rem; }
.order-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: .9rem; padding: 1.6rem;
  background: var(--black-2); border: 1px solid #2b2b2b; border-radius: 18px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.order-card:hover { transform: translateY(-6px); border-color: var(--yellow); box-shadow: 0 18px 45px rgba(0,0,0,.5); }
.order-logo { width: 54px; height: 54px; border-radius: 14px; object-fit: cover; }
.order-logo-phone {
  display: flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 14px; background: var(--yellow);
  color: #111; font-size: 1.7rem;
}
.order-name { font-weight: 800; font-size: 1.05rem; }
.order-go { color: var(--muted); font-weight: 700; font-size: .85rem; transition: color .3s; margin-top: auto; }
.order-card:hover .order-go { color: var(--yellow); }

/* ---------- Info ---------- */
.info-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; }
.info-text h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 2rem; }
.info-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.info-list li strong {
  display: block; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: .3rem;
}
.info-list a { border-bottom: 1px solid var(--yellow); }
.info-list a.insta-link { border-bottom: none; display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; }
.insta-link img { width: 24px; height: 24px; }
.hours { display: flex; justify-content: space-between; max-width: 320px; }
.hours .closed { color: #ff5e5e; font-weight: 600; }
.info-map iframe { width: 100%; height: 420px; border: 0; border-radius: 18px; filter: grayscale(.3) contrast(1.05); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid #262626; padding: 3.5rem 5vw; text-align: center; }
.footer-inner { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.footer-lockup { display: flex; align-items: center; gap: 1.1rem; }
.lockup-text {
  font-family: var(--display); font-size: 2.3rem; line-height: .92;
  text-align: left; letter-spacing: .01em;
}
.lockup-text .amp { color: var(--yellow); }
.mascot-footer { width: 84px; }
.footer-inner > p { color: var(--muted); font-size: .95rem; }
.footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; justify-content: center; margin-top: .5rem; }
.footer-links a { font-weight: 700; font-size: .9rem; color: var(--muted); transition: color .25s; }
.footer-links a:hover { color: var(--yellow); }
.copy { font-size: .8rem !important; margin-top: 1rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01s !important; transition-duration: .01s !important; }
  .reveal { opacity: 1; transform: none; }
  .runner { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .cocktails-inner, .info-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .info-map iframe { height: 320px; }
  .tabs-wrap { top: 52px; }
}
@media (max-width: 520px) {
  .section { padding: 4.5rem 6vw; }
  .tabs-wrap { margin: 0 -6vw 2rem; padding: .7rem 6vw; }
  .menu-item img { width: 72px; height: 72px; }
  .menu-item h4 { flex-direction: column; gap: .1rem; align-items: flex-start; }
  .menu-item.sauce h4 { flex-direction: row; justify-content: space-between; width: 100%; }
  .combo-grid { grid-template-columns: 1fr; }
}
