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

:root {
  --bg: #0c0c0d;
  --bg-soft: #151517;
  --card: #1b1b1d;
  --gold: #e8a33d;
  --gold-soft: #f4c873;
  --text: #f2efe9;
  --muted: #a8a4a0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', Arial, sans-serif;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 50px;
  background: rgba(12,12,13,0.85);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid #232323;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 2px;
}
.logo span { color: var(--gold); }

.tabs { display: flex; gap: 10px; }

.tab-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active {
  background: var(--gold);
  color: #1a1a1a;
  font-weight: 600;
}

/* TAB PAGES */
.tab-page { display: none; animation: fadeIn 0.5s ease; }
.tab-page.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 70px 60px 30px;
  gap: 40px;
  min-height: 70vh;
}

.hero-text { max-width: 460px; }

.kicker {
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 14px;
  font-weight: 600;
}

.hero-text h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 22px;
  font-weight: 800;
}

.sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn {
  background: var(--gold);
  color: #1a1a1a;
  border: none;
  padding: 15px 34px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 20px rgba(232,163,61,0.25);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(232,163,61,0.4); }

/* BURGER STAGE — cinematic macro shot */
.burger-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 320px;
}

.cine-frame {
  position: relative;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 50% 40%, #1a1410 0%, #0c0c0d 65%, #050505 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), inset 0 0 60px rgba(0,0,0,0.6);
}

.bokeh {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.35;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  animation: drift 9s ease-in-out infinite;
}
.b1 { width: 90px; height: 90px; top: 12%; left: 8%; animation-delay: 0s; }
.b2 { width: 60px; height: 60px; bottom: 14%; right: 10%; animation-delay: 2s; background: radial-gradient(circle, #ff9d4d 0%, transparent 70%); }
.b3 { width: 45px; height: 45px; top: 60%; left: 14%; animation-delay: 4s; }

@keyframes drift {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.12); }
}

.vignette {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, transparent 45%, rgba(0,0,0,0.55) 85%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

.plate {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, #333335 0%, #1c1c1e 55%, #0e0e0f 100%);
  box-shadow:
    0 0 0 2px #3a3a3a,
    0 0 0 9px #161616,
    0 20px 50px rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: plateBob 6s ease-in-out infinite;
}

.plate-rim {
  position: absolute;
  width: 86%;
  height: 86%;
  border-radius: 50%;
  box-shadow: inset 0 6px 14px rgba(255,255,255,0.05), inset 0 -10px 20px rgba(0,0,0,0.5);
}

@keyframes plateBob {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
  50% { transform: translate(-50%, -50%) rotate(2.5deg); }
}

.plate-shadow {
  position: absolute;
  bottom: 56px;
  width: 58%;
  height: 20px;
  background: rgba(0,0,0,0.5);
  filter: blur(10px);
  border-radius: 50%;
}

.steam {
  position: absolute;
  width: 14px;
  height: 60px;
  bottom: 150px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  filter: blur(6px);
  border-radius: 50%;
  opacity: 0;
  animation: rise 4s ease-in infinite;
}
.s1 { left: 42%; animation-delay: 0.3s; }
.s2 { left: 50%; animation-delay: 1.4s; }
.s3 { left: 58%; animation-delay: 2.5s; }

@keyframes rise {
  0% { opacity: 0; transform: translateY(0) scaleX(1); }
  20% { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-90px) scaleX(1.6); }
}

.burger-tower {
  position: relative;
  width: 210px;
  height: 210px;
}

.layer {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 182px;
  height: 34px;
  border-radius: 50%;
  opacity: 0;
  overflow: visible;
}

