:root {
  --color-ink: #15110d;
  --color-paper: #f7f2ea;
  --color-muted: #6f665c;
  --color-accent: #c8102e;
  --color-border: rgba(21, 17, 13, 0.14);
  --color-charcoal: #0d0c0a;
  --color-carbon: #171411;
  --color-cream: #f2eee7;
  --color-steel: #8d8981;
  --color-red: #c8102e;

  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;

  --container-width: 1200px;
  --section-padding: clamp(72px, 10vw, 160px);
  --space-gutter: clamp(20px, 4vw, 48px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: #050505;
  color: var(--color-ink);
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: visible;
}

.site-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 60;
  overflow: hidden;
  pointer-events: none;
}

.site-atmosphere__glow,
.site-atmosphere__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-atmosphere__glow {
  opacity: 0.34;
  background:
    radial-gradient(ellipse at 72% 32%, rgba(112, 18, 34, 0.34), transparent 42%),
    radial-gradient(ellipse at 26% 78%, rgba(82, 12, 24, 0.16), transparent 38%);
  mix-blend-mode: screen;
  transform: translate3d(-2%, 1%, 0) scale(1.02);
  animation: ambient-glow-drift 22s ease-in-out infinite alternate;
  will-change: transform;
}

.site-atmosphere__grain {
  opacity: 0.052;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.9) 0 0.6px, transparent 0.9px),
    radial-gradient(circle at 78% 32%, rgba(255, 255, 255, 0.72) 0 0.7px, transparent 1px),
    radial-gradient(circle at 44% 76%, rgba(0, 0, 0, 0.72) 0 0.8px, transparent 1.2px);
  background-size: 31px 31px, 43px 43px, 37px 37px;
  mix-blend-mode: overlay;
  animation: grain-drift 1.8s steps(4, end) infinite;
}

@keyframes ambient-glow-drift {
  0% {
    transform: translate3d(-2%, 1%, 0) scale(1.02);
  }

  50% {
    transform: translate3d(1.5%, -1%, 0) scale(1.06);
  }

  100% {
    transform: translate3d(3%, 1.5%, 0) scale(1.03);
  }
}

@keyframes grain-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  25% {
    transform: translate3d(-1.5%, 1%, 0);
  }

  50% {
    transform: translate3d(1%, -1.5%, 0);
  }

  75% {
    transform: translate3d(-0.5%, -0.5%, 0);
  }

  100% {
    transform: translate3d(1.5%, 0.5%, 0);
  }
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
}

.section {
  min-height: 100vh;
  padding: var(--section-padding) var(--space-gutter);
}

.section:not(.section--hero) {
  scroll-margin-top: 72px;
}

.section--hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  align-items: center;
  padding: clamp(28px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.98) 0%, rgba(9, 8, 7, 0.86) 42%, rgba(9, 8, 7, 0.52) 100%),
    radial-gradient(ellipse at 72% 42%, rgba(95, 13, 28, 0.38), rgba(65, 12, 20, 0.18) 34%, transparent 68%),
    radial-gradient(ellipse at 58% 72%, rgba(255, 255, 255, 0.06), transparent 46%),
    linear-gradient(135deg, #080807, var(--color-carbon));
  color: var(--color-cream);
}

.section--hero::before,
.section--hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
}

.section--hero::before {
  opacity: 0.096;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.section--hero::after {
  z-index: 0;
  background:
    radial-gradient(ellipse at 68% 48%, transparent 0 34%, rgba(0, 0, 0, 0.22) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 30%, rgba(0, 0, 0, 0.64));
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, var(--container-width));
  height: 100%;
  margin: 0 auto;
  align-content: space-between;
  padding: clamp(8px, 2vw, 24px) 0;
}

.hero__brand {
  display: block;
  width: clamp(118px, 10vw, 152px);
}

.hero__brand img {
  width: 100%;
}

.hero__copy {
  width: min(670px, 62vw);
  padding-bottom: clamp(8px, 3vh, 28px);
}

