/* ── Accessibility ── */
.skip-link{position:absolute;top:-100%;left:50%;transform:translateX(-50%);background:var(--steel);color:var(--pure-white);padding:0.5rem 1.5rem;font-size:0.75rem;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;z-index:99999;text-decoration:none;border-radius:0 0 4px 4px}
.skip-link:focus{top:0}
:focus-visible{outline:2px solid var(--steel);outline-offset:2px}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:0.01ms!important;animation-iteration-count:1!important;transition-duration:0.01ms!important;scroll-behavior:auto!important}}

/* ═══════════════════════════════════════════════════════
   DISCIPLINE IS DOCTRINE — CONTENT BOMB PLATFORM
   Palette: Steel #7B8A99 + Black #0C0C0C + White #FFFFFF
   Typography: Cormorant Garamond / Libre Franklin / JetBrains Mono
   Faceless. Movement brand. Content engine.
   ═══════════════════════════════════════════════════════ */

:root {
  --black: #0C0C0C;
  --black-warm: #111111;
  --charcoal: #1A1A1A;
  --stone: #252525;
  --steel: #7B8A99;
  --steel-bright: #FFFFFF;
  --steel-dim: rgba(123,138,153,0.6);
  --steel-glow: rgba(123,138,153,0.1);
  --silver: #C0C0C0;
  --silver-dim: #888888;
  --text: #D8D8D8;
  --text-dim: #999999;
  --text-faint: #787878;
  --white: #F0F0F0;
  --pure-white: #FFFFFF;
  --border: rgba(123,138,153,0.12);
  --border-hover: rgba(123,138,153,0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--steel-dim) var(--black); }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,138,153,0.08);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: relative;
}
.nav-brand {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--steel); }

/* ── Mobile Nav Toggle ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--steel);
  font-size: 1.5rem;
  cursor: pointer;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 6rem 2rem 4rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 35% at 50% 25%, rgba(123,138,153,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 80%, rgba(123,138,153,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}
.hero-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--steel);
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}
.hero-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--steel), transparent);
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}
.hero-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 550px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}
.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pure-white);
  background: var(--steel-dim);
  border: 1px solid var(--steel);
  text-decoration: none;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--steel);
  box-shadow: 0 0 30px rgba(123,138,153,0.3);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  background: transparent;
  border: 1px solid var(--border-hover);
  text-decoration: none;
  transition: all 0.3s;
}
.btn-ghost:hover {
  border-color: var(--steel);
  color: var(--steel);
  transform: translateY(-2px);
}

/* ── Scroll indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeUp 1s ease 1.5s forwards;
}
.scroll-indicator span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--steel), transparent);
  margin: 0 auto;
}
.scroll-indicator p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 0.5rem;
}

/* ── Section Headers ── */
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.8rem;
  text-align: center;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-dim);
  text-align: center;
  max-width: 500px;
  margin: 0 auto 3rem;
}

/* ── Featured Posts ── */
.featured {
  padding: 5rem 2rem;
  background: var(--charcoal);
}
.featured-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.post-card {
  background: var(--black);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  border-color: var(--steel-dim);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.post-card.featured-main {
  grid-column: 1 / -1;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(123,138,153,0.05), rgba(10,10,10,1));
}
.post-card-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1rem;
}
.post-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.post-card.featured-main .post-card-title { font-size: 2rem; }
.post-card-title a { color: inherit; text-decoration: none; transition: color 0.3s; }
.post-card-title a:hover { color: var(--steel-bright); }
.post-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.post-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.post-card-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  transition: color 0.3s;
}
.post-card-link:hover { color: var(--steel-bright); }

/* ── Latest Posts ── */
.latest {
  padding: 5rem 2rem;
  background: var(--black);
}
.latest-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.view-all {
  text-align: center;
  margin-top: 3rem;
}

