/* ============================================================
   RESTAURANTS FOR KINGS — Design System
   kings.css v1.0
   Deep black luxury editorial. Cormorant Garamond + DM Sans.
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dim:    #8B6F2E;
  --black:       #0A0A08;
  --surface:     #111110;
  --surface2:    #1A1A17;
  --surface3:    #242420;
  --border:      rgba(201,168,76,0.18);
  --text:        #F5F2EA;
  --muted:       #B8B5A8;
  --serif:       'Cormorant Garamond', serif;
  --sans:        'DM Sans', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }

/* ============================================================
   NAVIGATION
   ============================================================ */
/* Primary site nav — was `nav {...}` but that global selector was hijacking
   footer navs, breadcrumbs, and mobile drawers, covering the home-link logo. */
.site-nav,
nav.site-nav,
nav#site-nav,
body > nav:not(.footer-nav):not(.breadcrumb):not(.breadcrumbs):not(.nav-mobile-drawer) {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, rgba(10,10,8,0.97) 0%, rgba(10,10,8,0.80) 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: background 0.3s;
}
/* Neutralize global-nav fallout on secondary nav elements */
.footer-nav, nav.footer-nav,
.breadcrumb, nav.breadcrumb,
.breadcrumbs, nav.breadcrumbs {
  position: static;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  height: auto;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo span { font-style: italic; }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--text); }
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 9px 22px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* ============================================================
   MEGA-MENU (site-wide, injected by /assets/js/megamenu.js)
   ============================================================ */
.rfk-mm {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.rfk-mm-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rfk-mm-caret {
  display: inline-block;
  font-size: 9px;
  line-height: 1;
  opacity: 0.55;
  transform: translateY(1px);
  transition: transform 0.2s, opacity 0.2s;
}
.rfk-mm.open > .rfk-mm-trigger .rfk-mm-caret {
  transform: translateY(1px) rotate(180deg);
  opacity: 1;
}
.rfk-mm-panel {
  position: absolute !important;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 92vw);
  max-width: 960px;
  background: rgba(10,10,8,0.985);
  border: 1px solid rgba(201,168,76,0.22);
  box-shadow: 0 30px 60px rgba(0,0,0,0.55);
  padding: 0;
  display: none !important;       /* hard hide — beats inline-CSS conflicts */
  pointer-events: none;
  z-index: 9999;                  /* above any sticky nav / page heroes    */
}
/* Panels are JS-controlled (.open). CSS :hover/:focus-within would also
   open them when overlapping panels overlap — letting two be visible at
   once. JS now manages single-open state and applies .open exclusively. */
.rfk-mm.open > .rfk-mm-panel {
  display: block !important;
  pointer-events: auto;
}
.rfk-mm-panel-inner {
  padding: 36px 40px 28px;
}
.rfk-mm-head {
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.rfk-mm-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin-bottom: 4px;
}
.rfk-mm-tagline {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.rfk-mm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 36px;
}
.rfk-mm-col { min-width: 0; }
.rfk-mm-heading {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0.85;
}
.rfk-mm-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rfk-mm-list li { margin: 0; padding: 0; }
.rfk-mm-list a {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.01em;
  padding: 5px 0;
  text-transform: none;
  transition: color 0.15s, transform 0.15s;
}
.rfk-mm-list a:hover {
  color: var(--gold);
  transform: translateX(3px);
}
.rfk-mm-footer {
  display: block;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(201,168,76,0.12);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: right;
  text-decoration: none;
}
.rfk-mm-footer:hover { color: var(--gold-light); }

/* Mobile: dropdowns become inline-stacked menus inside the mobile drawer.
   The site already has a separate .nav-mobile-drawer hamburger menu, so on
   small screens we hide the hover panels — users get the drawer instead. */
@media (max-width: 900px) {
  .rfk-mm-panel {
    width: 92vw;
    left: 50%;
    padding: 0;
  }
  .rfk-mm-panel-inner {
    padding: 24px 24px 18px;
  }
  .rfk-mm-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 22px;
  }
  .rfk-mm-list a { font-size: 15px; padding: 4px 0; }
  .rfk-mm-eyebrow { font-size: 22px; }
}
@media (max-width: 768px) {
  /* Mobile nav uses the hamburger drawer — hide desktop dropdown panels.
     The drawer (.nav-mobile-drawer) handles all top-level navigation on mobile;
     submenus are reachable via the destination pages (/pages/cities.html,
     /pages/occasions.html, /blog/, /pages/rankings.html). */
  .rfk-mm-panel { display: none !important; }
  .rfk-mm.open > .rfk-mm-panel { display: none !important; }
  .rfk-mm-caret { display: none; }
}

