@font-face {
  font-family: "Don Pedro Display";
  src: url("../fonts/oswald-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
}

:root {
  --red: #c82027;
  --red-dark: #94171c;
  --yellow: #ffc915;
  --paper: #fff8ec;
  --cream: #f5ecdd;
  --ink: #211b18;
  --muted: #6b625b;
  --white: #fffdf8;
  --display: "Don Pedro Display", sans-serif;
  --body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 60px; }
body {
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 18%, rgba(255,201,21,.08) 0 1px, transparent 1.5px) 0 0 / 12px 12px,
    #2b201c;
  font-family: var(--body);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, figure, ul { margin: 0; }
ul { padding: 0; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.category-nav {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 54px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 5px 18px rgba(0,0,0,.24);
}
.category-nav a {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  border-right: 1px solid rgba(255,255,255,.16);
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .035em;
  text-align: center;
  text-transform: uppercase;
  transition: color .18s ease, background-color .18s ease;
}
.category-nav a:last-child { border-right: 0; }
.category-nav a:active, .category-nav a:focus-visible { color: var(--ink); background: var(--yellow); }
.category-nav a::after {
  position: absolute;
  right: 26%;
  bottom: 0;
  left: 26%;
  height: 4px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform .18s ease;
}
.category-nav a.is-active { color: var(--yellow); }
.category-nav a.is-active::after { transform: scaleX(1); }

.menu-shell {
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--paper);
}

.menu-cover {
  position: relative;
  overflow: hidden;
  height: 210px;
  background: var(--red);
  border-bottom: 5px solid var(--yellow);
}
.menu-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(141,21,27,.58) 0%, transparent 52%),
    linear-gradient(100deg, rgba(200,32,39,.54) 0%, rgba(200,32,39,.32) 32%, rgba(200,32,39,.09) 64%, rgba(33,27,24,.03) 100%);
}
.cover-picture { display: block; width: 100%; height: 100%; }
.cover-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(1.08) contrast(1.03); }
.cover-content {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px 18px 15px;
}
.cover-content::before {
  position: absolute;
  top: 2px;
  left: -24px;
  width: 270px;
  height: 190px;
  content: "";
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(255,248,236,.93) 0%, rgba(255,248,236,.7) 38%, rgba(255,248,236,0) 72%);
}
.menu-logo {
  position: relative;
  width: 148px;
  height: 148px;
  object-fit: contain;
  filter: drop-shadow(0 4px 9px rgba(255,248,236,.78)) drop-shadow(0 3px 5px rgba(50,0,0,.35));
}
.cover-content p {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(80,0,0,.58);
  gap: 10px;
}
.cover-content p span {
  padding-left: 10px;
  color: var(--yellow);
  border-left: 2px solid rgba(255,255,255,.6);
}

