:root {
  --bg: #0b0b0c;
  --text: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.05);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --orange: #ffa500;
  --topbar-h: 72px;
  --content-max: 1120px;
  --fs-page-title: clamp(38px, 5vw, 52px);
  --fs-page-sub: clamp(16px, 1.8vw, 24px);
  --fs-notice-title: clamp(28px, 3.2vw, 43px);
  --fs-notice-body: clamp(16px, 1.4vw, 20px);
  --fs-section-title: clamp(22px, 2.1vw, 32px);
  --fs-section-sub: clamp(16px, 1.2vw, 18px);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  /* Avoid horizontal jumps when pages have different vertical scrollbar presence */
  scrollbar-gutter: stable;
  overflow-y: scroll;
}

body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 20% -10%, rgba(255, 165, 0, 0.12), transparent 60%),
    radial-gradient(1200px 500px at 90% 10%, rgba(255, 165, 0, 0.07), transparent 62%),
    var(--bg);
}

.grid-bg {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  background-attachment: fixed;
}

.container {
  width: min(var(--content-max), calc(100% - 32px));
  margin: 0 auto;
}

.main {
  padding: calc(var(--topbar-h) + 18px) 0 54px;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: none;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
}

.brand-name {
  font-weight: 900;
  letter-spacing: 0.7px;
  font-size: 14px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  text-decoration: none;
  color: rgba(245, 245, 245, 0.85);
  font-weight: 800;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 165, 0, 0.16);
  color: #fff;
}

.btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
  background: transparent;
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    transform 0.16s ease,
    background 0.16s ease,
    border-color 0.16s ease;
}

.btn:focus {
  outline: 3px solid rgba(255, 165, 0, 0.45);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--orange);
  border-color: rgba(0, 0, 0, 0.2);
  color: #0b0b0c;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 165, 0, 0.35);
}

.w100 {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  background: #fff;
  margin: 4px auto;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-inner {
  padding: 12px 0 16px;
  display: grid;
  gap: 10px;
}

.mobile-link {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.04);
}