.hero__eyebrow {
  margin-bottom: clamp(16px, 2vw, 24px);
  color: var(--color-steel);
  font-size: clamp(0.72rem, 0.7vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__title {
  max-width: 8.5ch;
  color: var(--color-cream);
  font-size: clamp(3.1rem, 5.85vw, 6.4rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__line {
  display: block;
  overflow: hidden;
}

.hero__line > span {
  display: block;
}

.hero__text {
  width: min(510px, 100%);
  margin-top: clamp(20px, 2.3vw, 32px);
  color: rgba(242, 238, 231, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  font-weight: 400;
  line-height: 1.65;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(28px, 3vw, 44px);
  color: var(--color-cream);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.hero__cta::after {
  width: clamp(48px, 5vw, 74px);
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 220ms ease, opacity 220ms ease;
}

.hero__cta:hover::after {
  opacity: 0.72;
  transform: translateX(8px);
}

.hero__visual {
  position: absolute;
  right: clamp(96px, 12vw, 160px);
  bottom: clamp(18px, 5vh, 54px);
  z-index: 1;
  width: clamp(575px, 55vw, 790px);
  filter:
    drop-shadow(0 48px 62px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 54px rgba(92, 12, 28, 0.2));
}

.hero__visual::before {
  position: absolute;
  right: 12%;
  bottom: -5%;
  z-index: -1;
  width: 58%;
  height: 14%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.54);
  filter: blur(22px);
  content: "";
}

.hero__visual::after {
  position: absolute;
  inset: -24% -22% -14% 18%;
  z-index: -2;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 52% 45%, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(ellipse at 50% 48%, rgba(100, 18, 34, 0.22), rgba(68, 13, 24, 0.12) 42%, transparent 72%);
  filter: blur(42px);
  content: "";
}

.hero__product-motion,
.hero__visual img {
  width: 100%;
}

.hero__product-motion {
  transform-origin: center center;
  will-change: transform;
}

.hero__visual img {
  display: block;
  height: auto;
  opacity: 0.98;
  object-fit: contain;
  will-change: transform;
}

.hero__smoke {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  background:
    radial-gradient(ellipse, rgba(255, 255, 255, 0.14), transparent 62%),
    radial-gradient(ellipse, rgba(95, 13, 28, 0.13), transparent 72%);
  filter: blur(46px);
  opacity: 0;
  pointer-events: none;
}

.hero__smoke--one {
  right: 22%;
  bottom: 21%;
  width: clamp(280px, 38vw, 680px);
  height: clamp(380px, 48vw, 820px);
  transform: rotate(18deg);
}

.hero__smoke--two {
  right: 8%;
  bottom: 10%;
  width: clamp(240px, 32vw, 560px);
  height: clamp(300px, 40vw, 680px);
  transform: rotate(-12deg);
}

@media (max-width: 960px) {
  .section--hero {
    min-height: 100svh;
    height: auto;
    padding: 28px var(--space-gutter);
  }

  .hero__content {
    min-height: calc(100svh - 56px);
  }

  .hero__copy {
    width: min(620px, 100%);
  }

  .hero__title {
    font-size: clamp(3.4rem, 10vw, 5.8rem);
  }

  .hero__visual {
    right: clamp(20px, 4vw, 48px);
    bottom: 22vh;
    width: clamp(560px, 82vw, 690px);
    opacity: 0.82;
  }
}

@media (max-width: 640px) {
  .section--hero {
    min-height: 100svh;
    padding: 22px 20px;
    background:
      linear-gradient(180deg, rgba(13, 12, 10, 0.72), rgba(13, 12, 10, 0.94) 58%, rgba(13, 12, 10, 1)),
      radial-gradient(ellipse at 70% 25%, rgba(95, 13, 28, 0.32), rgba(65, 12, 20, 0.16) 38%, transparent 72%),
      linear-gradient(135deg, var(--color-charcoal), var(--color-carbon));
  }

  .section--hero::before {
    background-size: 64px 64px;
  }

  .hero__brand {
    width: 118px;
  }

  .hero__copy {
    padding-bottom: 4vh;
  }

  .hero__title {
    max-width: 7.5ch;
    font-size: clamp(2.8rem, 11.7vw, 3.85rem);
  }

  .hero__text {
    font-size: 0.98rem;
  }

  .hero__cta {
    font-size: 0.72rem;
  }

  .hero__visual {
    right: 15px;
    bottom: 36vh;
    width: min(360px, calc(100vw - 30px));
    opacity: 0.72;
  }

  .hero__smoke--one {
    right: -10%;
    bottom: 34%;
  }

  .hero__smoke--two {
    right: -30%;
    bottom: 24%;
  }
}

.section--legacy {
  position: relative;
  width: 100vw;
  max-width: 100%;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 74% 52%, rgba(108, 18, 30, 0.24), transparent 48%),
    radial-gradient(ellipse at 42% 38%, rgba(255, 255, 255, 0.035), transparent 34%),
    linear-gradient(90deg, rgba(7, 7, 6, 0.98), rgba(15, 13, 11, 0.92) 48%, rgba(7, 7, 6, 0.98)),
    #080807;
  color: var(--color-cream);
}

.section--legacy::before,
.section--legacy::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.section--legacy::before {
  z-index: -2;
  opacity: 0.072;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.32) 0 1px, transparent 1.4px),
    radial-gradient(circle at 76% 58%, rgba(255, 255, 255, 0.2) 0 1px, transparent 1.5px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 42px 42px, 67px 67px, 128px 128px, 128px 128px;
  mix-blend-mode: screen;
}

.section--legacy::after {
  z-index: 4;
  background:
    radial-gradient(ellipse at center, transparent 0 50%, rgba(0, 0, 0, 0.34) 88%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.43), transparent 20%, transparent 74%, rgba(0, 0, 0, 0.54));
}

.legacy__pin {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.legacy__shell {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(180px, 0.22fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 86px);
  width: min(100%, 1320px);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(46px, 6vw, 78px) var(--space-gutter);
}

.legacy__timeline {
  position: relative;
  z-index: 5;
  align-self: center;
  min-height: min(560px, 68vh);
  padding-left: 4px;
}

.legacy__kicker,
.legacy__chapter-count {
  color: rgba(242, 238, 231, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.legacy__timeline-track {
  position: absolute;
  top: 74px;
  bottom: 16px;
  left: 5px;
  width: 1px;
  overflow: hidden;
  background: rgba(242, 238, 231, 0.22);
}

.legacy__timeline-progress {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  background: linear-gradient(180deg, rgba(200, 16, 46, 1), rgba(200, 16, 46, 0.66));
  box-shadow: 0 0 18px rgba(200, 16, 46, 0.28);
}

.legacy__timeline-list {
  display: grid;
  gap: clamp(36px, 7vh, 72px);
  margin-top: clamp(44px, 9vh, 84px);
  padding-left: 32px;
}

.legacy__timeline-item {
  position: relative;
  display: grid;
  gap: 7px;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(242, 238, 231, 0.48);
  text-align: left;
  transition: color 420ms ease, transform 420ms ease;
}

.legacy__timeline-item::before {
  position: absolute;
  top: 6px;
  left: -32px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(242, 238, 231, 0.34);
  border-radius: 999px;
  background: rgba(242, 238, 231, 0.2);
  box-shadow: 0 0 0 8px rgba(242, 238, 231, 0.024);
  content: "";
  transition: background 420ms ease, box-shadow 420ms ease, transform 420ms ease;
}

.legacy__timeline-item.is-active {
  color: var(--color-cream);
  transform: translateX(6px);
}

.legacy__timeline-item.is-active .legacy__timeline-label {
  color: rgba(242, 238, 231, 0.9);
}

.legacy__timeline-item.is-active::before {
  border-color: rgba(200, 16, 46, 0.96);
  background: var(--color-red);
  box-shadow: 0 0 30px rgba(200, 16, 46, 0.48);
  transform: scale(1.16);
}

.legacy__timeline-year {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  line-height: 1;
}

.legacy__timeline-label {
  max-width: 18ch;
  color: rgba(242, 238, 231, 0.68);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.legacy__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(560px, 52vw) minmax(280px, 340px);
  gap: clamp(8px, 1.4vw, 24px);
  align-items: center;
}

.legacy__stage::after {
  position: absolute;
  inset: 4% 22% 8% 18%;
  z-index: 1;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 46% 48%, rgba(255, 255, 255, 0.13), transparent 28%),
    radial-gradient(ellipse at 52% 58%, rgba(120, 26, 35, 0.16), transparent 66%);
  filter: blur(42px);
  opacity: 0;
  content: "";
  pointer-events: none;
  transform: translate3d(-1%, 2%, 0) scale(0.96);
  transition: opacity 700ms ease;
}

.section--legacy.legacy--craft-active .legacy__stage::after {
  opacity: 0.42;
  animation: craft-smoke-drift 18s ease-in-out infinite alternate;
}

@keyframes craft-smoke-drift {
  0% {
    transform: translate3d(-1%, 2%, 0) scale(0.96);
  }

  100% {
    transform: translate3d(3%, -2%, 0) scale(1.08);
  }
}

.legacy__media {
  position: relative;
  z-index: 2;
  width: clamp(610px, 52vw, 820px);
  min-height: clamp(540px, 75vh, 780px);
  overflow: visible;
  justify-self: end;
}

.legacy__media::before {
  position: absolute;
  inset: -24% -34% -22% -28%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 54% 48%, rgba(200, 16, 46, 0.13), transparent 34%),
    radial-gradient(ellipse at 48% 56%, rgba(94, 22, 25, 0.24), transparent 68%),
    radial-gradient(ellipse at 52% 64%, rgba(0, 0, 0, 0.62), transparent 58%);
  filter: blur(62px);
  content: "";
}

.legacy__media::after {
  position: absolute;
  inset: -18% -20%;
  z-index: 3;
  background:
    radial-gradient(ellipse at center, transparent 0 36%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0.56) 100%),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.075) 0 1px, transparent 1.6px),
    radial-gradient(circle at 74% 62%, rgba(255, 255, 255, 0.052) 0 1px, transparent 1.8px);
  background-size: auto, 35px 35px, 53px 53px;
  mix-blend-mode: normal;
  opacity: 0.62;
  content: "";
  pointer-events: none;
}

