.story-page .site-header {
  position: sticky;
  color: var(--graphite);
  background: rgba(250, 249, 246, 0.97);
  box-shadow: 0 1px 0 rgba(56, 53, 48, 0.14);
  backdrop-filter: blur(14px);
}

.story-page .site-header::before { display: none; }
.story-page .site-header .icon-label-control img { filter: none; }
.story-page h1,
.story-page h2 { text-wrap: balance; }
.story-page #main { scroll-margin-top: 5rem; }

.story-opening {
  position: relative;
  display: grid;
  min-height: clamp(42rem, calc(100svh - 5rem), 50rem);
  grid-template-columns: minmax(17rem, 38%) minmax(0, 62%);
  overflow: hidden;
}

.story-opening-content {
  z-index: 2;
  display: flex;
  max-width: 43rem;
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: center;
  flex-direction: column;
  gap: 1.75rem;
  padding-left: var(--gutter);
  pointer-events: none;
}

.story-opening-copy {
  margin-top: 0;
}

.story-kicker {
  margin: 0 0 1.4rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.story-opening h1 {
  max-width: 43rem;
  font-size: clamp(4.2rem, 5.3vw, 4.9rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.story-portrait {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: 100%;
  background: var(--pearl);
}

.story-portrait::before {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 21%;
  background: linear-gradient(90deg, var(--pearl), rgba(250, 249, 246, 0));
  content: "";
  pointer-events: none;
}

.story-portrait::after {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 18%;
  background: linear-gradient(0deg, var(--pearl), rgba(250, 249, 246, 0));
  content: "";
  pointer-events: none;
}

.story-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

.story-introduction {
  max-width: 31rem;
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.65;
}

.story-philosophy {
  display: grid;
  max-width: 94rem;
  grid-template-columns: minmax(9rem, 18%) minmax(24rem, 40%) minmax(18rem, 30%);
  align-items: start;
  justify-content: space-between;
  gap: 3%;
  margin: 0 auto;
  padding: clamp(4.5rem, 5.8vw, 5.25rem) var(--gutter);
}

.story-philosophy .story-kicker { margin-top: 0.5rem; }
.story-philosophy h2,
.story-form h2,
.story-closing h2 {
  margin: 0;
  font-size: clamp(3.1rem, 4.65vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.story-philosophy h2 { font-size: clamp(3rem, 3.75vw, 3.4rem); }

.story-philosophy > p:last-child {
  max-width: 29rem;
  margin: 0.4rem 0 0;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.65;
}

.story-form {
  display: grid;
  max-width: 94rem;
  grid-template-columns: minmax(0, 1.45fr) minmax(19rem, 0.8fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 2rem) var(--gutter) clamp(4.5rem, 6vw, 6rem);
}

.story-detail {
  position: relative;
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  background: var(--pearl);
}

.story-detail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 54% 54% at 48% 52%, #000 54%, transparent 100%);
  mask-image: radial-gradient(ellipse 54% 54% at 48% 52%, #000 54%, transparent 100%);
  transform: scale(1.22);
}

.story-form-copy { max-width: 31rem; }
.story-form-copy p {
  max-width: 28rem;
  margin: 1.8rem 0 0;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.65;
}

.story-closing {
  display: flex;
  min-height: clamp(16rem, 22vw, 22rem);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.55rem;
  padding: 3.5rem var(--gutter) 5rem;
  text-align: center;
}

.story-closing h2 { max-width: 58rem; font-size: clamp(3rem, 4.3vw, 4.7rem); }
.story-collection-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}
.story-collection-link img { width: 1rem; height: 1rem; transition: transform 180ms ease; }
.story-collection-link:hover img,
.story-collection-link:focus-visible img { transform: translate(0.18rem, -0.18rem); }

.motion-ready .story-reveal {
  opacity: 0;
  transition-delay: var(--story-delay, 0ms);
  transition-timing-function: cubic-bezier(0.22, 0.66, 0.34, 1);
}
.motion-ready .story-reveal-text { transform: translateY(0.75rem); transition-duration: 600ms; transition-property: opacity, transform; }
.motion-ready .story-reveal-image { transition-duration: 800ms; transition-property: opacity; }
.motion-ready .story-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .story-page #main { scroll-margin-top: 4.25rem; }
  .story-opening {
    display: flex;
    min-height: 0;
    flex-direction: column;
    overflow: visible;
  }
  .story-opening-content { display: contents; }
  .story-opening-copy {
    order: 1;
    margin: 0;
    padding: clamp(2.5rem, 9vw, 4.5rem) var(--gutter) 2rem;
  }
  .story-opening h1 { max-width: 42rem; font-size: clamp(3.7rem, 11.8vw, 6rem); }
  .story-portrait {
    width: 100%;
    min-height: 0;
    order: 2;
    aspect-ratio: 1 / 1.02;
  }
  .story-portrait::before { display: none; }
  .story-portrait::after { height: 15%; }
  .story-portrait img { object-position: 78% top; }
  .story-introduction {
    max-width: 42rem;
    order: 3;
    padding: 2rem var(--gutter) clamp(5rem, 11vw, 7rem);
    font-size: 1.05rem;
  }
  .story-philosophy {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 1fr);
    gap: 1.5rem 3rem;
    padding-top: 0;
  }
  .story-philosophy .story-kicker { grid-column: 1 / -1; margin: 0; }
  .story-philosophy h2 { font-size: clamp(3.1rem, 8.5vw, 4.6rem); }
  .story-philosophy > p:last-child { margin-top: 0; }
  .story-form { gap: 2.5rem; }
}

@media (max-width: 640px) {
  .story-opening-copy { padding-top: 2.1rem; padding-bottom: 1.6rem; }
  .story-kicker { margin-bottom: 0.95rem; font-size: 0.66rem; letter-spacing: 0.24em; }
  .story-opening h1 { font-size: clamp(2.5rem, 10.5vw, 2.65rem); line-height: 0.94; }
  .story-portrait { aspect-ratio: 0.92 / 1; }
  .story-portrait img { object-position: 74% top; }
  .story-introduction { padding-top: 1.6rem; padding-bottom: 5.25rem; font-size: 1rem; line-height: 1.6; }
  .story-philosophy {
    display: block;
    padding: 0 var(--gutter) 3rem;
  }
  .story-philosophy .story-kicker { margin-bottom: 0.8rem; }
  .story-philosophy h2 { font-size: clamp(2.25rem, 9.5vw, 2.375rem); }
  .story-philosophy > p:last-child { margin-top: 1.25rem; font-size: 0.96rem; line-height: 1.6; }
  .story-form { display: flex; flex-direction: column; gap: 1.25rem; padding: 0 var(--gutter) 4.5rem; }
  .story-detail { width: calc(100% + 1.5rem); order: 1; aspect-ratio: 1 / 0.9; margin-right: -0.75rem; margin-left: -0.75rem; }
  .story-detail img { transform: scale(1.12); }
  .story-form-copy { order: 2; text-align: center; }
  .story-form h2 { font-size: clamp(2.25rem, 9.5vw, 2.375rem); }
  .story-form-copy p { margin-top: 1.25rem; font-size: 0.96rem; line-height: 1.6; text-align: left; }
  .story-closing { min-height: 0; gap: 1.25rem; padding: 1rem var(--gutter) 4.75rem; }
  .story-closing h2 { max-width: 20rem; font-size: clamp(2.125rem, 9vw, 2.25rem); }
  .story-collection-link { font-size: 0.72rem; letter-spacing: 0.12em; }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .story-reveal { opacity: 1; transform: none; }
}