/* ── Newsletter ── */
.newsletter {
  padding: 5rem 2rem;
  background: var(--charcoal);
  text-align: center;
  position: relative;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(123,138,153,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  position: relative;
}
.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.85rem;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--border);
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input::placeholder { color: var(--text-faint); }
.newsletter-input:focus { border-color: var(--steel); }
.newsletter-submit {
  padding: 1rem 2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pure-white);
  background: var(--steel-dim);
  border: 1px solid var(--steel);
  cursor: pointer;
  transition: all 0.3s;
}
.newsletter-submit:hover { background: var(--steel); }
.newsletter-trust {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-top: 1rem;
  position: relative;
}

/* ── Books ── */
.books {
  padding: 5rem 2rem;
  background: var(--black);
}
.books-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.book-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.book-card:hover {
  border-color: var(--steel-dim);
  transform: translateY(-3px);
}
.book-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1rem;
}
.book-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.book-card-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.book-card-desc {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.book-card-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.book-card-status.available { color: var(--steel-bright); border: 1px solid var(--steel); }
.book-card-status.soon { color: var(--silver-dim); border: 1px solid rgba(192,192,192,0.3); }
.book-card-cta {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.3s;
}
.book-card-cta:hover { border-color: var(--steel); color: var(--steel); }

.boss-section .top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--steel), transparent);
}

/* ── Social ── */
.social-bar { display: flex; gap: 1.2rem; justify-content: center; align-items: center; margin-top: 1.5rem; }
.social-bar a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(123,138,153,0.25); border-radius: 50%; color: var(--text-dim); text-decoration: none; font-size: 0.7rem; transition: all 0.3s; }
.social-bar a:hover { border-color: var(--steel); color: var(--steel); transform: translateY(-2px); }

/* ── Ecosystem Footer ── */
.eco-bar { background: #050505; border-top: 1px solid rgba(255,255,255,0.06); padding: 1rem 0; text-align: center; }

/* ── Footer ── */
footer { padding: 3rem 2rem; background: var(--black); border-top: 1px solid var(--border); text-align: center; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.6rem 0;
    background: rgba(12,12,12,0.98);
    border: 1px solid rgba(123,138,153,0.16);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    overflow: hidden;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a {
    display: block;
    padding: 0.9rem 1.1rem;
    border-bottom: 1px solid rgba(123,138,153,0.08);
  }
  .nav-links.open li:last-child a { border-bottom: none; }
  .nav-toggle { display: inline-flex; }
  .hero { padding: 5rem 1.5rem 3rem; }
  .featured, .latest, .newsletter, .books { padding: 3rem 1.5rem; }
  .featured-grid, .latest-grid, .books-grid { grid-template-columns: 1fr; }
  .post-card.featured-main { padding: 2rem; }
  .post-card.featured-main .post-card-title { font-size: 1.5rem; }
  .newsletter-form { flex-direction: column; }
  .hero-cta-group { flex-direction: column; align-items: center; }
}

/* ════════════════════════════════════════════════════════
   BLOG / ARTICLE PAGES
   ════════════════════════════════════════════════════════ */

/* ── Page Header (blog index) ── */
.page-header {
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 30%, rgba(123,138,153,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}
.page-header p {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

/* ── Category Filter ── */
.filter-bar {
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--steel);
  color: var(--steel);
  background: rgba(123,138,153,0.08);
}

/* ── Post Grid (blog index) ── */
.post-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.post-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: grayscale(40%) contrast(1.1);
  transition: filter 0.4s, transform 0.4s;
}
.post-card:hover .post-card-img {
  filter: grayscale(20%) contrast(1.05);
  transform: scale(1.02);
}
.post-card-img-wrap {
  overflow: hidden;
  margin: -2rem -2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.post-card-has-audio::after {
  content: '♪ NARRATED';
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.45rem;
  letter-spacing: 0.2em;
  color: var(--steel);
  border: 1px solid var(--border);
  padding: 0.2rem 0.5rem;
  margin-left: 0.75rem;
  vertical-align: middle;
}

/* ── Article Layout ── */
.article-header {
  padding: 8rem 2rem 3rem;
  max-width: 800px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.article-back {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 2rem;
  transition: color 0.3s;
}
.article-back:hover { color: var(--pure-white); }
.article-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.5rem;
}
.article-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1rem;
}
.article-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.article-header h1 em { font-style: italic; color: var(--steel); }
.article-excerpt {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 650px;
}
.article-hero-img {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto 0;
  display: block;
  border-radius: 4px;
  filter: grayscale(40%) contrast(1.1);
}
.article-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}
.article-body p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin: 3rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.article-body h3 {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 2rem 0 0.75rem;
}
.article-body blockquote {
  border-left: 2px solid var(--steel);
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
  background: var(--steel-glow);
  border-radius: 0 4px 4px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
}
.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.article-body li { margin-bottom: 0.5rem; line-height: 1.75; }
.article-body strong { color: var(--white); font-weight: 600; }
.article-body em { color: var(--steel); }
.article-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

