:root {
  --navy: #0f1c34;
  --navy-deep: #07162d;
  --navy-soft: #172b4c;
  --blue: #22b9f4;
  --cyan: #71e3ff;
  --orange: #ff8a2a;
  --gold: #ffc845;
  --violet: #6b5cff;
  --ice: #eef2f8;
  --paper: #eef3f8;
  --white: #ffffff;
  --ink: #101828;
  --muted: #536078;
  --line: rgba(15, 28, 52, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --max: 1240px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--navy-deep);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.dialog-open {
  overflow: hidden;
}

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

button,
a {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
video:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 760;
}

h2 {
  margin-bottom: 24px;
  font-size: 56px;
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 max(28px, calc((100% - var(--max)) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  height: 68px;
  background: rgba(7, 22, 45, 0.96);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
}

.brand-name {
  font-size: 17px;
  font-weight: 760;
  line-height: 1;
}

.brand-name strong {
  color: var(--cyan);
  font-weight: 520;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a,
.site-nav button {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav button:hover {
  color: var(--white);
}

.site-nav .nav-contact {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  height: 92svh;
  min-height: 680px;
  max-height: 940px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 22, 45, 0.94) 0%, rgba(7, 22, 45, 0.75) 43%, rgba(7, 22, 45, 0.14) 78%),
    linear-gradient(0deg, rgba(7, 22, 45, 0.76) 0%, transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding-top: 54px;
}

.kicker,
.section-marker {
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 14px;
  font-size: 92px;
  line-height: 0.92;
}

.hero h1 span {
  display: block;
  color: var(--cyan);
  font-weight: 500;
}

.hero-tagline {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 26px;
  font-weight: 680;
}

.hero-summary {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 760;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: none;
}

.button-primary {
  background: var(--orange);
  color: var(--navy-deep);
}

.button-primary:hover {
  box-shadow: 0 10px 28px rgba(255, 138, 42, 0.28);
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(7, 22, 45, 0.32);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-quiet:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.34);
  background: var(--white);
  color: var(--navy);
}

.button-light:hover {
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.22);
}

.play-mark {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.hero-foot {
  position: absolute;
  z-index: 2;
  left: max(28px, calc((100% - var(--max)) / 2));
  right: max(28px, calc((100% - var(--max)) / 2));
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.hero-foot p {
  margin: 0;
}

.hero-location {
  min-width: 190px;
  text-align: right;
  transition: opacity 400ms ease;
}

.hero-location.is-hidden {
  opacity: 0;
}

.hero-foot a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.opening,
.journey,
.collaboration,
.studio,
.contact {
  padding: 112px max(28px, calc((100% - var(--max)) / 2));
}

.opening {
  background: var(--white);
}

.opening-grid,
.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 96px;
  align-items: start;
}

.opening h2,
.studio h2 {
  max-width: 730px;
  margin-bottom: 0;
}

.opening-copy,
.studio-copy {
  color: var(--muted);
  font-size: 18px;
}

.opening-copy p:last-child,
.studio-copy p:last-child {
  margin-bottom: 0;
}

.experience-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border: 1px solid var(--line);
  border-bottom: 0;
}

.experience-tab {
  position: relative;
  min-width: 0;
  min-height: 154px;
  padding: 22px 24px 24px;
  border-right: 1px solid var(--line);
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  background: var(--white);
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: color 260ms ease, background-color 260ms ease;
}

.experience-tab:last-child {
  border-right: 0;
}

.experience-tab > span {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.experience-tab strong,
.experience-tab small {
  display: block;
}

.experience-tab strong {
  margin-bottom: 9px;
  font-size: 16px;
}

.experience-tab small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.experience-tab:hover,
.experience-tab:focus-visible {
  background: var(--ice);
}

.experience-tab.is-active {
  background: var(--navy);
  color: var(--white);
}

.experience-tab.is-active small {
  color: rgba(255, 255, 255, 0.72);
}

.experience-tab.is-active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--orange);
  content: "";
  transform-origin: left;
  animation: experience-progress var(--experience-duration, 8s) linear forwards;
}

.experience-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 0 0 8px 8px;
  background: var(--navy-deep);
}