.menu-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 25px 16px 30px;
  background:
    radial-gradient(circle at 92% 12%, rgba(200,32,39,.045) 0 1px, transparent 1.5px) 0 0 / 10px 10px,
    var(--paper);
  scroll-margin-top: 58px;
}
.section-heading {
  position: relative;
  display: block;
  margin-bottom: 17px;
  padding-bottom: 13px;
  border-bottom: 3px solid var(--red);
  gap: 15px;
}
.section-heading::after {
  position: absolute;
  z-index: -1;
  right: -2px;
  bottom: -12px;
  content: attr(data-section);
  color: var(--red);
  font-family: var(--display);
  font-size: 5.4rem;
  font-weight: 700;
  line-height: 1;
  opacity: .055;
}
.section-heading > p {
  max-width: none;
  margin-top: 7px;
  color: var(--muted);
  font-size: .72rem;
  text-align: left;
}
.section-heading > p strong { color: var(--red); white-space: nowrap; }
.eyebrow {
  margin-bottom: 1px;
  color: var(--red);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-heading h1, .section-heading h2 {
  margin: 0;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(2.25rem, 10vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: .95;
  text-transform: uppercase;
}

.price-grid, .drinks-grid { display: grid; gap: 14px; }
.price-grid > *, .drinks-grid > * { min-width: 0; }
.price-block {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(33,27,24,.14);
  border-radius: 17px 5px 17px 5px;
  box-shadow: 0 7px 18px rgba(61,36,22,.07);
}
.price-block-primary { border-top: 4px solid var(--red-dark); }
.price-block-secondary { border-top: 4px solid var(--ink); }
.price-block-secondary .price-band { background: var(--ink); }
.price-band {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding-left: 14px;
  color: var(--white);
  background: var(--red);
  gap: 12px;
}
.price-band h2, .price-band h3 {
  min-width: 0;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .035em;
  line-height: 1.05;
  text-transform: uppercase;
}
.price-band h2 .option-note {
  margin-left: 5px;
  font-family: var(--body);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}
.chiles-block .price-band h2 { font-size: 1rem; white-space: nowrap; }
.chiles-block .price-band h2 .option-note { margin-left: 3px; font-size: .54rem; }
.price-band > strong {
  display: flex;
  min-width: 92px;
  min-height: 54px;
  align-items: baseline;
  justify-content: center;
  padding: 7px 9px;
  color: var(--red);
  background: var(--yellow);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.price-band > strong small { margin-right: 2px; font-size: .7rem; }
.price-band > strong span { margin-left: 3px; font-family: var(--body); font-size: .54rem; font-weight: 900; text-transform: uppercase; }
.price-band-yellow { color: var(--ink); background: var(--yellow); }
.price-band-yellow > strong { color: var(--white); background: var(--red); }

.compact-list { list-style: none; }
.compact-list li {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(33,27,24,.11);
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: .025em;
  line-height: 1.08;
  text-transform: uppercase;
}
.compact-list li:last-child { border-bottom: 0; }
.detail-list li { display: grid; align-content: center; }
.detail-list li span { font-family: var(--display); }
.detail-list li small {
  margin-top: 2px;
  color: var(--muted);
  font-family: var(--body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: none;
}

.food-strip {
  position: relative;
  overflow: hidden;
  height: 150px;
  margin-top: 17px;
  border: 4px solid var(--white);
  border-radius: 24px 5px 24px 5px;
  box-shadow: 0 12px 26px rgba(61,36,22,.14);
}
.food-strip::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(33,27,24,.7), transparent 70%); }
.food-strip img { width: 100%; height: 100%; object-fit: cover; object-position: center 54%; }
.food-strip figcaption {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 17px;
  max-width: 180px;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.red-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 30%, rgba(255,201,21,.11) 0 1px, transparent 1.5px) 0 0 / 11px 11px,
    linear-gradient(135deg, var(--red) 0%, var(--red-dark) 125%);
}
.red-section::before {
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -32px;
  content: "VAPOR";
  color: var(--yellow);
  font-family: var(--display);
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  opacity: .055;
}
.section-heading-light { border-color: var(--yellow); }
.section-heading-light h2, .section-heading-light .eyebrow { color: var(--yellow); }
.section-heading-light > p { color: rgba(255,255,255,.78); }
.section-heading-light::after { color: var(--yellow); opacity: .09; }
.vapor-layout { display: grid; gap: 14px; }
.category-photo { overflow: hidden; height: 150px; border: 4px solid rgba(255,255,255,.9); border-radius: 22px 5px 22px 5px; box-shadow: 0 12px 24px rgba(70,0,0,.25); }
.category-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; filter: saturate(1.08) contrast(1.03); }

.priced-list { overflow: hidden; list-style: none; background: var(--red-dark); border-radius: 12px; }
.priced-list li {
  display: flex;
  min-height: 49px;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px 7px 14px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  gap: 12px;
}
.priced-list li:last-child { border-bottom: 0; }
.priced-list li > span {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.priced-list li > strong {
  min-width: 66px;
  padding: 4px 9px;
  color: var(--red);
  background: var(--yellow);
  border-radius: 18px 5px 5px 18px;
  font-family: var(--display);
  font-size: 1.45rem;
  text-align: center;
}
.priced-list small { display: block; font-family: var(--body); font-size: .66rem; font-weight: 500; letter-spacing: 0; text-transform: none; }
.light-list { color: var(--ink); background: var(--white); }
.light-list li { border-color: rgba(33,27,24,.11); }
#bebidas { background: linear-gradient(145deg, var(--paper) 0%, #fff2cf 145%); }

.locations-disclosure {
  background: var(--cream);
  border-top: 5px solid var(--yellow);
  scroll-margin-top: 58px;
}
.locations-disclosure summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  list-style: none;
}
.locations-disclosure summary::-webkit-details-marker { display: none; }
.locations-disclosure summary span {
  display: grid;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}