.modal-open {
  overflow: hidden;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.order-modal.show {
  display: flex;
}

.order-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.order-modal-card {
  position: relative;
  width: min(460px, calc(100% - 20px));
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #111114;
  padding: 22px 18px 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.order-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.order-modal-title {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 30px);
  font-weight: 900;
}

.order-modal-sub {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.order-modal-actions {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.kicker {
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(245, 245, 245, 0.7);
  margin-bottom: 10px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 6px;
}

.hero-title {
  font-size: clamp(44px, 6vw, 72px);
  margin: 0 0 10px;
  line-height: 1;
  letter-spacing: -1px;
}

.hero-sub {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 650;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tabs {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: sticky;
  top: var(--topbar-h);
  z-index: 20;
  padding: 10px 0;
  background: rgba(11, 11, 12, 0.55);
  backdrop-filter: blur(12px);
}

.tab {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 950;
  cursor: pointer;
  color: rgba(245, 245, 245, 0.92);
}

.tab.active {
  background: rgba(255, 165, 0, 0.18);
  border-color: rgba(255, 165, 0, 0.45);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0 12px;
}

.section-title {
  margin: 0;
  font-size: var(--fs-section-title);
}

.section-sub {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  font-size: var(--fs-section-sub);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 165, 0, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.card-media {
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  display: block;
}

.card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 16px;
  text-align: center;
}

.placeholder b {
  font-size: 13px;
}

.placeholder span {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 650;
  font-size: 12px;
}

.card-body {
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-actions {
  margin-top: auto;
  padding-top: 8px;
}

.card-mobile-head {
  display: none;
}

.menu-page .main {
  padding-top: calc(var(--topbar-h) + 18px);
}

.menu-page .hero {
  margin-top: 4px;
  gap: 20px;
}

.menu-page .kicker {
  font-size: 12px;
}

.menu-page .hero-title {
  font-size: var(--fs-page-title);
  letter-spacing: -0.6px;
  margin-bottom: 10px;
}

.menu-page .hero-sub {
  font-size: var(--fs-page-sub);
  line-height: 1.45;
  max-width: 66ch;
}

.trust-carousel {
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
  width: 100%;
  max-width: none;
  min-height: 270px;
}

.trust-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.trust-title {
  font-weight: 900;
  font-size: 16px;
}

.trust-controls {
  display: inline-flex;
  gap: 6px;
}

.trust-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.trust-btn:hover {
  border-color: rgba(255, 165, 0, 0.42);
  background: rgba(255, 165, 0, 0.12);
}

.trust-quote {
  margin: 10px 0 0;
}

.trust-carousel.has-photo .trust-quote {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 10px 12px;
  align-items: start;
  min-height: 224px;
}

.trust-stars {
  margin: 0 0 6px;
  color: #ffbf00;
  font-size: 17px;
  letter-spacing: 1px;
}

.trust-quote blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(245, 245, 245, 0.96);
  font-weight: 650;
  min-height: calc(1.5em * 5);
  max-height: calc(1.5em * 5);
  overflow: hidden;
}

.trust-photo {
  margin-top: 10px;
}

.trust-photo img {
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: block;
}

.trust-carousel.has-photo .trust-stars,
.trust-carousel.has-photo .trust-quote blockquote,
.trust-carousel.has-photo .trust-quote figcaption {
  grid-column: 1;
}

.trust-carousel.has-photo .trust-photo {
  grid-column: 2;
  grid-row: 1 / span 3;
  margin-top: 0;
  justify-self: end;
  align-self: end;
}

.trust-quote figcaption {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.trust-author {
  font-weight: 900;
  font-size: 14px;
}

.trust-city {
  font-size: 12px;
  font-weight: 800;
  color: rgba(245, 245, 245, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 3px 8px;
}

.trust-meta {
  font-size: 13px;
  color: rgba(245, 245, 245, 0.7);
}

.menu-page .tabs {
  margin-top: 18px;
}

.menu-page .tab {
  font-size: var(--fs-section-sub);
  padding: 10px 14px;
}

.menu-page .section-head {
  margin: 16px 0 12px;
}

.menu-page .card-body {
  padding: 16px 16px 14px;
  gap: 12px;
}

.menu-page .card-title {
  font-size: clamp(17px, 1.3vw, 20px);
}

.menu-page .price {
  font-size: clamp(20px, 1.5vw, 24px);
}

.menu-page .desc {
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.45;
}

.menu-page .tag {
  font-size: 12px;
}

.menu-page .allergen {
  font-size: 12px;
}

.menu-page .notice-allergen {
  margin-top: 0;
  padding: 16px 18px;
}

.menu-page .notice-allergen h3 {
  margin: 0;
  font-size: clamp(21px, 1.9vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.2px;
}

.menu-page .notice-allergen p {
  margin-top: 8px;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.5;
  max-width: 92ch;
}

.menu-page .notice-seo {
  margin-top: 0;
  padding: 20px;
}

.menu-page .notice-seo h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.5px;
}

.menu-page .notice-seo p {
  margin: 0;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.5;
  max-width: 88ch;
}

.menu-page .notice-seo .contact-v {
  font-weight: 800;
}

.menu-page .menu-info-grid {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
}

.menu-page .menu-info-grid .notice {
  margin-top: 0;
}

.card-details {
  display: grid;
  gap: 10px;
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}

.card-title {
  margin: 0;
  font-weight: 950;
  font-size: 16px;
}

.price {
  font-weight: 950;
  white-space: nowrap;
}

.desc {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
  line-height: 1.35;
}

.meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.tag {
  font-size: 11px;
  font-weight: 950;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.tag.orange {
  background: rgba(255, 165, 0, 0.18);
  border-color: rgba(255, 165, 0, 0.45);
}

.allergens {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0;
}

.allergen {
  font-size: 11px;
  font-weight: 900;
  padding: 6px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(245, 245, 245, 0.88);
}

.notice {
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
}

.notice h3 {
  margin: 0 0 6px;
}

.notice h2 {
  margin: 0 0 8px;
  font-size: var(--fs-notice-title);
  line-height: 1.12;
}

.notice p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  font-size: var(--fs-notice-body);
  line-height: 1.5;
}

.page-title {
  margin: 0;
  font-size: var(--fs-page-title);
  letter-spacing: -0.6px;
  line-height: 1;
}

.page-sub {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
  font-size: var(--fs-page-sub);
  line-height: 1.45;
}

.filter-row {
  margin: 16px 0;
  display: grid;
  gap: 6px;
  max-width: 360px;
}

.filter-label {
  font-weight: 950;
  font-size: 12px;
  color: rgba(245, 245, 245, 0.78);
}

.select {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #ffa500;
  background: #ffa500;
  color: rgba(0, 0, 0, 0.95);
  font-weight: 900;
}

.locals {
  display: grid;
  gap: 14px;
}

.local-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  display: grid;
  gap: 10px;
}

.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.k {
  font-size: 12px;
  color: rgba(245, 245, 245, 0.7);
  font-weight: 950;
}

.v {
  font-weight: 750;
}

.local-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.locals-page .main {
  padding-top: calc(var(--topbar-h) + 18px);
}

.locals-page .page-head {
  margin-bottom: 10px;
}

.locals-page .page-title {
  letter-spacing: -0.6px;
}

.locals-page .page-sub {
  margin-top: 10px;
  max-width: 74ch;
}

.locals-page .notice {
  padding: 20px;
  border-radius: 22px;
  margin-bottom: 12px;
}

.locals-page .notice h2 {
  margin-bottom: 8px;
}

.locals-page .notice p {
  line-height: 1.5;
}

.locals-page .filter-row {
  margin: 16px 0;
  max-width: 440px;
  gap: 6px;
}

.locals-page .filter-label {
  font-size: 13px;
}

.locals-page .select {
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 16px;
}

.locals-page .locals {
  gap: 14px;
}

.locals-page .local-card {
  padding: 16px;
  border-radius: 22px;
  gap: 10px;
}

.locals-page .local-title {
  margin: 0;
  font-size: var(--fs-section-title);
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.locals-page .local-grid {
  gap: 10px;
}

.locals-page .k {
  font-size: 12px;
}

.locals-page .v {
  font-size: var(--fs-notice-body);
  line-height: 1.4;
}

.locals-page .local-actions {
  gap: 10px;
}

.locals-page .local-actions .btn {
  padding: 10px 14px;
  font-size: 16px;
}

.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  display: grid;
  gap: 12px;
}

.notice + .contact-card {
  margin-top: 10px;
}

.contact-k {
  font-size: 12px;
  color: rgba(245, 245, 245, 0.72);
  font-weight: 950;
}

.contact-v {
  font-weight: 900;
  color: inherit;
  text-decoration: none;
}

.help-page .contact-v {
  font-weight: 650;
  font-size: 16px;
  line-height: 1.35;
}

.help-page .contact-v strong {
  font-weight: 900;
}

.help-page .contact-k {
  font-size: 18px;
  font-weight: 950;
  line-height: 1.2;
}

.contact-v:hover {
  text-decoration: underline;
}

.accordion {
  display: grid;
  gap: 10px;
}

.qa {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.qa button {
  width: 100%;
  padding: 14px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 950;
  color: rgba(245, 245, 245, 0.95);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.qa .a {
  padding: 0 14px 14px;
  color: var(--muted);
  font-weight: 650;
  display: none;
}

.qa.open .a {
  display: block;
}

.about-hero {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  padding: 20px;
  box-shadow: var(--shadow);
}

.about-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-logo {
  width: 84px;
  height: 84px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

@media (min-width: 721px) {
  .about-logo {
    width: 108px;
    height: 108px;
  }
}

.about-title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.7px;
  line-height: 1.05;
}

.about-slogan {
  margin: 12px 0 0;
  font-weight: 950;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.about-text {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
  max-width: 70ch;
  line-height: 1.45;
}

.about-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about-box {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
}

.about-page main {
  counter-reset: story-section;
}

.about-page .about-hero {
  padding: 24px;
  background:
    radial-gradient(600px 240px at 0% 0%, rgba(255, 165, 0, 0.14), transparent 70%),
    rgba(255, 255, 255, 0.04);
}

.about-page .about-slogan {
  font-size: clamp(18px, 2.2vw, 24px);
  color: rgba(255, 255, 255, 0.94);
}

.about-page .about-text {
  font-size: var(--fs-notice-body);
  line-height: 1.6;
}

.about-page .notice {
  margin-top: 16px;
  padding: 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
  position: relative;
  overflow: hidden;
}

.about-page .notice::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(to bottom, rgba(255, 165, 0, 0.95), rgba(255, 165, 0, 0.18));
}

.about-page .notice h2 {
  margin: 0 0 12px;
  font-size: var(--fs-notice-title);
  line-height: 1.15;
  letter-spacing: -0.4px;
}

.about-page .notice h2::before {
  counter-increment: story-section;
  content: "0" counter(story-section) " · ";
  color: rgba(255, 165, 0, 0.9);
  font-weight: 950;
  font-size: 14px;
  letter-spacing: 0.08em;
  vertical-align: middle;
}

.about-page .notice p {
  margin: 0;
  max-width: 72ch;
  line-height: 1.62;
}

.about-page .notice p + p {
  margin-top: 12px;
}

.about-page .notice ul {
  margin: 14px 0 2px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.about-page .notice li {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 760;
  color: rgba(245, 245, 245, 0.94);
}

.about-page .notice li::before {
  content: "• ";
  color: rgba(255, 165, 0, 0.9);
}

.about-mobile-summary {
  display: none;
}

.about-mobile-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.about-mobile-summary ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.about-more-btn {
  display: none;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 11, 12, 0.78);
  padding: 18px 0 8px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-title {
  font-weight: 950;
  text-transform: uppercase;
  font-size: 13px;
}

.footer-sub {
  color: var(--muted);
  font-weight: 650;
  font-size: 12px;
}

.footer-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-link {
  text-decoration: none;
  color: rgba(245, 245, 245, 0.92);
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 10px;
  border-radius: 999px;
}

.footer-link:hover {
  background: rgba(255, 165, 0, 0.14);
  border-color: rgba(255, 165, 0, 0.35);
}

.footer-bottom {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 245, 245, 0.62);
}

.pack {
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  position: relative;
}

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

.pack-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15), transparent);
}

@media (max-width: 960px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-page .notice ul {
    grid-template-columns: 1fr;
  }

  .about-mobile-summary {
    display: block;
    margin-top: 14px;
    border: 1px solid rgba(255, 165, 0, 0.25);
    border-radius: 20px;
    background: rgba(255, 165, 0, 0.08);
    padding: 16px;
  }

  .about-mobile-summary h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.3px;
  }

  .about-page .about-hero .about-text:first-of-type {
    display: block;
    line-height: 1.55;
    max-height: calc(1.55em * 3);
    overflow: hidden;
  }

  .about-page .about-hero .about-text:not(:first-of-type) {
    display: none;
  }

  .about-page .notice.is-collapsible p:nth-of-type(n + 2),
  .about-page .notice.is-collapsible ul {
    display: none;
  }

  .about-page .notice.is-collapsible.is-open p:nth-of-type(n + 2) {
    display: block;
  }

  .about-page .notice.is-collapsible.is-open ul {
    display: grid;
  }

  .about-page .notice.is-collapsible .about-more-btn {
    display: inline-flex;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-weight: 900;
    font-size: 13px;
    padding: 8px 12px;
    cursor: pointer;
  }

  .local-grid {
    grid-template-columns: 1fr;
  }

  .trust-carousel {
    display: none;
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .mobile-nav.show {
    display: block;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .tabs {
    top: var(--topbar-h);
  }

  .hero {
    margin-top: 0;
  }

  .hero-left {
    position: relative;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 16px;
    overflow: hidden;
  }

  .hero-left::before {
    content: "";
    position: absolute;
    inset: -8px;
    background-image: url("../assets/Principal.jpeg");
    background-size: cover;
    background-position: center;
    filter: blur(1.5px) brightness(0.43);
    transform: scale(1.08);
    z-index: -2;
  }

  .hero-left::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 12, 0.45);
    z-index: -1;
  }

  .hero .pack {
    display: none;
  }

  .pack {
    aspect-ratio: 16 / 9;
  }

  .pack img {
    object-fit: cover;
    object-position: center;
  }

  .card {
    display: block;
    height: auto;
  }

  .card-media {
    display: none;
  }

  .card-body {
    display: block;
    padding: 10px 12px 12px;
  }

  .card-top {
    display: none;
  }

  .card-actions {
    display: none;
  }

  .card-mobile-head {
    display: grid;
    grid-template-columns: 56px 1fr auto auto;
    align-items: center;
    gap: 8px;
  }

  .card-mobile-thumb {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
  }

  .card-mobile-name {
    font-weight: 900;
    font-size: 17px;
    line-height: 1.1;
  }

  .card-mobile-price {
    font-weight: 950;
    font-size: 18px;
    white-space: nowrap;
    margin-right: 2px;
  }

  .card-mobile-order {
    width: auto;
    min-width: 84px;
    padding: 9px 12px;
    font-size: 15px;
  }

  .card-details {
    display: none;
    margin-top: 8px;
  }

  .card.is-open .card-details {
    display: grid;
    gap: 8px;
  }

}

@media (max-width: 1024px) {
  .grid-bg {
    background-attachment: scroll;
  }

  .menu-page .hero-sub {
    font-size: 18px;
  }

  .menu-page .notice-allergen {
    padding: 14px 16px;
  }

  .menu-page .notice-allergen h3 {
    font-size: clamp(20px, 4.8vw, 26px);
  }

  .menu-page .notice-allergen p {
    font-size: 16px;
  }

  .menu-page .notice-seo {
    padding: 16px;
  }

  .menu-page .notice-seo h2 {
    font-size: clamp(26px, 7.2vw, 34px);
  }

  .menu-page .notice-seo p {
    font-size: 16px;
    line-height: 1.45;
  }

  .menu-page .menu-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
  }

  .menu-page .card-title {
    font-size: 18px;
  }

  .menu-page .price {
    font-size: 22px;
  }

  .menu-page .desc {
    font-size: 15px;
  }

  .locals-page .main {
    padding-top: calc(var(--topbar-h) + 16px);
  }

  .locals-page .notice {
    padding: 16px;
    border-radius: 20px;
  }

  .locals-page .filter-row {
    max-width: 100%;
    margin: 16px 0 14px;
  }

  .locals-page .local-card {
    padding: 16px;
    border-radius: 20px;
  }

  .locals-page .local-actions .btn {
    width: 100%;
  }
}

/* Escalado visual progresivo solo en escritorio grande */
@media (min-width: 1400px) and (hover: hover) and (pointer: fine) {
  :root {
    --content-max: 1360px;
  }

  .hero {
    gap: 24px;
  }

  .hero-title {
    font-size: clamp(56px, 4.4vw, 94px);
  }

  .menu-page .hero-title {
    font-size: var(--fs-page-title);
  }

  .grid {
    gap: 18px;
  }

  .card-title {
    font-size: 19px;
  }

  .price {
    font-size: 24px;
  }

  .desc {
    font-size: 15px;
    line-height: 1.4;
  }

  .tab {
    font-size: 17px;
    padding: 11px 16px;
  }

  .nav-link {
    font-size: 16px;
    padding: 9px 12px;
  }

  .brand-name {
    font-size: 17px;
  }

  .btn {
    padding: 11px 16px;
    font-size: 16px;
  }

  .contact-card {
    padding: 22px;
    gap: 16px;
    border-radius: 24px;
  }

  .notice {
    padding: 22px;
    border-radius: 24px;
  }

  .help-page .contact-k {
    font-size: 22px;
  }

  .help-page .contact-v {
    font-size: 18px;
    line-height: 1.35;
  }

  .qa button {
    padding: 18px 20px;
    font-size: 23px;
  }

  .qa .a {
    padding: 0 20px 18px;
    font-size: 17px;
    line-height: 1.5;
  }
}

@media (min-width: 1800px) and (hover: hover) and (pointer: fine) {
  :root {
    --content-max: 1560px;
  }

  .hero-title {
    font-size: clamp(62px, 4vw, 108px);
  }
}
