@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: optional;
  src: url("assets/fonts/barlow-condensed-600.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url("assets/fonts/barlow-condensed-700.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: optional;
  src: url("assets/fonts/barlow-condensed-800.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 900;
  font-display: optional;
  src: url("assets/fonts/barlow-condensed-900.woff2") format("woff2");
}

@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/karla-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/lexend-latin.woff2") format("woff2");
}

:root {
  --background: #0d0d0c;
  --background-deep: #080706;
  --surface: #181512;
  --surface-raised: #241d18;
  --surface-soft: #12100e;
  --border: #43382f;
  --border-strong: #665344;
  --text: #f7ead6;
  --text-soft: #ddcdb9;
  --muted: #bbaa98;
  --cream: #f4e7d2;
  --cream-deep: #e9d5ba;
  --fire: #f04a24;
  --fire-strong: #d93b1c;
  --panca: #b63822;
  --aji: #f2b544;
  --huacatay: #728b44;
  --ember: #f2b544;
  --whatsapp: #25d366;
  --on-whatsapp: #071a0e;
  --on-fire: #1b0a04;
  --danger: #ff5d5d;
  --font-display: "Barlow Condensed", Impact, sans-serif;
  --font-body: "Karla", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ui: "Lexend", "Karla", system-ui, sans-serif;
  --shell: 1240px;
  --gutter: 16px;
  --radius: 14px;
  --radius-small: 8px;
  --header-height: 104px;
  --sticky-height: 80px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow-fire: 0 16px 48px rgba(240, 74, 36, .2);
  --z-header: 100;
  --z-sticky: 200;
  --z-dialog: 300;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--background);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  padding-bottom: calc(var(--sticky-height) + env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 82, 22, .06), transparent 24rem),
    var(--background);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#icon-whatsapp path {
  fill: currentColor;
  stroke: none;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  transform: translateY(-150%);
  border-radius: var(--radius-small);
  background: var(--text);
  color: var(--background);
  font-weight: 800;
  transition: transform 180ms ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

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

::selection {
  background: var(--fire);
  color: var(--on-fire);
}

.site-header {
  position: fixed;
  z-index: var(--z-header);
  top: 0;
  right: 0;
  left: 0;
  color: var(--text);
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 7, .96), rgba(7, 7, 7, .58) 70%, transparent);
  content: "";
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(11, 11, 11, .97);
  box-shadow: 0 1px 0 var(--border);
}

.site-header.is-scrolled::before {
  opacity: 0;
}

.nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  display: block;
  width: 33px;
  height: 40px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  line-height: 1;
}

.brand__text strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .035em;
}

.brand__text small {
  margin-top: 4px;
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .28em;
}

.nav__links {
  display: none;
}

.nav__menu-link {
  display: none;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.nav__menu-link svg {
  width: 18px;
  height: 18px;
  color: var(--fire);
  transition: transform 180ms var(--ease);
}

.nav__menu-link:hover svg {
  transform: translateX(4px);
}

.nav__toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 231, 210, .28);
  border-radius: var(--radius-small);
  background: rgba(13, 13, 12, .4);
  color: var(--text);
}

.nav__toggle svg {
  width: 22px;
  height: 22px;
}

.nav__drawer {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: var(--z-sticky);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px var(--gutter) 32px;
  background: var(--background-deep);
  overflow-y: auto;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .28s ease, transform .32s cubic-bezier(.16, 1, .3, 1);
}

.nav__drawer.is-open {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .nav__drawer {
    transition: none;
    transform: none;
  }
}

.nav__drawer a:not(.button) {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid rgba(244, 231, 210, .12);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.nav__drawer .button {
  margin-top: 16px;
}

.service-status {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 6px var(--gutter);
  border-block: 1px solid rgba(255, 248, 237, .12);
  background: rgba(11, 11, 11, .74);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.service-status span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--whatsapp);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, .12);
}

.hero {
  position: relative;
  display: grid;
  min-height: max(700px, 94svh);
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, .04), rgba(7, 7, 7, .82)),
    url("assets/images/hero-sanguche-mobile.webp") center / cover no-repeat;
}

@media (min-width: 768px) {
  .hero {
    background-image:
      linear-gradient(180deg, rgba(7, 7, 7, .04), rgba(7, 7, 7, .82)),
      url("assets/images/hero-sanguche.webp");
  }
}

.hero__scrim,
.hero__grain {
  position: absolute;
  inset: 0;
}

.hero__scrim {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, .28) 0%, rgba(7, 7, 7, .04) 34%, rgba(7, 7, 7, .88) 78%, #0b0b0b 100%),
    linear-gradient(90deg, rgba(7, 7, 7, .82), rgba(7, 7, 7, .15) 84%);
}