.legacy__image {
  position: absolute;
  inset: -8% -10%;
  z-index: 1;
  width: 120%;
  max-width: none;
  height: 116%;
  opacity: 0;
  object-fit: cover;
  filter:
    saturate(0.9)
    contrast(1.08)
    brightness(0.88)
    drop-shadow(0 36px 68px rgba(0, 0, 0, 0.48));
  mask-image: radial-gradient(ellipse at center, #000 0 44%, rgba(0, 0, 0, 0.72) 62%, rgba(0, 0, 0, 0.28) 80%, transparent 98%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 44%, rgba(0, 0, 0, 0.72) 62%, rgba(0, 0, 0, 0.28) 80%, transparent 98%);
  transform: scale(1.04);
  transition: none;
}

.legacy__image:first-child {
  filter:
    sepia(0.36)
    saturate(0.82)
    contrast(1.06)
    brightness(0.84)
    drop-shadow(0 36px 68px rgba(0, 0, 0, 0.48));
}

.legacy__image:nth-child(2) {
  filter:
    sepia(0.18)
    saturate(0.98)
    contrast(1.1)
    brightness(0.86)
    drop-shadow(0 36px 68px rgba(0, 0, 0, 0.48));
}

.legacy__image:nth-child(3) {
  filter:
    saturate(0.88)
    contrast(1.06)
    brightness(0.93)
    drop-shadow(0 36px 68px rgba(0, 0, 0, 0.48));
}

.legacy__image.is-active {
  opacity: 1;
}

.legacy__chapters {
  position: relative;
  z-index: 3;
  isolation: isolate;
  min-height: clamp(360px, 48vh, 520px);
}

.legacy__chapters::before {
  position: absolute;
  inset: -18% -28% -18% -22%;
  z-index: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.28) 58%, transparent);
  filter: blur(18px);
  opacity: 0.76;
  content: "";
  pointer-events: none;
}

.legacy__chapter {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: center;
  opacity: 0;
  visibility: hidden;
}

.legacy__chapter-count {
  position: relative;
  display: inline-grid;
  width: max-content;
  padding-bottom: 12px;
}

.legacy__chapter-count::after {
  width: 58px;
  height: 1px;
  margin-top: 12px;
  background: var(--color-red);
  box-shadow: 0 0 18px rgba(200, 16, 46, 0.38);
  content: "";
}

.legacy__chapter.is-active {
  opacity: 1;
  visibility: visible;
}

.legacy__chapter h2 {
  position: relative;
  z-index: 2;
  margin-top: clamp(18px, 2vw, 28px);
  color: var(--color-cream);
  font-size: clamp(4.2rem, 8vw, 9.2rem);
  letter-spacing: 0.015em;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.38);
}

.legacy__chapter[data-legacy-chapter="0"] h2 {
  font-size: clamp(7rem, 12vw, 14rem);
}

.legacy__chapter p:last-child {
  position: relative;
  z-index: 2;
  width: min(440px, 100%);
  margin-top: clamp(20px, 2.2vw, 34px);
  color: rgba(242, 238, 231, 0.78);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.75;
}

.legacy__mobile-stories {
  display: none;
}

@media (max-width: 960px) {
  .legacy__shell {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px var(--space-gutter);
  }

  .legacy__timeline {
    align-self: start;
    min-height: auto;
  }

  .legacy__timeline-track {
    top: auto;
    right: 0;
    bottom: -17px;
    left: 0;
    width: 100%;
    height: 1px;
  }

  .legacy__timeline-progress {
    transform: scaleX(0);
    transform-origin: left;
  }

  .legacy__timeline-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 24px;
    padding-left: 0;
  }

  .legacy__timeline-item::before {
    top: auto;
    bottom: -22px;
    left: 0;
  }

  .legacy__stage {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legacy__media {
    width: 100%;
    min-height: 48vh;
    justify-self: stretch;
  }

  .legacy__chapters {
    min-height: 280px;
  }

  .legacy__chapter h2 {
    font-size: clamp(3.8rem, 13vw, 7rem);
  }
}

@media (max-width: 640px) {
  .legacy__shell {
    padding: 28px 20px;
  }

  .legacy__timeline-list {
    gap: 12px;
  }

  .legacy__timeline-year {
    font-size: 1.25rem;
  }

  .legacy__timeline-label {
    max-width: 12ch;
    font-size: 0.58rem;
  }

  .legacy__media {
    min-height: 36vh;
  }

  .legacy__media::before {
    inset: -24% -34% -16% -28%;
  }

  .legacy__media::after {
    inset: -16% -18%;
  }

  .legacy__chapters {
    min-height: 290px;
  }

  .legacy__chapter h2 {
    font-size: clamp(3.3rem, 18vw, 5.4rem);
  }
}

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
  .section--legacy {
    min-height: 0;
    padding: 72px 20px;
    overflow: hidden;
  }

  .legacy__pin {
    display: none;
  }

  .legacy__mobile-stories {
    position: relative;
    z-index: 5;
    display: grid;
    gap: 88px;
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .legacy__mobile-story {
    display: grid;
    gap: 26px;
  }

  .legacy__mobile-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1.28 / 1;
    overflow: visible;
  }

  .legacy__mobile-media::before {
    position: absolute;
    inset: -18%;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(116, 23, 33, 0.2), transparent 66%);
    filter: blur(34px);
    content: "";
  }

  .legacy__mobile-story--craft .legacy__mobile-media::after {
    position: absolute;
    inset: -10% -6%;
    z-index: 2;
    opacity: 0.24;
    background: radial-gradient(ellipse at 52% 56%, rgba(255, 255, 255, 0.13), transparent 58%);
    filter: blur(26px);
    content: "";
    pointer-events: none;
    animation: craft-smoke-drift 18s ease-in-out infinite alternate;
  }

  .legacy__mobile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter:
      saturate(0.9)
      contrast(1.08)
      brightness(0.88)
      drop-shadow(0 28px 52px rgba(0, 0, 0, 0.48));
    mask-image: radial-gradient(ellipse at center, #000 0 48%, rgba(0, 0, 0, 0.74) 70%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0 48%, rgba(0, 0, 0, 0.74) 70%, transparent 100%);
  }

  .legacy__mobile-story:first-child .legacy__mobile-media img {
    filter:
      sepia(0.36)
      saturate(0.82)
      contrast(1.06)
      brightness(0.84)
      drop-shadow(0 28px 52px rgba(0, 0, 0, 0.48));
  }

  .legacy__mobile-copy h2 {
    margin-top: 20px;
    color: var(--color-cream);
    font-size: clamp(3.5rem, 17vw, 6.2rem);
    text-transform: uppercase;
  }

  .legacy__mobile-story:first-child .legacy__mobile-copy h2 {
    font-size: clamp(5.8rem, 27vw, 9rem);
  }

  .legacy__mobile-copy > p:last-child {
    margin-top: 20px;
    color: rgba(242, 238, 231, 0.78);
    font-size: 1rem;
    line-height: 1.75;
  }
}

.section--evolution {
  position: relative;
  --evolution-stage-spacing: 120px;
  --evolution-stage-padding-y: 0;
  --evolution-stage-padding-x: var(--space-gutter);
  --evolution-stage-gap: clamp(24px, 4.2vw, 72px);
  width: 100vw;
  max-width: 100%;
  min-height: auto;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 70% 28%, rgba(200, 16, 46, 0.16), transparent 42%),
    radial-gradient(ellipse at 24% 72%, rgba(255, 255, 255, 0.04), transparent 38%),
    linear-gradient(100deg, #080807 0%, #12100e 48%, #070706 100%);
  color: var(--color-cream);
}

.section--evolution::before,
.section--evolution::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.section--evolution::before {
  z-index: -2;
  opacity: 0.07;
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.24) 0 1px, transparent 1.5px),
    radial-gradient(circle at 78% 68%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1.6px);
  background-size: 38px 38px, 59px 59px;
  mix-blend-mode: screen;
}

