/* ===================================================================
   Boys to Men Mentorship Camp — Blog Stylesheet
   Palette: deep navy, harvest gold, forest green, warm ivory, ember clay
   Type: Fraunces (display serif) + Source Sans 3 (body/utility)
   Signature element: the "ember mark" — a small flame glyph used as a
   section divider, echoing the fireside conversations the posts
   describe. Used sparingly, never as decoration for its own sake.
=================================================================== */

:root {
  --navy: #0f2340;
  --navy-2: #16304f;
  --navy-3: #0a1830;
  --gold: #c9a24b;
  --gold-light: #e8cd8a;
  --forest: #2f4a3c;
  --ivory: #fbf7ee;
  --ivory-2: #f3ead6;
  --charcoal: #23262b;
  --charcoal-soft: #4a4f57;
  --ember: #b5502d;
  --rule: rgba(15, 35, 64, 0.12);
  --max-w: 700px;
  --shadow: 0 18px 40px -22px rgba(15, 35, 64, 0.35);
}

* { box-sizing: border-box; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a {
  color: var(--navy);
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
a:hover { color: var(--ember); }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Top bar ---------- */
.site-header {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
}
.site-header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 19px;
  flex-shrink: 0;
  background: var(--navy-3);
}
.brand-name {
  color: var(--ivory);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.brand-name span {
  display: block;
  color: var(--gold-light);
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}
.site-nav { display: flex; gap: 22px; }
.site-nav a {
  color: var(--ivory);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
}
.site-nav a:hover { color: var(--gold-light); }

/* ---------- Article hero ---------- */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 24px 28px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 16px;
}
h1.headline {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 18px;
}
.dek {
  font-size: 19px;
  line-height: 1.5;
  color: var(--charcoal-soft);
  margin: 0 0 22px;
  font-weight: 400;
}
.hero-rule {
  width: 64px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 0;
}

/* ---------- Article body ---------- */
.article-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 8px 24px 8px;
}
.article-body p {
  font-size: 18px;
  line-height: 1.72;
  color: var(--charcoal);
  margin: 0 0 22px;
}
.article-body p:first-of-type {
  font-size: 20px;
  color: var(--navy);
}

/* ember mark divider — signature element */
.ember-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 34px 0;
}
.ember-mark svg { flex-shrink: 0; }
.ember-mark .line {
  height: 1px;
  flex: 1;
  background: var(--rule);
}

/* pull quote */
blockquote.pull {
  margin: 36px 0;
  padding: 22px 26px;
  background: var(--ivory-2);
  border-left: 4px solid var(--gold);
  border-radius: 2px;
}
blockquote.pull p {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--navy);
  margin: 0;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  background-image: radial-gradient(circle at 15% 20%, rgba(201,162,75,0.14), transparent 45%);
  margin-top: 48px;
  padding: 46px 24px;
}
.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: left;
}
.cta-inner .cta-eyebrow {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.cta-inner h2 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--ivory);
  font-size: 26px;
  line-height: 1.3;
  margin: 0 0 20px;
  font-weight: 600;
  max-width: 480px;
}
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-3);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn-gold:hover { background: var(--gold-light); color: var(--navy-3); }

/* ---------- Related posts ---------- */
.related {
  max-width: 1080px;
  margin: 56px auto 0;
  padding: 0 24px;
}
.related h3 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 18px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 18px;
  text-decoration: none;
  display: block;
}
.related-card .r-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  display: block;
  margin-bottom: 8px;
}
.related-card .r-title {
  font-family: "Fraunces", Georgia, serif;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 600;
}
@media (max-width: 720px) {
  .related-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-3);
  color: var(--ivory-2);
  margin-top: 64px;
  padding: 36px 24px;
  font-size: 14px;
}
.site-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer a { color: var(--gold-light); text-decoration: none; }
.site-footer .copy { color: rgba(251,247,238,0.55); }

/* ---------- Blog index page ---------- */
.index-hero {
  background: var(--navy);
  background-image: radial-gradient(circle at 85% 10%, rgba(201,162,75,0.16), transparent 50%);
  padding: 64px 24px 52px;
  text-align: left;
}
.index-hero-inner { max-width: 1080px; margin: 0 auto; }
.index-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--ivory);
  font-size: clamp(32px, 5vw, 46px);
  margin: 0 0 16px;
  font-weight: 600;
}
.index-hero p {
  color: var(--ivory-2);
  font-size: 18px;
  max-width: 560px;
  line-height: 1.6;
}
.index-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-top: 3px solid var(--gold);
}
.post-card-body { padding: 22px; }
.post-card .p-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  display: block;
  margin-bottom: 10px;
}
.post-card .p-title {
  font-family: "Fraunces", Georgia, serif;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 10px;
}
.post-card .p-dek {
  color: var(--charcoal-soft);
  font-size: 14.5px;
  line-height: 1.55;
}
.post-card .p-read {
  margin-top: 14px;
  color: var(--navy);
  font-weight: 700;
  font-size: 13.5px;
}
@media (max-width: 900px) {
  .index-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .index-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
}