.hero__grain {
  z-index: -1;
  opacity: .12;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, rgba(255, 255, 255, .08) 1px, transparent 2px, transparent 4px),
    repeating-linear-gradient(90deg, transparent 0, rgba(0, 0, 0, .18) 1px, transparent 2px, transparent 5px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero__content {
  position: relative;
  padding-top: 190px;
  padding-bottom: 118px;
}

.eyebrow,
.kicker {
  color: var(--fire);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 30rem;
  margin-bottom: 20px;
  color: var(--text);
}

.eyebrow span {
  width: 28px;
  height: 3px;
  background: var(--fire);
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(60px, 17vw, 92px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .84;
  text-transform: uppercase;
}

.hero h1 em,
.section-heading h1 span,
.section-heading h2 span,
.manifesto h2 span,
.how h2 span,
.delivery h2 span,
.faq h2 span,
.closing h2 span {
  display: inline-block;
  color: var(--fire);
  font-style: normal;
}

.hero__lead {
  max-width: 37rem;
  margin-bottom: 28px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.6;
}

.hero__actions {
  display: grid;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: var(--radius-small);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .045em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  touch-action: manipulation;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 120ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: scale(.98);
}

.button svg {
  width: 21px;
  height: 21px;
}

.button--whatsapp {
  border-color: transparent;
  background: var(--whatsapp);
  color: var(--on-whatsapp);
  box-shadow: 0 10px 28px rgba(37, 211, 102, .18);
}

.button--whatsapp svg {
  color: #0b4928;
}

.button--whatsapp:hover {
  background: #3be077;
  box-shadow: 0 12px 36px rgba(37, 211, 102, .28);
}

.button--ghost,
.button--outline {
  border-color: var(--border-strong);
  background: rgba(11, 11, 11, .64);
  color: var(--text);
}

.button--ghost:hover,
.button--outline:hover {
  border-color: var(--text-soft);
  background: var(--text);
  color: var(--background);
}

.button--fire {
  width: 100%;
  background: var(--fire);
  color: var(--on-fire);
}

.button--fire:hover {
  background: #ff7b43;
  box-shadow: var(--shadow-fire);
}

.hero__microcopy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 40px;
  left: var(--gutter);
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 248, 237, .24);
  color: var(--text-soft);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
  color: var(--fire);
  animation: nudge 1.8s var(--ease) 3;
}

@keyframes nudge {
  0%,
  100% { transform: translateY(-2px); }
  50% { transform: translateY(4px); }
}

.proof-strip {
  border-block: 1px solid var(--border);
  background: var(--surface-soft);
}

.proof-strip__track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-strip__track > div {
  display: grid;
  min-height: 96px;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 14px 8px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
  text-align: center;
}

.proof-strip__track > div:nth-child(even) {
  border-right: 0;
}

.proof-strip__track > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.proof-strip svg {
  color: var(--fire);
}

.proof-strip span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .035em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section {
  padding-block: 72px;
}

.kicker {
  margin-bottom: 12px;
}

.section-heading {
  display: grid;
  gap: 20px;
  margin-bottom: 36px;
}

.section-heading h1,
.section-heading h2,
.manifesto h2,
.faq h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 12vw, 72px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .9;
  text-transform: uppercase;
}

.section-heading > p {
  max-width: 32rem;
  margin: 0;
  color: var(--text-soft);
}

.section.legal {
  padding-top: calc(var(--header-height) + 40px);
}

.legal-content {
  display: grid;
  max-width: 68ch;
  gap: 28px;
}

.legal-content h2 {
  margin-bottom: 10px;
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--cream);
}

.legal-content p,
.legal-content li {
  color: var(--text-soft);
  line-height: 1.7;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.legal-content strong {
  color: var(--text);
}

.legal-content code {
  font-family: monospace;
  font-size: .9em;
}

.legal-updated {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.menu {
  padding-top: calc(var(--header-height) + 40px);
  background:
    radial-gradient(circle at 100% 20%, rgba(255, 82, 22, .08), transparent 25rem),
    var(--background);
}

.menu-grid {
  display: grid;
  gap: 24px;
}

.menu-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.menu-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.menu-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0f0e0d;
}

.menu-card__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(transparent, rgba(10, 9, 8, .72));
  content: "";
  pointer-events: none;
}

.menu-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.menu-card:hover .menu-card__media img {
  transform: scale(1.035);
}