.locations-disclosure summary small {
  margin-bottom: 3px;
  color: var(--yellow);
  font-family: var(--body);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .14em;
}
.locations-disclosure summary b {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 1.5rem;
  transition: transform .2s ease;
}
.locations-disclosure[open] summary b { transform: rotate(45deg); }
.location-grid { display: grid; padding: 14px; gap: 10px; }
.location-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  grid-template-rows: auto auto 1fr;
  min-height: 142px;
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(33,27,24,.12);
  border-radius: 14px 5px 14px 5px;
  box-shadow: 0 6px 16px rgba(61,36,22,.06);
  column-gap: 12px;
}
.location-card h3 { grid-column: 1; color: var(--red); font-family: var(--display); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; }
.location-card p { grid-column: 1; margin: 3px 0 10px; color: var(--muted); font-size: .72rem; }
.location-card > a:not(.map-preview), .phone-list a { color: var(--red); font-family: var(--display); font-size: 1.02rem; font-weight: 600; }
.location-card > a:not(.map-preview), .phone-list { grid-column: 1; align-self: end; }
.phone-list { display: flex; flex-wrap: wrap; gap: 5px 12px; }
.map-preview {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-column: 2;
  grid-row: 1 / -1;
  min-height: 116px;
  place-content: center;
  color: var(--ink);
  background:
    linear-gradient(35deg, transparent 43%, rgba(200,32,39,.13) 44%, rgba(200,32,39,.13) 49%, transparent 50%),
    linear-gradient(125deg, transparent 52%, rgba(33,27,24,.09) 53%, rgba(33,27,24,.09) 58%, transparent 59%),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(33,27,24,.055) 23px 24px),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(33,27,24,.055) 29px 30px),
    #f0e5cf;
  border: 1px solid rgba(33,27,24,.12);
  border-radius: 10px;
  text-align: center;
}
.map-preview strong { margin-top: 5px; font-family: var(--display); font-size: .9rem; text-transform: uppercase; }
.map-preview small { color: var(--red); font-size: .55rem; font-weight: 900; text-transform: uppercase; }
.map-pin {
  position: relative;
  display: block;
  width: 31px;
  height: 31px;
  margin: 0 auto 5px;
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 5px 9px rgba(80,0,0,.22);
  transform: rotate(-45deg);
}
.map-pin::after { position: absolute; top: 9px; left: 9px; width: 13px; height: 13px; content: ""; background: var(--yellow); border-radius: 50%; }

.menu-footer {
  display: flex;
  align-items: center;
  padding: 12px 17px;
  color: var(--white);
  background: var(--red);
  gap: 12px;
}
.menu-footer > img { width: 54px; height: 54px; object-fit: contain; }
.menu-footer p { flex: 1; font-family: var(--display); font-size: .95rem; font-weight: 600; text-transform: uppercase; }
.social-links { display: flex; gap: 8px; }
.social-links a { display: grid; width: 38px; height: 38px; place-items: center; color: var(--red); background: var(--yellow); border-radius: 50%; }
.social-links svg { width: 20px; height: 20px; fill: currentColor; }
.social-links a, .map-preview { transition: transform .18s ease, filter .18s ease; }
.social-links a:hover, .map-preview:hover { filter: brightness(1.04); transform: translateY(-2px); }

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

@media (min-width: 700px) {
  html { scroll-padding-top: 66px; }
  .category-nav { height: 60px; }
  .category-nav a { font-size: 1rem; }
  .menu-cover { height: 280px; }
  .cover-content { padding: 20px 34px; }
  .cover-content::before { top: 0; left: -12px; width: 340px; height: 245px; }
  .menu-logo { width: 195px; height: 195px; }
  .menu-section { padding: 38px 34px 44px; scroll-margin-top: 65px; }
  .section-heading { margin-bottom: 23px; }
  .section-heading { display: flex; align-items: flex-end; justify-content: space-between; }
  .section-heading > p { max-width: 230px; margin-top: 0; font-size: .85rem; text-align: right; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .chiles-block { grid-column: 1 / -1; }
  .compact-list li { min-height: 46px; font-size: 1.08rem; }
  .food-strip { height: 210px; margin-top: 22px; }
  .food-strip figcaption { left: 28px; max-width: 270px; font-size: 2.25rem; }
  .vapor-layout { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .category-photo { height: auto; min-height: 290px; }
  .drinks-grid { grid-template-columns: 1.25fr .75fr; }
  .location-grid { grid-template-columns: 1fr 1fr; padding: 22px; gap: 14px; }
  .location-card { grid-template-columns: minmax(0, 1fr) 145px; min-height: 162px; padding: 15px; }
  .map-preview { min-height: 132px; }
  .locations-disclosure summary { padding-inline: 34px; }
  .menu-footer { padding-inline: 34px; }
}

@media (min-width: 1120px) {
  .menu-shell { margin-block: 14px; border-radius: 24px; box-shadow: 0 24px 70px rgba(0,0,0,.3); }
  .category-nav { max-width: 1100px; margin: 0 auto; border-radius: 0 0 12px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
