.prose-body { padding: clamp(56px, 9vh, 110px) 0 clamp(90px, 14vh, 160px); }

.prose {
  max-width: 68ch;
  margin: 0 0 clamp(56px, 9vh, 100px);
}

.prose > .eyebrow { display: block; margin-bottom: 12px; }

.prose h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.prose p {
  color: var(--fg-dim);
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  margin: 0 0 18px;
}

/* ---- split feature ---- */
.split-feature {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(32px, 5vw, 74px);
  align-items: center;
  margin-bottom: clamp(64px, 11vh, 130px);
}

.split-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-raised);
  border: 1px solid var(--hairline);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}

.split-media:hover img { transform: scale(1.05); }

.pull-quote {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.4vw, 2.7rem);
  line-height: 1.2;
  color: var(--fg);
}

.pull-quote::before {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 26px;
}

@media (max-width: 800px) {
  .split-feature { grid-template-columns: 1fr; }
}

/* ---- numbered steps ---- */
.step-list,
.timeline {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  counter-reset: step;
}

.step-list li,
.timeline li {
  counter-increment: step;
  position: relative;
  padding: 20px 0 20px 62px;
  border-top: 1px solid var(--hairline);
}

.step-list li::before,
.timeline li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 22px;
  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.step-list b,
.timeline b {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.step-list span,
.timeline span { color: var(--fg-dim); font-size: 0.95rem; }

/* ---- tags ---- */
.tag-cloud {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
}

.tag-cloud li {
  background: var(--bg-raised);
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.tag-cloud li:hover { color: var(--gold); border-color: var(--gold-edge); }

/* ---- figures ---- */
.figure-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 26px;
  margin-top: 24px;
}

.figure-row b {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--gold);
}

.figure-row small {
  display: block;
  margin-top: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

/* ---- contact cards ---- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 14px;
  margin-top: 22px;
}

.contact-card {
  display: block;
  text-decoration: none;
  background: var(--bg-raised);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out);
}

.contact-card:hover { border-color: var(--gold-edge); transform: translateY(-4px); box-shadow: var(--shadow-md); }

.contact-card small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-card b {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.15rem;
  word-break: break-word;
}

.prose-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ================= SMALL SCREENS ================= */
@media (max-width: 700px) {
  .prose-body { padding: 34px 0 64px; }
  .prose { margin-bottom: 46px; }
  .prose h2 { font-size: clamp(1.7rem, 9vw, 2.3rem); margin-bottom: 14px; }
  .prose p { font-size: 0.95rem; }

  .split-feature { gap: 24px; margin-bottom: 48px; }
  .pull-quote { font-size: clamp(1.3rem, 7vw, 1.9rem); }
  .pull-quote::before { margin-bottom: 16px; width: 40px; }

  .step-list li, .timeline li { padding: 16px 0 16px 46px; }
  .step-list li::before, .timeline li::before { top: 18px; font-size: 0.8rem; }
  .step-list b, .timeline b { font-size: 1.1rem; }
  .step-list span, .timeline span { font-size: 0.9rem; }

  .tag-cloud { gap: 8px; }
  .tag-cloud li { padding: 9px 15px; font-size: 0.62rem; letter-spacing: 0.14em; }

  .figure-row { gap: 18px; }

  .contact-card { padding: 18px; }
  .contact-card b { font-size: 1.02rem; }

  .prose-cta { flex-direction: column; align-items: stretch; }
  .prose-cta .link-btn { justify-content: center; }
}
