/* ── VARIABLES ── */
:root {
  --green:        #8C9E28;
  --green-dark:   #6d7c1f;
  --green-light:  #a8bc30;
  --charcoal:     #2D2D2D;
  --charcoal-dark:#1A1A1A;
  --gray:         #5A5A5A;
  --gray-light:   #AAAAAA;
  --off-white:    #F6F6F4;
  --white:        #FFFFFF;
  --nav-h:        68px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; } /* JS handles scroll */

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--charcoal-dark);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#nav.scrolled {
  background: var(--charcoal-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green-light); }

.nav-cta {
  background: var(--green) !important;
  color: white !important;
  padding: 8px 20px !important;
  border-radius: 2px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--green-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal-dark);
}

.hero-bg {
  position: absolute;
  inset: -20%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  will-change: transform;
}

.hero-brace {
  font-size: clamp(300px, 40vw, 600px);
  font-weight: 800;
  color: var(--green);
  opacity: 0.06;
  line-height: 1;
  user-select: none;
  font-family: 'Inter', sans-serif;
}

.hero-brace-left { margin-left: -4vw; }
.hero-brace-right { margin-right: -4vw; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, var(--charcoal-dark) 80%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll span {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: white;
  border: 2px solid var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--green-dark);
  border: 2px solid white;
  font-size: 14px;
}

.btn-white:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
}

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section-light { background: var(--off-white); }
.section-dark  { background: var(--charcoal-dark); }
.section-green { background: var(--green); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 12px;
}

.section-label-light { color: rgba(255,255,255,0.45); }

h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 56px;
}

.heading-light { color: var(--white); }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.about-text h2 { margin-bottom: 24px; }

.body-copy {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px dashed #CCCCCC;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.stat-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.quote-card {
  background: var(--charcoal-dark);
  padding: 24px 28px;
  border-left: 4px solid var(--green);
  margin-bottom: 24px;
}

.quote-mark { display: none; }

.quote-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
  font-style: italic;
}

.about-links { display: flex; flex-direction: column; gap: 0; }

.about-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px dashed #CCCCCC;
  transition: color 0.2s;
}

.about-link:hover { color: var(--green); }
.about-link:hover .about-link-arrow { transform: translateX(4px); }
.about-link-arrow { transition: transform 0.2s; }

/* ── EXPERTISE ── */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.expertise-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 32px 28px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.expertise-card:hover {
  background: rgba(140,158,40,0.08);
  border-color: rgba(140,158,40,0.3);
  transform: translateY(-3px);
}

.expertise-card h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(140,158,40,0.4);
}

.expertise-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 1px;
  border-left: 1px dashed #CCCCCC;
}

.timeline-item {
  position: relative;
  padding-bottom: 56px;
  display: flex;
  gap: 32px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -38px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--off-white);
  flex-shrink: 0;
}

.timeline-body { flex: 1; }

.timeline-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
  gap: 16px;
}

.timeline-head h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.timeline-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.timeline-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-light);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: 4px;
}

.timeline-promo {
  font-size: 12px;
  color: var(--green);
  font-style: italic;
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 14px;
}

.tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tl-tags span {
  font-size: 10px;
  font-weight: 700;
  background: var(--green);
  color: white;
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── WRITING ── */
.writing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.writing-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 32px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.writing-card:hover {
  background: rgba(140,158,40,0.08);
  border-color: rgba(140,158,40,0.3);
  transform: translateY(-3px);
}

.writing-source {
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.writing-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.writing-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  flex: 1;
}

.writing-cta {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: letter-spacing 0.2s;
}

.writing-card:hover .writing-cta { letter-spacing: 0.2em; }

/* ── CONTACT ── */
.contact-container { text-align: center; }
.contact-container h2 { color: white; margin-bottom: 16px; }

.contact-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.contact-social {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-social a { transition: color 0.2s; }
.contact-social a:hover { color: white; }
.dot { color: rgba(255,255,255,0.3); }

/* ── FOOTER ── */
.footer {
  background: var(--charcoal-dark);
  padding: 40px 0;
  border-top: 1px dashed rgba(255,255,255,0.1);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo { height: 32px; width: auto; opacity: 0.6; }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ── PHILOSOPHY STRIP ── */
.philosophy-strip {
  background: var(--green);
  padding: 48px 0;
}

.philosophy-text {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: white;
  text-align: center;
  line-height: 1.5;
  max-width: 860px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

.philosophy-text em {
  font-style: italic;
  opacity: 0.85;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--off-white);
  border: 1px solid #E0E0E0;
  padding: 40px 36px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}

.service-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #CCCCCC;
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc-icon {
  color: var(--green);
  font-style: normal;
  font-size: 18px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
}

.services-cta { text-align: center; }

/* ── TEACHING ── */
.teaching-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.body-copy-light {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 16px;
}

.teaching-roles {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.teaching-role {
  padding: 28px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
}

.teaching-role:first-child { border-top: 1px dashed rgba(255,255,255,0.12); }

.teaching-role-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}

.teaching-role h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}

.teaching-school {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.teaching-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-light);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.teaching-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.expertise-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.expertise-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.expertise-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.expertise-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.expertise-grid .reveal:nth-child(6) { transition-delay: 0.40s; }
.writing-grid .reveal:nth-child(2)   { transition-delay: 0.1s; }
.writing-grid .reveal:nth-child(3)   { transition-delay: 0.2s; }
.writing-grid .reveal:nth-child(4)   { transition-delay: 0.3s; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .teaching-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .writing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .section { padding: 72px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--charcoal-dark);
    flex-direction: column;
    gap: 0;
    padding: 16px 0 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 32px;
    font-size: 14px;
  }

  .nav-cta {
    margin: 8px 32px 0 !important;
    text-align: center !important;
    border-radius: 2px !important;
    padding: 12px 20px !important;
  }

  .nav-toggle { display: flex; }

  .hero-headline { letter-spacing: -0.01em; }

  .stats-row { gap: 24px; flex-wrap: wrap; }

  .expertise-grid { grid-template-columns: 1fr; }

  .timeline { padding-left: 24px; }
  .timeline-dot { left: -30px; }

  .timeline-head {
    flex-direction: column;
    gap: 4px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; text-align: center; max-width: 280px; }
}


/* ════════════════════════════════════════
   BLOG — SHARED HEADER
════════════════════════════════════════ */
.blog-header {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal-dark);
  padding-top: var(--nav-h);
}

