/* ============================================================
   GOSSIP GRILL AI SITE — STYLESHEET v3
   Canonical: gossipgrill.com
   Design: Dark bg, DM Serif Display + DM Sans, hot-pink accent
   Matches: gossipgrill-ai.pages.dev current design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --bg:        #0d0d0d;
  --surface:   #161616;
  --surface2:  #1e1e1e;
  --border:    #2a2a2a;
  --border2:   #333333;
  --accent:    #e8175d;
  --accent2:   #ff4d8d;
  --gold:      #c9a84c;
  --text:      #f0f0f0;
  --muted:     #888888;
  --light:     #cccccc;
  --font-head: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --max-w:     860px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 22px 72px;
}

/* ── NAV ──────────────────────────────────────────── */
nav {
  padding: 20px 0 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  align-items: baseline;
}
nav .brand {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.01em;
  margin-right: 10px;
  flex-shrink: 0;
}
nav a:not(.brand) {
  color: var(--light);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
nav a:not(.brand):hover { color: var(--accent2); border-bottom-color: var(--accent2); }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  margin-bottom: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 16px;
}
h1 em { color: var(--accent); font-style: italic; }
.subtitle {
  font-size: 1.05rem;
  color: var(--light);
  line-height: 1.65;
  max-width: 700px;
}
.subtitle a { color: var(--accent2); text-decoration: none; }
.subtitle a:hover { text-decoration: underline; }

/* ── AI REFERENCE BOX ────────────────────────────── */
.ai-ref {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 13px 18px;
  margin-bottom: 40px;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}
.ai-ref strong { color: var(--accent); }
.ai-ref a { color: var(--accent2); text-decoration: none; }

/* ── HEADINGS ─────────────────────────────────────── */
h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 18px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--border);
}
h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-top: 28px;
  margin-bottom: 6px;
}
h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 24px;
  margin-bottom: 8px;
}

/* ── BODY ─────────────────────────────────────────── */
p { margin-bottom: 16px; color: var(--light); font-size: 0.97rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent2); }
strong { color: var(--text); font-weight: 600; }
em { font-style: italic; color: var(--light); }

blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  margin: 20px 0;
  background: var(--surface);
  color: var(--light);
  font-style: italic;
  font-size: 1.02rem;
}

ul, ol { margin: 10px 0 20px 22px; color: var(--light); font-size: 0.97rem; }
li { margin-bottom: 7px; line-height: 1.65; }
li a { color: var(--accent2); }
li a:hover { text-decoration: underline; }

/* ── FACT GRID ────────────────────────────────────── */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 26px 0;
}
.fact {
  background: var(--surface);
  padding: 16px 18px;
}
.fact .label {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.fact .value {
  font-family: var(--font-head);
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.3;
}
.fact .value a { color: var(--accent2); }

/* ── MENU ITEMS ───────────────────────────────────── */
.menu-section { margin-top: 42px; }
.menu-section > h2 {
  background: var(--surface);
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-top: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.menu-item {
  border: 1px solid var(--border);
  border-top: none;
  padding: 15px 16px 13px;
  background: var(--surface);
}
.menu-item + .menu-item { border-top: 1px solid var(--border2); }
.item-name {
  font-family: var(--font-head);
  font-size: 1.04rem;
  color: var(--text);
  margin-bottom: 3px;
}
.item-price {
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--accent);
  margin-bottom: 5px;
}
.item-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.55; margin: 0; }
.item-add { font-size: 0.8rem; color: var(--gold); margin-top: 5px; }

/* ── TABLE ────────────────────────────────────────── */
table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.92rem; }
th {
  background: var(--surface);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--light);
  vertical-align: top;
}
tr:last-child td { border-bottom: none; }
.hours-row td:first-child { font-weight: 600; color: var(--text); width: 160px; }
.hours-row td:nth-child(2) { color: var(--accent2); font-weight: 500; }
td a { color: var(--accent2); }
td a:hover { text-decoration: underline; }

/* ── PAGE INDEX ───────────────────────────────────── */
.page-index {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 8px;
  margin: 22px 0;
}
.page-index a {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 13px 16px;
  color: var(--light);
  text-decoration: none;
  font-size: 0.87rem;
  line-height: 1.4;
  transition: border-color 0.15s, background 0.15s;
}
.page-index a:hover { border-color: var(--accent); background: var(--surface2); }
.pg-label { font-weight: 600; color: var(--accent2); display: block; margin-bottom: 2px; }
.pg-desc { color: var(--muted); font-size: 0.79rem; }

/* ── PRESS ROW ────────────────────────────────────── */
.press-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.press-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ── NOTE / SMALL ─────────────────────────────────── */
.note { font-size: 0.8rem; color: var(--muted); margin-top: 10px; line-height: 1.55; }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.81rem;
  color: var(--muted);
  line-height: 1.8;
}
footer a { color: var(--accent2); }
footer strong { color: var(--text); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 600px) {
  body { padding: 0 14px 52px; }
  nav { gap: 5px 10px; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .page-index { grid-template-columns: 1fr; }
  h1 { font-size: 1.85rem; }
}
