:root {
  --brand-red: #ba2336;
  --brand-red-dark: #8f1a28;
  --brand-red-light: #d94a5c;
  --brand-green: #1f6f45;
  --brand-green-deep: #152e24;
  --brand-green-deep-soft: #1d3d30;
  --cream: #efe4d0;
  --cream-dark: #ddcba4;
  --ink: #201911;
  --ink-soft: #4f4438;
  --gold: #c8a15c;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: var(--cream);
}

.font-serif-brand {
  font-family: 'Montserrat', sans-serif;
  /* !important: every usage also carries Tailwind's font-semibold (600) utility class,
     which shares the same specificity — without this, source order decides the winner. */
  font-weight: 500 !important;
}

/* ---------- Header ---------- */
.site-header {
  backdrop-filter: blur(10px);
  background: rgba(239, 228, 208, 0.92);
  border-bottom: 1px solid rgba(186, 35, 54, 0.12);
}

.nav-link {
  position: relative;
  color: var(--ink);
  transition: color .2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--brand-red);
  transition: width .25s ease;
}
.nav-link:hover { color: var(--brand-red); }
.nav-link:hover::after { width: 100%; }

.location-pin {
  opacity: .55;
  transition: opacity .2s ease, transform .2s ease;
}
.location-link:hover .location-pin {
  opacity: 1;
  transform: scale(1.15);
  filter: invert(21%) sepia(64%) saturate(2748%) hue-rotate(335deg) brightness(92%) contrast(92%);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid rgba(42,33,28,0.08);
}

.hero-band {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 62vh;
  min-height: 380px;
  max-height: 540px;
}
@media (min-width: 768px) {
  .hero-band { height: 66vh; min-height: 460px; max-height: 640px; }
}
.hero-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}
.hero-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21,16,12,0.5) 0%, rgba(21,16,12,0.05) 24%, rgba(21,16,12,0.05) 52%, rgba(21,16,12,0.8) 100%);
}
.hero-wordmark-img {
  width: 260px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}
@media (min-width: 640px) { .hero-wordmark-img { width: 400px; } }
@media (min-width: 768px) { .hero-wordmark-img { width: 500px; } }
@media (min-width: 1024px) { .hero-wordmark-img { width: 640px; } }
.hero-cta-light {
  background: #fff;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero-cta-light:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -8px rgba(0,0,0,0.4); }
.hero-cta-dark {
  background: rgba(21,16,12,0.35);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  transition: transform .2s ease, background .2s ease;
}
.hero-cta-dark:hover { background: rgba(21,16,12,0.55); transform: translateY(-2px); }

.hero-photo-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 70px -30px rgba(21,46,36,0.45);
}
.hero-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21,16,12,0) 55%, rgba(21,16,12,0.35) 100%);
  pointer-events: none;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .9rem;
  border-radius: 999px;
  background: rgba(186,35,54,0.08);
  color: var(--brand-red-dark);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(186,35,54,0.18);
}

.btn-primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 10px 25px -8px rgba(186,35,54,0.55);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(186,35,54,0.6);
}

.btn-outline {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  transition: all .2s ease;
}
.btn-outline:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  background: rgba(186,35,54,0.06);
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--brand-red);
}

/* ---------- Instagram filmstrip ---------- */
.film-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.film-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.film-marquee-track:active {
  cursor: grabbing;
}
.film-marquee-track img {
  -webkit-user-drag: none;
}

.film-tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  flex: 0 0 auto;
  background: var(--cream-dark);
}
.film-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.film-tile:hover img { transform: scale(1.06); }

/* ---------- About: feature list ---------- */
.feature-item {
  border-left: 2px solid rgba(186,35,54,0.25);
  padding-left: 1rem;
}
.feature-item .feature-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--brand-red);
  font-size: 1.4rem;
  line-height: 1;
}

/* ---------- Reviews: quote cards ---------- */
.quote-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(42,33,28,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px -18px rgba(42,33,28,0.3);
}
.quote-mark {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--brand-red);
  opacity: .85;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Section labels ---------- */
.section-eyebrow {
  color: var(--brand-red);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 700;
}

/* ---------- Menu ---------- */
.menu-search {
  border: 1.5px solid rgba(42,33,28,0.12);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.menu-search:focus-within {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 4px rgba(186,35,54,0.1);
}

.tabs-scroll {
  scrollbar-width: none;
  cursor: grab;
}
.tabs-scroll::-webkit-scrollbar { display: none; }
.tabs-scroll.dragging {
  cursor: grabbing;
  user-select: none;
}

.tab-btn {
  white-space: nowrap;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
  border: 1.5px solid rgba(42,33,28,0.1);
  transition: all .2s ease;
  cursor: pointer;
}
.tab-btn:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}
.tab-btn.active {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
  box-shadow: 0 8px 18px -6px rgba(186,35,54,0.5);
}

.menu-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(42,33,28,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -18px rgba(42,33,28,0.35);
}
.menu-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  background: var(--cream-dark);
}
.menu-card .price-tag {
  color: var(--brand-red);
  font-weight: 700;
  white-space: nowrap;
}

.no-results {
  display: none;
}

/* ---------- Locations ---------- */
.location-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(42,33,28,0.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.location-card:hover {
  transform: translateY(-4px);
  border-color: rgba(186,35,54,0.3);
  box-shadow: 0 20px 34px -18px rgba(42,33,28,0.3);
}

.glovo-icon {
  transition: transform .25s ease, box-shadow .25s ease;
}
.glovo-card:hover .glovo-icon {
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.12);
}

