.process {
  --ivory: #f5f0e5;
  --paper: #eee7da;
  --ink: #352e28;
  --muted: #756b60;
  --gold: #ae8a43;
  --line: rgba(53, 46, 40, .15);
  --frame-size: min(55vw, 760px);
}

* { box-sizing: border-box; }

.process {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 42%, rgba(190, 159, 97, .08), transparent 34%),
    var(--ivory);
  font-family: Avenir, "Avenir Next", Arial, sans-serif;
}

.process {
  height: 315vh;
  min-height: 2100px;
  padding: 0;
}

.process__sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(480px, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(56px, 7vw, 132px);
  padding: clamp(56px, 7vw, 112px) clamp(48px, 8vw, 150px);
  overflow: hidden;
}

.process__copy {
  align-self: center;
  max-width: 510px;
  position: relative;
  z-index: 4;
  text-align: left;
}

.process .eyebrow {
  margin: 0 0 2rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
}

.process h2 {
  margin: 0;
  max-width: none;
  font-family: var(--serif);
  font-size: clamp(3.15rem, 4.3vw, 5.15rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.01;
}

.process h2 span { display: block; white-space: nowrap; }

.process .intro {
  display: block;
  gap: 0;
  padding: 0;
  max-width: none;
  margin: 2.7rem 0 0;
  text-align: left;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  font-weight: 400;
  line-height: 1.72;
}

.process .intro span { display: block; white-space: nowrap; }

.process__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.frame {
  width: min(100%, var(--frame-size));
  aspect-ratio: 1.12 / 1;
  margin: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(53, 46, 40, .11);
}

.stage {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  will-change: opacity, clip-path, filter, transform;
}

.stage img {
  display: block;
  width: 100%;
  height: 100%;
  user-select: none;
  pointer-events: none;
  will-change: transform, filter;
  object-fit: cover;
  object-position: center;
}

.stage--observation,
.stage--pendant,
.stage--colour { background: #eee7da; }

.frame__grain {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.stage-caption {
  position: relative;
  width: min(100%, var(--frame-size));
  height: 1.2rem;
  margin-top: 1rem;
  color: rgba(53, 46, 40, .58);
  font-size: .64rem;
  font-weight: 650;
  letter-spacing: .17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.stage-caption__item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  opacity: 0;
  will-change: opacity;
}

.stage-caption__number {
  flex: 0 0 auto;
  color: var(--gold);
}

.stage-caption__description {
  text-align: right;
}

.process-replay {
  display: none;
}

@media (max-width: 1100px) {
  :root { --frame-size: min(54vw, 650px); }
  .process__sticky {
    grid-template-columns: minmax(390px, .9fr) minmax(440px, 1.1fr);
    gap: 48px;
    padding-inline: 52px;
  }
  .process h2 { font-size: clamp(3.15rem, 5.8vw, 4.6rem); }
}

@media (max-width: 820px) {
  .process {
    height: auto;
    min-height: 0;
    padding: 88px 1.35rem 96px;
  }
  .process__sticky {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 44px;
    padding: 0;
    overflow: visible;
  }
  .process__copy {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    transform: none;
  }
  .process .eyebrow { margin-bottom: 22px; font-size: 11px; }
  .process h2 { max-width: 100%; font-size: clamp(2.7rem, 13vw, 4.25rem); line-height: .98; }
  .process h2 span { white-space: nowrap; }
  .process .intro span { white-space: nowrap; }
  .process .intro { margin-top: 2rem; font-size: 1.02rem; max-width: 330px; }
  .frame {
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
    box-shadow: 0 18px 44px rgba(53, 46, 40, .09);
  }
  .stage-caption {
    width: 100%;
    max-width: 620px;
    height: 1rem;
    margin-top: .72rem;
    font-size: .55rem;
    letter-spacing: .12em;
  }
  .stage-caption__item { gap: .85rem; }
  .stage-caption__description {
    max-width: 74%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .process-replay {
    display: block;
    align-self: flex-end;
    min-height: 1.45rem;
    margin: .42rem 0 0;
    padding: 0 0 .2rem;
    border: 0;
    border-bottom: 1px solid rgba(174, 138, 67, .55);
    color: rgba(53, 46, 40, .72);
    background: transparent;
    font: inherit;
    font-size: .5rem;
    font-weight: 650;
    letter-spacing: .13em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(3px);
    transition: opacity .4s ease, transform .4s ease, visibility 0s linear .4s;
  }
  .process-replay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .process-replay:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stage { display: none; }
  .stage--final { display: block; opacity: 1 !important; clip-path: none !important; }
}

/* Preserve the supplied section's copy composition inside the wider site. */
@media (min-width: 821px) {
  .process .process__copy {
    align-self: center;
    width: 510px;
    max-width: 510px;
    text-align: left;
  }

  .process .eyebrow {
    margin: 0 0 2rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
  }

  .process h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(3.15rem, 4.3vw, 5.15rem);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1.01;
  }

  .process h2 span,
  .process .intro span {
    display: block;
    white-space: nowrap;
  }

  .process .intro {
    display: block;
    gap: 0;
    padding: 0;
    max-width: none;
    margin: 2.7rem 0 0;
    text-align: left;
    font-size: clamp(1.02rem, 1.25vw, 1.18rem);
    font-weight: 400;
    line-height: 1.72;
  }
}