/* ---- BUN BOTTOM (toasted, glossy) ---- */
.bun-bottom {
  background:
    radial-gradient(ellipse at 35% 25%, rgba(255,255,255,0.18), transparent 45%),
    linear-gradient(180deg, #d49856 0%, #b5733a 55%, #8f5a2c 100%);
  height: 34px;
  bottom: 28px;
  z-index: 1;
  box-shadow: 0 8px 14px rgba(0,0,0,0.45), inset 0 -8px 10px rgba(0,0,0,0.3);
}

/* ---- ONION (thin translucent rings) ---- */
.onion {
  height: 12px;
  bottom: 56px;
  z-index: 2;
  background: transparent;
}
.onion span {
  position: absolute;
  top: 0;
  width: 22px;
  height: 12px;
  border: 3px solid rgba(230,210,235,0.85);
  border-radius: 50%;
  background: rgba(210,180,220,0.25);
}
.onion span:nth-child(1) { left: 8px; transform: rotate(-8deg); }
.onion span:nth-child(2) { left: 42px; transform: rotate(5deg); }
.onion span:nth-child(3) { left: 80px; transform: rotate(-4deg); }
.onion span:nth-child(4) { left: 118px; transform: rotate(7deg); }
.onion span:nth-child(5) { left: 152px; transform: rotate(-6deg); }

/* ---- TOMATO (juicy slice with seed pockets) ---- */
.tomato {
  height: 13px;
  bottom: 66px;
  z-index: 3;
  background: transparent;
}
.tomato span {
  position: absolute;
  top: 0;
  width: 42px;
  height: 13px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,255,255,0.35), transparent 50%),
    radial-gradient(circle, #e2453a 0%, #b8251c 75%, #8f1812 100%);
  box-shadow: inset 0 0 4px rgba(0,0,0,0.3);
}
.tomato span::after {
  content: "";
  position: absolute;
  inset: 3px 6px;
  border-radius: 50%;
  background: repeating-conic-gradient(rgba(255,214,80,0.5) 0deg 12deg, transparent 12deg 32deg);
  opacity: 0.6;
}
.tomato span:nth-child(1) { left: 14px; }
.tomato span:nth-child(2) { left: 58px; }
.tomato span:nth-child(3) { left: 102px; }
.tomato span:nth-child(4) { left: 130px; }

/* ---- LETTUCE (ruffled, layered greens) ---- */
.lettuce, .lettuce-top {
  height: 18px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.15), transparent 50%),
    linear-gradient(180deg, #6fb854 0%, #4c8f39 60%, #3a6e2b 100%);
  clip-path: polygon(
    0% 60%, 6% 30%, 14% 55%, 22% 20%, 30% 50%, 38% 15%, 46% 48%,
    54% 18%, 62% 50%, 70% 20%, 78% 55%, 86% 25%, 94% 58%, 100% 35%,
    100% 100%, 0% 100%
  );
}
.lettuce { bottom: 79px; z-index: 4; }
.lettuce-top { bottom: 168px; z-index: 7; height: 16px; }

/* ---- PATTY (charred, grilled, glistening) ---- */
.patty {
  height: 26px;
  bottom: 97px;
  z-index: 5;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(255,200,150,0.15), transparent 55%),
    linear-gradient(180deg, #6b4128 0%, #4a2a17 55%, #2e1a0e 100%);
  box-shadow: 0 10px 16px rgba(0,0,0,0.5), inset 0 -6px 8px rgba(0,0,0,0.45);
}
.patty .grill {
  position: absolute;
  inset: 3px 10px;
  border-radius: 50%;
  background: repeating-linear-gradient(115deg, rgba(20,10,5,0.55) 0 4px, transparent 4px 16px);
  opacity: 0.8;
}
.patty .sheen {
  position: absolute;
  top: 2px; left: 20%;
  width: 35%;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,200,140,0.35);
  filter: blur(2px);
}

