:root {
  --magus-black: #050507;
  --magus-black-soft: #0e0d12;
  --magus-ink: #111015;
  --magus-paper: #f3f1f6;
  --magus-lilac: #d9d4e6;
  --magus-lilac-deep: #87809e;
  --magus-violet: #655d80;
  --magus-line-dark: rgba(17, 16, 21, 0.18);
  --magus-line-light: rgba(255, 255, 255, 0.22);
}

body.magus-case {
  background: var(--magus-paper);
  color: var(--magus-ink);
}

.magus-case figure,
.magus-case blockquote,
.magus-case h1,
.magus-case h2,
.magus-case h3,
.magus-case p,
.magus-case dl {
  margin-top: 0;
}

.magus-case figure,
.magus-case blockquote,
.magus-case dl {
  margin-inline: 0;
}

.magus-case .shell {
  width: min(calc(100% - (2 * var(--gutter))), 1680px);
  margin-inline: auto;
  padding-inline: 0;
}

.case-section {
  padding-block: clamp(96px, 9vw, 172px);
}

.case-section h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(68px, 8.2vw, 156px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.case-section h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.magus-case .eyebrow {
  margin-bottom: 24px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 800ms cubic-bezier(0.2, 0.75, 0.15, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Hero */

.magus-hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  isolation: isolate;
  background: var(--magus-black);
  color: #fff;
}

.magus-hero__film,
.magus-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.magus-hero__film {
  z-index: -3;
  object-fit: cover;
  object-position: 50% 50%;
  background: var(--magus-black);
}

.magus-hero__shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(4, 4, 6, 0.55), transparent 25%, transparent 62%, rgba(4, 4, 6, 0.82)),
    linear-gradient(90deg, rgba(4, 4, 6, 0.48), transparent 50%, rgba(4, 4, 6, 0.12));
  pointer-events: none;
}

.magus-hero__copy {
  position: absolute;
  top: clamp(48px, 6vh, 86px);
  left: var(--gutter);
  z-index: 2;
  width: min(72vw, 1180px);
  transform: none;
  transition: opacity 900ms ease, transform 1100ms cubic-bezier(0.2, 0.75, 0.15, 1), filter 900ms ease;
}

.magus-hero.is-copy-hidden .magus-hero__copy {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(-18px);
  pointer-events: none;
}

.magus-hero__eyebrow {
  margin-bottom: clamp(20px, 2.4vw, 36px);
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(10px, 0.78vw, 14px);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.magus-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(150px, 24vw, 430px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.68;
  text-shadow: 0 8px 54px rgba(0, 0, 0, 0.38);
}

.magus-case .magus-hero__lead {
  max-width: 660px;
  margin: clamp(140px, 14vh, 210px) 0 0;
  font-size: clamp(21px, 2.1vw, 38px);
  line-height: 1.06;
}

.magus-hero__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.magus-hero__tags span {
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  font-size: 0.68rem;
}

.magus-hero__meta {
  position: absolute;
  top: 20px;
  right: var(--gutter);
  left: var(--gutter);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.magus-hero__sound {
  position: absolute;
  right: var(--gutter);
  bottom: 28px;
  z-index: 4;
  display: inline-flex;
  min-width: 142px;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(5, 5, 7, 0.42);
  color: #fff;
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.magus-hero__sound span {
  font-size: 11px;
}

.magus-hero__sound svg {
  display: block;
  width: 20px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  overflow: visible;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.sound-icon__speaker {
  fill: currentColor;
  stroke: none;
}

.sound-icon__wave,
.sound-icon__slash {
  transition: opacity 180ms ease;
}

.magus-hero__sound[aria-pressed="false"] .sound-icon__wave,
.magus-hero__sound[aria-pressed="true"] .sound-icon__slash {
  opacity: 0;
}

.magus-hero__sound[aria-pressed="false"] .sound-icon__slash,
.magus-hero__sound[aria-pressed="true"] .sound-icon__wave {
  opacity: 1;
}

.magus-hero__scroll {
  position: absolute;
  bottom: 34px;
  left: var(--gutter);
  z-index: 4;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  text-decoration: none;
}

.magus-hero__scroll span {
  font-size: 18px;
}

/* Sticky case navigation */

.case-index {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--magus-black);
  color: #fff;
}

.case-index a {
  display: flex;
  min-height: 58px;
  gap: 16px;
  align-items: center;
  padding: 10px clamp(12px, 1.6vw, 30px);
  border-right: 1px solid var(--magus-line-light);
  font-size: 0.75rem;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.case-index a:last-child {
  border-right: 0;
}

.case-index span {
  color: #b9aed8;
  font-size: 0.58rem;
}

.case-index a:is(:hover, :focus-visible),
.case-index a[aria-current="true"] {
  background: #17141f;
  color: #d9d0f1;
}

/* Context */

.case-intro {
  background: var(--magus-paper);
}

.case-intro__header {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 90px);
  align-items: start;
  margin-bottom: clamp(74px, 9vw, 146px);
}

.case-intro__header h2 {
  max-width: 1350px;
}

.case-intro__grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.45fr);
  gap: clamp(52px, 8vw, 160px);
  align-items: start;
  margin-bottom: clamp(72px, 8vw, 132px);
}

.case-intro__scope {
  border-top: 1px solid var(--magus-line-dark);
}

.case-intro__scope span {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--magus-line-dark);
  font-size: 14px;
}