/* ============================================================
   BLOG INDEX + CATEGORY CARDS (rfk-bgrid / rfk-bcard)
   Used on /blog/, /blog/<category>/ and prev/next blocks.
   ============================================================ */
.rfk-bgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin: 32px 0 8px;
}
.rfk-bcard {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(22,20,15,0.55);
  border: 1px solid rgba(201,168,76,0.16);
  padding: 24px 22px 22px;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(201,168,76,0.16) !important;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.rfk-bcard:hover {
  border-color: rgba(201,168,76,0.55) !important;
  background: rgba(22,20,15,0.85);
  transform: translateY(-2px);
}
.rfk-bcard-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.rfk-bcard-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text) !important;
  margin: 0;
}
.rfk-bcard-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted) !important;
  margin: 0;
  flex: 1;
}
.rfk-bcard-cta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.rfk-pill-link {
  display: inline-block;
  padding: 9px 22px;
  border: 1px solid rgba(201,168,76,0.40);
  color: var(--gold) !important;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(201,168,76,0.40) !important;
  transition: all 0.2s;
  margin: 4px 4px;
}
.rfk-pill-link:hover {
  background: var(--gold);
  color: var(--black) !important;
  border-color: var(--gold) !important;
}
/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
    url('/assets/img/unsplash/photo-1414235077428-338989a2e8c0.jpg') center/cover;
  filter: brightness(0.5);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.8;
}
.btn-hero-join {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 16px 36px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 40px;
  transition: opacity 0.2s;
}
.btn-hero-join:hover { opacity: 0.85; }

/* ============================================================
   CITY SEARCH
   ============================================================ */
.city-search {
  display: flex;
  gap: 0;
  max-width: 560px;
  margin: 0 auto 20px;
}
.city-search input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-right: none;
  padding: 16px 20px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.city-search input:focus {
  border-color: rgba(201,168,76,0.4);
}
.city-search input::placeholder { color: var(--muted); }
.city-search button {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s;
}
.city-search button:hover { background: var(--gold-light); }
.hero-regions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(201,168,76,0.10);
}
.region-pill {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.30);
  color: var(--text);
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.2s;
  border-radius: 0;
}
.region-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.region-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.hero-cities {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.city-pill {
  background: rgba(10,10,8,0.35);
  border: 1px solid rgba(201,168,76,0.30);
  color: #F5F2EA;
  padding: 7px 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.city-pill:hover,
.city-pill.active {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   OCCASION FILTER BAR
   ============================================================ */
.section-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 24px;
}
.occasions {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 48px;
  position: sticky;
  top: 66px;
  z-index: 90;
}
.occasions-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.occasion-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.occasion-scroll::-webkit-scrollbar { display: none; }
.occasion-tag {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 10px 22px;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.25s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.occasion-tag .icon { font-size: 15px; }
.occasion-tag:hover {
  border-color: rgba(201,168,76,0.5);
  color: var(--text);
}
.occasion-tag.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 500;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.section-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.result-count {
  font-size: 13px;
  color: var(--muted);
}

/* ============================================================
   RESTAURANT GRID & CARDS
   ============================================================ */
.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px;
  margin-bottom: 80px;
}
/* Legend is not a card — it must span the full grid row instead of taking a single cell */
.restaurant-grid > .price-legend { grid-column: 1 / -1 !important; width: 100%; }
.restaurant-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}
.restaurant-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.5);
}
.card-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: brightness(0.98);
}
.restaurant-card:hover .card-image img { transform: scale(1.04); }
.card-rank {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--black);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
}
.card-occasion-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(10,10,8,0.85);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 5px 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.card-body { padding: 24px; }
.card-city {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.card-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 6px;
  line-height: 1.2;
}
.card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.card-cuisine { font-size: 12px; color: var(--muted); }
.card-price { font-size: 12px; color: var(--gold-dim); }
.card-reservation-hard   { font-size: 12px; color: #c8914c; }
.card-reservation-very   { font-size: 12px; color: #c84c4c; }
.card-reservation-normal { font-size: 12px; color: var(--muted); }
.card-verdict {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
  font-style: italic;
  border-left: 2px solid var(--gold-dim);
  padding-left: 12px;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-scores {
  display: flex;
  gap: 16px;
}
.score-item { text-align: center; }
.score-val {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold);
  font-weight: 300;
}
.score-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.card-actions {
  display: flex;
  gap: 8px;
}
.btn-vote {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 7px 14px;
  font-size: 12px;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.2s;
}
.btn-vote:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-reserve {
  background: var(--gold);
  border: none;
  color: var(--black);
  padding: 7px 16px;
  font-size: 12px;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
  transition: background 0.2s;
}
.btn-reserve:hover { background: var(--gold-light); }

/* ============================================================
   MODAL — RESTAURANT DETAIL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,8,0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-hero {
  height: 280px;
  position: relative;
}
.modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.modal-hero-content {
  position: absolute;
  bottom: 24px;
  left: 32px;
  right: 32px;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(10,10,8,0.7);
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: border-color 0.2s;
}
.modal-close:hover { border-color: var(--gold); color: var(--gold); }
.modal-body { padding: 32px; }
.modal-name {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 4px;
}
.modal-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.modal-scores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}
.modal-score-box {
  background: var(--surface2);
  padding: 18px 16px;
  text-align: center;
}
.modal-score-val {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold);
  font-weight: 300;
}
.modal-score-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.modal-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.modal-section-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

/* ============================================================
   COMMUNITY POLL
   ============================================================ */
.poll {
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 28px;
}
.poll-question {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 20px;
}
.poll-option {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  cursor: pointer;
}
.poll-bar-wrap {
  flex: 1;
  height: 32px;
  background: var(--surface3);
  position: relative;
  overflow: hidden;
}
.poll-bar {
  height: 100%;
  background: linear-gradient(90deg, rgba(201,168,76,0.3), rgba(201,168,76,0.15));
  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
}
.poll-label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--text);
}
.poll-pct {
  font-size: 13px;
  color: var(--gold);
  min-width: 36px;
  text-align: right;
}
.poll-voted .poll-bar {
  background: linear-gradient(90deg, rgba(201,168,76,0.6), rgba(201,168,76,0.3));
}

