/* ===== EAT BROOME v11 — Editorial Design System ===== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;0,9..144,900;1,9..144,400&family=Inter:wght@400;500;600;700;800;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #FFD60A;
  --orange: #FF9F0A;
  --coral: #FF6B6B;
  --pink: #FF2D55;
  --cyan: #22D3EE;
  --cyan-deep: #06B6D4;
  --cyan-light: #67E8F9;
  --sand: #FDE68A;
  --ink: #111827;
  --muted: #6B7280;
  --border: #E5E7EB;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(17,24,39,0.06), 0 1px 2px rgba(17,24,39,0.04);
  --shadow-md: 0 4px 14px rgba(17,24,39,0.06), 0 2px 4px rgba(17,24,39,0.04);
  --shadow-lg: 0 20px 48px rgba(17,24,39,0.10), 0 8px 16px rgba(17,24,39,0.05);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: #FFF;
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--orange); }
button { font: inherit; cursor: pointer; border: 0; }
input, textarea, select { font: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-sm); }
.logo-text {
  font-family: var(--serif); font-weight: 900; font-size: 22px;
  letter-spacing: -0.03em; line-height: 1;
}
.main-nav {
  display: flex; gap: 4px; flex: 1; justify-content: center;
  font-size: 14.5px; font-weight: 500;
}
.main-nav a {
  padding: 8px 14px; border-radius: var(--radius-pill);
  color: #374151; transition: all .15s;
}
.main-nav a:hover { background: #F3F4F6; color: var(--ink); }
.main-nav a.active { background: var(--ink); color: #fff; }
.header-cta { display: flex; gap: 8px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border: 0; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 14.5px; white-space: nowrap;
  text-decoration: none; transition: all .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--orange); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--border); }
.btn-ghost:hover { background: #F9FAFB; color: var(--ink); border-color: var(--ink); }
.btn-sm { padding: 8px 16px; font-size: 13.5px; }

/* ===== MASTHEAD ===== */
.masthead {
  padding: 72px 0 48px;
  background: linear-gradient(180deg, #FFFCF5 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.masthead-meta {
  display: inline-block;
  padding: 8px 18px; margin-bottom: 28px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}
.masthead-title {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(4.5rem, 14vw, 10rem);
  line-height: 0.85; letter-spacing: -0.055em;
  color: var(--ink);
  margin-bottom: 18px;
}
.masthead-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--muted);
  letter-spacing: -0.01em;
}

/* ===== LEAD STORY ===== */
.lead-story { padding: 64px 0 72px; }
.lead-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.lead-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #FFE0B2 0%, #FF9E5E 38%, #FF5E3A 70%, #7B1F1F 100%);
  box-shadow: var(--shadow-lg);
}
.sunset-illustration {
  position: absolute; inset: 0;
}
.sunset-illustration::before {
  content: ""; position: absolute;
  left: 50%; top: 52%; transform: translate(-50%, -50%);
  width: 46%; aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, #FFF6C1 0%, #FFC857 28%, #FF7A36 60%, rgba(255,122,54,0) 75%);
  border-radius: 50%;
  filter: blur(0.3px);
}
.sunset-illustration::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0; height: 28%;
  background: linear-gradient(180deg, rgba(255,107,53,0.55) 0%, rgba(101,23,41,0.95) 100%);
  box-shadow: 0 -20px 40px rgba(255,107,53,0.3);
}
.lead-kicker {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--coral);
  margin-bottom: 18px;
}
.lead-headline {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.02; letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 16px;
}
.lead-byline {
  font-family: var(--serif); font-style: italic;
  font-size: 13px; color: var(--muted);
  margin-bottom: 14px;
}
.lead-excerpt {
  font-size: 1.05rem; line-height: 1.6;
  color: #374151;
  margin-bottom: 24px;
}

