/* =========================================
   OzarkRoost — Guide Page Styles
   Shared CSS for all /guides/* pages.
   Relies on design tokens from theme.css.
   ========================================= */

/* ---------- Hero ---------- */
.guide-hero {
  position: relative;
  min-height: clamp(420px, 55vh, 600px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--pine-dark);
}
.guide-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.55;
}
.guide-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,34,18,0.88) 0%, rgba(14,34,18,0.35) 50%, transparent 80%);
}
.guide-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 56px;
}
.guide-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(212,137,63,0.15);
  padding: 5px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 16px;
}
.guide-hero__content h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 14px;
  max-width: 800px;
}
.guide-hero__sub {
  font-size: 18px;
  color: rgba(245,240,232,0.72);
  max-width: 560px;
  line-height: 1.5;
  margin-bottom: 28px;
}

/* ---------- Body / Sections ---------- */
.guide-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.guide-section {
  padding: 48px 0;
  border-bottom: 1px solid rgba(28,61,42,0.08);
}
.guide-section:last-child { border-bottom: none; }
.guide-section h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 20px;
}
.guide-prose p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 720px;
}
.guide-prose p:last-child { margin-bottom: 0; }
.guide-prose a { color: var(--amber-dark); text-decoration: underline; }

/* ---------- Bullet list ---------- */
.guide-bullets {
  list-style: none;
  padding: 0;
}
.guide-bullets li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}
.guide-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

/* ---------- Numbered list ---------- */
.guide-numbered {
  list-style: none;
  padding: 0;
  counter-reset: adventure;
}
.guide-numbered li {
  counter-increment: adventure;
  padding: 20px 0 20px 0;
  border-bottom: 1px solid rgba(28,61,42,0.06);
}
.guide-numbered li:last-child { border-bottom: none; }
.guide-numbered li h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.guide-numbered li h3::before {
  content: counter(adventure) ". ";
  color: var(--amber);
}
.guide-numbered li p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 680px;
}
.guide-numbered li p a { color: var(--amber-dark); text-decoration: underline; }

/* ---------- CTA link ---------- */
.guide-cta {
  display: inline-block;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--amber-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.guide-cta:hover { color: var(--amber); }
.guide-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}

/* ---------- Cards (3-col) ---------- */
.guide-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.guide-card {
  background: white;
  border: 1px solid rgba(28,61,42,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(28,61,42,0.10);
}
.guide-card__icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.guide-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.guide-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.guide-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--amber-dark);
  text-decoration: none;
}
.guide-card__link:hover { color: var(--amber); }

/* ---------- Table ---------- */
.guide-table-wrap {
  overflow-x: auto;
  margin-top: 8px;
}
.guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.guide-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--pine);
  color: var(--cream);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.guide-table th:first-child { border-radius: var(--radius) 0 0 0; }
.guide-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.guide-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(28,61,42,0.08);
  color: var(--text-muted);
  vertical-align: top;
}
.guide-table tbody tr:hover { background: rgba(212,137,63,0.04); }

/* ---------- Seasons grid ---------- */
.guide-seasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.guide-season {
  background: white;
  border: 1px solid rgba(28,61,42,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.guide-season h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.guide-season p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Two-column layout ---------- */
.guide-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 8px;
}
.guide-column h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 14px;
}

/* ---------- CTA section ---------- */
.guide-section--cta {
  text-align: center;
  padding: 56px 0 64px;
  border-bottom: none;
}
.guide-section--cta h2 {
  margin-bottom: 12px;
}
.guide-section--cta p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.guide-fine-print {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  opacity: 0.7;
  margin-top: 16px !important;
}

/* ---------- Gem cards (hidden-gem page) ---------- */
.guide-gems { margin-top: 8px; }
.guide-gem {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(28,61,42,0.06);
}
.guide-gem:last-child { border-bottom: none; }
.guide-gem__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pine);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  margin-top: 2px;
}
.guide-gem h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.guide-gem__loc {
  font-size: 13px;
  color: var(--amber-dark);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.guide-gem p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
  .guide-hero__content { padding-bottom: 40px; }
  .guide-hero__content h1 { font-size: 26px; }
  .guide-hero__sub { font-size: 16px; }
  .guide-section { padding: 36px 0; }
  .guide-cards { grid-template-columns: 1fr; }
  .guide-seasons { grid-template-columns: 1fr; }
  .guide-columns { grid-template-columns: 1fr; }
  .guide-gem { flex-direction: column; gap: 12px; }
  .guide-table { font-size: 13px; }
  .guide-table td, .guide-table th { padding: 8px 10px; }
}