/* ============================================================
   REVIEWS & COMMENTS
   ============================================================ */
.comment {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.comment-user { font-size: 13px; font-weight: 500; color: var(--gold); }
.comment-date { font-size: 12px; color: var(--muted); }
.comment-occasion {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.comment-body { font-size: 14px; color: var(--muted); line-height: 1.7; }
.comment-form { margin-top: 24px; }
.comment-input {
  width: 100%;
  background: var(--surface3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 14px;
  resize: vertical;
  min-height: 80px;
  outline: none;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.comment-input:focus { border-color: rgba(201,168,76,0.4); }
.comment-submit {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 24px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.2s;
}
.comment-submit:hover { background: var(--gold); color: var(--black); }

/* ============================================================
   ADVERTISER / MEDIA KIT SECTION
   ============================================================ */
.advertiser {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 48px;
  text-align: center;
}
.advertiser-inner { max-width: 640px; margin: 0 auto; }
.advertiser h2 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 16px;
}
.advertiser h2 em { font-style: italic; color: var(--gold); }
.advertiser p { color: var(--muted); margin-bottom: 40px; font-size: 15px; line-height: 1.8; }
.advertiser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}
.adv-box { background: var(--surface2); padding: 28px 20px; }
.adv-num {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--gold);
  font-weight: 300;
  display: block;
}
.adv-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.adv-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
}
.adv-form input {
  flex: 1;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-right: none;
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
}
.adv-form input::placeholder { color: var(--muted); }
.adv-form button {
  background: var(--gold);
  border: none;
  color: var(--black);
  padding: 14px 24px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s;
}
.adv-form button:hover { background: var(--gold-light); }

/* ============================================================
   REGISTRATION MODAL
   ============================================================ */
.reg-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 420px;
  width: 100%;
  padding: 48px 40px;
  position: relative;
}
.reg-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 8px;
}
.reg-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}
.reg-field { margin-bottom: 16px; }
.reg-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.reg-field input,
.reg-field select {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.reg-field input:focus,
.reg-field select:focus { border-color: rgba(201,168,76,0.4); }
.reg-field select { appearance: none; cursor: pointer; }
.reg-btn {
  width: 100%;
  background: var(--gold);
  border: none;
  color: var(--black);
  padding: 14px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
  margin-top: 8px;
  transition: background 0.2s;
}
.reg-btn:hover { background: var(--gold-light); }
.reg-switch {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 20px;
}
.reg-switch a { color: var(--gold); cursor: pointer; text-decoration: none; }
.reg-switch a:hover { text-decoration: underline; }

/* ============================================================
   FULL-WIDTH EDITORIAL SECTIONS (city pages, editorial intros)
   ============================================================ */
.editorial {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 48px;
}
.editorial-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.editorial h1,
.editorial h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}
.editorial h1 em,
.editorial h2 em { font-style: italic; color: var(--gold); }
.editorial p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 20px;
}
.editorial-verdict {
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 32px 0;
  line-height: 1.6;
}