.case-intro__copy {
  max-width: 970px;
  font-size: clamp(19px, 1.5vw, 27px);
  line-height: 1.38;
}

.case-intro__copy p {
  margin-bottom: 1.25em;
}

.case-intro__hero-media {
  background: transparent;
}

.case-intro__hero-media img {
  width: 100%;
  height: auto;
}

.magus-case figcaption {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding-top: 12px;
  color: rgba(17, 16, 21, 0.58);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

/* Photography */

.photography {
  background: var(--magus-black);
  color: #f7f4fb;
}

.photography__header {
  display: grid;
  grid-template-columns: minmax(140px, 0.22fr) minmax(420px, 1fr) minmax(310px, 0.56fr);
  gap: clamp(34px, 4.5vw, 82px);
  align-items: end;
  margin-bottom: clamp(84px, 10vw, 160px);
}

.photography__header > p:last-child {
  margin-bottom: 0;
  color: rgba(247, 244, 251, 0.68);
  font-size: 17px;
}

.photo-modes {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(22px, 2.5vw, 42px);
  margin-bottom: clamp(90px, 11vw, 180px);
}

.photo-mode {
  position: relative;
}

.photo-mode--precision {
  grid-column: 1 / span 4;
}

.photo-mode--atmosphere {
  grid-column: 5 / span 4;
  margin-top: clamp(90px, 10vw, 180px);
}

.photo-mode--status {
  grid-column: 9 / span 4;
  margin-top: clamp(24px, 3vw, 54px);
}

.photo-mode__number {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
}

.photo-mode figure {
  display: grid;
  aspect-ratio: 0.78;
  place-items: center;
  overflow: hidden;
  background: #0d0b12;
}

.photo-mode--precision figure {
  aspect-ratio: 1;
  background: #fff;
}

.photo-mode--precision .photo-mode__number {
  color: #555;
}

.photo-mode--atmosphere figure {
  background: #0b0910;
}

.photo-mode--status figure {
  background: #0a0910;
}

.photo-mode figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.photo-mode__copy {
  padding-top: 24px;
  border-top: 1px solid var(--magus-line-light);
}

.photo-mode__copy h3 {
  margin-bottom: 12px;
  font-size: clamp(44px, 4vw, 78px);
  line-height: 0.88;
}

.photo-mode__copy p {
  max-width: 410px;
  margin-bottom: 0;
  color: rgba(247, 244, 251, 0.62);
  font-size: 14px;
}

.photography__portrait {
  margin-bottom: clamp(88px, 10vw, 158px);
}

.photography__portrait img {
  width: 100%;
  height: auto;
}

.photography figcaption,
.film figcaption {
  color: rgba(255, 255, 255, 0.5);
}

.product-object {
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(0, 1.22fr);
  min-height: 660px;
  background: #e8e4ee;
  color: var(--magus-ink);
}

.product-object__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 3.2vw, 60px);
}

.product-object__copy h3 {
  max-width: 540px;
  margin-bottom: 24px;
  font-size: clamp(58px, 6vw, 112px);
  line-height: 0.86;
}