.menu-card__badge {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  transform: rotate(-1.5deg);
  border: 1px solid rgba(255, 248, 237, .22);
  border-radius: 4px;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.menu-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.menu-card h3 {
  max-width: 12ch;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: .95;
  text-transform: uppercase;
}

.price {
  flex: 0 0 auto;
  margin: 0;
  color: var(--ember);
  font-family: var(--font-display);
  font-size: 24px;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  line-height: 1;
}

.menu-card__body > p {
  display: -webkit-box;
  min-height: 78px;
  margin-bottom: 20px;
  overflow: hidden;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.menu-card .button {
  margin-top: auto;
}

.combo-callout {
  position: relative;
  display: grid;
  gap: 20px;
  margin-top: 24px;
  padding: 28px 24px;
  overflow: hidden;
  border: 2px solid var(--fire);
  border-radius: var(--radius);
  background: var(--fire);
  color: var(--on-fire);
}

.combo-callout::after {
  position: absolute;
  top: -45px;
  right: -36px;
  width: 130px;
  height: 130px;
  border: 24px solid rgba(27, 9, 2, .12);
  border-radius: 999px;
  content: "";
}

.combo-callout .kicker {
  color: var(--on-fire);
  opacity: .75;
}

.combo-callout h3 {
  max-width: 16ch;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
}

.combo-callout h3 span {
  display: block;
  color: var(--on-fire);
  text-shadow: none;
}

.combo-callout > p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-weight: 600;
}

.menu-teaser {
  display: grid;
  gap: 24px;
}

.menu-teaser__list {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-teaser__list li {
  display: grid;
  gap: 12px;
}

.menu-teaser__list img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
}

.menu-teaser__list li > div {
  display: grid;
  gap: 4px;
}

.menu-teaser__list strong {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #1c130e;
  text-transform: uppercase;
}

.menu-teaser__list span {
  color: #4a3c2f;
  font-size: 14.5px;
  line-height: 1.5;
}

.menu-teaser .button {
  justify-self: start;
}

@media (min-width: 768px) {
  .menu-teaser__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.menu-card__price-alt {
  margin: -6px 0 12px;
  color: var(--text-soft);
  font-size: 13px;
}

.carta-section-title {
  margin: 56px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.menu-grid + .carta-section-title {
  margin-top: 64px;
}

.carta-list {
  display: grid;
  gap: 28px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.carta-list__group h4 {
  margin-bottom: 10px;
  color: var(--ember);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.carta-list__group ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.carta-list__group li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--border);
  color: var(--text-soft);
  font-size: 14px;
}

.carta-list .button {
  justify-self: start;
}

.manifesto {
  border-block: 1px solid var(--border);
  background: var(--background-deep);
}

.manifesto__grid {
  display: grid;
  gap: 40px;
}

.manifesto__media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.manifesto__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 44%, rgba(7, 7, 7, .92)),
    linear-gradient(90deg, rgba(255, 82, 22, .16), transparent 35%);
  content: "";
}

.manifesto__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.manifesto__media > p {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 24px;
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: .86;
  text-transform: uppercase;
}

.manifesto__content {
  align-self: center;
}

.manifesto__lead {
  max-width: 39rem;
  margin: 24px 0 32px;
  color: var(--text-soft);
  font-size: 17px;
}

.manifesto__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.manifesto__list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding-block: 18px;
  border-top: 1px solid var(--border);
}

.manifesto__list li:last-child {
  border-bottom: 1px solid var(--border);
}

.manifesto__list > li > span {
  color: var(--fire);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}

.manifesto__list strong {
  display: block;
  margin-bottom: 2px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.manifesto__list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.how {
  background:
    linear-gradient(135deg, rgba(255, 82, 22, .05), transparent 32%),
    var(--surface-soft);
}

.steps {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 248px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.steps li > span {
  position: absolute;
  top: 14px;
  right: 18px;
  color: rgba(255, 248, 237, .06);
  font-family: var(--font-display);
  font-size: 86px;
  font-weight: 900;
  line-height: 1;
}

.steps svg {
  width: 32px;
  height: 32px;
  margin-bottom: 42px;
  color: var(--fire);
}

.steps h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.steps p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.instagram {
  overflow: hidden;
  background: var(--background);
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.text-link svg {
  color: var(--fire);
}

.text-link:hover {
  color: var(--fire);
}

.instagram-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  justify-items: center;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.reel-cover {
  position: relative;
  display: block;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--radius-small);
  background: var(--surface);
  justify-self: center;
}

.reel-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.reel-cover:hover img,
.reel-cover:focus-visible img {
  transform: scale(1.03);
}

.reel-cover__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel-cover__play svg {
  width: 56px;
  height: 56px;
  padding: 16px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .45);
  fill: currentColor;
  stroke: none;
  color: #fff;
}

.reel-cover__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
}