.experience-panel {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 420ms ease, visibility 420ms ease;
}

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

.experience-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes experience-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.experience-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  grid-template-rows: auto auto;
  gap: 18px;
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 18px;
  background: var(--ice);
  box-shadow: 0 0 0 100vmax var(--ice);
  clip-path: inset(0 -100vmax);
}

.feature {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--navy);
}

.feature-wide {
  min-height: 530px;
}

.feature-tall {
  grid-row: span 2;
  min-height: 1078px;
}

.feature-offset {
  min-height: 530px;
}

.feature-media,
.feature-media video {
  width: 100%;
  height: 100%;
}

.feature-media {
  position: absolute;
  inset: 0;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(0deg, rgba(7, 22, 45, 0.92), transparent);
}

.feature-media video {
  object-fit: cover;
}

.feature-tall .feature-media video {
  object-position: center top;
}

.feature-caption {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 30px;
  max-width: 680px;
  color: var(--white);
}

.feature-caption > p {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-caption h3 {
  margin-bottom: 10px;
  font-size: 34px;
}

.feature-caption span {
  display: block;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.journey {
  background: var(--paper);
}

.journey-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 90px;
  align-items: end;
}

.journey-heading h2 {
  margin-bottom: 0;
}

.journey-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 18px;
}

.journey-showcase {
  width: min(100%, 1080px);
  margin: 64px auto 0;
}

.journey-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 6px 6px 0 0;
  background: var(--navy-deep);
}

.journey-panel {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.journey-panel.is-active {
  visibility: visible;
  z-index: 1;
  opacity: 1;
}

.journey-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-visual-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 44px 34px 28px;
  background: linear-gradient(to top, rgba(5, 17, 34, 0.92), rgba(5, 17, 34, 0));
  color: var(--white);
}

.journey-visual-label span {
  color: var(--orange);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.journey-visual-label strong {
  font-size: 21px;
}

.journey-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.journey-stage {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  min-height: 270px;
  padding: 28px 30px 24px 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  transition:
    background-color 320ms ease,
    box-shadow 320ms ease,
    transform 320ms ease;
}

.journey-stage + .journey-stage {
  padding-left: 30px;
}

.journey-stage:last-child {
  border-right: 0;
  padding-right: 0;
}

.journey-stage::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.journey-stage + .journey-stage::before {
  left: 30px;
}

.journey-stage::after {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
}

.journey-stage.is-active {
  z-index: 1;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(15, 28, 52, 0.08);
  transform: translateY(-3px);
}

.journey-stage.is-active::before {
  box-shadow: 0 0 0 6px rgba(255, 138, 42, 0.14);
  transform: scale(1.55);
}

.journey-stage.is-active::after {
  animation: experience-progress var(--journey-duration, 8s) linear forwards;
}

.journey-stage:focus-visible {
  z-index: 2;
  outline: 3px solid var(--blue);
  outline-offset: -3px;
}

.stage-number {
  display: inline-block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  transform-origin: left top;
  transition: transform 320ms ease;
}

.journey-stage:first-child .stage-number {
  margin-left: 10px;
}

.stage-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
  transform-origin: left center;
  transition: color 320ms ease, transform 320ms ease;
  text-transform: uppercase;
}

.journey-stage.is-active .stage-number {
  transform: scale(1.25);
}

.journey-stage.is-active .stage-label {
  color: #5943df;
  transform: scale(1.08);
}

.journey-stages h3 {
  font-size: 25px;
}

.journey-stages p:last-child {
  color: var(--muted);
}

.site-value {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 76px 92px;
  padding: 112px max(28px, calc((100% - var(--max)) / 2));
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.site-value-copy h2 {
  color: var(--white);
  font-size: clamp(46px, 4vw, 54px);
  letter-spacing: -0.02em;
}

.site-value-copy > p:not(.kicker) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cyan);
  font-weight: 760;
  text-decoration: none;
}

.site-value-media {
  align-self: center;
}

.site-value-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}

.site-value-media p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.site-value-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
}

.site-value-points div {
  min-height: 170px;
  padding: 26px 28px 0 0;
  border-right: 1px solid var(--line-light);
}