.product-object__copy h3 span {
  white-space: nowrap;
}

.product-object__copy > p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(17, 16, 21, 0.64);
  font-size: 15px;
}

.product-object figure {
  display: grid;
  min-height: 660px;
  padding: clamp(30px, 4vw, 72px);
  place-items: center;
}

.product-object figure img {
  width: min(88%, 860px);
  max-height: 600px;
  object-fit: contain;
}

@media (min-width: 1181px) {
  .product-object figure {
    position: relative;
    height: 744px;
  }

  .product-object figure img {
    position: absolute;
    top: -0.67px;
    left: 19.467px;
    width: 985.862px;
    height: 763.14px;
    max-width: none;
    max-height: none;
  }
}

/* Brochure */

.brochure {
  background: var(--magus-lilac);
}

.brochure__header,
.film__header,
.set-design__header {
  display: grid;
  grid-template-columns: minmax(140px, 0.22fr) minmax(420px, 1fr) minmax(310px, 0.58fr);
  gap: clamp(34px, 4.5vw, 82px);
  align-items: end;
  margin-bottom: clamp(84px, 9vw, 150px);
}

.brochure__header > div,
.film__header > div,
.set-design__header > div {
  color: rgba(17, 16, 21, 0.64);
  font-size: 16px;
}

.brochure__header > div p:last-child,
.film__header > div p:last-child,
.set-design__header > div p:last-child {
  margin-bottom: 0;
}

.brochure__grid img {
  width: 100%;
  height: auto;
}

.brochure__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.68fr 0.68fr;
  gap: clamp(20px, 2vw, 32px);
  align-items: end;
}

.brochure__grid figure {
  margin: 0;
}

/* Film */

.film {
  background: var(--magus-black);
  color: #fff;
}

.film__header > div {
  color: rgba(255, 255, 255, 0.62);
}

.film__player {
  background: #000;
}

.film__player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: contain;
}

.film__player figcaption {
  padding: 12px 2px 0;
}

.jingle-story {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(64px, 9vw, 156px);
  align-items: center;
  margin-top: clamp(110px, 12vw, 210px);
  padding-top: clamp(68px, 7vw, 118px);
  border-top: 1px solid var(--magus-line-light);
}

.jingle-story__copy h3 {
  max-width: 690px;
  margin: 0 0 32px;
  font-size: clamp(54px, 5.7vw, 108px);
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.jingle-story__copy > p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
}

.jingle-story__copy .text-link {
  display: inline-block;
  margin-top: 18px;
  color: #fff;
}

.jingle-story__media {
  width: min(100%, 600px);
  margin: 0;
  justify-self: end;
}

.jingle-story__media video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  object-fit: contain;
}

.jingle-story__media figcaption {
  padding: 12px 2px 0;
}

/* Set design and full review */

.set-design {
  background: var(--magus-paper);
}

.set-design__process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 52px);
  width: min(84%, 1040px);
  margin-bottom: clamp(110px, 12vw, 210px);
  margin-inline: auto;
}

.set-design__process figure:nth-child(2) {
  margin-top: clamp(70px, 8vw, 130px);
}

.set-design__process img {
  width: 100%;
  height: auto;
}

.set-design__process .set-design__overview {
  grid-column: 1 / -1;
  width: min(52%, 560px);
  margin: clamp(36px, 4vw, 64px) auto 0;
}

.review {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(50px, 7vw, 120px);
  align-items: end;
  padding-top: clamp(64px, 7vw, 110px);
  border-top: 1px solid var(--magus-line-dark);
}

.review__copy h3 {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(58px, 6.2vw, 116px);
  line-height: 0.86;
}

.review__copy > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(17, 16, 21, 0.65);
  font-size: 15px;
}

.review__copy dl {
  margin-top: 48px;
  border-top: 1px solid var(--magus-line-dark);
}

.review__copy dl div {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--magus-line-dark);
  font-size: 12px;
}

.review__copy dt {
  color: rgba(17, 16, 21, 0.5);
}

.review__copy dd {
  margin: 0;
}

.review__player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #08070a;
}