.section--evolution::after {
  z-index: 4;
  background:
    radial-gradient(ellipse at center, transparent 0 44%, rgba(0, 0, 0, 0.38) 86%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 18%, transparent 74%, rgba(0, 0, 0, 0.68));
}

.evolution__pin {
  position: relative;
  z-index: 5;
  display: block;
  min-height: auto;
  overflow: visible;
}

.evolution__intro {
  display: none;
}

.evolution__archive-heading {
  position: relative;
  z-index: 8;
  grid-column: 1 / -1;
  width: min(620px, 100%);
  margin: 0 0 clamp(12px, 2.2vh, 22px);
}

.evolution__archive-heading h2 {
  color: var(--color-cream);
  font-size: clamp(2rem, 4.1vw, 4.45rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.evolution__archive-heading p {
  width: min(440px, 100%);
  margin-top: 18px;
  color: rgba(242, 238, 231, 0.68);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.7;
}

.evolution__kicker {
  color: rgba(242, 238, 231, 0.54);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.evolution__intro h2 {
  width: min(780px, 100%);
  margin-top: 14px;
  color: var(--color-cream);
  font-size: clamp(3.2rem, 7.2vw, 8rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.evolution__intro p {
  width: min(430px, 100%);
  margin-top: 20px;
  color: rgba(242, 238, 231, 0.68);
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  line-height: 1.7;
}

.evolution__progress {
  display: none;
}

.evolution__progress-line {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--color-red), rgba(200, 16, 46, 0.3));
  box-shadow: 0 0 18px rgba(200, 16, 46, 0.3);
}

.evolution__viewport {
  display: block;
  width: 100%;
  overflow: visible;
}

.evolution__track {
  display: grid;
  width: 100%;
  gap: var(--evolution-stage-spacing);
  padding: var(--evolution-stage-spacing) 0;
}

.evolution__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(460px, 0.62fr) minmax(300px, 0.38fr);
  gap: var(--evolution-stage-gap);
  align-items: center;
  align-content: center;
  width: min(100%, 1280px);
  height: auto;
  min-height: 0;
  margin: 0 auto;
  padding: var(--evolution-stage-padding-y) var(--evolution-stage-padding-x);
}

.evolution__stage + .evolution__stage {
  margin-top: 0;
}

.evolution__stage:nth-child(even) {
  grid-template-columns: minmax(300px, 0.38fr) minmax(460px, 0.62fr);
}

.evolution__stage:nth-child(even) .evolution__media {
  grid-column: 2;
  grid-row: 1;
}

.evolution__stage:nth-child(even) .evolution__copy {
  grid-column: 1;
  grid-row: 1;
}

.evolution__media {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1.45 / 1;
  align-self: center;
  overflow: visible;
  clip-path: inset(0 0 0 0);
}

.evolution__media::before {
  position: absolute;
  inset: 8% 4% -12%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 56%, rgba(0, 0, 0, 0.48), transparent 62%),
    radial-gradient(ellipse at 52% 46%, rgba(200, 16, 46, 0.08), transparent 58%);
  filter: blur(34px);
  content: "";
}

.evolution__media::after {
  position: absolute;
  inset: -12%;
  z-index: 2;
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 255, 255, 0.055) 0 1px, transparent 1.6px),
    radial-gradient(circle at 74% 64%, rgba(255, 255, 255, 0.038) 0 1px, transparent 1.7px);
  background-size: 38px 38px, 57px 57px;
  opacity: 0.34;
  content: "";
  pointer-events: none;
}

.evolution__media img {
  position: absolute;
  inset: -5% -7%;
  z-index: 1;
  width: 114%;
  max-width: none;
  height: 112%;
  object-fit: cover;
  filter:
    sepia(0.18)
    saturate(0.82)
    contrast(1.08)
    brightness(0.86)
    drop-shadow(0 38px 68px rgba(0, 0, 0, 0.52));
  mask-image: radial-gradient(ellipse at center, #000 0 48%, rgba(0, 0, 0, 0.74) 68%, rgba(0, 0, 0, 0.24) 84%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 48%, rgba(0, 0, 0, 0.74) 68%, rgba(0, 0, 0, 0.24) 84%, transparent 100%);
}

.evolution__stage--product .evolution__media {
  width: 100%;
}

.evolution__stage--product .evolution__media img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    saturate(0.96)
    contrast(1.08)
    brightness(0.92)
    drop-shadow(0 42px 72px rgba(0, 0, 0, 0.58));
  mask-image: radial-gradient(ellipse at center, #000 0 66%, rgba(0, 0, 0, 0.76) 82%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 66%, rgba(0, 0, 0, 0.76) 82%, transparent 100%);
}

.evolution__copy {
  position: relative;
  z-index: 3;
  align-self: center;
  width: min(390px, 100%);
  padding-bottom: 0;
}

.evolution__copy::before {
  position: absolute;
  inset: -22% -26% -22% -18%;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.26) 66%, transparent);
  filter: blur(18px);
  content: "";
  pointer-events: none;
}

.evolution__number {
  display: block;
  color: rgba(242, 238, 231, 0.18);
  font-family: var(--font-display);
  font-size: clamp(6.8rem, 12vw, 13.5rem);
  line-height: 0.78;
}

.evolution__copy h3 {
  position: relative;
  margin-top: clamp(14px, 2vw, 26px);
  padding-top: 22px;
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.45vw, 1.42rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.evolution__copy h3::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 58px;
  height: 1px;
  background: var(--color-red);
  box-shadow: 0 0 18px rgba(200, 16, 46, 0.36);
  content: "";
}

.evolution__copy p {
  margin-top: 18px;
  color: rgba(242, 238, 231, 0.72);
  font-size: clamp(0.98rem, 1.1vw, 1.1rem);
  line-height: 1.75;
}

.section--bean-to-cup {
  position: relative;
  display: grid;
  place-items: center;
  width: 100vw;
  max-width: 100%;
  min-height: 0;
  height: auto;
  padding: 90px 0;
  overflow: hidden;
  isolation: isolate;
  color: var(--color-cream);
  background: #070706;
}

.bean-to-cup__frame {
  position: relative;
  display: grid;
  width: 76vw;
  max-width: 100vw;
  height: 60vh;
  margin: 0 auto;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  border-radius: 18px;
  background: #070706;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.56);
  transform-origin: center center;
  will-change: transform, opacity;
}

.bean-to-cup__frame::before,
.bean-to-cup__frame::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.bean-to-cup__frame::before {
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.08) 0 34%, rgba(0, 0, 0, 0.52) 80%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.22) 45%, rgba(0, 0, 0, 0.64)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.16) 42%, rgba(0, 0, 0, 0.7));
}

.bean-to-cup__frame::after {
  opacity: 0.08;
  background:
    radial-gradient(circle at 24% 30%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1.4px),
    radial-gradient(circle at 72% 66%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1.5px);
  background-size: 42px 42px, 67px 67px;
  mix-blend-mode: screen;
}

.bean-to-cup__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.bean-to-cup__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  filter:
    saturate(0.78)
    sepia(0.16)
    contrast(1.08)
    brightness(0.78);
  transform: scale(1.08);
  transform-origin: center;
}

.bean-to-cup__content {
  position: relative;
  z-index: 3;
  width: min(900px, calc(100% - (var(--space-gutter) * 2)));
  max-width: 100%;
  text-align: center;
}

