/* ExploraHome public SEO pages — no Tailwind CDN. */
:root {
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f8fafc;
  --card: #ffffff;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --green: #15803d;
  --radius: 12px;
}
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
.wrap { width: 100%; max-width: 56rem; margin: 0 auto; padding: 0 1rem; }
.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.1rem;
}
.brand img { width: 36px; height: 36px; border-radius: 8px; }
.brand:hover { text-decoration: none; }
.site-nav { display: flex; gap: 0.85rem; flex-wrap: wrap; font-size: 0.875rem; color: var(--muted); }
.crumbs {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.75rem 0 0;
}
.crumbs span { margin: 0 0.25rem; }
main.wrap { flex: 1; padding-top: 2rem; padding-bottom: 3rem; }
h1 { font-size: 1.85rem; line-height: 1.2; margin: 0 0 0.75rem; }
h2 { font-size: 1.2rem; margin: 1.75rem 0 0.75rem; }
.lede { color: #475569; font-size: 1.05rem; max-width: 40rem; margin: 0 0 1.25rem; }
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2.15rem; }
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.card h2, .card h3 { margin-top: 0; }
.listing-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .listing-row { flex-direction: row; align-items: center; }
}
.price { color: var(--green); font-weight: 800; }
.muted { color: var(--muted); font-size: 0.875rem; }
.tiny { color: var(--muted); font-size: 0.75rem; }
.actions { display: flex; gap: 0.5rem; flex-shrink: 0; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  font-weight: 650;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-ghost { background: #f1f5f9; color: #1e293b; }
.btn-ghost:hover { background: #e2e8f0; }
.btn-outline { background: #eff6ff; color: #1e40af; }
.hero-cta { margin: 0 0 1.75rem; padding: 0.75rem 1.15rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0 0 1.5rem; }
.chip {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  font-size: 0.875rem;
}
.chip dt { font-size: 0.7rem; color: var(--muted); }
.chip dd { margin: 0; font-weight: 700; }
.hero-photo {
  width: 100%;
  max-height: 22rem;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 0 0 1.25rem;
  background: #e2e8f0;
}
.empty {
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.prose p { margin: 0 0 0.85rem; color: #475569; }
.prose ul { margin: 0 0 1rem; padding-left: 1.25rem; color: #475569; }
.site-footer {
  text-align: center;
  font-size: 0.75rem;
  color: #94a3b8;
  padding: 2rem 1rem;
}
.site-footer a { color: #64748b; }
.pager { display: flex; gap: 1rem; margin-top: 1.5rem; }
.kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin: 0 0 0.35rem;
}
.capitalize { text-transform: capitalize; }