.reel-cover__badge svg {
  width: 16px;
  height: 16px;
}

.delivery {
  border-block: 1px solid var(--border);
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 82, 22, .1), transparent 28rem),
    var(--surface-soft);
}

.branch-grid {
  display: grid;
  gap: 20px;
}

.delivery-apps {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.branch-card {
  position: relative;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.branch-card__number {
  position: absolute;
  top: 10px;
  right: 18px;
  margin: 0;
  color: rgba(255, 248, 237, .055);
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 900;
  line-height: 1;
}

.branch-card__icon {
  width: 30px;
  height: 30px;
  margin-bottom: 34px;
  color: var(--fire);
}

.branch-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.branch-card__address {
  display: block;
  margin: 0 0 8px;
  color: var(--text-soft);
  font-size: 14px;
  font-style: normal;
}

.branch-card > p:not(.branch-card__number) {
  max-width: 28rem;
  margin-bottom: 24px;
  color: var(--text-soft);
}

.branch-card__actions {
  display: grid;
  gap: 10px;
}

.service-cards {
  display: grid;
  gap: 1px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--border);
}

.service-cards > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  padding: 20px;
  background: var(--surface);
}

.service-cards svg {
  grid-row: span 2;
  color: var(--fire);
}

.service-cards span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-cards strong {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.2;
  text-transform: uppercase;
}

.faq {
  background: var(--background);
}

.faq__grid {
  display: grid;
  gap: 40px;
}

.faq__intro > p:last-child {
  max-width: 28rem;
  margin: 24px 0 0;
  color: var(--text-soft);
}

.faq__items {
  border-top: 1px solid var(--border);
}

.faq details {
  border-bottom: 1px solid var(--border);
}

.faq summary {
  display: flex;
  min-height: 72px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
  list-style: none;
  text-transform: uppercase;
  touch-action: manipulation;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary svg {
  color: var(--fire);
  transition: transform 200ms var(--ease);
}

.faq details[open] summary svg {
  transform: rotate(180deg);
}

.faq details > p {
  max-width: 48rem;
  margin: -4px 36px 22px 0;
  color: var(--text-soft);
  font-size: 14px;
}

.closing {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: url("assets/images/closing-sanguche.webp") center center / cover no-repeat;
}

.closing__scrim {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, .96) 0%, rgba(7, 7, 7, .68) 75%, rgba(7, 7, 7, .62)),
    linear-gradient(180deg, rgba(7, 7, 7, .45), rgba(7, 7, 7, .88));
}

.closing__content {
  text-align: center;
}

.closing h2 {
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(64px, 18vw, 112px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .83;
  text-transform: uppercase;
}

.closing__content > p:not(.kicker) {
  margin-bottom: 26px;
  color: var(--text-soft);
}

.closing .button {
  width: 100%;
}

.footer {
  padding: 56px 0 28px;
  border-top: 1px solid var(--border);
  background: var(--background-deep);
}

.footer__grid {
  display: grid;
  gap: 32px;
}

.brand--footer {
  margin-bottom: 16px;
}

.footer__grid > div:first-child > p {
  margin: 0;
  color: var(--muted);
}

.footer nav,
.footer__contact {
  display: grid;
  align-content: start;
  gap: 4px;
}

.footer nav a,
.footer__contact a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

.footer nav a:hover,
.footer__contact a:hover {
  color: var(--fire);
}

.footer__contact svg {
  width: 19px;
  height: 19px;
  color: var(--fire);
}

.footer__bottom {
  display: grid;
  gap: 6px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.sticky-order {
  position: fixed;
  z-index: var(--z-sticky);
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: rgba(11, 11, 11, .98);
}

.sticky-order .button {
  width: 100%;
  min-height: 56px;
  padding-inline: 18px;
}

.sticky-order .button span {
  margin-right: auto;
}

.sticky-order .button small {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.branch-dialog {
  position: fixed;
  z-index: var(--z-dialog);
  inset: auto 0 0;
  width: 100%;
  max-width: none;
  max-height: min(88dvh, 620px);
  margin: 0;
  padding: 26px var(--gutter) calc(24px + env(safe-area-inset-bottom));
  overflow-y: auto;
  border: 1px solid var(--border);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 -24px 80px rgba(0, 0, 0, .56);
}

.branch-dialog[open] {
  animation: dialog-in 260ms var(--ease) both;
}

.branch-dialog::backdrop {
  background: rgba(0, 0, 0, .72);
  animation: backdrop-in 180ms ease-out both;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
}

@keyframes backdrop-in {
  from { opacity: 0; }
}

.branch-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.branch-dialog__header .kicker {
  margin-bottom: 5px;
}

.branch-dialog h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.icon-button {
  display: grid;
  width: 48px;
  height: 48px;
  cursor: pointer;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--background);
  color: var(--text);
}

.icon-button:hover {
  border-color: var(--fire);
  color: var(--fire);
}

.branch-dialog__copy {
  margin: 18px 0 20px;
  color: var(--text-soft);
  font-size: 14px;
}

.branch-dialog__options {
  display: grid;
  gap: 10px;
}

.branch-option {
  display: grid;
  min-height: 78px;
  grid-template-columns: 44px 1fr 24px;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  touch-action: manipulation;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 120ms ease;
}

.branch-option:hover {
  border-color: var(--whatsapp);
  background: #0c1710;
}

.branch-option:active {
  transform: scale(.99);
}

.branch-option > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: rgba(37, 211, 102, .12);
  color: var(--whatsapp);
}

.branch-option > span svg {
  width: 21px;
  height: 21px;
}

.branch-option > svg {
  width: 20px;
  height: 20px;
  color: var(--whatsapp);
}

.branch-option strong,
.branch-option small {
  display: block;
}

.branch-option strong {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.branch-option small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.branch-option-group {
  display: grid;
  gap: 6px;
}

.branch-option__delivery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 2px;
}

.branch-option__delivery-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 10px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 6px);
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.branch-option__delivery-link svg {
  width: 15px;
  height: 15px;
}