.bean-to-cup__content h2 {
  font-size: clamp(3.2rem, 7vw, 8rem);
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 28px 76px rgba(0, 0, 0, 0.72);
}

.bean-to-cup__content p {
  width: min(520px, 100%);
  margin: clamp(22px, 3vw, 36px) auto 0;
  color: rgba(242, 238, 231, 0.76);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.75;
}

@media (max-width: 960px) {
  .section--evolution {
    --evolution-stage-spacing: 120px;
    --evolution-stage-padding-y: 0;
    --evolution-stage-padding-x: var(--space-gutter);
    --evolution-stage-gap: 24px;
  }

  .evolution__intro {
    display: none;
  }

  .evolution__archive-heading {
    width: min(620px, 100%);
    padding: 0;
  }

  .evolution__archive-heading h2 {
    font-size: clamp(2.6rem, 8vw, 4.5rem);
  }

  .evolution__intro h2 {
    font-size: clamp(3.6rem, 13vw, 6.8rem);
  }

  .evolution__stage {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 0;
    height: auto;
  }

  .evolution__stage:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .evolution__stage:nth-child(even) .evolution__media,
  .evolution__stage:nth-child(even) .evolution__copy {
    grid-column: auto;
    grid-row: auto;
  }

  .evolution__media,
  .evolution__stage--product .evolution__media {
    width: 100%;
    min-height: 0;
  }

  .evolution__copy {
    width: min(520px, 100%);
    padding-bottom: 0;
  }

  .section--bean-to-cup {
    min-height: 0;
    height: auto;
  }
}

@media (max-width: 640px) {
  .section--evolution {
    --evolution-stage-spacing: 120px;
    --evolution-stage-padding-y: 0;
    --evolution-stage-padding-x: 20px;
    --evolution-stage-gap: 22px;
  }

  .evolution__archive-heading {
    padding: 0;
  }

  .evolution__media,
  .evolution__stage--product .evolution__media {
    min-height: 0;
  }

  .evolution__number {
    font-size: clamp(5.6rem, 28vw, 8rem);
  }

  .section--bean-to-cup {
    min-height: 0;
    height: auto;
  }

  .bean-to-cup__content h2 {
    font-size: clamp(3.4rem, 17vw, 5.8rem);
  }
}

@media (max-width: 768px) {
  .section--bean-to-cup {
    display: grid;
    min-height: 0;
    height: auto;
    padding: 90px 0;
    overflow: hidden;
  }

  .bean-to-cup__frame {
    width: calc(100% - 40px);
    height: 62vh;
    min-height: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .bean-to-cup__content {
    width: min(100% - 40px, 620px);
    padding: 72px 0;
  }

  .bean-to-cup__media img {
    transform: scale(1.03);
  }
}

/* Packaging archive carousel */
.section--evolution {
  position: relative;
  width: 100vw;
  max-width: 100%;
  min-height: 100vh;
  padding: clamp(70px, 8vh, 110px) var(--space-gutter);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 78% 42%, rgba(112, 12, 30, 0.28), transparent 40%),
    radial-gradient(ellipse at 20% 75%, rgba(73, 8, 20, 0.16), transparent 36%),
    linear-gradient(112deg, #050505 0%, #0a0808 46%, #13080b 100%);
  color: var(--color-cream);
}

.section--evolution::before {
  z-index: -1;
  opacity: 0.045;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.8) 0 0.7px, transparent 1px),
    radial-gradient(circle at 76% 68%, rgba(255, 255, 255, 0.58) 0 0.6px, transparent 1px);
  background-size: 37px 37px, 53px 53px;
  mix-blend-mode: screen;
}

.section--evolution::after {
  z-index: 8;
  background:
    radial-gradient(ellipse at 72% 48%, transparent 0 35%, rgba(0, 0, 0, 0.28) 72%, rgba(0, 0, 0, 0.6) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 20%, transparent 76%, rgba(0, 0, 0, 0.62));
}

.evolution__inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
  width: min(1440px, 100%);
  min-height: calc(100vh - clamp(140px, 16vh, 220px));
  margin: 0 auto;
}

.evolution__editorial {
  position: relative;
  z-index: 6;
  width: min(430px, 100%);
}