.review__player video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.review__player button {
  position: absolute;
  inset: 0;
  display: grid;
  padding: 34px;
  border: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(4, 4, 6, 0.72));
  color: #fff;
  cursor: pointer;
  grid-template-columns: 1fr auto;
  align-items: end;
  text-align: left;
}

.review__player button span {
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 76px);
  letter-spacing: -0.04em;
}

.review__player button i {
  display: grid;
  width: 68px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  place-items: center;
  font-style: normal;
}

.review__player.is-loaded button {
  display: none;
}

/* Result */

.result {
  background: var(--magus-violet);
  color: #fff;
}

.result__header {
  display: grid;
  grid-template-columns: minmax(140px, 0.22fr) minmax(0, 1fr);
  gap: clamp(34px, 4.5vw, 82px);
  align-items: start;
  margin-bottom: clamp(80px, 9vw, 150px);
}

.result__header h2 {
  max-width: 1400px;
}

.result__grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(72px, 10vw, 190px);
  margin-bottom: clamp(80px, 9vw, 150px);
}

.result__copy {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.4;
}

.result__copy p {
  margin-bottom: 1.25em;
}

.result__grid ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--magus-line-light);
  list-style: none;
}

.result__grid li {
  padding: 14px 0;
  border-bottom: 1px solid var(--magus-line-light);
  font-size: 14px;
}

.result__image img {
  width: 100%;
  height: auto;
}

.result figcaption {
  color: rgba(255, 255, 255, 0.56);
}

/* Credits, next case, contact */

.credits {
  background: var(--magus-paper);
}

.credits__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(420px, 0.65fr);
  gap: clamp(70px, 9vw, 170px);
  align-items: end;
}

.credits__grid h2 {
  max-width: 1050px;
}

.credits__list {
  border-top: 1px solid var(--magus-line-dark);
}

.credits__list article {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--magus-line-dark);
}

.credits__list strong {
  font-size: 13px;
}

.credits__list span {
  color: rgba(17, 16, 21, 0.64);
  font-size: 13px;
}

.credits__list small {
  display: block;
  margin-top: 18px;
  color: rgba(17, 16, 21, 0.5);
  font-size: 0.68rem;
}

.related {
  background: #fff;
}

.related__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(70px, 9vw, 170px);
  align-items: center;
}

.related__grid > div p:not(.eyebrow) {
  max-width: 560px;
}

.related__grid h2 {
  margin-bottom: 30px;
}

.related__cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a090d;
}

.related__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.related__cover span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  background: #fff;
  color: #08070a;
  font-size: 0.72rem;
}

.related__cover:hover img {
  transform: scale(1.025);
}

.case-contact {
  background: var(--magus-black);
}

