/* ============================================================
   Seed & Steel — canonical stylesheet for all Notes from Bob
   posts and Four Kinds of Work pillars.
   One sheet. Every post links it. No embedded <style> blocks.
   Fonts (load in each page <head>):
   Playfair Display (headings) + Lato (body)
   ============================================================ */

:root {
  --dark-olive: #2b310a;
  --od-green: #4b5320;
  --field-olive: #6a7337;
  --forged-gold: #B8860B;
  --khaki-light: #e6e5ca;
  --steel: #333333;
  --warm-black: #1a1a1a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--khaki-light);
  background: var(--warm-black);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 48px;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 134, 11, 0.15);
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--khaki-light); letter-spacing: 2px; text-decoration: none; }
.nav-logo span { color: var(--forged-gold); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--khaki-light); text-decoration: none; font-size: 13px; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.3s; opacity: 0.7; }
.nav-links a:hover { color: var(--forged-gold); opacity: 1; }
.nav-cta { background: var(--forged-gold) !important; color: var(--warm-black) !important; padding: 10px 24px !important; border-radius: 2px; font-weight: 700 !important; letter-spacing: 1.5px !important; opacity: 1 !important; }
.nav-cta:hover { background: #d4a017 !important; }

/* HERO
   Default background is the olive gradient. Each post sets its own
   hero photo with an inline style on the .post-hero-bg element:
   style="background:url('slug-hero.jpg') center/cover no-repeat,
          linear-gradient(135deg,#2b310a,#1a1d0a 60%,#14160a);"
   The inline gradient stays as a fallback so it never looks broken. */
.post-hero {
  position: relative; min-height: 55vh;
  display: flex; align-items: flex-end;
  padding: 80px 48px 64px; overflow: hidden;
}
.post-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2b310a 0%, #1a1d0a 60%, #14160a 100%);
}
.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.5) 0%, rgba(43,49,10,0.85) 60%, rgba(26,26,26,0.98) 100%);
}
.post-hero-content { position: relative; z-index: 2; max-width: 820px; }
.post-category { font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--forged-gold); font-weight: 700; margin-bottom: 20px; display: block; }
.post-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 58px); font-weight: 700; line-height: 1.1; color: #fff; margin-bottom: 14px; }
.post-subtitle { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(18px, 2.4vw, 24px); color: var(--forged-gold); opacity: 0.92; margin-bottom: 24px; }
.post-meta { font-size: 13px; letter-spacing: 1px; color: var(--khaki-light); opacity: 0.5; text-transform: uppercase; }
.post-meta span { color: var(--forged-gold); opacity: 0.8; margin: 0 8px; }

/* BODY */
.post-body { max-width: 740px; margin: 0 auto; padding: 80px 24px 120px; }
.post-body p { font-size: 18px; line-height: 1.85; color: var(--khaki-light); opacity: 0.88; margin-bottom: 28px; font-weight: 300; }
.post-body p strong { color: #fff; font-weight: 700; opacity: 1; }
.post-body h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 600; color: #fff; margin: 56px 0 24px; line-height: 1.3; }

/* PULL QUOTE */
.pull-quote { border-left: 3px solid var(--forged-gold); padding: 8px 0 8px 32px; margin: 48px 0; }
.pull-quote p { font-family: 'Playfair Display', serif; font-size: 22px !important; font-style: italic; color: var(--forged-gold) !important; opacity: 1 !important; line-height: 1.6 !important; margin: 0 !important; }

/* DIVIDER */
.gold-divider { width: 60px; height: 2px; background: var(--forged-gold); margin: 56px 0; }

/* CRISIS / RESOURCE CALLOUT */
.crisis { background: var(--od-green); border-left: 3px solid var(--forged-gold); padding: 22px 28px; margin: 40px 0; border-radius: 2px; }
.crisis p { font-size: 16px !important; line-height: 1.65 !important; color: var(--khaki-light) !important; opacity: 0.95 !important; font-weight: 400 !important; margin: 0 !important; }
.crisis .nums { display: block; margin-top: 10px; color: var(--forged-gold) !important; font-weight: 700 !important; letter-spacing: 0.5px; opacity: 1 !important; }

/* LEVEL / NUMBERED BLOCK (pillars) */
.level { border-left: 2px solid rgba(184,134,11,0.35); padding-left: 24px; margin: 0 0 28px; }
.level .tag { display: block; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--forged-gold); font-weight: 700; margin-bottom: 8px; }
.level p { margin: 0; }
.ask { font-style: italic; color: var(--khaki-light); opacity: 0.7 !important; font-size: 16px !important; }

/* CTA */
.post-cta { background: var(--dark-olive); border: 1px solid rgba(184,134,11,0.2); padding: 48px; margin-top: 64px; text-align: center; }
.post-cta p { font-size: 14px !important; letter-spacing: 3px; text-transform: uppercase; color: var(--forged-gold) !important; opacity: 1 !important; margin-bottom: 16px !important; }
.post-cta h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: #fff; margin-bottom: 16px; font-weight: 600; }
.post-cta .sub { font-size: 16px !important; opacity: 0.65 !important; max-width: 500px; margin: 0 auto 32px !important; letter-spacing: 0 !important; text-transform: none !important; color: var(--khaki-light) !important; }
.btn-primary { display: inline-block; background: var(--forged-gold); color: var(--warm-black); padding: 16px 40px; font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: all 0.3s; }
.btn-primary:hover { background: #d4a017; transform: translateY(-2px); }

/* BACK LINK */
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--forged-gold); text-decoration: none; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 48px; opacity: 0.8; transition: opacity 0.3s; }
.back-link:hover { opacity: 1; }

/* PILLAR CROSS-NAV */
.pillar-nav { border-top: 1px solid rgba(184,134,11,0.2); margin-top: 56px; padding-top: 28px; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--khaki-light); opacity: 0.55; }
.pillar-nav a { color: var(--forged-gold); text-decoration: none; }

/* AUTHOR BIO */
.author-bio { border-top: 1px solid rgba(184,134,11,0.2); margin-top: 56px; padding-top: 40px; }
.author-bio p { font-size: 15px !important; opacity: 0.6 !important; font-style: italic; }

/* FOOTER */
footer { padding: 60px 48px 32px; border-top: 1px solid rgba(184,134,11,0.15); text-align: center; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--khaki-light); letter-spacing: 2px; text-decoration: none; display: block; margin-bottom: 12px; }
.footer-logo span { color: var(--forged-gold); }
.footer-tagline { font-size: 13px; color: var(--khaki-light); opacity: 0.35; letter-spacing: 1px; font-style: italic; font-family: 'Playfair Display', serif; }
.footer-copy { font-size: 12px; color: var(--khaki-light); opacity: 0.2; margin-top: 32px; letter-spacing: 1px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .post-hero { padding: 80px 24px 48px; }
  .post-body { padding: 48px 24px 80px; }
  .post-cta { padding: 32px 24px; }
  footer { padding: 40px 24px 24px; }
}
