/* ── Variables — guías family overrides ── */
:root {
  --cream: #FAFAF5;
  --cream-dark: #F0EBE0;
  --green: #4A7C6F;
  --green-dark: #2C4A3E;
  --terracota: #C8724A;
  --ink: #1A1A18;
  --ink-light: #5A5550;
  --rule: #D4C9BA;
}

/* ── Body overrides ── */
body {
  font-weight: 300;
  line-height: 1.8;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* =====================================================
   GUÍAS INDEX — guias/index.html
   Uses .site-nav (from main.css) + guía-specific items
   ===================================================== */

/* ── Page header ── */
.page-header {
  padding: 4rem 2rem 2rem;
}
.page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.page-header .subtitle {
  font-size: 1rem;
  color: var(--ink-light);
  max-width: 520px;
}

/* ── Guides list ── */
.guides-section {
  padding: 0 2rem 4rem;
}
#guides-list {
  list-style: none;
  max-width: 720px;
}
.guide-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}
.guide-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--terracota);
  margin-bottom: 0.4rem;
}
.guide-title {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
  transition: color 0.2s ease;
}
.guide-title:hover { color: var(--green); }
.guide-desc {
  font-size: 0.92rem;
  color: var(--ink-light);
  margin: 0;
}

.empty-state {
  padding: 3rem 0;
  color: var(--ink-light);
  font-size: 1.05rem;
}