.site-value-points div + div {
  padding-left: 28px;
}

.site-value-points div:last-child {
  border-right: 0;
}

.site-value-points span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.site-value-points p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.seasonal-refresh {
  position: relative;
  grid-column: 1 / -1;
  min-height: clamp(320px, 32vw, 460px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  isolation: isolate;
}

.seasonal-refresh video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seasonal-refresh::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 15, 34, 0.9) 0%, rgba(2, 15, 34, 0.65) 40%, rgba(2, 15, 34, 0.08) 76%);
  content: "";
  pointer-events: none;
}

.seasonal-refresh-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(540px, 58%);
  min-height: inherit;
  padding: clamp(32px, 5vw, 64px);
}

.seasonal-refresh-copy h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 52px);
}

.seasonal-refresh-copy > p:not(.kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.collaboration {
  background: var(--white);
}

.collaboration-heading {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 96px;
  align-items: start;
}

.collaboration-heading h2 {
  margin-bottom: 0;
}

@media (min-width: 1081px) {
  .collaboration-heading h2 {
    font-size: 52px;
    letter-spacing: -0.015em;
  }

  .collaboration-heading > p {
    margin-top: 38px;
  }
}

.collaboration-heading p {
  color: var(--muted);
  font-size: 18px;
}

.collaboration-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 5vw, 80px);
  margin-top: 68px;
  padding: 42px 48px 46px;
  background: linear-gradient(118deg, var(--navy-deep) 0%, #0d2441 100%);
  color: var(--white);
}

.collaboration-principles article {
  position: relative;
  min-height: 0;
  padding: 24px 0 0;
}

.collaboration-principles article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--orange);
  content: "";
}

.collaboration-principles article:nth-child(2)::before {
  background: var(--cyan);
}

.collaboration-principles article:nth-child(3)::before {
  background: var(--violet);
}

.collaboration-principles h3 {
  color: var(--white);
}

.collaboration-principles p {
  max-width: 330px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(140px, 0.3fr) minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
  margin-top: 70px;
}

.process-heading .kicker {
  margin: 0;
}

.process-heading h3 {
  margin: 0;
  font-size: 28px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  min-height: 230px;
  padding: 26px 24px 0 0;
  border-right: 1px solid var(--line);
}

