.history-page {
  background: var(--bone);
}

.page-banner {
  padding-top: 7rem;
}

.history-section {
  padding: 5rem 0 6rem;
}

.history-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.history-copy {
  max-width: 65ch;
}

.history-block {
  position: relative;
  margin-bottom: 1.25rem;
  padding: 1.75rem 2rem 1.1rem;
  border: 1px solid rgba(43, 36, 32, 0.08);
  border-left: 3px solid var(--ochre);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 22px rgba(43, 36, 32, 0.04);
}

.history-label {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--rust);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.history-copy p {
  margin: 0;
  color: rgba(43, 36, 32, 0.88);
  line-height: 1.85;
}

.history-copy a {
  color: var(--rust);
  text-decoration: none;
  border-bottom: 1px solid rgba(156, 59, 43, 0.35);
}

.history-copy a:hover {
  border-color: currentColor;
}

.history-gallery {
  display: grid;
  gap: 1.25rem;
  position: sticky;
  top: 6rem;
}

.history-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(43, 36, 32, 0.12);
}

@media (max-width: 800px) {
  .page-banner { padding-top: 8.5rem; }
  .history-section { padding: 3.5rem 0 4.5rem; }
  .history-layout { grid-template-columns: 1fr; }
  .history-gallery { position: static; order: -1; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .history-block { padding: 1.35rem 1.2rem 1rem; }
}