/* ============================================================
   CITY PAGE
   ============================================================ */
.city-hero {
  height: 60vh;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.city-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.5);
}
.city-hero-content {
  position: relative;
  z-index: 1;
  padding: 48px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.city-hero-name {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 12px;
}
.city-hero-meta {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.city-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 48px;
}
.city-stat-box {
  background: var(--surface2);
  padding: 24px;
  text-align: center;
}
.city-stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  color: var(--gold);
  font-weight: 300;
}
.city-stat-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   RESTAURANT DETAIL PAGE
   ============================================================ */
.restaurant-hero {
  height: 65vh;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}
.restaurant-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
.restaurant-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px;
  background: linear-gradient(0deg, rgba(10,10,8,0.9) 0%, transparent 60%);
}
.restaurant-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.restaurant-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  margin-bottom: 8px;
}
.restaurant-meta-bar {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.restaurant-meta-bar .separator { color: var(--border); }

/* ============================================================
   OCCASION PAGE
   ============================================================ */
.occasion-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.occasion-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}
.occasion-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.occasion-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.2em;
}
.occasion-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 20px;
}
.occasion-title em { font-style: italic; color: var(--gold); }
.occasion-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 20px 48px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold-dim); margin: 0 8px; }

/* ============================================================
   PRACTICAL INFO TABLE
   ============================================================ */
.info-table {
  border: 1px solid var(--border);
  margin-bottom: 32px;
  width: 100%;
}
.info-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; }
.info-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 20px;
  background: var(--surface2);
  display: flex;
  align-items: center;
}
.info-value {
  font-size: 14px;
  color: var(--text);
  padding: 14px 20px;
  display: flex;
  align-items: center;
}

/* ============================================================
   RESERVE BUTTON
   ============================================================ */
.btn-reserve-full {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--black);
  padding: 16px 36px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-reserve-full:hover { background: var(--gold-light); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 32px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--sans);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* ============================================================
   BLOG / ARTICLE
   ============================================================ */
.article-hero {
  height: 55vh;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
.article-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px;
  background: linear-gradient(0deg, rgba(10,10,8,0.9) 0%, transparent 60%);
}
.article-hero-inner { max-width: 800px; margin: 0 auto; }
.article-category {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.article-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
}
.article-byline { font-size: 13px; color: var(--muted); }
.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 48px;
}
.article-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 24px;
}
.article-body h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  margin: 48px 0 20px;
}
.article-body h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  margin: 36px 0 16px;
  color: var(--gold);
}
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 0 0 0 24px;
  margin: 32px 0;
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

/* ============================================================
   BLOG ARTICLE — LIST FORMAT (restaurant entries)
   ============================================================ */
.blog-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 48px 80px;
}
.blog-article .breadcrumb {
  margin-bottom: 40px;
}
.article-header {
  margin-bottom: 56px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px;
}
.article-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.article-header h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}
.article-standfirst,
.standfirst {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 20px;
}
.article-byline {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.article-byline .divider { color: var(--gold-dim); }
.blog-article > p,
.blog-article > article > p,
.article-container > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 24px;
}
.blog-article p a,
.article-container p a,
.article-body p a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201,168,76,0.3);
  transition: text-decoration-color 0.2s;
}
.blog-article p a:hover,
.article-container p a:hover { text-decoration-color: var(--gold); }