.branch-option__delivery-link:hover {
  border-color: var(--fire);
  color: var(--fire);
}

.branch-dialog__hint {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 380ms var(--ease),
    transform 380ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .hero__content > *,
.js .hero__scroll {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 520ms var(--ease),
    transform 520ms var(--ease);
}

.js .hero.is-ready .hero__content > *,
.js .hero.is-ready .hero__scroll {
  opacity: 1;
  transform: translateY(0);
}

.js .hero__content > *:nth-child(2) { transition-delay: 90ms; }
.js .hero__content > *:nth-child(3) { transition-delay: 160ms; }
.js .hero__content > *:nth-child(4) { transition-delay: 230ms; }
.js .hero__content > *:nth-child(5) { transition-delay: 300ms; }
.js .hero__scroll { transition-delay: 380ms; }

@media (prefers-reduced-motion: reduce) {
  .js .hero__content > *,
  .js .hero__scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 600px) {
  :root {
    --gutter: 24px;
  }

  .hero__actions,
  .branch-card__actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero__actions .button {
    min-width: 210px;
  }

  .branch-card__actions .button {
    flex: 1 1 210px;
  }

  .delivery-apps {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 12px;
  }

  .combo-callout {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
    padding: 34px;
  }

  .service-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .closing .button {
    width: auto;
    min-width: 250px;
  }
}

@media (min-width: 768px) {
  :root {
    --header-height: 110px;
  }

  .nav {
    min-height: 78px;
  }

  .nav__links {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 34px);
  }

  .nav__links a {
    position: relative;
    display: grid;
    min-height: 48px;
    place-items: center;
    padding-inline: 6px;
    color: var(--text-soft);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .055em;
    text-transform: uppercase;
  }

  .nav__links a::after {
    position: absolute;
    right: 0;
    bottom: 8px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--fire);
    content: "";
    transition: transform 180ms ease;
  }

  .nav__links a:hover {
    color: var(--text);
  }

  .nav__links a:hover::after {
    transform: scaleX(1);
  }

  .nav__menu-link {
    display: none;
  }

  .nav__toggle,
  .nav__drawer {
    display: none;
  }

  .service-status {
    min-height: 32px;
    font-size: 11px;
  }

  .hero {
    min-height: max(720px, 92dvh);
    background-position: center;
  }

  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(7, 7, 7, .34) 0%, rgba(7, 7, 7, .04) 34%, rgba(7, 7, 7, .8) 88%, #0b0b0b 100%),
      linear-gradient(90deg, rgba(7, 7, 7, .9) 0%, rgba(7, 7, 7, .55) 40%, rgba(7, 7, 7, .06) 78%);
  }

  .hero__content {
    padding-top: 220px;
    padding-bottom: 120px;
  }

  .hero h1 {
    font-size: clamp(80px, 11vw, 132px);
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__scroll {
    right: var(--gutter);
    left: auto;
    width: 260px;
  }

  .proof-strip__track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .proof-strip__track > div {
    min-height: 112px;
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }

  .proof-strip__track > div:nth-child(even) {
    border-right: 1px solid var(--border);
  }

  .proof-strip__track > div:last-child {
    border-right: 0;
  }

  .proof-strip span {
    font-size: 16px;
  }

  .section {
    padding-block: 96px;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    align-items: end;
    gap: 48px;
    margin-bottom: 52px;
  }

  .section-heading > p,
  .section-heading .text-link,
  .section-heading .social-links {
    justify-self: end;
  }

  .section-heading h1,
  .section-heading h2,
  .manifesto h2,
  .faq h2 {
    font-size: clamp(64px, 7vw, 96px);
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-card__body {
    padding: 26px;
  }

  .menu-card h3 {
    font-size: 36px;
  }

  .manifesto__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
    align-items: center;
    gap: clamp(48px, 7vw, 96px);
  }

  .manifesto__media {
    min-height: 680px;
  }

  .manifesto__media > p {
    bottom: 36px;
    left: 36px;
    font-size: 56px;
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps li {
    min-height: 290px;
    padding: 30px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    justify-items: stretch;
  }

  .branch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .branch-card {
    padding: 36px;
  }

  .faq__grid {
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: clamp(64px, 9vw, 130px);
  }

  .faq__intro {
    align-self: center;
  }

  .faq summary {
    min-height: 82px;
    font-size: 24px;
  }

  .closing {
    min-height: 720px;
    background-position: center;
  }

  .closing__content {
    text-align: left;
  }

  .closing h2 {
    font-size: clamp(96px, 11vw, 156px);
  }

  .footer__grid {
    grid-template-columns: 1.5fr .7fr 1fr;
    gap: 64px;
  }


  .sticky-order {
    right: 24px;
    bottom: 24px;
    left: auto;
    width: 290px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .sticky-order .button {
    box-shadow: 0 18px 56px rgba(0, 0, 0, .48), 0 12px 32px rgba(37, 211, 102, .18);
  }

  .branch-dialog {
    inset: 50% auto auto 50%;
    width: min(92vw, 540px);
    max-height: 86dvh;
    margin: 0;
    padding: 32px;
    transform: translate(-50%, -50%);
    border: 1px solid var(--border);
    border-radius: 18px;
  }

  .branch-dialog[open] {
    animation: dialog-in-desktop 240ms var(--ease) both;
  }

  @keyframes dialog-in-desktop {
    from {
      opacity: 0;
      transform: translate(-50%, calc(-50% + 18px)) scale(.98);
    }
  }
}

@media (min-width: 1024px) {
  :root {
    --gutter: 32px;
  }

  .brand__text strong {
    font-size: 25px;
  }

  .brand__text small {
    font-size: 9px;
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-card:last-child {
    grid-column: 2;
  }

  .combo-callout {
    margin-top: 32px;
    padding: 40px 48px;
  }

  .combo-callout h3 {
    font-size: 48px;
  }

  .service-cards > div {
    padding: 24px;
  }
}

@media (hover: none) {
  .menu-card:hover,
  .button:hover {
    transform: none;
  }

  .menu-card:hover .menu-card__media img {
    transform: none;
  }
}

@media (orientation: landscape) and (max-height: 620px) {
  .hero {
    min-height: 760px;
  }

  .hero__content {
    padding-top: 160px;
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .button,
  .menu-card,
  .branch-card,
  .steps li,
  .branch-option {
    border: 2px solid ButtonText;
  }
}

/* Contemporary Peruvian street-food refresh */
body {
  background:
    radial-gradient(circle at 92% 9%, rgba(182, 56, 34, .12), transparent 28rem),
    var(--background);
}

.site-header.is-scrolled {
  background: rgba(13, 13, 12, .96);
  backdrop-filter: blur(14px);
}

.service-status {
  min-height: 30px;
  border-block: 0;
  background: var(--panca);
  color: var(--text);
  letter-spacing: .075em;
}

.service-status span {
  background: var(--aji);
  box-shadow: 0 0 0 4px rgba(242, 181, 68, .18);
}

.hero {
  min-height: max(730px, 92svh);
  border-bottom: 1px solid rgba(244, 231, 210, .16);
  background-position: center;
}

.hero__scrim {
  background:
    linear-gradient(180deg, rgba(8, 7, 6, .38) 0%, rgba(8, 7, 6, .03) 28%, rgba(8, 7, 6, .88) 77%, var(--background) 100%),
    linear-gradient(90deg, rgba(8, 7, 6, .88), rgba(8, 7, 6, .18) 84%);
}

.hero__content {
  z-index: 1;
  padding-top: 176px;
  padding-bottom: 54px;
}

.hero h1 {
  max-width: 9ch;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .38);
}

.hero h1 em {
  color: var(--aji);
}

.eyebrow span {
  background: var(--aji);
}

.hero__lead {
  max-width: 34rem;
}

.hero__local {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero__local > a,
.hero__local > span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(244, 231, 210, .28);
  border-radius: 999px;
  background: rgba(13, 13, 12, .72);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.hero__local > a {
  transition: border-color 180ms ease, background-color 180ms ease;
}

.hero__local > a:hover {
  border-color: var(--aji);
  background: rgba(242, 181, 68, .12);
}

.hero__local a span {
  color: var(--aji);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
}

.hero__local svg {
  width: 16px;
  height: 16px;
  color: var(--aji);
}

.hero__microcopy {
  max-width: 39rem;
  margin-top: 12px;
}

.hero__scroll {
  display: none;
}

.proof-strip {
  border-block: 0;
  background: var(--aji);
  color: var(--on-fire);
}

.proof-strip__track > div {
  border-color: rgba(27, 10, 4, .22);
  color: var(--on-fire);
}

.proof-strip svg {
  color: var(--panca);
  stroke-width: 2.1;
}

.proof-strip span {
  letter-spacing: .045em;
}

.menu {
  position: relative;
  color: #201711;
  background:
    linear-gradient(rgba(89, 62, 44, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 62, 44, .055) 1px, transparent 1px),
    var(--cream);
  background-size: 34px 34px;
}

.menu::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--panca) 0 36px, var(--aji) 36px 72px, var(--surface) 72px 108px);
  content: "";
}

.menu .kicker {
  color: var(--panca);
}

.menu .section-heading h1,
.menu .section-heading h2 {
  color: #1c130e;
}

#carta-title {
  font-size: clamp(54px, 13vw, 78px);
}

