.story-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 560px;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
}

.story-hero-copy {
  padding: 72px 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-hero-copy h1 {
  margin: 1rem 0 1.4rem;
}

.story-hero-copy h1 em {
  color: var(--teal-dark);
  font-style: italic;
}

.story-hero-copy p {
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.85;
}

.story-hero-image {
  overflow: hidden;
  min-height: 440px;
}

.story-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-promise {
  background: var(--teal-dark);
  padding: 72px 5vw;
  text-align: center;
}

.story-promise blockquote {
  max-width: 850px;
  margin: 0 auto;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.35;
}

.story-content {
  background: var(--cream);
}

.story-content-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
  gap: 7vw;
}

.story-intro {
  position: sticky;
  top: 150px;
  align-self: start;
}

.story-copy {
  display: grid;
  gap: 2rem;
}

.story-copy-block {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.story-copy-block:last-child {
  border-bottom: 0;
}

.story-copy-block h3 {
  margin-bottom: 0.7rem;
}

.story-copy-block p {
  line-height: 1.85;
}

@media (max-width: 900px) {
  .story-hero,
  .story-content-inner {
    grid-template-columns: 1fr;
  }

  .story-hero-image {
    min-height: 340px;
    order: -1;
  }

  .story-intro {
    position: static;
  }
}