/* ---- CHEESE (melted drip) ---- */
.cheese {
  height: 10px;
  width: 196px;
  bottom: 123px;
  z-index: 6;
  background: linear-gradient(180deg, #ffcf5c, #f0a93a);
  clip-path: polygon(0 0,100% 0,94% 60%,88% 30%,80% 70%,72% 25%,64% 65%,56% 20%,48% 60%,40% 22%,32% 68%,24% 18%,16% 62%,8% 25%,0% 55%);
  box-shadow: 0 4px 6px rgba(180,110,0,0.3);
}

/* ---- BUN TOP (large domed, sesame, glossy highlight) ---- */
.sesame { display: none; }
.bun-top {
  height: 54px;
  width: 196px;
  bottom: 133px;
  z-index: 8;
  background:
    linear-gradient(180deg, #e7ad66 0%, #cf8a44 55%, #a8682f 100%);
  border-radius: 50% 50% 18% 18% / 65% 65% 18% 18%;
  box-shadow: 0 14px 18px rgba(0,0,0,0.5), inset 0 -8px 12px rgba(0,0,0,0.25);
}
.bun-top .shine {
  position: absolute;
  top: 6px; left: 18%;
  width: 40%;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  filter: blur(3px);
}
.bun-top .seeds {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, #fff4d8 1.6px, transparent 1.8px);
  background-size: 16px 14px;
  background-position:
    4px 8px, 20px 14px, 36px 6px, 52px 16px, 68px 9px,
    84px 15px, 100px 7px, 116px 17px, 132px 10px, 148px 6px, 164px 14px;
  opacity: 0.9;
}

/* animation triggers re-fire when JS toggles .rebuild on the tower — slow-motion macro feel */
.rebuild .bun-bottom   { animation: dropInBlur 1.3s cubic-bezier(0.16,1,0.3,1) forwards 0.3s; }
.rebuild .onion        { animation: dropInBlur 1.2s cubic-bezier(0.16,1,0.3,1) forwards 1.6s; }
.rebuild .tomato       { animation: dropInBlur 1.2s cubic-bezier(0.16,1,0.3,1) forwards 2.9s; }
.rebuild .lettuce      { animation: dropInBlur 1.2s cubic-bezier(0.16,1,0.3,1) forwards 4.2s; }
.rebuild .patty        { animation: dropInBlur 1.3s cubic-bezier(0.16,1,0.3,1) forwards 5.5s; }
.rebuild .cheese       { animation: dropInBlur 1.2s cubic-bezier(0.16,1,0.3,1) forwards 6.9s; }
.rebuild .lettuce-top  { animation: dropInBlur 1.2s cubic-bezier(0.16,1,0.3,1) forwards 8.2s; }
.rebuild .bun-top      { animation: bunDropBlur 1.6s cubic-bezier(0.16,1,0.3,1) forwards 9.5s; }

@keyframes dropInBlur {
  0% { opacity: 0; transform: translate(-50%, -120px) scale(0.92); filter: blur(6px); }
  55% { opacity: 1; filter: blur(1px); }
  78% { transform: translate(-50%, 8px) scale(1.025); filter: blur(0); }
  100% { opacity: 1; transform: translate(-50%, 0) scale(1); filter: blur(0); }
}

@keyframes bunDropBlur {
  0% { opacity: 0; transform: translate(-50%, -170px) scale(0.9); filter: blur(8px); }
  60% { opacity: 1; filter: blur(1px); }
  82% { transform: translate(-50%, 10px) scale(1.02); filter: blur(0); }
  100% { opacity: 1; transform: translate(-50%, 0) scale(1); filter: blur(0); }
}

.burger-tower .layer {
  animation-fill-mode: forwards;
}

.stage-caption {
  margin-top: 22px;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 1px;
}

/* STRIP */
.strip {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 40px 20px 80px;
  border-top: 1px solid #232323;
  margin-top: 20px;
}
.strip-item { text-align: center; }
.strip-item strong {
  display: block;
  font-size: 1.6rem;
  color: var(--gold-soft);
}
.strip-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* MENU PAGE */
.section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin-top: 60px;
}
.section-title.small { font-size: 1.6rem; margin-top: 70px; }
.section-sub {
  text-align: center;
  color: var(--muted);
  margin: 12px 0 50px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 50px 30px;
}

.menu-card {
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #262626;
  transition: transform 0.25s, box-shadow 0.25s;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border-color: #3a3a3a;
}

.card-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.card-img.small { height: 130px; }

.card-body { padding: 20px 22px 24px; }

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.card-head h3 { font-size: 1.2rem; }
.price { color: var(--gold-soft); font-weight: 700; }

.card-body p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.side-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 50px 90px;
}
.side-card {
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #262626;
  text-align: center;
  padding-bottom: 16px;
}
.side-card p { margin-top: 12px; font-weight: 600; }
.side-card span { color: var(--gold-soft); font-size: 0.9rem; }

/* CONTACT */
.contact-wrap {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 50px 100px;
}
.contact-info { flex: 1; min-width: 280px; }
.info-row { margin-bottom: 22px; }
.info-row strong { color: var(--gold-soft); display: block; margin-bottom: 6px; }
.info-row p { color: var(--muted); }

.socials {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}
.socials span {
  border: 1px solid #333;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form input, .contact-form textarea {
  background: var(--bg-soft);
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  resize: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

footer {
  text-align: center;
  padding: 26px;
  color: var(--muted);
  border-top: 1px solid #232323;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .navbar { padding: 16px 20px; flex-direction: column; gap: 12px; }
  .hero { padding: 40px 24px; justify-content: center; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-text h1 { font-size: 2.3rem; }
  .menu-grid, .side-grid { padding: 0 24px 30px; }
}
