/* ============================================================
   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:        #F0EDE4;
  --muted:       #8A8778;
  --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
   ============================================================ */
nav {
  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;
}
.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);
}

/* ============================================================
   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('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80') center/cover;
  filter: brightness(0.25);
  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 56px;
  font-weight: 300;
  line-height: 1.8;
}

/* ============================================================
   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-cities {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.city-pill {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  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;
}
.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.85);
}
.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.35);
}
.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.4);
}
.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.2);
}
.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.3);
}
.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;
}

/* ============================================================
   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 {
  display: flex;
  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; }
}
