:root {
  --forest: #77432b;
  --forest-dark: #4d2b1c;
  --gold: #a86f35;
  --paper: #f2eadf;
  --surface-soft: #eadbc8;
}

.toj-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.78fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  padding: clamp(52px, 9vw, 100px) 0;
}

.toj-hero h1 { max-width: 680px; }
.toj-hero figure { margin: 0; }
.toj-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.toj-hero figcaption { margin-top: 9px; color: var(--muted); font-size: 0.75rem; }

.overview-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: clamp(52px, 8vw, 90px);
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow);
}

.overview-strip article { padding: 24px; background: var(--surface); }
.overview-strip h2 { margin: 0 0 9px; font-size: 1.25rem; }
.overview-strip p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.source-context {
  max-width: 820px;
  margin-bottom: 32px;
}

.source-context h2 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3.2rem); }
.source-context p { color: var(--muted); }

@media (max-width: 800px) {
  .toj-hero { grid-template-columns: 1fr; }
  .overview-strip { grid-template-columns: 1fr; }
}