.blog-header-post { min-height: 500px; }

.blog-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px 48px;
  max-width: 860px;
}

.blog-header-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 16px 0 20px;
}

.blog-header-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.post-title {
  font-size: clamp(26px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 16px 0 20px;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.post-meta-dot { color: var(--green); }


/* ════════════════════════════════════════
   BLOG — ARCHIVE GRID
════════════════════════════════════════ */
.blog-archive-section { padding-top: 72px; }

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 56px;
}

.archive-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 32px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
}

.archive-card:hover {
  background: rgba(140,158,40,0.08);
  border-color: rgba(140,158,40,0.3);
  transform: translateY(-3px);
}

.archive-date {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

.archive-cat {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  background: var(--green);
  color: white;
  padding: 2px 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
  margin-bottom: 14px;
}

.archive-card h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.archive-excerpt {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 16px;
}

.blog-pagination a,
.blog-pagination span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  transition: all 0.2s;
}

.blog-pagination a:hover,
.blog-pagination .current {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.no-posts {
  text-align: center;
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  padding: 80px 0;
}


/* ════════════════════════════════════════
   BLOG — SINGLE POST
════════════════════════════════════════ */
.post-article {
  background: var(--off-white);
  min-height: 60vh;
  padding: 72px 0 100px;
}

.post-container {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 32px;
}

.back-to-blog {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 48px;
  transition: letter-spacing 0.2s;
}

.back-to-blog:hover { letter-spacing: 0.22em; }

/* Post body typography */
.post-body {
  font-size: 17px;
  line-height: 1.85;
  color: #3A3A3A;
}

.post-body h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #CCCCCC;
}

.post-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 36px 0 12px;
}

.post-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 28px 0 10px;
}

.post-body p { margin-bottom: 24px; }

.post-body a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-body a:hover { color: var(--green-dark); }

.post-body strong { font-weight: 700; color: var(--charcoal); }

.post-body em { font-style: italic; }

.post-body ul,
.post-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.post-body li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.post-body ul li::marker { color: var(--green); }

.post-body blockquote {
  border-left: 4px solid var(--green);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
  font-size: 19px;
  font-style: italic;
  color: var(--charcoal);
  font-weight: 500;
}

.post-body pre {
  background: var(--charcoal-dark);
  border-left: 4px solid var(--green);
  padding: 24px 28px;
  margin: 32px 0;
  overflow-x: auto;
  border-radius: 2px;
}

.post-body code {
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 14px;
  color: var(--green-light);
  line-height: 1.6;
}

.post-body p code,
.post-body li code {
  background: rgba(140,158,40,0.1);
  color: var(--green-dark);
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 14px;
}

.post-body img {
  max-width: 100%;
  height: auto;
  margin: 32px 0;
  border-radius: 2px;
}

.post-body hr {
  border: none;
  border-top: 1px dashed #CCCCCC;
  margin: 48px 0;
}

/* Post tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px dashed #CCCCCC;
}

.post-tag {
  font-size: 10px;
  font-weight: 700;
  background: var(--green);
  color: white;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s;
}

.post-tag:hover { background: var(--green-dark); }

/* Prev / Next nav */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
}

.post-nav-item {
  background: var(--charcoal-dark);
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-nav-next { text-align: right; }

.post-nav-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.post-nav-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  transition: color 0.2s;
}

.post-nav-title:hover { color: var(--green-light); }


/* ════════════════════════════════════════
   BLOG — RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 900px) {
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .archive-grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-next { text-align: left; }
  .post-body { font-size: 16px; }
}