/* Restaurant entries inside blog articles */
.restaurant-entry {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
  margin: 48px 0;
  transition: border-color 0.2s;
}
.restaurant-entry:hover { border-color: rgba(201,168,76,0.35); }
.entry-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
}
.entry-header .rank-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  margin-top: 4px;
}
.entry-title h2 {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 300;
  margin-bottom: 6px;
  color: var(--text);
}
.entry-title h2 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.entry-title h2 a:hover { color: var(--gold); }
.entry-subtitle {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.occasion-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.occasion-tags .badge {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 4px 12px;
}
.restaurant-entry .score-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 24px 0;
  background: var(--border);
}
.restaurant-entry .score-item {
  background: var(--surface2);
  padding: 16px;
  text-align: center;
}
.score-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.score-value {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
}
.practical-info {
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 24px;
  margin: 28px 0;
  font-size: 14px;
}
.practical-info .info-row {
  display: flex;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  line-height: 1.5;
  color: var(--muted);
}
.practical-info .info-row:last-child { border-bottom: none; }
.practical-info .info-row strong {
  color: var(--text);
  min-width: 130px;
  flex-shrink: 0;
}
.reserve-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  margin-top: 16px;
}
.reserve-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.restaurant-entry > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* Article container (editorial guide format) */
.article-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 48px 80px;
}
.article-container .article-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.article-container h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}
.article-container h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  margin: 48px 0 20px;
  color: var(--text);
}
.article-container h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  margin: 32px 0 14px;
  color: var(--gold);
}
.article-container p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 20px;
}
.faq-section { margin: 48px 0; }
.faq-section h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 32px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-item h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.faq-item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}
.related-guides {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  margin: 48px 0;
}
.related-guides h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--text);
}
.related-guides ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.related-guides ul li a {
  color: var(--gold);
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.related-guides ul li a:hover { gap: 12px; }

/* Blog outro / footer section */
.blog-outro {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.blog-outro h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 16px;
}

/* Mid-article CTA */
.article-cta-inline {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 32px 36px;
  margin: 48px 0;
  text-align: center;
}
.cta-headline {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 10px;
}
.cta-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.cta-sub a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(201,168,76,0.3); }
.cta-sub a:hover { text-decoration-color: var(--gold); }

/* Mobile responsive for blog */
@media (max-width: 900px) {
  .blog-article,
  .article-container { padding: 100px 24px 60px; }
  .restaurant-entry { padding: 24px; }
  .entry-header { gap: 14px; }
  .practical-info .info-row { flex-direction: column; gap: 4px; }
  .practical-info .info-row strong { min-width: unset; }
}
@media (max-width: 600px) {
  .article-header h1,
  .article-container h1 { font-size: 26px; }
  .article-standfirst { font-size: 16px; }
  .entry-title h2 { font-size: 20px; }
  .restaurant-entry .score-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RELATED CARDS (horizontal strip)
   ============================================================ */
.related-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 48px;
}
.related-inner { max-width: 1200px; margin: 0 auto; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 32px;
}

/* ============================================================
   TOP 10 LIST
   ============================================================ */
.top10-list { margin-bottom: 64px; }
.top10-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
}
.top10-item:hover { border-color: rgba(201,168,76,0.4); }
.top10-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold-dim);
  text-align: center;
}
.top10-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 4px;
}
.top10-sub { font-size: 13px; color: var(--muted); }
.top10-score {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  font-weight: 300;
  text-align: right;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {}
.footer-logo-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.footer-logo-text span { font-style: italic; }
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-newsletter { display: flex; gap: 0; }
.footer-newsletter input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-right: none;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 13px;
  outline: none;
  min-width: 0;
}
.footer-newsletter input::placeholder { color: var(--muted); }
.footer-newsletter button {
  background: var(--gold);
  border: none;
  color: var(--black);
  padding: 12px 18px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s;
}
.footer-newsletter button:hover { background: var(--gold-light); }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up { animation: fadeUp 0.8s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }
.fade-up-5 { animation-delay: 0.5s; }

.hero-content > * { animation: fadeUp 0.8s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

/* ============================================================
   UTILITY
   ============================================================ */
.gold     { color: var(--gold); }
.muted    { color: var(--muted); }
.serif    { font-family: var(--serif); }
.italic   { font-style: italic; }
.caps     { text-transform: uppercase; letter-spacing: 0.15em; font-size: 11px; }
.divider  { border: none; border-top: 1px solid var(--border); margin: 48px 0; }
.sr-only  { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   HAMBURGER / MOBILE NAV
   ============================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav-mobile-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 150;
  background: rgba(10,10,8,0.98);
  backdrop-filter: blur(12px);
  padding: 80px 32px 40px;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nav-mobile-drawer.is-open,
.nav-mobile-drawer.open {
  display: flex !important;
  transform: translateY(0);
}
.nav-mobile-drawer a {
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: color 0.2s;
  font-family: var(--sans);
}
.nav-mobile-drawer a:last-child {
  border-bottom: none;
}
.nav-mobile-drawer a:hover,
.nav-mobile-drawer a:focus { color: var(--gold); }
.nav-mobile-drawer .nav-cta {
  margin-top: 20px;
  text-align: center;
  justify-content: center;
  font-size: 13px;
  padding: 14px 28px;
  border: 1px solid var(--gold);
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 100px 20px 60px; }
  .city-search { max-width: 100%; }

  .occasions { padding: 24px; top: 58px; }

  .main { padding: 40px 24px; }

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

  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 24px 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 12px; text-align: center; }

  .breadcrumb { padding: 16px 24px; }
  .city-hero-content { padding: 32px 24px; }
  .modal-body { padding: 24px; }
  .modal-scores { grid-template-columns: repeat(2, 1fr); }
  .city-stats { grid-template-columns: repeat(2, 1fr); }
  .advertiser { padding: 48px 24px; }
  .related-section { padding: 48px 24px; }
  .article-body { padding: 40px 24px; }
  .editorial { padding: 48px 24px; }

  .info-row { grid-template-columns: 1fr; }
  .info-label { padding: 10px 16px; }
  .info-value { padding: 10px 16px; }
}