.menu .section-heading h1 span,
.menu .section-heading h2 span {
  color: var(--panca);
}

.menu .section-heading > p {
  color: #655548;
}

.menu-card {
  border-color: rgba(32, 23, 17, .22);
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 20px 42px rgba(65, 37, 21, .18);
}

.menu-card:hover {
  border-color: var(--panca);
  box-shadow: 0 26px 56px rgba(65, 37, 21, .28);
}

.menu-card__badge {
  border: 0;
  background: var(--aji);
  color: var(--on-fire);
}

.menu-card__body > p {
  color: var(--text-soft);
}

.price {
  color: var(--aji);
}

.button--fire {
  background: var(--fire);
  color: #fff8ed;
}

.button--fire:hover {
  background: var(--fire-strong);
}

.combo-callout {
  border-color: var(--panca);
  background:
    radial-gradient(circle at 92% 10%, rgba(242, 181, 68, .28), transparent 9rem),
    var(--panca);
  color: var(--text);
}

.combo-callout::before {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 74px;
  height: 74px;
  opacity: .15;
  background: conic-gradient(var(--aji) 25%, transparent 0 50%, var(--aji) 0 75%, transparent 0);
  background-size: 20px 20px;
  content: "";
}

.combo-callout .kicker,
.combo-callout h3 span {
  color: var(--aji);
  opacity: 1;
}