/* ---------- Locations: interactive map ---------- */
.locations-map-card {
  grid-column: 1 / -1;
  border-radius: 18px;
  border: 1px solid rgba(42,33,28,0.08);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 20px 40px -24px rgba(42,33,28,0.35);
}
#locations-map { width: 100%; height: 440px; }

/* Tailwind's preflight (img{max-width:100%;height:auto}) breaks Leaflet's tile sizing/positioning */
.leaflet-container img { max-width: none !important; }

.adriano-map-pin {
  width: 30px; height: 30px;
  background: var(--brand-red);
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 3px 8px rgba(0,0,0,0.35);
}
.adriano-map-pin::after {
  content: "";
  position: absolute;
  top: 7px; left: 7px;
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
}

.leaflet-popup-content-wrapper { border-radius: 12px; }
.map-popup-title { font-weight: 700; font-size: 14px; margin: 0 0 2px; }
.map-popup-sub { font-size: 12px; color: var(--ink-soft); margin: 0 0 8px; }
.map-popup-link {
  font-size: 12px; font-weight: 600; color: var(--brand-red);
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
}
.map-popup-link:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brand-green-deep);
  color: #f3e9d8;
}
.footer-link {
  color: #cfc3b6;
  transition: color .2s ease;
}
.footer-link:hover { color: var(--gold); }

/* ---------- Misc ---------- */
.divider-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--brand-red);
  display: inline-block;
}

.chip-hit {
  background: var(--brand-red);
  color: #fff;
}
.chip-new {
  background: var(--brand-green);
  color: #fff;
}

::selection {
  background: var(--brand-red);
  color: #fff;
}

/* ================= Full menu page (menu.html) ================= */
.menu-topbar {
  background: rgba(239, 228, 208, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(186, 35, 54, 0.12);
}

.menu-subnav {
  position: sticky;
  top: 64px;
  z-index: 40;
  background: var(--cream);
  border-bottom: 1px solid rgba(42,33,28,0.08);
}

.cat-pill {
  white-space: nowrap;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
  border: 1.5px solid rgba(42,33,28,0.1);
  transition: all .2s ease;
  cursor: pointer;
}
.cat-pill:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}
.cat-pill.active {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
  box-shadow: 0 8px 18px -6px rgba(186,35,54,0.5);
}

.menu-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.menu-subsection-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--brand-red-dark);
}

.card-badge {
  position: absolute;
  top: .5rem;
  right: .5rem;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  box-shadow: 0 4px 10px -2px rgba(42,33,28,0.35);
  cursor: default;
}
.card-badge::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  white-space: nowrap;
  background: var(--ink);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: .3rem .6rem;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 5;
}
.card-badge:hover::after,
.card-badge:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.menu-group-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--brand-red-dark);
  margin-top: 2.5rem;
}
.menu-group-label:first-child { margin-top: 0; }

.category-note {
  font-size: .8rem;
  color: var(--ink-soft);
  background: var(--cream-dark);
  border: 1px solid rgba(42,33,28,0.1);
  border-radius: 12px;
  padding: .6rem .9rem;
  margin-top: 1rem;
  display: inline-block;
}

.item-note {
  font-size: .72rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.info-box-group {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1.5rem;
}
.info-box-group:first-child { margin-top: 0; }

.info-box {
  border: 1px solid rgba(42,33,28,0.15);
  border-radius: 10px;
  padding: .7rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .3rem .5rem;
  font-size: .82rem;
}
.info-box-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: .78rem;
}
.info-box-items {
  color: var(--ink-soft);
}
.info-box-price {
  margin-left: auto;
  white-space: nowrap;
  display: flex;
  gap: .6rem;
  align-items: baseline;
}
.info-box-weight {
  color: var(--ink-soft);
  font-size: .78rem;
}
.info-box-price-value {
  font-weight: 700;
  color: var(--brand-red);
}

.weight-pill {
  display: inline-block;
  font-size: .72rem;
  color: var(--ink-soft);
  background: var(--cream-dark);
  border-radius: 999px;
  padding: .15rem .6rem;
  width: fit-content;
}

.kbju-toggle {
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-top: .5rem;
  padding: 0;
  border: none;
  background: none;
  font-size: .72rem;
  font-weight: 600;
  color: var(--brand-red);
  cursor: pointer;
  width: fit-content;
}
.kbju-toggle:hover { color: var(--brand-red-dark); }
.kbju-toggle-hide { display: none; }
.menu-card.kbju-open .kbju-toggle-show { display: none; }
.menu-card.kbju-open .kbju-toggle-hide { display: inline; }
.kbju-chevron { transition: transform .2s ease; }
.menu-card.kbju-open .kbju-chevron { transform: rotate(180deg); }

.kbju-panel {
  display: none;
  margin-top: .4rem;
  padding-top: .5rem;
  border-top: 1px dashed rgba(42,33,28,0.15);
}
.menu-card.kbju-open .kbju-panel { display: block; }

.kbju-macros {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .7rem;
  font-size: .7rem;
  color: var(--ink-soft);
}
.kbju-macros + .kbju-variant-label { margin-top: .35rem; }
.kbju-macro strong { color: var(--ink); font-weight: 700; }

.kbju-variant-label {
  font-size: .7rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: .3rem;
}
.kbju-variant-label:first-child { margin-top: 0; }

.kbju-composition {
  font-size: .72rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin-top: .4rem;
}

.back-link {
  color: var(--ink-soft);
  transition: color .2s ease;
}
.back-link:hover { color: var(--brand-red); }

.lang-switch {
  background: var(--cream-dark);
  border-radius: 999px;
  padding: 3px;
}
.lang-pill {
  padding: .3rem .6rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--ink-soft);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
}
.lang-pill:hover { color: var(--brand-red); }
.lang-pill.active {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 4px 10px -3px rgba(186,35,54,0.5);
}