.process-list li + li {
  padding-left: 24px;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  display: block;
  margin-bottom: 34px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.process-list h3 {
  font-size: 20px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.inclusion {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(350px, 0.68fr);
  gap: 100px;
  align-items: center;
  padding: 100px max(28px, calc((100% - var(--max)) / 2));
  background: var(--ice);
}

.inclusion-copy p:not(.kicker) {
  color: var(--muted);
  font-size: 18px;
}

.inclusion-formats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.inclusion-formats div {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  min-height: 188px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.inclusion-formats span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.inclusion-formats strong {
  font-size: 18px;
}

.inclusion-formats p {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.watch {
  display: grid;
  grid-template-columns: minmax(300px, 0.6fr) minmax(0, 1fr);
  gap: 110px;
  align-items: center;
  padding: 112px max(28px, calc((100% - var(--max)) / 2));
  background: linear-gradient(145deg, #1b3b63 0%, #102a4c 48%, #07162d 100%);
  color: var(--white);
}

.watch-phone {
  justify-self: center;
  width: min(100%, 390px);
}

.watch-phone video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 9px solid #050b17;
  border-radius: 34px;
  background: #050b17;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.watch-copy h2 {
  color: var(--white);
  font-size: 66px;
}

.watch-copy > p:not(.kicker) {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.watch-copy .button {
  margin-top: 18px;
}

.studio {
  background: var(--paper);
}

.studio-brand {
  display: block;
  width: min(100%, 310px);
  margin: 0 0 34px;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.studio-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.studio-brand:hover,
.studio-brand:focus-visible {
  opacity: 0.78;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
  align-items: end;
  background: linear-gradient(135deg, #ff8a2a 0%, #ff9e2a 58%, #ffc845 135%);
  color: var(--navy-deep);
}

.contact .kicker {
  color: var(--navy-deep);
}

.contact h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: 64px;
}

.contact p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 18px;
}

.contact-actions {
  display: grid;
  justify-items: end;
  gap: 18px;
}

.button-dark {
  min-width: 230px;
  background: var(--navy-deep);
  color: var(--white);
}

.button-dark:hover {
  box-shadow: 0 10px 28px rgba(7, 22, 45, 0.34);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 6px 0;
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 50px;
  padding: 32px max(28px, calc((100% - var(--max)) / 2));
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.footer-reveal {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}

.footer-studio {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-studio span {
  white-space: nowrap;
}

.footer-studio img {
  display: block;
  width: 180px;
  height: auto;
  opacity: 0.88;
}

.footer-studio:hover,
.footer-studio:focus-visible {
  color: #fff;
}

.footer-studio:hover img,
.footer-studio:focus-visible img {
  opacity: 1;
}

.footer-legal {
  white-space: nowrap;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-meta a,
.footer-cookie-settings {
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer-meta a:hover,
.footer-meta a:focus-visible,
.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible {
  color: var(--white);
  text-decoration-color: currentColor;
}

.analytics-consent {
  position: fixed;
  right: 20px;
  bottom: max(20px, env(safe-area-inset-bottom));
  left: 20px;
  z-index: 300;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(calc(100% - 40px), 980px);
  padding: 20px 22px;
  margin: 0 auto;
  border: 1px solid rgba(15, 28, 52, 0.16);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(3, 10, 22, 0.3);
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent p {
  margin: 0;
}

.analytics-consent-title {
  margin-bottom: 3px !important;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
}

.analytics-consent div > p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 14px;
}

.analytics-consent div > p:last-child a {
  color: var(--navy);
  font-weight: 700;
  text-underline-offset: 3px;
}

.analytics-consent-actions {
  display: flex;
  gap: 10px;
}

.analytics-consent-actions .button {
  min-width: 160px;
  white-space: nowrap;
}

.analytics-consent-reject {
  border-color: rgba(15, 28, 52, 0.3);
  background: var(--white);
  color: var(--navy);
}

.analytics-consent-reject:hover {
  border-color: var(--navy);
  box-shadow: 0 10px 28px rgba(15, 28, 52, 0.14);
}

.privacy-page {
  background: var(--white);
}

.privacy-header {
  background: rgba(7, 22, 45, 0.98);
}

.privacy-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.privacy-nav a {
  text-decoration: none;
}

.privacy-nav a:hover,
.privacy-nav a:focus-visible {
  color: var(--white);
}

.privacy-nav-contact {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
}

.privacy-hero {
  padding: calc(var(--header-height) + 92px) max(28px, calc((100% - var(--max)) / 2)) 92px;
  background:
    linear-gradient(115deg, rgba(34, 185, 244, 0.1), transparent 42%),
    var(--navy-deep);
  color: var(--white);
}

.privacy-hero-inner {
  max-width: 770px;
}

.privacy-hero .kicker {
  color: var(--orange);
}

.privacy-hero h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(64px, 8vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.privacy-hero-inner > p:not(.kicker):not(.privacy-updated) {
  max-width: 680px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 22px;
}

.privacy-updated {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 760px);
  gap: 90px;
  justify-content: center;
  padding: 92px max(28px, calc((100% - var(--max)) / 2)) 120px;
}

.privacy-summary {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 28px;
  border-top: 4px solid var(--orange);
  background: var(--ice);
}

.privacy-summary .kicker {
  margin-bottom: 18px;
}

.privacy-summary ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.privacy-summary li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.privacy-summary li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.privacy-content section {
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 46px;
}

.privacy-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}

.privacy-content h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 38px;
  line-height: 1.08;
}

.privacy-content p,
.privacy-content li {
  color: var(--muted);
  font-size: 17px;
}

.privacy-content p:last-child {
  margin-bottom: 0;
}

.privacy-content a {
  color: #0877a5;
  font-weight: 700;
  text-underline-offset: 3px;
}

.privacy-table-wrap {
  overflow-x: auto;
  margin: 26px 0;
  border: 1px solid var(--line);
}

.privacy-content table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.privacy-content th,
.privacy-content td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.privacy-content tr:last-child td {
  border-bottom: 0;
}

.privacy-content th {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
}

.privacy-content td {
  min-width: 145px;
  color: var(--muted);
}

.privacy-content code {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.privacy-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.form-privacy {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-privacy a {
  color: var(--navy);
  font-weight: 700;
  text-underline-offset: 3px;
}

@media (max-width: 1080px) {
  .privacy-layout {
    grid-template-columns: minmax(0, 760px);
    gap: 54px;
  }

  .privacy-summary {
    position: static;
  }
}

@media (max-width: 700px) {
  .privacy-header {
    height: 72px;
  }

  .privacy-nav {
    gap: 16px;
  }

  .privacy-nav-contact {
    display: none;
  }

  .privacy-hero {
    padding-top: 138px;
    padding-bottom: 64px;
  }

  .privacy-hero h1 {
    font-size: clamp(56px, 17vw, 78px);
  }

  .privacy-hero-inner > p:not(.kicker):not(.privacy-updated) {
    font-size: 18px;
  }

  .privacy-layout {
    gap: 44px;
    padding-top: 54px;
    padding-bottom: 80px;
  }

  .privacy-summary {
    padding: 24px;
  }

  .privacy-content section {
    padding-bottom: 36px;
    margin-bottom: 36px;
  }

  .privacy-content h2 {
    font-size: 31px;
  }

  .privacy-content p,
  .privacy-content li {
    font-size: 16px;
  }
}

.watch-dialog {
  width: min(96vw, 1800px);
  height: 94vh;
  max-height: 1400px;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.watch-dialog::backdrop {
  background: rgba(3, 10, 22, 0.9);
  backdrop-filter: blur(10px);
}

.watch-dialog-shell {
  position: relative;
  width: fit-content;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
}

.watch-dialog video {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 94vh;
  border: 8px solid #050b17;
  border-radius: 28px;
  background: #050b17;
  object-fit: contain;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.6);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(7, 22, 45, 0.88);
  color: var(--white);
  font-size: 0;
  backdrop-filter: blur(8px);
}

.dialog-close::before,
.dialog-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}

.dialog-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.dialog-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-dialog {
  width: min(92vw, 780px);
  max-height: 92vh;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.46);
}

.contact-dialog::backdrop {
  background: rgba(3, 10, 22, 0.82);
  backdrop-filter: blur(8px);
}

.contact-dialog-panel {
  position: relative;
  padding: 54px;
}

.contact-dialog-panel > h2 {
  max-width: 620px;
  font-size: 48px;
}

.contact-dialog-panel > p:not(.kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.contact-dialog-close {
  top: 18px;
  right: 18px;
  background: var(--navy-deep);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-wide {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 740;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(15, 28, 52, 0.26);
  border-radius: 4px;
  background: #f8fafc;
  color: var(--ink);
  font: inherit;
}

.form-row textarea {
  min-height: 138px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(34, 185, 244, 0.18);
}

.contact-form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-form-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-form-status.is-error {
  color: #a33127;
  font-weight: 700;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-success-dialog {
  width: min(92vw, 600px);
}

.contact-success-panel {
  display: grid;
  gap: 20px;
  text-align: left;
}

.contact-success-panel h2 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(38px, 6vw, 58px);
  line-height: 0.98;
}

.contact-success-panel > p:not(.kicker) {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-success-panel .button-dark {
  justify-self: center;
  min-width: 140px;
  margin-top: 8px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  h2 {
    font-size: 48px;
  }

  .hero h1 {
    font-size: 76px;
  }

  .opening-grid,
  .studio-grid,
  .journey-heading,
  .collaboration-heading,
  .inclusion,
  .watch {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .experience-index,
  .site-value-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-tab:nth-child(2) {
    border-right: 0;
  }

  .experience-tab:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .experience-tab {
    min-height: 146px;
  }

  .site-value {
    grid-template-columns: 1fr;
  }

  .site-value-points {
    grid-column: auto;
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-list li:nth-child(3) {
    border-right: 0;
  }

  .process-list li:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .watch-phone {
    width: min(100%, 350px);
  }

  .watch-copy {
    text-align: center;
  }

  .watch-copy > p:not(.kicker) {
    margin-left: auto;
    margin-right: auto;
  }

  .contact {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-actions {
    justify-items: start;
  }
}

@media (max-width: 800px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 28px;
    background: rgba(7, 22, 45, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a,
  .site-nav button {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 16px;
    text-align: left;
  }

  .site-nav .nav-contact {
    margin-top: 12px;
    padding: 13px 0;
    border: 0;
    border-radius: 0;
    color: var(--cyan);
  }

  .hero {
    height: 88svh;
    min-height: 620px;
  }

  .hero-content {
    width: calc(100% - 40px);
    padding-top: 20px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-summary {
    max-width: 560px;
    font-size: 17px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 22, 45, 0.9), rgba(7, 22, 45, 0.4)),
      linear-gradient(0deg, rgba(7, 22, 45, 0.86), transparent 60%);
  }

  .hero-foot {
    left: 20px;
    right: 20px;
    grid-template-columns: 1fr auto;
  }

  .hero-foot p:nth-child(2) {
    display: none;
  }

  .experience-gallery {
    grid-template-columns: 1fr;
  }

  .collaboration-principles {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px 34px;
  }

  .collaboration-principles article {
    min-height: 0;
  }

  .feature-wide,
  .feature-offset {
    min-height: 430px;
  }

  .feature-tall {
    grid-row: auto;
    min-height: 680px;
  }

  .feature-tall .feature-media video {
    object-position: center 20%;
  }

  .journey-stages {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .journey-stage,
  .journey-stage + .journey-stage {
    min-height: auto;
    padding: 24px 0 30px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .journey-stage::before,
  .journey-stage + .journey-stage::before {
    top: -5px;
    left: 0;
  }

  .journey-stage.is-active {
    padding-right: 18px;
    padding-left: 18px;
  }

  .journey-showcase {
    margin-top: 48px;
  }

  .site-value-points {
    grid-template-columns: 1fr;
  }

  .site-value-points div,
  .site-value-points div + div {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .site-value-points div:last-child {
    border-bottom: 0;
  }

  .site-value-points span {
    margin-bottom: 12px;
  }

  .seasonal-refresh {
    min-height: 430px;
  }

  .seasonal-refresh::after {
    background: linear-gradient(0deg, rgba(2, 15, 34, 0.94) 0%, rgba(2, 15, 34, 0.62) 48%, rgba(2, 15, 34, 0.06) 100%);
  }

  .seasonal-refresh-copy {
    width: 100%;
    padding: 28px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-list li,
  .process-list li + li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    min-height: auto;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .process-list li:first-child {
    border-top: 0;
  }

  .process-list span {
    margin-bottom: 0;
  }

  .watch-copy h2,
  .contact h2 {
    font-size: 50px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-reveal {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-studio {
    width: fit-content;
  }
}

@media (max-width: 560px) {
  h2 {
    font-size: 38px;
    line-height: 1.06;
  }

  h3 {
    font-size: 22px;
  }

  .footer-studio {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-studio img {
    width: 160px;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .analytics-consent {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    grid-template-columns: 1fr;
    gap: 16px;
    width: calc(100% - 24px);
    padding: 18px;
  }

  .analytics-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .analytics-consent-actions .button {
    min-width: 0;
    padding-inline: 12px;
  }

  .brand-name {
    font-size: 15px;
  }

  .hero {
    height: 86svh;
    min-height: 600px;
  }

  .hero-media video {
    object-position: center center;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-tagline {
    font-size: 22px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .opening,
  .journey,
  .collaboration,
  .studio,
  .contact,
  .site-value,
  .inclusion,
  .watch {
    padding: 76px 20px;
  }

  .opening-grid,
  .studio-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .opening-copy,
  .studio-copy,
  .journey-heading > p,
  .collaboration-heading p,
  .inclusion-copy p:not(.kicker),
  .site-value-copy > p:not(.kicker),
  .watch-copy > p:not(.kicker),
  .contact p:last-child {
    font-size: 16px;
  }

  .experience-index {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 48px;
  }

  .experience-tab {
    min-height: 132px;
    padding: 18px;
  }

  .experience-tab:nth-child(2n) {
    border-right: 0;
  }

  .experience-tab:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .experience-tab > span {
    margin-bottom: 10px;
  }

  .experience-tab small {
    display: none;
  }

  .experience-tab:last-child {
    border-bottom: 0;
  }

  .experience-gallery {
    gap: 10px;
    padding: 10px;
  }

  .feature-wide,
  .feature-offset {
    min-height: 390px;
  }

  .feature-tall {
    min-height: 590px;
  }

  .feature-caption {
    left: 22px;
    right: 22px;
    bottom: 20px;
  }

  .feature-caption h3 {
    font-size: 28px;
  }

  .feature-caption span {
    font-size: 14px;
  }

  .journey-stages {
    margin-top: 48px;
  }

  .collaboration-principles {
    margin-top: 48px;
  }

  .collaboration-principles article {
    padding: 24px 0 0;
  }

  .watch-phone {
    width: min(88%, 330px);
  }

  .journey-visual-label {
    display: grid;
    gap: 4px;
    padding: 48px 18px 17px;
  }

  .journey-visual-label span {
    font-size: 12px;
    line-height: 1.15;
  }

  .journey-visual-label strong {
    max-width: 26ch;
    font-size: 16px;
    line-height: 1.18;
  }

  .journey-visual {
    aspect-ratio: 3 / 2;
  }

  .inclusion-formats {
    grid-template-columns: 1fr;
  }

  .inclusion-formats div {
    min-height: 0;
  }

  .watch-copy h2,
  .contact h2 {
    font-size: 42px;
  }

  .contact-link {
    font-size: 15px;
  }

  .watch-dialog {
    width: 100vw;
    height: 100svh;
    max-height: none;
  }

  .watch-dialog video {
    max-height: 100svh;
    border-width: 0;
    border-radius: 0;
  }

  .contact-dialog {
    width: calc(100% - 24px);
    scroll-padding-block: 24px;
    overscroll-behavior: contain;
  }

  .contact-dialog-panel {
    padding: 48px 24px 28px;
  }

  .contact-dialog-panel > h2 {
    font-size: 38px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-row-wide {
    grid-column: auto;
  }

  .contact-form-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@keyframes journey-progress-vertical {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

@media (min-width: 801px) {
  .journey-showcase {
    display: grid;
    grid-template-areas: "stages visual";
    grid-template-columns: minmax(320px, 0.8fr) minmax(480px, 1.2fr);
    width: min(100%, 1120px);
    border-radius: 6px;
    box-shadow: 0 24px 58px rgba(15, 28, 52, 0.1);
  }

  .journey-visual {
    grid-area: visual;
    aspect-ratio: 1;
    border-radius: 0 6px 6px 0;
  }

  .journey-stages {
    grid-area: stages;
    grid-template-columns: 1fr;
    margin: 0;
    border-top: 0;
    background: rgba(255, 255, 255, 0.44);
  }

  .journey-stage,
  .journey-stage + .journey-stage {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-content: center;
    min-height: 0;
    padding: 22px 26px;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .journey-stage:last-child {
    padding-right: 26px;
    border-bottom: 0;
  }

  .journey-stage::before,
  .journey-stage + .journey-stage::before {
    display: none;
  }

  .journey-stage::after {
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: 3px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top;
  }

  .journey-stage.is-active {
    z-index: 1;
    box-shadow: 12px 0 34px rgba(15, 28, 52, 0.1);
    transform: translateX(8px);
  }

  .journey-stage.is-active::after {
    animation: journey-progress-vertical var(--journey-duration, 8s) linear forwards;
  }

  .journey-stage:first-child .stage-number {
    margin-left: 0;
  }

  .stage-label {
    margin-bottom: 12px;
  }

  .journey-stages h3 {
    margin-bottom: 10px;
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

  .journey-stage {
    transition:
      background-color 320ms ease,
      box-shadow 320ms ease,
      transform 320ms ease !important;
  }
}