/* ===== CATEGORIES ===== */
.categories { padding: 48px 0; background: #FAFAFA; }
.category-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-pill);
  font-weight: 600; font-size: 14px;
  color: #374151;
  transition: all .15s;
}
.chip:hover {
  border-color: var(--ink); color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ===== SECTION ===== */
.section { padding: 80px 0; }
.section-head {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.section-kicker {
  display: block;
  font-family: var(--serif); font-style: italic;
  font-size: 17px; color: var(--orange);
  margin-bottom: 8px;
}
.section-head h2 {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.05; letter-spacing: -0.035em;
  color: var(--ink);
}
.section-link {
  color: var(--orange); font-weight: 600; font-size: 14.5px;
  white-space: nowrap;
}

/* ===== THE BROOME CANON ===== */
.canon { background: #FAFAFA; }
.canon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.canon-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .25s, box-shadow .25s;
}
.canon-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.canon-kicker {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--coral);
  margin-bottom: 8px;
}
.canon-title {
  font-family: var(--serif); font-weight: 800;
  font-size: 1.3rem; line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.canon-dek {
  font-size: 14.5px; line-height: 1.55;
  color: var(--muted);
  margin-bottom: 16px;
}
.canon-picks {
  padding-top: 14px;
  border-top: 1px solid #F3F4F6;
  font-size: 12.5px;
  color: #374151;
  font-weight: 600;
  line-height: 1.6;
}

/* ===== THE HIT LIST ===== */
.hitlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 14.5px;
}

/* ===== FEATURE CARD ===== */
.feature { background: #FAFAFA; }
.feature-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  max-width: 1040px; margin: 0 auto;
  padding: 48px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  align-items: center;
}
.feature-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #7C2D12 0%, #F97316 70%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  box-shadow: var(--shadow-md);
}
.brewery-illustration::before {
  content: "🍺";
  font-size: 6rem;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.25));
}
.feature-rating {
  position: absolute; top: 16px; right: 16px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.feature-score {
  display: block;
  font-family: var(--serif); font-weight: 900;
  font-size: 24px; letter-spacing: -0.02em;
  color: var(--ink);
}
.feature-label {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.feature-kicker {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--coral);
  margin-bottom: 18px;
}
.feature-headline {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.feature-quote {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; line-height: 1.45;
  color: #374151;
  margin-bottom: 16px;
  padding-left: 20px;
  border-left: 3px solid var(--coral);
}
.feature-excerpt {
  font-size: 15px; line-height: 1.6;
  color: #4B5563;
  margin-bottom: 18px;
}
.feature-meta {
  font-size: 13px; color: var(--muted);
  margin-bottom: 20px;
}

/* ===== AREAS ===== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* ===== CUISINES ===== */
.cuisines { background: #FAFAFA; }
.cuisine-tags {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
}

/* ===== VALUES ===== */
.values {
  padding: 72px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #FAFAFA;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}
.value-item strong {
  display: block;
  font-family: var(--serif); font-weight: 800;
  font-size: 18px; letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.value-item span {
  display: block;
  font-size: 14px; color: var(--muted);
}

/* ===== CTA BAND ===== */
.cta-band {
  padding: 80px 0;
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-band p {
  max-width: 520px; margin: 0 auto 28px;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
}
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--orange); }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.3); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink); color: #fff;
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 40px 32px; margin-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { width: 38px; height: 38px; border-radius: 50%; }
.footer-logo span {
  font-family: var(--serif); font-weight: 900; font-size: 20px;
  color: #fff; letter-spacing: -0.02em;
}
.footer-about { color: rgba(255,255,255,0.75); font-size: 14.5px; line-height: 1.6; }
.footer-col h4 {
  font-weight: 700; font-size: 14px; margin-bottom: 14px;
  color: #fff; letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255,255,255,0.68); font-size: 14px;
  transition: color .15s;
}
.footer-col a:hover { color: var(--gold); }
.footer-copy {
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.58); font-size: 13px; line-height: 1.6;
  text-align: center;
}
.yawuru-ack {
  font-style: italic;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.72);
}