/* ── Audio Player ── */
.audio-player {
  max-width: 700px;
  margin: 0 auto 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.audio-player-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.75rem;
}
.audio-player audio {
  width: 100%;
  height: 36px;
}

/* ── Article CTA ── */
.article-cta {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.article-cta .cta-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1rem;
}
.article-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.article-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── B.O.S.S. Section ── */
.boss-section {
  padding: 5rem 0;
  background: var(--black);
  position: relative;
  text-align: center;
}

/* ── Hero Split Layout ── */
.hero-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.15) brightness(0.7);
  display: block;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--black) 100%);
  pointer-events: none;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 3rem;
  position: relative;
  z-index: 2;
}
.hero-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 2rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--steel);
}
.hero-tagline {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 400px;
}
.btn-hero {
  font-size: 0.85rem;
  padding: 1.1rem 3rem;
  align-self: flex-start;
}
.nav-cta {
  color: var(--steel) !important;
  border: 1px solid var(--steel);
  padding: 0.4rem 1rem;
  font-weight: 500 !important;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--steel);
  color: var(--black) !important;
}

@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-image {
    height: 50vh;
  }
  .hero-image-overlay {
    background: linear-gradient(180deg, transparent 50%, var(--black) 100%);
  }
  .hero-copy {
    padding: 2.5rem 1.5rem 3rem;
    text-align: center;
    align-items: center;
  }
  .hero-tagline {
    max-width: 100%;
  }
  .btn-hero {
    align-self: center;
  }
}

/* ── Scroll Animations (IntersectionObserver) ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive: 900px ── */
@media (max-width: 900px) {
  .post-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .section-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
}

/* ── Responsive: 768px (article + blog) ── */
@media (max-width: 768px) {
  .article-header { padding: 7rem 1.5rem 2rem; }
  .article-body { padding: 2rem 1.5rem 3rem; }
  .post-grid { grid-template-columns: 1fr; }
  .filter-bar { gap: 0.5rem; }
  .nav-toggle { min-width: 44px; min-height: 44px; }
}

/* ── Responsive: 600px ── */
@media (max-width: 600px) {
  .post-card { padding: 1.5rem; }
  .post-card-img { height: 180px; }
  .post-card-img-wrap { margin: -1.5rem -1.5rem 1.2rem; }
  .post-card-title { font-size: 1.2rem; }
  .post-card-excerpt { font-size: 0.85rem; }
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 0.85rem; }
  .boss-section { padding: 3rem 0; }
  .filter-bar { padding: 0 1rem; }
  .filter-btn { font-size: 0.5rem; padding: 0.5rem 0.8rem; min-height: 44px; }
}

/* ── Responsive: 480px ── */
@media (max-width: 480px) {
  .post-card-title { font-size: 1.1rem; }
  .post-card-excerpt { font-size: 0.82rem; line-height: 1.6; }
  .post-card-meta { font-size: 0.55rem; }
  .post-card-img { height: 160px; }
  .article-header h1 { font-size: 1.6rem; }
  .article-body { font-size: 0.95rem; }
  .page-header h1 { font-size: 1.8rem; }
}

/* ── Touch Target Fixes ── */
.social-bar a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.nav-toggle { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
