:root {
  color-scheme: dark;
  --ink: #0b0907;
  --ink-2: #12100d;
  --panel: #191612;
  --paper: #f3eee5;
  --cream: #fff8e8;
  --muted: #bdb4a7;
  --line: rgba(255, 255, 255, .12);
  --yellow: #ffc400;
  --yellow-2: #ff9f00;
  --orange: #ff5c28;
  --green: #25d366;
  --shadow: 0 28px 80px rgba(0, 0, 0, .38);
  --display: "Arial Black", "Arial Narrow", Impact, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}

html.chat-lock,
html.chat-lock body { overflow: hidden; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

::selection { background: var(--yellow); color: var(--ink); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 900;
  translate: 0 -150%;
  transition: translate .2s ease;
}

.skip-link:focus { translate: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, .09);
  background: rgba(11, 9, 7, .86);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px) saturate(1.2);
}

.nav-shell {
  width: var(--shell);
  min-height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 196, 0, .62);
  border-radius: 13px 13px 5px 13px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  box-shadow: 0 8px 22px rgba(255, 174, 0, .18);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: -.05em;
  rotate: -3deg;
}

.brand-copy { display: grid; line-height: .9; }
.brand-copy strong { font-family: var(--display); letter-spacing: .05em; }
.brand-copy small { margin-top: 5px; color: var(--yellow); font-size: 10px; font-weight: 900; letter-spacing: .26em; }

.nav-menu { display: flex; align-items: center; justify-content: center; gap: 30px; }
.nav-menu a {
  position: relative;
  padding: 9px 0;
  color: rgba(255, 248, 232, .76);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: color .2s ease;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  background: var(--yellow);
  transition: right .2s ease;
}
.nav-menu a:hover { color: white; }
.nav-menu a:hover::after { right: 0; }