@media (max-width: 600px) {
  .footer-main { grid-template-columns: 1fr; }
  .hero-title { font-size: 44px; }
  .advertiser-grid { grid-template-columns: 1fr; }
  .top10-item { grid-template-columns: 40px 1fr; }
  .top10-score { display: none; }
  .modal-name { font-size: 28px; }
  .reg-modal { padding: 32px 24px; }
}

/* Skip-to-content link (a11y) */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: #C9A84C;
  color: #0A0A08;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  letter-spacing: 0.05em;
  z-index: 999;
  border-radius: 0 0 4px 0;
  transition: top 0.15s;
}
.skip-to-content:focus {
  top: 0;
  outline: 2px solid #F0EDE4;
  outline-offset: 2px;
}

/* === Restaurant Card Visual Hierarchy === */
/* Make the price tier and editorial scores the dominant visual elements */

/* Price tier — was small/dim, now bold and prominent */
.restaurant-card .card-price {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #C9A84C !important;
  letter-spacing: 0.04em;
}

/* Cuisine type — kept understated as supporting context */
.restaurant-card .card-cuisine {
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(240,237,228,0.55) !important;
}

/* Score values — make them the focal point of card-scores */
.restaurant-card .card-scores .score-num,
.restaurant-card .card-scores [class*="score-value"] {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color: #C9A84C !important;
  line-height: 1;
}

.restaurant-card .card-scores [class*="score-label"] {
  font-size: 9px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  color: rgba(240,237,228,0.5) !important;
  margin-top: 2px;
}

/* Rank badge — make it impossible to miss */
.restaurant-card .card-rank {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  color: #C9A84C !important;
  background: rgba(10,10,8,0.88) !important;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 4px 14px !important;
  letter-spacing: 0.05em;
}

/* Restaurant name — slightly elevated to compete with price tier */
.restaurant-card .card-name {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  color: #F0EDE4 !important;
  margin-bottom: 4px !important;
  line-height: 1.15;
}

/* City label — kept understated */
.restaurant-card .card-city {
  font-size: 10px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  color: #C9A84C !important;
  opacity: 0.7;
  margin-bottom: 6px;
}

/* Verdict — italic blockquote style */
.restaurant-card .card-verdict {
  font-style: italic !important;
  font-size: 13px !important;
  color: rgba(240,237,228,0.7) !important;
  line-height: 1.6 !important;
}

/* Layered hover state — emphasize that the card is clickable */
.restaurant-card {
  transition: border-color 0.2s, transform 0.2s !important;
}
.restaurant-card:hover {
  border-color: rgba(201,168,76,0.6) !important;
  transform: translateY(-2px);
}

/* On mobile, give cards more breathing room */
@media (max-width: 640px) {
  .restaurant-card .card-name { font-size: 20px !important; }
  .restaurant-card .card-price { font-size: 16px !important; }
  .restaurant-card .card-rank { font-size: 22px !important; }
}


/* LIGHT THEME removed 2026-05-06 — site is dark-only. */

/* Wave 6 — long-form "why we rank this" motivation block */
.why-block {
  background: var(--surface);
  border-left: 3px solid var(--gold);
  padding: 22px 26px;
  margin: 22px 0;
  max-width: 820px;
}
.why-block .why-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}
.why-block .why-paragraph {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}
@media (max-width:900px){
  .why-block { padding: 18px 20px; }
  .why-block .why-paragraph { font-size: 15px; }
}