.combo-callout > p {
  color: var(--text);
}

.manifesto {
  background:
    radial-gradient(circle at 90% 18%, rgba(182, 56, 34, .15), transparent 26rem),
    var(--background-deep);
}

.manifesto__media {
  border-color: rgba(244, 231, 210, .2);
  border-radius: 2px 22px 2px 22px;
}

.manifesto__media::after {
  background:
    linear-gradient(180deg, transparent 42%, rgba(8, 7, 6, .94)),
    linear-gradient(90deg, rgba(182, 56, 34, .26), transparent 42%);
}

.manifesto__list > li > span {
  color: var(--aji);
}

.how {
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(242, 181, 68, .11), transparent 34%),
    var(--panca);
}

.how .kicker,
.how .section-heading h2 span {
  color: var(--aji);
}

.how .section-heading > p {
  color: var(--text);
}

.steps li {
  border: 0;
  background: var(--cream);
  color: #21150e;
  box-shadow: 0 18px 38px rgba(72, 18, 10, .17);
}

.steps li > span {
  color: rgba(182, 56, 34, .11);
}

.steps svg {
  color: var(--panca);
  stroke-width: 2.1;
}

.steps p {
  color: #655548;
}

.instagram {
  background:
    radial-gradient(circle at 12% 12%, rgba(242, 181, 68, .08), transparent 25rem),
    var(--background);
}

