/* Story — b/w portrait + cobalt chip + headline + copy + scribble accent.
   Ported from design/kos-hp/project/styles.css lines 131-138. */

.story-wrap {
  padding: 80px 0;
  border-top: 1px solid var(--kos-concrete);
  position: relative;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.story-photo {
  position: relative;
  aspect-ratio: 1.25;
  overflow: hidden;
}
.story-photo .ph {
  position: absolute; inset: 0;
  background: url('../assets/radek-story.jpg') no-repeat;
  background-size: cover;
  background-position: center 22%;
  filter: grayscale(1) contrast(1.12);
}
.story-photo .cobalt-chip {
  position: absolute;
  left: -24px; top: -24px;
  width: 80px; height: 80px;
  background: var(--kos-cobalt);
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  color: var(--kos-bone);
  font-family: var(--font-display);
  font-size: 36px;
}
.story-photo .scribble {
  position: absolute;
  left: -20px; bottom: -28px;
  width: 260px;
  z-index: 3;
}

.story h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 0.94;
  letter-spacing: -0.015em;
  margin: 14px 0 18px;
}
.story p {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.6;
  color: var(--kos-coal);
  max-width: 460px;
  margin: 0 0 28px;
}