.nav-order { justify-self: end; }
.nav-toggle { display: none; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 13px 20px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: translate .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { translate: 0 -2px; }
.button:active { translate: 0; }
.button span[aria-hidden="true"] { font-size: 1.25em; transition: translate .2s ease; }
.button:hover span[aria-hidden="true"] { translate: 3px 0; }
.button--compact { min-height: 44px; padding: 11px 16px; border-radius: 12px; color: var(--ink); background: var(--yellow); font-size: 14px; }
.button--primary { color: var(--ink); background: linear-gradient(135deg, var(--yellow), #ffac00); box-shadow: 0 16px 38px rgba(255, 174, 0, .24); }
.button--primary:hover { box-shadow: 0 20px 46px rgba(255, 174, 0, .34); }
.button--ghost { color: var(--cream); border-color: rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .055); backdrop-filter: blur(12px); }
.button--ghost:hover { border-color: rgba(255, 196, 0, .7); background: rgba(255, 196, 0, .08); }
.button--light { color: var(--ink); background: var(--cream); }
.button--large { min-height: 62px; padding-inline: 26px; }

.hero {
  position: relative;
  min-height: 820px;
  height: max(100svh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #080705;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -5;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, .98) 0%, rgba(8, 7, 5, .89) 35%, rgba(8, 7, 5, .35) 72%, rgba(8, 7, 5, .8) 100%),
    linear-gradient(180deg, rgba(8, 7, 5, .15), #080705 100%),
    url("../hero-burger-fries-uhd-poster.jpg") center / cover no-repeat;
  scale: 1.02;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -4;
  width: min(64vw, 860px);
  aspect-ratio: 1;
  right: -7vw;
  top: 8vh;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 174, 0, .32), rgba(255, 107, 0, .07) 44%, transparent 69%);
  filter: blur(18px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 150px;
  background: linear-gradient(transparent, var(--ink));
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-shell {
  width: var(--shell);
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: 24px;
}

.hero-copy { position: relative; z-index: 6; padding: 54px 0 84px; }

.availability {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: #eee6da;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.availability span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(37, 211, 102, .12); }

h1, h2 { font-family: var(--display); text-wrap: balance; }
h1 {
  margin: 0;
  color: #fffaf0;
  font-size: clamp(62px, 7.1vw, 114px);
  line-height: .82;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
h1 em, h2 em { color: var(--yellow); font-style: normal; }
h1 em { display: inline-block; font-size: .9em; white-space: nowrap; }

.hero-lead { max-width: 600px; margin: 28px 0 0; color: #d8cfc2; font-size: clamp(18px, 1.55vw, 22px); line-height: 1.48; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-proof {
  max-width: 670px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}
.hero-proof div { display: grid; gap: 2px; padding-right: 20px; }
.hero-proof div + div { padding-left: 20px; border-left: 1px solid rgba(255, 255, 255, .12); }
.hero-proof strong { color: #fff9ee; font-size: 13px; line-height: 1.25; }
.hero-proof span { color: #938a7e; font-size: 11px; line-height: 1.35; }

.hero-visual { position: relative; z-index: 3; min-height: 670px; align-self: end; }
.hero-halo {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  left: 15%;
  top: 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 196, 0, .3), rgba(255, 93, 0, .08) 46%, transparent 70%);
  filter: blur(14px);
  animation: halo 5s ease-in-out infinite;
}
.hero-logo {
  position: absolute;
  z-index: 4;
  width: 67%;
  left: 18%;
  top: 5%;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .78));
  transform: rotate(-3deg);
}
.hero-burger {
  position: absolute;
  z-index: 2;
  width: 96%;
  max-width: none;
  right: -3%;
  bottom: -1%;
  filter: drop-shadow(0 44px 45px rgba(0, 0, 0, .72));
  animation: burgerFloat 5.2s ease-in-out infinite;
}

.hero-sticker {
  position: absolute;
  z-index: 5;
  top: 27%;
  right: 0;
  width: 112px;
  height: 112px;
  display: grid;
  place-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 0 0 5px var(--yellow), 0 18px 40px rgba(0, 0, 0, .35);
  font-family: var(--display);
  font-size: 17px;
  line-height: .95;
  text-align: center;
  rotate: 9deg;
}
.hero-sticker span { display: block; font-size: 27px; }

.hero-caption {
  position: absolute;
  z-index: 6;
  left: 3%;
  bottom: 10%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 15px;
  background: rgba(15, 12, 9, .72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .3);
  backdrop-filter: blur(14px);
}
.hero-caption > span { font-size: 24px; }
.hero-caption div { display: grid; }
.hero-caption strong { font-size: 12px; }
.hero-caption small { color: #aaa094; font-size: 10px; }

.scroll-cue {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, .56);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  translate: -50% 0;
}
.scroll-cue i { width: 25px; height: 40px; border: 1px solid rgba(255, 255, 255, .3); border-radius: 999px; }
.scroll-cue i::after { content: ""; display: block; width: 3px; height: 7px; margin: 7px auto; border-radius: 4px; background: var(--yellow); animation: scrollDot 1.8s ease-in-out infinite; }

.trust-bar { position: relative; z-index: 4; overflow: hidden; color: var(--ink); background: var(--yellow); transform: rotate(-1deg) scale(1.02); box-shadow: 0 12px 34px rgba(0, 0, 0, .2); }
.trust-track { min-width: max-content; display: flex; align-items: center; justify-content: center; gap: 30px; padding: 16px 24px; font-family: var(--display); font-size: clamp(14px, 1.4vw, 20px); letter-spacing: .025em; }
.trust-track i { font-style: normal; }

.section { position: relative; padding: clamp(92px, 10vw, 150px) 0; }
.section-shell, .footer-shell, .footer-bottom { width: var(--shell); margin-inline: auto; }

.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 60px; margin-bottom: 42px; }
.section-heading p { max-width: 510px; justify-self: end; margin: 0; color: var(--muted); font-size: 17px; }
.kicker { display: block; margin-bottom: 14px; color: var(--yellow); font-size: 11px; font-weight: 950; letter-spacing: .2em; text-transform: uppercase; }
h2 { margin: 0; color: var(--cream); font-size: clamp(50px, 6vw, 92px); line-height: .88; letter-spacing: -.055em; text-transform: uppercase; }

.menu-section { background: var(--ink); }
.menu-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 95% 12%, rgba(255, 172, 0, .1), transparent 27%); }

.menu-toolbar { display: grid; grid-template-columns: minmax(300px, 620px) 1fr; align-items: center; gap: 20px; }
.search-box { position: relative; display: flex; align-items: center; }
.search-box svg { position: absolute; left: 18px; width: 20px; fill: none; stroke: #aaa095; stroke-width: 1.8; stroke-linecap: round; pointer-events: none; }
.search-box input {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 18px 13px 52px;
  color: white;
  background: rgba(255, 255, 255, .055);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.search-box input::placeholder { color: #7d756c; }
.search-box input:focus { border-color: rgba(255, 196, 0, .65); background: rgba(255, 255, 255, .075); box-shadow: 0 0 0 4px rgba(255, 196, 0, .09); }
.menu-state { justify-self: end; color: #938a7f; font-size: 13px; font-weight: 750; }

.category-filters {
  display: flex;
  gap: 9px;
  margin: 20px 0 34px;
  padding-bottom: 6px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scrollbar-color: #4d4439 transparent;
}
.filter-chip {
  min-height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 15px;
  color: #c9c0b4;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.filter-chip:hover { color: white; border-color: rgba(255, 196, 0, .42); }
.filter-chip.active { color: var(--ink); border-color: var(--yellow); background: var(--yellow); }

.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .028));
  box-shadow: 0 14px 44px rgba(0, 0, 0, .18);
  transition: translate .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.product-card:hover { translate: 0 -6px; border-color: rgba(255, 196, 0, .4); box-shadow: 0 26px 60px rgba(0, 0, 0, .32); }
.product-media { position: relative; aspect-ratio: 1.18; overflow: hidden; background: #211b15; }
.product-media::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(10, 8, 6, .74)); }
.product-media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: scale .55s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-media img { scale: 1.055; }
.product-category { position: absolute; z-index: 2; top: 14px; left: 14px; max-width: calc(100% - 28px); overflow: hidden; border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; padding: 6px 10px; color: white; background: rgba(9, 7, 5, .65); backdrop-filter: blur(10px); font-size: 9px; font-weight: 950; letter-spacing: .11em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.product-content { display: grid; gap: 12px; padding: 20px; }
.product-title-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: start; gap: 15px; }
.product-title-row h3 { margin: 0; color: var(--cream); font-size: 20px; line-height: 1.12; letter-spacing: -.025em; }
.product-price { flex: 0 0 auto; color: var(--yellow); font-family: var(--display); font-size: 18px; line-height: 1; }
.product-description { min-height: 43px; margin: 0; display: -webkit-box; overflow: hidden; color: #999086; font-size: 13px; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.product-order {
  min-height: 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 196, 0, .3);
  border-radius: 13px;
  color: var(--yellow);
  background: rgba(255, 196, 0, .07);
  cursor: pointer;
  font-weight: 900;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.product-order:hover { color: var(--ink); border-color: var(--yellow); background: var(--yellow); }
.product-order.added { color: white; border-color: #209e50; background: #209e50; }

.menu-skeleton { min-height: 430px; border-radius: 24px; background: linear-gradient(100deg, rgba(255,255,255,.035) 20%, rgba(255,255,255,.08) 38%, rgba(255,255,255,.035) 56%); background-size: 300% 100%; animation: shimmer 1.5s infinite; }
.menu-empty { grid-column: 1 / -1; display: grid; place-items: center; min-height: 260px; border: 1px dashed rgba(255,255,255,.16); border-radius: 24px; color: #aaa197; text-align: center; }
.menu-empty strong { display: block; margin-bottom: 5px; color: var(--cream); font-size: 22px; }
.menu-more { display: flex; justify-content: center; margin-top: 34px; }
.menu-more [hidden] { display: none; }

.experience { overflow: hidden; color: var(--ink); background: var(--yellow); }
.experience::before { content: "BURGER 33"; position: absolute; right: -2vw; bottom: -9vw; color: rgba(11, 9, 7, .055); font-family: var(--display); font-size: 30vw; line-height: .75; letter-spacing: -.1em; pointer-events: none; }
.experience-shell { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(70px, 10vw, 150px); }
.experience .kicker { color: #684900; }
.experience h2 { color: var(--ink); }
.experience h2 em { color: white; text-shadow: 0 4px 0 rgba(11,9,7,.12); }
.experience-copy > p { max-width: 540px; margin: 25px 0 30px; color: #4d3806; font-size: 18px; }
.steps { margin: 0; padding: 0; list-style: none; border-top: 2px solid rgba(11, 9, 7, .18); }
.steps li { display: grid; grid-template-columns: 74px 1fr; gap: 24px; align-items: center; padding: 27px 4px; border-bottom: 2px solid rgba(11, 9, 7, .18); }
.steps > li > span { font-family: var(--display); font-size: 15px; }
.steps strong { display: block; font-family: var(--display); font-size: clamp(31px, 3.2vw, 46px); line-height: .95; text-transform: uppercase; }
.steps p { margin: 7px 0 0; color: #574109; }

.zone-section { overflow: hidden; background: #100d0a; }
.zone-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 16% 35%, rgba(255, 123, 0, .12), transparent 30%); pointer-events: none; }
.zone-shell { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.zone-copy > p { max-width: 500px; margin: 25px 0; color: var(--muted); font-size: 17px; }
.location-card { max-width: 520px; display: flex; align-items: center; gap: 15px; margin-bottom: 23px; padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 255, 255, .045); }
.location-pin { width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--ink); background: var(--yellow); box-shadow: 0 0 0 7px rgba(255, 196, 0, .08); }
.location-card div { min-width: 0; display: grid; }
.location-card small { color: #888077; font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.location-card strong { overflow: hidden; color: var(--cream); font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.map-card { position: relative; min-height: 560px; overflow: hidden; border: 1px solid rgba(255, 196, 0, .18); border-radius: 30px; background: #211b15; box-shadow: var(--shadow); }
.map-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(.86) contrast(1.08) brightness(.68) sepia(.12); }
.map-shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(16, 13, 10, .08), rgba(16, 13, 10, .48)); }
.map-badge { position: absolute; left: 22px; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 13px; max-width: 360px; padding: 12px 16px 12px 10px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 18px; background: rgba(13, 10, 7, .82); box-shadow: 0 18px 44px rgba(0,0,0,.32); backdrop-filter: blur(15px); }
.map-badge img { width: 56px; height: 56px; object-fit: contain; }
.map-badge div { display: grid; }
.map-badge strong { font-size: 13px; }
.map-badge span { color: #9d9489; font-size: 11px; }

.final-cta { padding-top: 0; background: #100d0a; }
.final-card { position: relative; min-height: 410px; display: grid; grid-template-columns: .95fr .65fr; align-items: center; gap: 50px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 34px; padding: clamp(40px, 6vw, 76px); background: linear-gradient(130deg, #211810, #100d0a 64%); box-shadow: var(--shadow); }
.final-card::before { content: ""; position: absolute; width: 520px; aspect-ratio: 1; right: -150px; top: -240px; border-radius: 50%; background: rgba(255, 196, 0, .13); filter: blur(10px); }
.final-card h2 { font-size: clamp(58px, 7vw, 100px); }
.final-action { position: relative; z-index: 2; align-self: end; padding-bottom: 18px; }
.final-action p { max-width: 360px; margin: 0 0 22px; color: var(--muted); font-size: 17px; }
.final-card > img { position: absolute; z-index: 1; width: 260px; right: 0; bottom: -40px; filter: drop-shadow(0 24px 28px rgba(0,0,0,.45)); transform: rotate(8deg); }

.site-footer { padding: 70px 0 24px; border-top: 1px solid var(--line); background: #080604; }
.footer-shell { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 60px; }
.footer-brand { display: flex; align-items: flex-start; gap: 15px; }
.footer-brand strong { font-family: var(--display); letter-spacing: .02em; }
.footer-brand p { max-width: 330px; margin: 7px 0 0; color: #8f877d; font-size: 13px; }
.site-footer nav { display: grid; align-content: start; gap: 8px; }
.site-footer nav a { width: fit-content; color: #b9b0a5; font-size: 13px; text-decoration: none; }
.site-footer nav a:hover { color: var(--yellow); }
.footer-contact { display: grid; align-content: start; justify-items: start; gap: 8px; }
.footer-contact span { color: #777067; font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.footer-contact a { color: var(--yellow); font-weight: 900; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); color: #716a62; font-size: 11px; }
.footer-bottom a { text-decoration: none; }

.chat-toggle {
  position: fixed;
  z-index: 70;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 196, 0, .4);
  border-radius: 999px;
  padding: 7px 8px 7px 17px;
  color: var(--cream);
  background: rgba(15, 12, 9, .9);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .45), 0 0 0 0 rgba(255,196,0,.18);
  cursor: pointer;
  backdrop-filter: blur(16px);
  animation: chatPulse 3s ease-out infinite;
}
.chat-label { display: grid; text-align: left; line-height: 1.15; }
.chat-label strong { font-size: 12px; }
.chat-label small { margin-top: 2px; color: var(--yellow); font-size: 10px; font-weight: 850; }
.chat-avatar { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); overflow: hidden; }
.chat-avatar img { width: 65px; height: 65px; object-fit: contain; }

.chat-backdrop { position: fixed; inset: 0; z-index: 89; visibility: hidden; opacity: 0; background: rgba(3,2,1,.64); backdrop-filter: blur(5px); transition: opacity .22s ease, visibility .22s ease; }
.chat-backdrop.open { visibility: visible; opacity: 1; }
.chat-panel {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  width: min(450px, calc(100vw - 32px));
  height: min(760px, calc(100svh - 44px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 25px;
  background: #12100d;
  box-shadow: 0 30px 90px rgba(0,0,0,.62);
  transform: translateY(24px) scale(.97);
  transform-origin: bottom right;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}
.chat-panel.open { visibility: visible; opacity: 1; transform: none; }
.chat-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,.1); background: linear-gradient(135deg, #1d1812, #12100d); }
.bot-identity { display: flex; align-items: center; gap: 10px; min-width: 0; }
.bot-avatar { width: 48px; height: 48px; flex: 0 0 auto; border-radius: 50%; object-fit: contain; background: var(--yellow); }
.bot-name { display: grid; line-height: 1.15; }
.bot-name strong { font-size: 15px; }
.bot-name small { display: flex; align-items: center; gap: 6px; margin-top: 4px; color: #979087; font-size: 9px; font-weight: 750; }
.bot-name i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.chat-close { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; color: white; background: rgba(255,255,255,.055); cursor: pointer; font-size: 24px; line-height: 1; }
.chat-close:hover { background: rgba(255,255,255,.1); }
.chat-frame { width: 100%; height: 100%; min-height: 0; border: 0; background: #12100d; }

.mobile-order-bar { display: none; }
.noscript { position: fixed; z-index: 150; left: 20px; right: 20px; bottom: 20px; margin: 0; padding: 14px; border-radius: 12px; color: var(--ink); background: var(--yellow); text-align: center; font-weight: 850; }

@keyframes burgerFloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-11px) rotate(.5deg); } }
@keyframes halo { 0%,100% { scale: .96; opacity: .75; } 50% { scale: 1.05; opacity: 1; } }
@keyframes scrollDot { 0% { translate: 0 0; opacity: 0; } 30% { opacity: 1; } 100% { translate: 0 16px; opacity: 0; } }
@keyframes chatPulse { 0%, 45% { box-shadow: 0 20px 54px rgba(0,0,0,.45), 0 0 0 0 rgba(255,196,0,.2); } 75%,100% { box-shadow: 0 20px 54px rgba(0,0,0,.45), 0 0 0 15px rgba(255,196,0,0); } }
@keyframes shimmer { to { background-position: -100% 0; } }
@keyframes revealUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

@supports (animation-timeline: view()) {
  .section .reveal { animation: revealUp linear both; animation-timeline: view(); animation-range: entry 5% cover 24%; }
}

@media (max-width: 1080px) {
  :root { --shell: min(100% - 36px, 980px); }
  .nav-shell { grid-template-columns: 1fr auto; }
  .nav-menu { display: none; }
  .hero { min-height: 760px; height: auto; }
  .hero-shell { min-height: 840px; grid-template-columns: .9fr 1.1fr; }
  .hero-visual { min-height: 600px; }
  .hero-logo { width: 78%; left: 11%; top: 9%; }
  .hero-burger { width: 108%; right: -10%; }
  .hero-sticker { right: -1%; }
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experience-shell { grid-template-columns: .9fr 1.1fr; gap: 60px; }
  .zone-shell { grid-template-columns: .85fr 1.15fr; gap: 50px; }
  .final-card { grid-template-columns: 1fr .75fr; }
  .final-card > img { opacity: .65; }
}

@media (max-width: 900px) {
  :root { --shell: calc(100vw - 28px); }
  html { scroll-padding-top: 74px; }
  body { padding-bottom: 74px; }
  .site-header { background: rgba(11,9,7,.88); backdrop-filter: blur(16px); }
  .nav-shell { min-height: 70px; grid-template-columns: 1fr auto; gap: 12px; }
  .brand-mark { width: 39px; height: 39px; }
  .brand-copy strong { font-size: 13px; }
  .brand-copy small { font-size: 8px; }
  .nav-order { display: none; }
  .nav-toggle { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; background: rgba(255,255,255,.05); }
  .nav-toggle span { width: 20px; height: 2px; border-radius: 2px; background: white; transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-menu { position: absolute; top: 70px; left: 0; right: 0; display: grid; gap: 0; visibility: hidden; opacity: 0; padding: 10px 14px 18px; border-bottom: 1px solid var(--line); background: rgba(11,9,7,.97); transform: translateY(-8px); transition: opacity .18s ease, visibility .18s ease, transform .18s ease; }
  .nav-menu.open { visibility: visible; opacity: 1; transform: none; }
  .nav-menu a { min-height: 48px; display: flex; align-items: center; padding: 10px 3px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-menu a::after { display: none; }

  .hero { min-height: auto; height: auto; padding: 102px 0 76px; }
  .hero-bg { background-position: 38% center; opacity: .52; }
  .hero::before { width: 120vw; right: -48vw; top: 34%; }
  .hero-shell { min-height: 0; margin: 0 auto; grid-template-columns: 1fr; gap: 8px; }
  .hero-copy { padding: 0; }
  .availability { margin-bottom: 17px; font-size: 9px; }
  h1 { font-size: clamp(48px, 14.2vw, 62px); line-height: .87; }
  h1 em { max-width: 100%; font-size: .72em; letter-spacing: -.06em; white-space: nowrap; }
  .hero-lead { max-width: 92%; margin-top: 19px; font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; margin-top: 23px; }
  .hero-actions .button { min-height: 54px; padding-inline: 12px; font-size: 13px; }
  .hero-proof { margin-top: 30px; padding-top: 17px; }
  .hero-proof div { padding-right: 9px; }
  .hero-proof div + div { padding-left: 9px; }
  .hero-proof strong { font-size: 10px; }
  .hero-proof span { font-size: 9px; }
  .hero-visual { display: block; min-height: 260px; margin: 12px -4px -8px; overflow: hidden; }
  .hero-halo { width: 92%; left: 4%; top: 0; }
  .hero-logo, .hero-sticker, .hero-caption { display: none; }
  .hero-burger { width: 104%; right: -2%; bottom: -8%; }
  .scroll-cue { display: none; }
  .trust-track { justify-content: flex-start; gap: 18px; padding-block: 12px; font-size: 12px; animation: ticker 20s linear infinite; }

  .section { padding: 86px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 28px; }
  .section-heading p { justify-self: start; font-size: 15px; }
  h2 { font-size: clamp(48px, 14vw, 72px); }
  .menu-toolbar { grid-template-columns: 1fr; gap: 10px; }
  .menu-state { justify-self: start; }
  .category-filters { margin-block: 16px 24px; margin-right: -14px; }
  .menu-grid { grid-template-columns: 1fr; gap: 14px; }
  .product-card { display: grid; grid-template-columns: 124px minmax(0,1fr); border-radius: 18px; }
  .product-media { height: 100%; min-height: 190px; aspect-ratio: auto; }
  .product-category { top: 10px; left: 9px; max-width: calc(100% - 18px); padding: 5px 7px; font-size: 7px; }
  .product-content { align-content: center; gap: 9px; padding: 15px; }
  .product-title-row { grid-template-columns: 1fr; gap: 7px; }
  .product-title-row h3 { font-size: 16px; }
  .product-price { font-size: 15px; }
  .product-description { min-height: auto; font-size: 11px; -webkit-line-clamp: 2; }
  .product-order { min-height: 42px; font-size: 11px; }
  .menu-skeleton { min-height: 190px; }

  .experience-shell, .zone-shell { grid-template-columns: 1fr; gap: 48px; }
  .experience-copy > p, .zone-copy > p { font-size: 16px; }
  .steps li { grid-template-columns: 48px 1fr; gap: 15px; padding-block: 22px; }
  .steps strong { font-size: 31px; }
  .steps p { font-size: 13px; }
  .map-card { min-height: 440px; border-radius: 22px; }
  .map-badge { left: 12px; right: 12px; bottom: 12px; }
  .location-card strong { font-size: 12px; }
  .final-card { min-height: 530px; grid-template-columns: 1fr; align-content: start; gap: 30px; border-radius: 24px; padding: 36px 24px; }
  .final-action { align-self: auto; }
  .final-card > img { width: 205px; right: -12px; bottom: -36px; }

  .site-footer { padding-top: 56px; }
  .footer-shell { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { margin-top: 40px; }
  .chat-toggle { display: none; }
  .chat-panel { inset: 0; width: 100%; height: 100svh; border: 0; border-radius: 0; transform: translateY(100%); }
  .chat-panel.open { transform: none; }
  .chat-head { min-height: 70px; padding-top: max(12px, env(safe-area-inset-top)); }
  .mobile-order-bar { position: fixed; z-index: 68; left: 0; right: 0; bottom: 0; height: calc(70px + env(safe-area-inset-bottom)); display: grid; grid-template-columns: .7fr 1.3fr; gap: 9px; padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); border-top: 1px solid rgba(255,255,255,.11); background: rgba(10,8,6,.93); backdrop-filter: blur(17px); }
  .mobile-order-bar a, .mobile-order-bar button { display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.15); border-radius: 12px; color: white; background: transparent; font-size: 12px; font-weight: 900; text-decoration: none; }
  .mobile-order-bar button { gap: 8px; border-color: var(--yellow); color: var(--ink); background: var(--yellow); }
  html.chat-lock .mobile-order-bar, html.chat-lock .chat-toggle { display: none; }
}

@media (max-width: 390px) {
  .hero-actions { grid-template-columns: 1fr; }
  .hero-proof { grid-template-columns: 1fr 1fr; row-gap: 14px; }
  .hero-proof div:nth-child(3) { display: none; }
  .product-card { grid-template-columns: 110px minmax(0,1fr); }
  .product-content { padding: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

@keyframes ticker { to { transform: translateX(-45%); } }

/* Identidad exclusiva de la demo Burger 33 */
.client-demo-bar{position:fixed;inset:0 0 auto;z-index:120;min-height:34px;display:flex;align-items:center;justify-content:center;gap:12px;padding:7px 18px;color:#fff8e8;background:linear-gradient(90deg,#7d0710,#d01b24 45%,#ff6b1f);box-shadow:0 8px 26px rgba(0,0,0,.28);font-size:11px;letter-spacing:.04em}.client-demo-bar span{padding:3px 7px;border:1px solid rgba(255,255,255,.38);border-radius:999px;font-size:8px;font-weight:950;letter-spacing:.13em}.client-demo-bar small{color:rgba(255,255,255,.75)}.site-header{top:34px}.hero-logo{width:190px!important;height:190px!important;object-fit:cover;border:5px solid rgba(255,255,255,.86);border-radius:50%;box-shadow:0 22px 60px rgba(0,0,0,.45),0 0 0 12px rgba(255,196,0,.12)}.chat-avatar img,.bot-avatar,.map-badge img,.final-card>img{object-fit:cover;border-radius:50%}@media(max-width:720px){.client-demo-bar{display:grid;grid-template-columns:auto minmax(0,1fr);justify-content:stretch;min-height:38px;overflow:hidden;white-space:nowrap;padding-inline:10px}.client-demo-bar strong{overflow:hidden;text-overflow:ellipsis}.client-demo-bar small{display:none}.site-header{top:38px}.hero-logo{width:132px!important;height:132px!important}}

@media (max-width: 900px) {
  .hero { padding: 100px 0 42px; }
  .hero-shell { display: flex; flex-direction: column; align-items: stretch; }
  .hero-copy { display: contents; }
  .availability { order: 1; }
  h1 { order: 2; }
  .hero-lead { order: 3; }
  .hero-actions { order: 4; grid-template-columns: 1fr 1fr; }
  .hero-visual {
    order: 5;
    width: 100%;
    height: 194px;
    min-height: 194px;
    margin: 12px 0 0;
    overflow: hidden;
    border: 1px solid rgba(255, 196, 0, .18);
    border-radius: 24px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 174, 0, .14), transparent 64%);
  }
  .hero-halo { display: none; }
  .hero-burger {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    animation: none;
    filter: drop-shadow(0 24px 30px rgba(0, 0, 0, .58));
  }
  .hero-proof { order: 6; margin-top: 18px; }
}

@media (max-width: 390px) {
  .hero-actions { grid-template-columns: 1fr 1fr; }
}

/* Pulido visual responsive — mantiene las fotos sin deformación */
.hero-visual {
  perspective: 1100px;
  transform-style: preserve-3d;
}
.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 15% 8%;
  border: 1px solid rgba(255, 196, 0, .18);
  border-radius: 50%;
  pointer-events: none;
  animation: orbitGlow 7s ease-in-out infinite;
}
.hero-visual::after {
  inset: 22% 15%;
  border-color: rgba(255, 255, 255, .10);
  animation-delay: -3.5s;
}
.hero-burger {
  height: auto !important;
  aspect-ratio: 4 / 3;
  object-fit: contain !important;
  object-position: center bottom;
  transform-origin: 50% 78%;
}
.hero-logo,
.chat-avatar img,
.bot-avatar,
.map-badge img,
.final-card > img {
  image-rendering: auto;
}
.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.button::after {
  content: "";
  position: absolute;
  inset: -120% auto -120% -45%;
  width: 34%;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.52), transparent);
  transform: rotate(18deg);
  transition: translate .65s ease;
}
.button:hover::after,
.button:focus-visible::after { translate: 440% 0; }
.product-card {
  transform: translateZ(0);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.product-card:hover,
.product-card:focus-within {
  transform: translateY(-7px) scale(1.012);
  border-color: rgba(255,196,0,.45);
  box-shadow: 0 26px 65px rgba(0,0,0,.48), 0 0 32px rgba(255,174,0,.08);
}
.product-media img { transform: scale(1.002); transition: transform .55s cubic-bezier(.2,.8,.2,1), filter .4s ease; }
.product-card:hover .product-media img { transform: scale(1.065); filter: saturate(1.08) contrast(1.03); }
.compy-signature {
  width: var(--shell);
  margin: 38px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255,196,0,.22);
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(255,196,0,.10), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 50px rgba(0,0,0,.25);
}
.compy-signature div { display: grid; gap: 3px; }
.compy-signature small { color: #91877b; font-size: 9px; font-weight: 950; letter-spacing: .15em; }
.compy-signature strong { color: #fff8ea; font-family: var(--display); font-size: 18px; }
.compy-signature span { color: #aaa095; font-size: 12px; }
.compy-signature a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 13px;
  color: #111;
  background: linear-gradient(135deg, #25d366, #8cffb0);
  box-shadow: 0 12px 30px rgba(37,211,102,.18);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.compy-signature a:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(37,211,102,.28); }

@keyframes orbitGlow {
  0%, 100% { transform: rotate(-5deg) scale(.96); opacity: .38; }
  50% { transform: rotate(7deg) scale(1.04); opacity: .88; }
}

@media (max-width: 900px) {
  .hero-visual {
    height: clamp(220px, 62vw, 340px);
    min-height: clamp(220px, 62vw, 340px);
    margin-top: 34px;
    overflow: hidden;
    border-radius: 24px;
    background:
      radial-gradient(circle at 50% 58%, rgba(255,174,0,.14), rgba(255,96,0,.025) 48%, transparent 72%),
      url("../menu-doble-burger-web.jpg") center bottom / contain no-repeat;
  }
  .hero-visual::before { inset: 8% 7%; }
  .hero-visual::after { inset: 15% 14%; }
  .hero-burger {
    display: none;
  }
  .hero-actions .button { border-radius: 16px; }
  .product-card:hover,
  .product-card:focus-within { transform: translateY(-3px); }
  .compy-signature { align-items: stretch; flex-direction: column; padding: 18px; }
  .compy-signature a { justify-content: center; font-size: 14px; }
  .final-card > img {
    width: min(210px, 52vw);
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
  }
}

@keyframes mobileBurgerFloat {
  0%, 100% { transform: translate3d(-50%, 0, 0) rotate(-1deg) scale(.98); }
  50% { transform: translate3d(-50%, -8px, 0) rotate(.7deg) scale(1.015); }
}