.delivery {
  color: #201711;
  border-block: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(182, 56, 34, .1), transparent 30rem),
    var(--cream);
}

.delivery .kicker,
.delivery .section-heading h2 span {
  color: var(--panca);
}

.delivery .section-heading h2 {
  color: #1c130e;
}

.delivery .section-heading > p {
  color: #655548;
}

.branch-card {
  border: 0;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 20px 42px rgba(65, 37, 21, .18);
}

.branch-card__number {
  color: rgba(242, 181, 68, .08);
}

.branch-card__icon {
  color: var(--aji);
}

.branch-card > p:not(.branch-card__number) {
  color: var(--text-soft);
}

.service-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-color: var(--surface);
  background: var(--surface);
}

.service-cards > div {
  min-width: 0;
  background: var(--surface);
  color: var(--text);
}

.service-cards svg {
  color: var(--aji);
}

.service-cards span {
  color: var(--muted);
}

@media (max-width: 767px) {
  .service-cards > div:last-child {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-block: 20px;
    text-align: center;
  }

  .service-cards > div:last-child svg {
    grid-row: auto;
  }
}

.faq {
  background:
    linear-gradient(90deg, rgba(182, 56, 34, .06), transparent 38%),
    var(--background);
}

.faq summary svg {
  color: var(--aji);
}

.closing h2 span {
  color: var(--aji);
}

.sticky-order {
  background: rgba(13, 13, 12, .97);
}

.branch-dialog {
  border-color: var(--border-strong);
  background:
    radial-gradient(circle at 100% 0, rgba(182, 56, 34, .16), transparent 15rem),
    var(--surface);
}

@media (max-width: 599px) {
  .hero {
    min-height: max(560px, 80svh);
  }

  .hero__content {
    padding-top: 140px;
  }

  .hero h1 {
    font-size: clamp(58px, 17vw, 76px);
  }

  .hero__lead {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .hero__actions {
    gap: 9px;
  }

  .hero__actions .button {
    min-height: 50px;
  }

  .menu-grid {
    gap: 12px;
  }

  .steps li {
    display: grid;
    min-height: 0;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    column-gap: 16px;
    padding: 22px;
  }

  .steps svg {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .steps h3 {
    margin-bottom: 5px;
    font-size: 28px;
  }

  .steps p {
    font-size: 13px;
  }

  .steps li > span {
    top: 5px;
    right: 12px;
    font-size: 62px;
  }

  .service-cards > div {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 16px 12px;
  }

  .service-cards strong {
    font-size: 16px;
  }

  .sticky-order .button small {
    display: none;
  }
}

@media (min-width: 400px) and (max-width: 599px) {
  .hero__actions {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  }

  .hero__actions .button {
    min-width: 0;
    padding-inline: 14px;
    font-size: 16px;
  }
}

@media (min-width: 600px) {
  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .hero {
    min-height: max(720px, 90dvh);
  }

  .hero__content {
    padding-top: 210px;
    padding-bottom: 92px;
  }

  .hero h1 {
    max-width: 8ch;
  }

  .hero__scroll {
    display: flex;
  }

  .proof-strip__track > div {
    border-color: rgba(27, 10, 4, .22);
  }

  .service-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-card:last-child {
    grid-column: auto;
  }
}

@media (min-width: 1200px) {
  .menu-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .menu-card h3 {
    font-size: 32px;
  }
}

@media (forced-colors: active) {
  .proof-strip,
  .menu,
  .how,
  .delivery,
  .steps li {
    background: Canvas;
    color: CanvasText;
  }
}

/* Typographic hierarchy: reserve the condensed display face for real headings. */
.hero h1,
.section-heading h1,
.section-heading h2,
.manifesto h2,
.how h2,
.delivery h2,
.faq h2,
.closing h2,
.menu-card h3,
.combo-callout h3,
.steps h3,
.branch-card h3,
.branch-dialog h2 {
  font-weight: 800;
}

.eyebrow,
.kicker,
.nav__menu-link,
.nav__links a,
.button,
.hero__scroll,
.proof-strip span,
.menu-card__badge,
.price,
.manifesto__list > li > span,
.service-cards strong,
.branch-option strong,
.hero__local a span {
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: .025em;
}

.faq summary {
  color: var(--text);
  font-family: var(--font-ui);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.35;
  text-transform: none;
}

.hero h1 {
  font-size: clamp(58px, 15vw, 84px);
  letter-spacing: -.035em;
  line-height: .88;
}

@media (max-width: 599px) {
  .hero h1 {
    font-size: clamp(56px, 15vw, 70px);
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: clamp(76px, 9.5vw, 118px);
  }
}
