/* ── JOURNEY PROGRESS BAR ── */
.journey-bar {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}
.journey-bar-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 0;
}
.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  gap: 5px;
  text-decoration: none;
}
.journey-step::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  right: -50%;
  height: 1px;
  background: var(--rule);
}
.journey-step:last-child::before { display: none; }
.journey-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--ink3);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 500;
  color: var(--ink3);
  transition: all 0.2s;
  position: relative;
  z-index: 1;
}
.journey-step.done .journey-dot {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}
.journey-step.active .journey-dot {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
  width: 24px;
  height: 24px;
  font-size: 10px;
  box-shadow: 0 0 0 4px var(--accent-light);
}
.journey-step.active::before {
  background: var(--accent);
}
.journey-step.done::before {
  background: var(--accent);
}
.journey-label {
  font-size: 9px;
  color: var(--ink3);
  letter-spacing: 0.06em;
  text-align: center;
  max-width: 60px;
  line-height: 1.3;
}
.journey-step.active .journey-label { color: var(--accent); font-weight: 500; }
.journey-step.done .journey-label { color: var(--ink3); }

/* ── HERO SECTION ── */
.post-hero-area {
  padding: 48px 0 0;
}
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink3);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.post-back:hover { color: var(--accent); }
.post-header-row {
  display: block;
  margin-bottom: 40px;
}
.session-badge {
  display: none;
}
.session-badge-num {
  font-family: var(--serif);
  font-variant-numeric: lining-nums;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  margin-top: 2px; /* optical balance */
}
.session-badge-label {
  font-size: 7px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 14px;
}
.post-category {
  color: var(--accent);
  font-weight: 500;
}
.post-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--ink);
}
.post-desc {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.75;
  max-width: 580px;
}

/* ── STAT PILLS ── */
.stat-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0 0;
}
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(26,24,21,0.15);
  padding: 6px 16px;
  border-radius: 100px;
  transition: border-color 0.2s, background 0.2s;
}
.stat-pill:hover {
  border-color: rgba(26,24,21,0.25);
  background: rgba(26,24,21,0.02);
}
.stat-pill-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink3);
}
.stat-pill-value {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}

/* ── HERO IMAGE ── */
.hero-image {
  width: 100%;
  margin: 40px 0 0;
  overflow: hidden;
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.hero-image figcaption {
  font-size: 12px;
  color: var(--ink3);
  padding: 12px 0;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--rule);
}

/* ── POST BODY ── */
.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 0 80px;
}
.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.section-block {
  margin-bottom: 48px;
}
.post-body p {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.9;
  margin-bottom: 0;
}

/* ── CARD GRID (topics/activities) ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 4px;
}
.card-item {
  background: var(--bg2);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.card-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}
.card-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink2);
  margin: 0;
}

/* ── PHOTO LAYOUT ── */
.photo-single {
  width: 100%;
  margin: 8px 0;
}
.photo-single img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}
.photo-single figcaption {
  font-size: 12px;
  color: var(--ink3);
  padding: 10px 0;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--rule);
}
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: 8px 0;
}
.photo-grid figure { margin: 0; }
.photo-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.photo-grid figcaption {
  font-size: 11px;
  color: var(--ink3);
  padding: 8px 0;
  letter-spacing: 0.04em;
}

/* ── HIGHLIGHTS ── */
.highlights-block {
  background: var(--ink);
  color: var(--bg);
  padding: 36px 40px;
  margin: 8px 0;
}
.highlights-block .section-label { color: var(--bg2); }
.highlights-block .section-label::after { background: rgba(255,255,255,0.15); }
.highlight-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 4px;
}
.highlight-list li {
  background: rgba(255,255,255,0.06);
  padding: 16px 18px;
  font-size: 14px;
  color: rgba(248,246,241,0.85);
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.highlight-list li::before {
  content: '✓';
  color: var(--accent);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── POST NAVIGATION ── */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--rule);
  padding-top: 40px;
}
.post-nav-item {
  background: var(--bg2);
  padding: 24px 28px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.post-nav-item:hover { background: #ebe8e1; }
.post-nav-item.next { text-align: right; }
.post-nav-dir {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 8px;
}
.post-nav-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}
.post-nav-item:hover .post-nav-title { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .journey-bar { top: 60px; }
  .journey-bar-inner { padding: 0 12px; }
  .journey-label { display: none; }
  .journey-dot { width: 16px; height: 16px; font-size: 8px; }
  .journey-step.active .journey-dot { width: 20px; height: 20px; }
  
  .post-header-row { display: block; margin-bottom: 24px; }
  .session-badge { display: none; }
  
  .stat-row { gap: 8px; margin-top: 24px; }
  .stat-pill { padding: 6px 14px; gap: 6px; }
  
  .hero-image { margin-top: 24px; }
  .hero-image img { height: 260px; }
  .card-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid img { height: 220px; }
  .highlight-list { grid-template-columns: 1fr; }
  .highlights-block { padding: 24px 20px; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-item.next { text-align: left; }
  .post-body { padding: 40px 0 60px; }
}

/* ── MINIMAL POST NAVIGATION ── */
.post-nav-minimal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
  border-top: 1px solid var(--rule);
  padding-top: 40px;
}
.post-nav-minimal a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  flex: 1;
  transition: opacity 0.2s;
}
.post-nav-minimal a:hover { opacity: 0.6; }
.nav-next { align-items: flex-end; text-align: right; }
.nav-prev { align-items: flex-start; text-align: left; }
.nav-dir {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-top: 8px;
}
.nav-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}
@media (max-width: 768px) {
  .post-nav-minimal { flex-direction: column; gap: 32px; }
  .nav-next { align-items: flex-start; text-align: left; }
}

/* ── NAV BUTTONS ── */
.nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  gap: 16px;
}
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--rule);
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.nav-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.nav-btn:hover {
  border-color: var(--ink);
  color: var(--bg);
}
.nav-btn:hover::before {
  transform: scaleY(1);
}
@media (max-width: 600px) {
  .nav-buttons {
    flex-direction: column;
  }
  .nav-btn {
    width: 100%;
  }
}
