/* Compact sticky composition with room for a gradual scroll reveal. */
.brand-statement {
  height: 100vh;
  height: 100svh;
  background: #fff;
  position: relative;
}
.brand-statement__stage {
  position: sticky;
  top: var(--nav-height-scrolled);
  height: 72vh;
  height: 72svh;
  min-height: 420px;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
}
.brand-statement__light {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 72% 58%, rgba(179,18,26,.025), transparent 55%);
}
.brand-statement__stage::after {
  content: '';
  position: absolute;
  inset: 0;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Cpath fill='%23fff' filter='url(%23n)' d='M0 0h180v180H0z'/%3E%3C/svg%3E");
}
.brand-statement__origin, .brand-statement__signature {
  position: absolute;
  margin: 0;
  font-size: .6rem;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: .18em;
  color: #625c61;
}
.brand-statement__origin { top: 28px; left: var(--edge-padding); }
.brand-statement__signature { bottom: 48px; right: var(--edge-padding); text-align: right; }
.brand-statement__reveal {
  position: relative;
  width: 100%;
  mix-blend-mode: multiply;
}
.brand-statement__mark {
  position: relative;
  width: 86%;
  margin-inline: auto;
  aspect-ratio: 3.5 / 1;
  overflow: hidden;
  transform: translate3d(var(--brand-x, 0vw), var(--brand-y, 0px), 0) scale(var(--brand-scale, 1));
  transform-origin: center;
  will-change: transform;
  /* Preserve the supplied logo's original black and red colours. */
}
.brand-statement__mark img {
  position: absolute;
  width: 100%;
  max-width: none;
  height: auto;
  left: 0;
  top: 50%;
  transform: translateY(-43%);
}
@media (max-width: 760px) {
  .brand-statement { height: 80svh; }
  .brand-statement__stage { height: 54svh; min-height: 300px; }
  .brand-statement__mark { width: 94%; }
  .brand-statement__origin { font-size: .52rem; }
  .brand-statement__signature { bottom: 32px; font-size: .52rem; }
}
@media (prefers-reduced-motion: reduce) {
  .brand-statement { height: auto; }
  .brand-statement__stage { position: relative; }
  .brand-statement__reveal { clip-path: none; }
  .brand-statement__mark { transform: none; will-change: auto; }
}