.case-contact .gradient-text {
  background: linear-gradient(108deg, #d8d0ed, #fff 47%, #7e749c);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

@media (max-width: 1180px) {
  .photography__header,
  .brochure__header,
  .film__header,
  .set-design__header {
    grid-template-columns: 0.2fr 1fr;
  }

  .photography__header > p:last-child,
  .brochure__header > div,
  .film__header > div,
  .set-design__header > div {
    grid-column: 2;
  }

  .photo-mode--precision {
    grid-column: 1 / span 5;
  }

  .photo-mode--atmosphere {
    grid-column: 5 / span 5;
  }

  .photo-mode--status {
    grid-column: 9 / span 4;
  }

  .credits__grid {
    grid-template-columns: 1fr 0.72fr;
  }
}

@media (max-width: 900px) {
  .case-section h2 {
    font-size: clamp(62px, 11vw, 104px);
  }

  .magus-hero h1 {
    font-size: clamp(138px, 24vw, 240px);
  }

  .product-object {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .review {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .result__grid {
    gap: 60px;
  }

  .related__grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 54px;
  }
}

@media (max-width: 760px) {
  .magus-case .shell {
    width: min(calc(100% - 32px), 1680px);
  }

  .case-section {
    padding-block: 84px;
  }

  .case-section h2 {
    font-size: clamp(52px, 16vw, 82px);
  }

  .magus-hero {
    min-height: min(780px, calc(100svh - var(--header-h)));
  }

  .magus-hero__film {
    object-position: 50% 50%;
  }

  .magus-hero__copy {
    top: auto;
    right: 18px;
    bottom: 110px;
    left: 18px;
    width: auto;
    transform: none;
  }

  .magus-hero.is-copy-hidden .magus-hero__copy {
    transform: translateY(12px);
  }

  .magus-hero h1 {
    font-size: clamp(104px, 33vw, 160px);
  }

  .magus-case .magus-hero__lead {
    max-width: 430px;
    margin-top: 24px;
    font-size: clamp(20px, 6vw, 28px);
  }

  .magus-hero__meta {
    right: 18px;
    left: 18px;
  }

  .magus-hero__sound {
    right: 18px;
    bottom: 22px;
  }

  .magus-hero__scroll {
    bottom: 29px;
    left: 18px;
  }

  .case-index {
    grid-auto-columns: minmax(138px, 1fr);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .case-index::-webkit-scrollbar {
    display: none;
  }

  .case-index a {
    min-height: 54px;
    white-space: nowrap;
  }

  .case-intro__header,
  .case-intro__grid,
  .photography__header,
  .brochure__header,
  .film__header,
  .set-design__header,
  .result__header,
  .result__grid,
  .credits__grid,
  .related__grid,
  .review,
  .jingle-story,
  .product-object {
    grid-template-columns: 1fr;
  }

  .case-intro__header,
  .photography__header,
  .brochure__header,
  .film__header,
  .set-design__header,
  .result__header {
    gap: 28px;
    margin-bottom: 64px;
  }

  .photography__header > p:last-child,
  .brochure__header > div,
  .film__header > div,
  .set-design__header > div {
    grid-column: auto;
  }

  .case-intro__grid {
    gap: 44px;
    margin-bottom: 64px;
  }

  .photo-modes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .photo-mode--precision,
  .photo-mode--atmosphere,
  .photo-mode--status {
    grid-column: auto;
    margin-top: 0;
  }

  .photo-mode figure {
    aspect-ratio: 0.84;
  }

  .product-object__copy {
    padding: 38px 24px 44px;
    border-right: 0;
    border-bottom: 1px solid var(--magus-line-dark);
  }

  .product-object figure,
  .product-object {
    min-height: 0;
  }

  .product-object figure {
    padding: 34px 18px 42px;
  }

  .brochure__grid,
  .set-design__process {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .brochure__grid figure {
    width: 100%;
  }

  .set-design__process figure:nth-child(2) {
    margin-top: 0;
  }

  .set-design__process .set-design__overview {
    grid-column: auto;
    width: 100%;
    margin-top: 0;
  }

  .review {
    gap: 60px;
  }

  .jingle-story {
    gap: 58px;
    margin-top: 96px;
    padding-top: 64px;
  }

  .jingle-story__media {
    width: min(100%, 520px);
    justify-self: center;
  }

  .review__copy dl {
    margin-top: 36px;
  }

  .review__player button {
    padding: 22px;
  }

  .review__player button i {
    width: 54px;
  }

  .result__grid {
    gap: 52px;
  }

  .credits__grid,
  .related__grid {
    gap: 64px;
  }

  .credits__list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .magus-hero__eyebrow {
    max-width: 290px;
    line-height: 1.35;
  }

  .magus-hero h1 {
    font-size: 32vw;
  }

  .magus-hero__tags span:nth-last-child(-n + 2) {
    display: none;
  }

  .magus-hero__sound {
    min-width: 126px;
  }

  .case-intro__copy {
    font-size: 18px;
  }

  .magus-case figcaption {
    display: block;
  }

  .magus-case figcaption span {
    display: block;
    margin-bottom: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .magus-hero__film {
    display: none;
  }

  .magus-hero {
    background: #050507 url("/ru-v1-case-magus-v1/assets/hero-microscope.webp") center / cover no-repeat;
  }

  .magus-hero__copy,
  .magus-hero.is-copy-hidden .magus-hero__copy,
  [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .magus-hero__sound {
    display: none;
  }
}

html.is-static .magus-hero__film {
  display: none;
}

html.is-static .magus-hero {
  background: #050507 url("/ru-v1-case-magus-v1/assets/hero-microscope.webp") center / cover no-repeat;
}

html.is-static .magus-hero__copy {
  opacity: 1;
  filter: none;
  transform: none;
}

html.is-static .magus-hero__sound {
  display: none;
}