/* ===== AUTH STATES ===== */
[data-auth-signed-in] { display: none; }
[data-auth-signed-out] { display: block; }
body.signed-in [data-auth-signed-in] { display: block; }
body.signed-in [data-auth-signed-out] { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .lead-card { grid-template-columns: 1fr; gap: 36px; }
  .feature-card { grid-template-columns: 1fr; padding: 32px; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
  .masthead { padding: 52px 0 40px; }
  .main-nav { display: none; }
  .header-inner { height: 64px; gap: 20px; }
  .logo-text { font-size: 18px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .canon-grid { grid-template-columns: 1fr; }
  .hitlist-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== COMPATIBILITY SHIMS (for interior pages) ===== */
:root {
  --color-bg: #FFF;
  --color-ink: var(--ink);
  --color-muted: var(--muted);
  --color-border: var(--border);
  --color-pindan: var(--orange);
  --color-sky: var(--cyan);
  --color-sun: var(--gold);
  --font-display: var(--serif);
  --font-body: var(--sans);
}

.hero, .hero-inner, .hero-kicker, .hero h1, .hero-lead, .hero-search, .hero-stats { display: none; }
.page-heading { padding: 56px 0 32px; border-bottom: 1px solid var(--border); }
.page-heading h1 {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.035em; line-height: 1;
}
.page-heading p { max-width: 680px; margin-top: 12px; color: var(--muted); font-size: 1.05rem; }
.breadcrumbs { font-size: 13px; color: var(--muted); margin-bottom: 12px; }

.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.venue-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .25s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.venue-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.venue-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #FFD60A, #FF6B6B);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.venue-card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.venue-card-title {
  font-family: var(--serif); font-weight: 800;
  font-size: 1.15rem; line-height: 1.15;
  letter-spacing: -0.018em;
}
.venue-card-meta { font-size: 13px; color: var(--muted); }
.venue-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }
.venue-tag {
  font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: var(--radius-pill);
  background: #F3F4F6; color: #374151;
  text-transform: lowercase;
}

.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700;
}
.badge-open { background: #16A34A; color: #fff; }
.badge-closed { background: rgba(17,24,39,0.82); color: #fff; }
.badge-rating { background: #fff; color: var(--ink); font-weight: 800; box-shadow: var(--shadow-sm); }
.badge-area { background: rgba(255,255,255,0.96); color: #374151; box-shadow: var(--shadow-sm); }

.area-card {
  position: relative;
  display: block;
  padding: 32px 26px 24px;
  border-radius: var(--radius-lg);
  color: #fff;
  min-height: 220px;
  transition: transform .2s;
}
.area-card:hover { transform: translateY(-4px); color: #fff; }
.area-cable-beach { background: linear-gradient(135deg, #FFD60A 0%, #FF9F0A 50%, #FF6B6B 100%); }
.area-chinatown { background: linear-gradient(135deg, #FF6B6B 0%, #FF2D55 100%); }
.area-old-broome { background: linear-gradient(135deg, #67E8F9 0%, #06B6D4 100%); }
.area-town-beach { background: linear-gradient(135deg, #FFD60A 0%, #22D3EE 100%); }
.area-djugun { background: linear-gradient(135deg, #FF9F0A 0%, #FFD60A 100%); }
.area-broome-north { background: linear-gradient(135deg, #A78BFA 0%, #22D3EE 100%); }
.area-name {
  font-family: var(--serif); font-weight: 900;
  font-size: 1.8rem; line-height: 1;
  letter-spacing: -0.03em;
}
.area-count {
  display: inline-block; margin-top: 10px;
  padding: 5px 12px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.22);
  font-size: 12px; font-weight: 600;
}
.area-blurb { margin-top: 14px; font-size: 14px; opacity: 0.95; line-height: 1.45; }

.info-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  margin-bottom: 20px;
}
.info-card h3 {
  font-family: var(--serif); font-weight: 800;
  font-size: 1.15rem; margin-bottom: 14px;
}

.rating-display {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #FFD60A, #FF9F0A, #FF2D55);
  color: #fff;
  box-shadow: 0 12px 32px rgba(255,45,85,0.22);
}
.rating-big {
  font-family: var(--serif); font-weight: 900;
  font-size: 3rem; line-height: 1;
}
.rating-stars { letter-spacing: 2px; font-size: 16px; }

.hours-table { width: 100%; font-size: 14px; }
.hours-table tr { border-bottom: 1px solid #F3F4F6; }
.hours-table tr:last-child { border-bottom: 0; }
.hours-table td { padding: 10px 0; color: #374151; }
.hours-table td:first-child { font-weight: 600; width: 110px; color: var(--ink); }

.form-field { margin-bottom: 20px; }
.form-field label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 14px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff; color: var(--ink);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: 0; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,159,10,0.12);
}

.muted { color: var(--muted); }
.center { text-align: center; }
.stars { color: var(--gold); letter-spacing: 1px; }

/* ===== HIT CARDS (missing from base) ===== */
.hit-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all .25s;
}
.hit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.hit-rank {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-pill);
  font-family: var(--serif);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.hit-cover {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hit-glyph {
  font-size: 5rem;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.25));
}
.hit-rating {
  position: absolute;
  top: 14px; right: 14px;
  padding: 4px 12px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: var(--serif);
  font-weight: 900;
  font-size: 14px;
  z-index: 2;
}
.hit-rating b { font-size: 18px; margin-right: 2px; }
.hit-rating span { opacity: 0.7; font-size: 12px; }
.hit-body {
  padding: 20px 22px 24px;
}
.hit-meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.hit-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
}
.hit-blurb {
  font-size: 14.5px;
  line-height: 1.5;
  color: #4B5563;
  margin-bottom: 12px;
}
.hit-cuisine {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
}