.evolution__eyebrow {
  color: rgba(242, 238, 231, 0.5);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.evolution__editorial h2 {
  max-width: 9ch;
  margin-top: 18px;
  color: var(--color-cream);
  font-size: clamp(2.5rem, 4.2vw, 5rem);
  line-height: 0.84;
  text-transform: uppercase;
}

.evolution__intro {
  display: block;
  width: min(390px, 100%);
  margin-top: 26px;
  color: rgba(242, 238, 231, 0.66);
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  line-height: 1.75;
}

.evolution__accent {
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 30px;
  background: linear-gradient(90deg, var(--color-red), rgba(200, 16, 46, 0.08));
  box-shadow: 0 0 16px rgba(200, 16, 46, 0.4);
}

.evolution__active-copy {
  min-height: 116px;
  margin-top: clamp(42px, 6vh, 68px);
}

.evolution__active-copy h3 {
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: clamp(0.94rem, 1.2vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.evolution__active-copy p {
  width: min(340px, 100%);
  margin-top: 14px;
  color: rgba(242, 238, 231, 0.58);
  font-size: 0.94rem;
  line-height: 1.7;
}

.evolution__controls {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.evolution__control {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(242, 238, 231, 0.72);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.25rem;
  transition:
    color 300ms ease,
    transform 300ms ease;
}

.evolution__control:hover,
.evolution__control:focus-visible {
  color: var(--color-cream);
}

.evolution__control--previous:hover,
.evolution__control--previous:focus-visible {
  transform: translateX(-3px);
}

.evolution__control--next:hover,
.evolution__control--next:focus-visible {
  transform: translateX(3px);
}

.evolution__control:focus-visible {
  outline: 1px solid rgba(200, 16, 46, 0.8);
  outline-offset: 3px;
}

.evolution__counter {
  display: grid;
  grid-template-columns: auto 58px auto;
  gap: 12px;
  align-items: center;
  color: rgba(242, 238, 231, 0.4);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.evolution__current {
  color: var(--color-cream);
}

.evolution__counter-line {
  height: 1px;
  background: rgba(242, 238, 231, 0.22);
}

.evolution__showcase {
  position: relative;
  min-width: 0;
  min-height: clamp(520px, 68vh, 760px);
  touch-action: pan-y;
}

.evolution__showcase::before {
  position: absolute;
  inset: 2% -8% -4% -12%;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 52%, rgba(122, 16, 36, 0.2), rgba(0, 0, 0, 0.2) 48%, transparent 72%);
  filter: blur(28px);
  content: "";
  pointer-events: none;
}

.evolution__display {
  position: absolute;
  inset: 0;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.evolution__item {
  position: absolute;
  top: 50%;
  left: 42%;
  width: min(68%, 620px);
  height: min(82%, 650px);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.7);
  transform-origin: 50% 82%;
  transition:
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s ease,
    filter 0.9s ease;
  will-change: transform, opacity, filter;
}

.evolution__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    saturate(0.86)
    contrast(1.04)
    brightness(0.82)
    drop-shadow(0 34px 38px rgba(0, 0, 0, 0.46));
  transition: filter 0.9s ease;
}

.evolution__item.is-active {
  z-index: 5;
  opacity: 1;
  transform: translate3d(-50%, -50%, 90px) scale(1);
  filter: none;
}

.evolution__item.is-active img {
  filter:
    saturate(0.98)
    contrast(1.08)
    brightness(1)
    drop-shadow(0 46px 54px rgba(0, 0, 0, 0.58));
}

.evolution__item.is-next-1 {
  z-index: 4;
  opacity: 0.58;
  transform: translate3d(-14%, -49%, 20px) scale(0.82);
  filter: brightness(0.68) saturate(0.7);
  cursor: pointer;
}

.evolution__item.is-next-2 {
  z-index: 3;
  opacity: 0.3;
  transform: translate3d(20%, -48%, -30px) scale(0.68);
  filter: brightness(0.5) saturate(0.55);
  cursor: pointer;
}

.evolution__item.is-previous {
  z-index: 2;
  opacity: 0.16;
  transform: translate3d(-84%, -49%, -40px) scale(0.76);
  filter: brightness(0.44) saturate(0.5);
  cursor: pointer;
}

.evolution__item.is-next-1:hover,
.evolution__item.is-next-1:focus-visible {
  opacity: 0.72;
  transform: translate3d(-14%, -49%, 26px) scale(0.85);
}

.evolution__item.is-next-2:hover,
.evolution__item.is-next-2:focus-visible {
  opacity: 0.42;
  transform: translate3d(20%, -48%, -24px) scale(0.71);
}

.evolution__item.is-previous:hover,
.evolution__item.is-previous:focus-visible {
  opacity: 0.28;
  transform: translate3d(-84%, -49%, -34px) scale(0.79);
}

.evolution__item:focus-visible {
  outline: 1px solid rgba(200, 16, 46, 0.72);
  outline-offset: 4px;
}

.evolution__preview-zone {
  position: absolute;
  top: 12%;
  bottom: 12%;
  z-index: 7;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transform: translateZ(180px);
}

.evolution__preview-zone--previous {
  left: 0;
  width: 20%;
}

.evolution__preview-zone--next {
  right: 0;
  width: 36%;
}

.evolution__preview-zone:focus-visible {
  outline: none;
}

.evolution__display:has(.evolution__preview-zone--next:hover) .evolution__item.is-next-1,
.evolution__display:has(.evolution__preview-zone--next:focus-visible) .evolution__item.is-next-1 {
  opacity: 0.72;
  transform: translate3d(-14%, -49%, 26px) scale(0.85);
}

.evolution__display:has(.evolution__preview-zone--previous:hover) .evolution__item.is-previous,
.evolution__display:has(.evolution__preview-zone--previous:focus-visible) .evolution__item.is-previous {
  opacity: 0.28;
  transform: translate3d(-84%, -49%, -34px) scale(0.79);
}

.evolution__reflection {
  position: absolute;
  left: 42%;
  bottom: 5%;
  z-index: 1;
  width: min(54%, 500px);
  height: 17%;
  border-radius: 50%;
  opacity: 0.54;
  background:
    radial-gradient(ellipse at center, rgba(242, 238, 231, 0.13), rgba(120, 16, 34, 0.1) 34%, rgba(0, 0, 0, 0) 72%);
  filter: blur(20px);
  transform: translateX(-50%) scaleY(0.45);
  pointer-events: none;
}

.evolution__floor {
  position: absolute;
  right: 2%;
  bottom: 10%;
  left: 2%;
  z-index: 0;
  height: 1px;
  opacity: 0.44;
  background: linear-gradient(90deg, transparent, rgba(242, 238, 231, 0.2) 38%, rgba(200, 16, 46, 0.24) 52%, transparent);
  box-shadow: 0 18px 50px rgba(200, 16, 46, 0.11);
  pointer-events: none;
}

@media (max-width: 960px) {
  .section--evolution {
    min-height: 100vh;
    padding-top: 74px;
    padding-bottom: 64px;
  }

  .evolution__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: auto;
  }

  .evolution__editorial {
    width: min(680px, 100%);
  }

  .evolution__editorial h2 {
    max-width: none;
    font-size: clamp(2.7rem, 7.5vw, 4.5rem);
  }

  .evolution__intro {
    display: block;
    margin-top: 18px;
  }

  .evolution__accent {
    margin-top: 22px;
  }

  .evolution__active-copy {
    min-height: 94px;
    margin-top: 30px;
  }

  .evolution__controls {
    margin-top: 18px;
  }

  .evolution__showcase {
    min-height: clamp(430px, 58vh, 620px);
  }

  .evolution__item {
    left: 40%;
    width: min(66%, 520px);
    height: 86%;
  }

  .evolution__reflection {
    left: 40%;
  }
}

@media (max-width: 640px) {
  .section--evolution {
    min-height: 100svh;
    padding: 58px 20px 46px;
  }

  .evolution__inner {
    gap: 24px;
  }

  .evolution__eyebrow {
    font-size: 0.6rem;
  }

  .evolution__editorial h2 {
    max-width: 9ch;
    margin-top: 12px;
    font-size: clamp(2.45rem, 11vw, 3.75rem);
  }

  .evolution__intro {
    display: block;
    width: min(330px, 100%);
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .evolution__accent {
    width: 58px;
    margin-top: 18px;
  }

  .evolution__active-copy {
    min-height: 86px;
    margin-top: 24px;
  }

  .evolution__active-copy p {
    margin-top: 10px;
    font-size: 0.86rem;
  }

  .evolution__controls {
    gap: 12px;
    margin-top: 12px;
  }

  .evolution__control {
    width: 38px;
    height: 38px;
  }

  .evolution__counter {
    grid-template-columns: auto 44px auto;
    gap: 9px;
  }

  .evolution__showcase {
    min-height: min(58vh, 470px);
  }

  .evolution__item {
    top: 48%;
    left: 38%;
    width: 72%;
    height: 88%;
  }

  .evolution__item.is-next-1 {
    transform: translate3d(-10%, -48%, 20px) scale(0.78);
  }

  .evolution__item.is-next-2 {
    opacity: 0.2;
    transform: translate3d(16%, -47%, -30px) scale(0.64);
  }

  .evolution__item.is-previous {
    opacity: 0.1;
    transform: translate3d(-78%, -48%, -40px) scale(0.7);
  }

  .evolution__reflection {
    left: 38%;
    bottom: 4%;
    width: 56%;
  }
}

/* Packaging Archive to Bean To Cup boundary */
.section--evolution {
  min-height: 0;
  padding-bottom: 40px;
}

.section--bean-to-cup {
  padding-top: 60px;
}

@media (prefers-reduced-motion: reduce) {
  .section--legacy {
    min-height: 0;
    padding: 72px 20px;
  }

  .legacy__pin {
    display: none;
  }

  .legacy__mobile-stories {
    position: relative;
    z-index: 5;
    display: grid;
    gap: 72px;
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .site-atmosphere__glow,
  .site-atmosphere__grain,
  .section--legacy.legacy--craft-active .legacy__stage::after,
  .legacy__mobile-story--craft .legacy__mobile-media::after {
    animation: none;
  }

  .evolution__item,
  .evolution__item img,
  .evolution__control {
    transition: none;
  }
}

/* Shared navigation and completed editorial sections */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: 72px;
  color: var(--color-cream);
  transition:
    background-color 320ms ease,
    box-shadow 320ms ease,
    backdrop-filter 320ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(7, 7, 6, 0.82);
  box-shadow: 0 1px 0 rgba(242, 238, 231, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-nav {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 1440px);
  height: 72px;
  margin: 0 auto;
  padding: 0 var(--space-gutter);
  align-items: center;
  justify-content: space-between;
}

.site-nav__brand {
  width: 96px;
}

.site-nav__brand img {
  width: 100%;
}

.site-nav__links {
  display: flex;
  gap: clamp(18px, 2.1vw, 34px);
  align-items: center;
}

.site-nav__links a {
  position: relative;
  padding: 28px 0 24px;
  color: rgba(242, 238, 231, 0.64);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 240ms ease;
}

.site-nav__links a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: var(--color-red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible,
.site-nav__links a.is-active {
  color: var(--color-cream);
}

.site-nav__links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__toggle {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.site-nav__toggle span {
  position: absolute;
  left: 10px;
  width: 22px;
  height: 1px;
  background: var(--color-cream);
  transition: transform 280ms ease, top 280ms ease;
}

.site-nav__toggle span:first-child {
  top: 16px;
}

.site-nav__toggle span:last-child {
  top: 25px;
}

.site-header.is-menu-open .site-nav__toggle span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.site-header.is-menu-open .site-nav__toggle span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: none;
  padding: 112px 24px 36px;
  background:
    radial-gradient(ellipse at 84% 20%, rgba(118, 14, 34, 0.3), transparent 38%),
    #070706;
  opacity: 0;
  visibility: hidden;
}

.mobile-nav__links {
  display: grid;
}

.mobile-nav__links a {
  width: max-content;
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 13vw, 5rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.mobile-nav > p {
  position: absolute;
  bottom: 32px;
  color: rgba(242, 238, 231, 0.42);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.7;
  text-transform: uppercase;
}

body.has-open-menu {
  overflow: hidden;
}

.section-eyebrow {
  color: rgba(242, 238, 231, 0.5);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section--experience,
.section--product-moment,
.section--global,
.section--finale,
.section--contact {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  isolation: isolate;
  color: var(--color-cream);
}

.section--experience {
  min-height: 0;
  padding: clamp(100px, 10vw, 150px) var(--space-gutter);
  background:
    radial-gradient(ellipse at 10% 28%, rgba(121, 16, 34, 0.16), transparent 36%),
    linear-gradient(115deg, #090807, #11100e 50%, #080807);
}

.experience__inner {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.experience__header {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(280px, 0.45fr);
  gap: 24px 80px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 84px);
}

.experience__header .section-eyebrow {
  grid-column: 1 / -1;
}

.experience__header h2 {
  font-size: clamp(3.5rem, 6.8vw, 7.4rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.experience__header > p:last-child {
  padding-bottom: 8px;
  color: rgba(242, 238, 231, 0.66);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.75;
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(250px, 28vw));
  gap: clamp(12px, 1.5vw, 22px);
  align-items: stretch;
}

.experience__tile {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #0b0a09;
}

.experience__tile--main {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
}

.experience__tile--team,
.experience__tile--store {
  grid-column: 8 / -1;
}

.experience__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.08) brightness(0.76);
  transform: scale(1.04);
  transition: filter 500ms ease;
}

.experience__tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(4, 4, 4, 0.84) 100%);
  content: "";
  pointer-events: none;
}

.experience__tile figcaption {
  position: absolute;
  right: clamp(18px, 2.5vw, 34px);
  bottom: clamp(18px, 2.5vw, 34px);
  left: clamp(18px, 2.5vw, 34px);
  z-index: 2;
  width: min(420px, calc(100% - 36px));
  color: rgba(242, 238, 231, 0.7);
  font-size: clamp(0.78rem, 0.9vw, 0.94rem);
  line-height: 1.65;
}

.experience__tile figcaption span {
  display: block;
  margin-bottom: 7px;
  color: var(--color-cream);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section--product-moment {
  display: grid;
  min-height: 92vh;
  padding: clamp(90px, 9vw, 140px) var(--space-gutter);
  place-items: center;
  background:
    radial-gradient(ellipse at 72% 52%, rgba(122, 14, 35, 0.3), transparent 34%),
    linear-gradient(105deg, #060606, #100b0c 58%, #070606);
}

.product-moment__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(30px, 6vw, 100px);
  align-items: center;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.product-moment__copy {
  position: relative;
  z-index: 4;
  width: min(470px, 100%);
}

.product-moment__copy h2 {
  margin-top: 20px;
  font-size: clamp(3.2rem, 5.8vw, 6.3rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.product-moment__copy > p:last-child {
  width: min(420px, 100%);
  margin-top: 28px;
  color: rgba(242, 238, 231, 0.68);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.75;
}

.product-moment__visual {
  position: relative;
  height: min(720px, 72vh);
  min-height: 560px;
}

.product-moment__visual::after {
  position: absolute;
  right: 16%;
  bottom: 2%;
  left: 18%;
  height: 10%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  filter: blur(24px);
  content: "";
}

.product-moment__glow {
  position: absolute;
  inset: 8% 4% 3%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(132, 17, 38, 0.34), rgba(71, 10, 22, 0.14) 42%, transparent 70%);
  filter: blur(34px);
}

.product-moment__visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    saturate(0.94)
    contrast(1.06)
    drop-shadow(0 48px 58px rgba(0, 0, 0, 0.62));
  transform-origin: center bottom;
}

.product-detail {
  position: absolute;
  z-index: 3;
  color: rgba(242, 238, 231, 0.7);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-detail::before {
  display: inline-block;
  width: clamp(34px, 4vw, 70px);
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  background: rgba(200, 16, 46, 0.68);
  content: "";
}

.product-detail--one {
  top: 17%;
  left: 4%;
}

.product-detail--two {
  top: 34%;
  right: 1%;
}

.product-detail--three {
  bottom: 28%;
  left: 0;
}

.product-detail--four {
  right: 0;
  bottom: 17%;
}

.section--global {
  min-height: 0;
  padding: clamp(110px, 11vw, 170px) var(--space-gutter);
  background:
    radial-gradient(ellipse at 58% 56%, rgba(106, 13, 29, 0.22), transparent 44%),
    #080807;
}

.global__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.52fr) minmax(520px, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.global__header {
  position: relative;
  z-index: 3;
}

.global__header h2 {
  margin-top: 20px;
  font-size: clamp(3.7rem, 6.4vw, 7rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.global__header > p:last-child {
  width: min(420px, 100%);
  margin-top: 28px;
  color: rgba(242, 238, 231, 0.65);
  line-height: 1.75;
}

.global__map {
  position: relative;
  min-width: 0;
}

.global__map::after {
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse at center, transparent 44%, rgba(8, 8, 7, 0.82) 78%);
  content: "";
  pointer-events: none;
}

.global__map img {
  width: 100%;
  filter:
    saturate(0.92)
    contrast(1.08)
    brightness(0.82)
    drop-shadow(0 30px 70px rgba(0, 0, 0, 0.5));
}

.global__pulse {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.5);
  animation: map-pulse 3.6s ease-out infinite;
}

.global__pulse--one {
  top: 43%;
  left: 56%;
}

.global__pulse--two {
  top: 36%;
  left: 48%;
  animation-delay: 1.2s;
}

.global__pulse--three {
  top: 54%;
  left: 67%;
  animation-delay: 2.3s;
}

@keyframes map-pulse {
  70% {
    box-shadow: 0 0 0 16px rgba(200, 16, 46, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(200, 16, 46, 0);
  }
}

.global__statements {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border-top: 1px solid rgba(242, 238, 231, 0.12);
}

.global__statements p {
  padding: 28px 20px 0 0;
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 3.2rem);
  line-height: 1;
}

.global__statements p + p {
  padding-left: clamp(18px, 3vw, 48px);
  border-left: 1px solid rgba(242, 238, 231, 0.1);
}

.global__statements span {
  display: block;
  margin-bottom: 8px;
  color: rgba(242, 238, 231, 0.42);
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.section--finale {
  display: grid;
  min-height: 82vh;
  padding: clamp(100px, 10vw, 160px) var(--space-gutter);
  place-items: center;
  background:
    radial-gradient(ellipse at center, rgba(103, 12, 28, 0.2), transparent 48%),
    #050505;
}

.finale__inner {
  width: min(1080px, 100%);
  text-align: center;
}

.finale__line {
  color: rgba(242, 238, 231, 0.46);
  font-size: clamp(0.7rem, 1vw, 0.84rem);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.finale__inner h2 {
  margin-top: clamp(28px, 4vw, 50px);
  font-size: clamp(3.6rem, 7.5vw, 8.5rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.finale__inner h2 span {
  display: block;
}

.finale__signature {
  display: grid;
  gap: 8px;
  margin-top: clamp(44px, 6vw, 78px);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.finale__signature span {
  color: var(--color-red);
}

.section--contact {
  min-height: 0;
  padding: clamp(110px, 12vw, 190px) var(--space-gutter);
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.96), rgba(16, 8, 10, 0.88)),
    radial-gradient(ellipse at 84% 36%, rgba(128, 14, 36, 0.28), transparent 42%);
}

.contact__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.contact__inner h2 {
  margin-top: 24px;
  font-size: clamp(3.4rem, 7vw, 8rem);
  line-height: 0.87;
  text-transform: uppercase;
}

.contact__intro {
  width: min(660px, 100%);
  margin-top: 36px;
  color: rgba(242, 238, 231, 0.65);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.8;
}

.contact__services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
  margin-top: 48px;
}

.contact__services li {
  color: rgba(242, 238, 231, 0.62);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact__services li:not(:last-child)::after {
  display: inline-block;
  width: 32px;
  height: 1px;
  margin: 0 18px;
  vertical-align: middle;
  background: rgba(200, 16, 46, 0.58);
  content: "";
}

.contact__actions {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 54px;
}

.contact__primary {
  display: inline-flex;
  min-height: 52px;
  padding: 0 28px;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: all 0.3s ease;
}

.contact__primary:hover,
.contact__primary:focus-visible {
  background: #df1738;
  color: #fff;
  transform: translateY(-2px) scale(1.025);
}

.contact__secondary {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(242, 238, 231, 0.28);
  color: rgba(242, 238, 231, 0.72);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: all 0.3s ease;
}

.contact__secondary:hover,
.contact__secondary:focus-visible {
  border-color: var(--color-red);
  color: var(--color-cream);
  transform: translateY(-2px) scale(1.015);
}

.site-footer {
  display: flex;
  width: 100%;
  padding: 46px var(--space-gutter) 34px;
  border-top: 1px solid rgba(242, 238, 231, 0.1);
  background: #050505;
  color: rgba(242, 238, 231, 0.54);
}

.site-footer__inner {
  display: flex;
  width: min(1320px, 100%);
  margin: 0 auto;
  gap: clamp(36px, 8vw, 120px);
  align-items: flex-start;
  justify-content: space-between;
}

.site-footer__details {
  width: min(1320px, 100%);
  max-width: 920px;
}

.site-footer__identity {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  align-items: center;
  color: rgba(242, 238, 231, 0.72);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__brand {
  color: var(--color-cream);
}

.site-footer__back {
  flex: 0 0 auto;
  color: rgba(242, 238, 231, 0.72);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
}

.site-footer__back:hover,
.site-footer__back:focus-visible {
  color: var(--color-cream);
  transform: translateY(-2px);
}

.site-footer__disclaimer {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(242, 238, 231, 0.08);
  font-size: 0.72rem;
  line-height: 1.75;
}

.site-footer__copyright {
  margin-top: 16px;
  font-size: 0.64rem;
}

@media (max-width: 1024px) {
  .site-nav__links {
    gap: 16px;
  }

  .site-nav__links a {
    font-size: 0.58rem;
  }

  .experience__grid {
    grid-template-rows: repeat(2, minmax(240px, 32vw));
  }

  .product-moment__inner,
  .global__inner {
    grid-template-columns: minmax(280px, 0.7fr) minmax(430px, 1fr);
  }
}

@media (max-width: 768px) {
  .site-nav__links {
    display: none;
  }

  .site-nav__toggle,
  .mobile-nav {
    display: block;
  }

  .section--hero {
    padding-top: 76px;
  }

  .section--experience,
  .section--product-moment,
  .section--global,
  .section--finale,
  .section--contact {
    padding-right: 20px;
    padding-left: 20px;
  }

  .experience__header,
  .product-moment__inner,
  .global__inner {
    grid-template-columns: 1fr;
  }

  .experience__header {
    gap: 22px;
  }

  .experience__header .section-eyebrow {
    grid-column: auto;
  }

  .experience__header > p:last-child {
    width: min(420px, 100%);
  }

  .experience__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .experience__tile--main,
  .experience__tile--team,
  .experience__tile--store {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1.15 / 1;
  }

  .experience__tile--team,
  .experience__tile--store {
    aspect-ratio: 1.4 / 1;
  }

  .section--product-moment {
    min-height: 0;
  }

  .product-moment__visual {
    height: min(620px, 76vh);
    min-height: 490px;
  }

  .product-detail--one,
  .product-detail--three {
    left: 0;
  }

  .product-detail--two,
  .product-detail--four {
    right: 0;
  }

  .global__map {
    margin-top: 24px;
  }

  .global__statements {
    grid-template-columns: 1fr;
  }

  .global__statements p {
    padding: 22px 0;
  }

  .global__statements p + p {
    padding-left: 0;
    border-top: 1px solid rgba(242, 238, 231, 0.1);
    border-left: 0;
  }

  .section--finale {
    min-height: 74vh;
  }

  .contact__services {
    display: grid;
    gap: 14px;
  }

  .contact__services li:not(:last-child)::after {
    display: none;
  }

  .site-footer__inner {
    flex-direction: column;
    gap: 30px;
  }

  .site-footer__back {
    align-self: flex-start;
  }
}

@media (max-width: 430px) {
  .site-nav {
    padding: 0 20px;
  }

  .site-nav__brand {
    width: 86px;
  }

  .experience__header h2,
  .product-moment__copy h2,
  .global__header h2 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .contact__inner h2 {
    font-size: clamp(2.65rem, 11.8vw, 3.6rem);
  }

  .product-moment__visual {
    height: 510px;
    min-height: 0;
  }

  .product-detail {
    font-size: 0.54rem;
  }

  .product-detail::before {
    width: 22px;
    margin-right: 7px;
  }

  .finale__inner h2 {
    font-size: clamp(3.1rem, 16vw, 4.5rem);
  }

  .contact__actions {
    display: grid;
    gap: 24px;
    justify-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .global__pulse {
    animation: none;
  }

  .site-header,
  .site-nav__links a::after,
  .site-nav__toggle span,
  .experience__tile img,
  .contact__primary {
    transition: none;
  }

  .contact__secondary,
  .site-footer__back {
    transition: none;
  }
}
