:root {
  --ink: #151614;
  --paper: #f2efe8;
  --white: #fff;
  --stone: #aaa49a;
  --muted: #68645e;
  --line: rgba(21, 22, 20, 0.18);
  --oxide: #c33c2d;
  --header-h: 76px;
  --page: clamp(20px, 3.8vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", "Nimbus Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; width: 100%; }
::selection { color: var(--white); background: var(--oxide); }

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 10px 14px;
  color: var(--white); background: var(--ink); transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.loader {
  position: fixed; inset: 0; z-index: 999; display: grid; grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto; gap: 20px; padding: var(--page); color: var(--paper);
  background: var(--ink); transition: transform 0.9s var(--ease), visibility 0s 0.9s;
}
.loader.is-done { transform: translateY(-101%); visibility: hidden; }
.loader__mark { align-self: center; font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 600; letter-spacing: -0.07em; }
.loader__mark span, .wordmark span { color: var(--oxide); }
.loader__line { grid-column: 1 / -1; height: 1px; overflow: hidden; background: rgba(255,255,255,.2); }
.loader__line i { display: block; width: 100%; height: 100%; background: var(--oxide); transform: scaleX(0); transform-origin: left; animation: load 1.15s var(--ease) forwards; }
.loader__count { align-self: center; font: 11px/1 "Nimbus Mono PS", monospace; }
@keyframes load { to { transform: scaleX(1); } }

.scroll-progress { position: fixed; z-index: 90; top: 0; left: 0; right: 0; height: 2px; pointer-events: none; }
.scroll-progress i { display: block; width: 100%; height: 100%; background: var(--oxide); transform: scaleX(0); transform-origin: left; }

.site-header {
  position: fixed; z-index: 100; top: 0; left: 0; right: 0; height: var(--header-h);
  display: grid; grid-template-columns: 1fr auto 1fr auto; align-items: center; gap: 34px;
  padding: 0 var(--page); color: var(--white); mix-blend-mode: difference;
}
.wordmark { display: inline-flex; width: max-content; font-size: 24px; font-weight: 600; line-height: 1; letter-spacing: -0.06em; }
.desktop-nav { display: flex; gap: 28px; }
.desktop-nav a, .header-meta, .menu-toggle {
  font-size: 11px; line-height: 1; text-transform: uppercase; letter-spacing: .04em;
}
.desktop-nav a, .menu-toggle { position: relative; }
.desktop-nav a::after, .menu-toggle::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease);
}
.desktop-nav a:hover::after, .menu-toggle:hover::after { transform: scaleX(1); transform-origin: left; }
.header-meta { justify-self: end; }
.menu-toggle { display: flex; align-items: center; gap: 10px; border: 0; padding: 0; background: none; cursor: pointer; }
.menu-toggle i { width: 7px; height: 7px; border-radius: 50%; background: var(--oxide); transition: transform .4s var(--ease); }
.menu-toggle[aria-expanded="true"] i { transform: scale(1.8); }

.menu-panel {
  position: fixed; z-index: 95; inset: 0; display: grid; grid-template-rows: auto 1fr auto;
  padding: calc(var(--header-h) + 36px) var(--page) 36px; color: var(--paper); background: var(--ink);
  transform: translateY(-101%); visibility: hidden; transition: transform .8s var(--ease), visibility 0s .8s;
}
.menu-panel.is-open { transform: none; visibility: visible; transition-delay: 0s; }
.menu-panel__index, .menu-panel__foot { font: 11px/1.2 "Nimbus Mono PS", monospace; text-transform: uppercase; }
.menu-panel nav { align-self: center; display: flex; flex-direction: column; }
.menu-panel nav a { display: flex; align-items: baseline; gap: 24px; padding: 8px 0; font-size: clamp(3rem, 8vw, 7rem); font-weight: 400; line-height: .95; letter-spacing: -.055em; }
.menu-panel nav a span { width: 30px; font: 10px/1 "Nimbus Mono PS", monospace; color: var(--oxide); letter-spacing: 0; }
.menu-panel__foot { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.2); }

.hero { position: relative; min-height: 100svh; color: var(--white); overflow: hidden; background: #7898a6; }
.hero__media, .hero__veil { position: absolute; inset: 0; }
.hero__media { height: 112%; top: -6%; background: #292a27; }
.hero__slide { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center 46%; opacity: 0; transform: scale(1.075); transition: opacity 1.2s ease, transform 7s var(--ease); }
.hero__slide.is-active { z-index: 1; opacity: 1; transform: scale(1.025); }
.hero__slide:nth-child(2) { object-position: center; }
.hero__slide:nth-child(3) { object-position: center 32%; }
.hero__slide:nth-child(4) { object-position: center 54%; }
.hero__veil { background: linear-gradient(90deg, rgba(4,8,9,.56) 0%, rgba(4,8,9,.08) 54%, rgba(4,8,9,.18) 100%), linear-gradient(0deg, rgba(7,9,8,.42), transparent 45%); }
.hero__content { position: relative; z-index: 2; min-height: 100svh; padding: calc(var(--header-h) + 50px) var(--page) 44px; display: flex; flex-direction: column; align-items: flex-start; }
.hero__eyebrow, .section-index, .work-teasers__head, .project-card__top, .contact__eyebrow {
  font: 10px/1.25 "Nimbus Mono PS", "Courier New", monospace; text-transform: uppercase; letter-spacing: .025em;
}
.hero__title { max-width: 10.8ch; margin: 42px 0 0; font-size: clamp(3.35rem, 5.6vw, 5.4rem); font-weight: 500; line-height: .94; letter-spacing: -.055em; text-wrap: balance; }
.hero__brief { margin-top: 28px; max-width: 360px; }
.hero__brief p { margin: 0 0 12px; font-size: 14px; line-height: 1.25; }
.hero__brief span { font: 10px/1 "Nimbus Mono PS", monospace; text-transform: uppercase; }
.scroll-cue { position: absolute; z-index: 3; left: var(--page); bottom: 35px; display: flex; align-items: center; gap: 14px; font: 9px/1 "Nimbus Mono PS", monospace; text-transform: uppercase; }
.scroll-cue i { display: block; width: 46px; height: 1px; background: currentColor; position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; width: 16px; height: 1px; background: var(--oxide); animation: cue 1.7s ease-in-out infinite; }
@keyframes cue { from { transform: translateX(-18px); } to { transform: translateX(50px); } }

.work-teasers { position: absolute; z-index: 3; right: var(--page); bottom: 34px; width: min(620px, 48vw); display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.work-teasers__head { grid-column: 1 / -1; display: flex; justify-content: space-between; margin-bottom: 3px; }
.work-teasers :is(button, a) { position: relative; height: 86px; overflow: hidden; border: 0; padding: 0; color: var(--white); background: var(--ink); cursor: pointer; text-align: left; }
.work-teasers img { height: 100%; object-fit: cover; opacity: .58; filter: saturate(.72); transition: transform .8s var(--ease), opacity .4s, filter .4s; }
.work-teasers :is(button, a):hover img, .work-teasers :is(button, a):focus-visible img, .work-teasers :is(button, a).is-active img { transform: scale(1.05); opacity: 1; filter: saturate(1); }
.work-teasers :is(button, a) span { position: absolute; z-index: 2; left: 8px; bottom: 8px; font-size: 9px; text-transform: uppercase; text-shadow: 0 1px 10px rgba(0,0,0,.8); }
.work-teasers :is(button, a) i { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; height: 2px; background: rgba(255,255,255,.35); transform-origin: left; }
.work-teasers :is(button, a).is-active i { background: var(--oxide); animation: hero-progress 6s linear forwards; }
@keyframes hero-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.grid-field { background-image: repeating-linear-gradient(90deg, transparent 0, transparent calc(8.333% - 1px), rgba(21,22,20,.07) calc(8.333% - 1px), rgba(21,22,20,.07) 8.333%); background-size: calc(100% - 2 * var(--page)) 100%; background-position: var(--page) 0; background-repeat: no-repeat; }
.manifesto { position: relative; min-height: 100svh; padding: 80px var(--page) 54px; display: grid; grid-template-columns: 2fr 8fr 2fr; grid-template-rows: auto 1fr auto; border-bottom: 1px solid var(--line); }
.section-index { display: flex; gap: 34px; align-items: flex-start; }
.section-index span:first-child { color: var(--oxide); }
.manifesto > .section-index { grid-column: 1 / 3; }
.manifesto__statement { grid-column: 4 / 12; align-self: center; position: relative; padding: 60px 0 80px; }
.accent-dot { position: absolute; top: 25px; left: 51%; width: 10px; height: 10px; border-radius: 50%; background: var(--oxide); }
.manifesto h2 { max-width: 820px; margin: 0; font-size: clamp(2.45rem, 4.8vw, 5rem); font-weight: 500; line-height: .98; letter-spacing: -.055em; text-wrap: balance; }
.manifesto__statement p { max-width: 600px; margin: 34px 0 26px; font-size: clamp(1.1rem, 1.8vw, 1.65rem); line-height: 1.15; letter-spacing: -.02em; }
.text-link { display: inline-flex; gap: 24px; align-items: center; padding-bottom: 4px; border-bottom: 1px solid; font-size: 13px; }
.text-link span { color: var(--oxide); }
.manifesto__facts { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.manifesto__facts div { min-height: 86px; padding: 18px 24px 0 0; display: flex; flex-direction: column; gap: 10px; border-right: 1px solid var(--line); }
.manifesto__facts div + div { padding-left: 24px; }
.manifesto__facts div:last-child { border-right: 0; }
.manifesto__facts span { font: 9px/1 "Nimbus Mono PS", monospace; color: var(--muted); text-transform: uppercase; }
.manifesto__facts b { font-size: 14px; font-weight: 500; }

.projects { padding: 110px var(--page) 180px; background: #e7e4dd; }
.projects__header { display: grid; grid-template-columns: 2fr 7fr 3fr; align-items: end; margin-bottom: 90px; }
.projects__header h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5.6rem); font-weight: 500; line-height: .93; letter-spacing: -.055em; }
.projects__header p { margin: 0; max-width: 260px; font-size: 14px; }
.project-stack { max-width: 1500px; margin: 0 auto; }
.project-card { position: sticky; top: 24px; height: calc(100svh - 48px); min-height: 620px; margin-bottom: 11vh; overflow: hidden; box-shadow: 0 20px 80px rgba(17,18,16,.12); transform-origin: center top; }
.project-card:nth-child(2) { top: 40px; }
.project-card:nth-child(3) { top: 56px; margin-bottom: 0; }
.project-card:nth-child(4) { top: 72px; margin-top: 11vh; margin-bottom: 0; }
.project-card__link { position: relative; display: block; width: 100%; height: 100%; color: var(--white); }
.project-card__media { position: absolute; inset: 0; overflow: hidden; }
.project-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.28), transparent 34%, rgba(0,0,0,.55)); }
.project-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.project-card:hover .project-card__media img { transform: scale(1.035); }
.project-card--red .project-card__media img { object-position: center; }
.project-card--blue .project-card__media img { object-position: center 32%; }
.project-card--dark .project-card__media img { object-position: center 54%; }
.project-card--orylis .project-card__media img { object-position: center 46%; }
.project-card__top, .project-card__bottom { position: absolute; z-index: 2; left: 0; right: 0; display: grid; grid-template-columns: 1fr 1fr 1fr; padding: 24px 28px; }
.project-card__top { top: 0; border-bottom: 1px solid rgba(255,255,255,.4); }
.project-card__top span:nth-child(2) { text-align: center; }
.project-card__top span:last-child { text-align: right; }
.project-card__bottom { bottom: 0; align-items: end; }
.project-card__bottom h3 { grid-column: 1 / 3; margin: 0; font-size: clamp(2.7rem, 5.2vw, 5.8rem); font-weight: 500; line-height: .9; letter-spacing: -.06em; }
.project-card__arrow { justify-self: end; display: grid; place-items: center; width: 62px; height: 62px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; font-size: 24px; transition: color .35s, background .35s, transform .35s var(--ease); }
.project-card:hover .project-card__arrow { color: var(--ink); background: var(--white); transform: rotate(45deg); }
.focus-frame { position: absolute; z-index: 1; left: 28%; top: 20%; width: 44%; height: 50%; border: 1px solid rgba(255,255,255,.75); backdrop-filter: contrast(1.08) saturate(1.08); }

.capabilities { padding: 110px var(--page) 150px; background: var(--paper); }
.capabilities > .section-index { margin-bottom: 54px; }
.capabilities__intro { display: grid; grid-template-columns: 2fr 1fr; align-items: end; gap: 30px; margin-bottom: 75px; }
.capabilities__intro h2 { max-width: 800px; margin: 0; font-size: clamp(2.8rem, 5vw, 5.6rem); font-weight: 500; line-height: .95; letter-spacing: -.055em; }
.capabilities__intro p { max-width: 310px; margin: 0; font-size: 14px; }
.capabilities__layout { display: grid; grid-template-columns: 7fr 5fr; gap: 7vw; align-items: start; }
.capability-list { border-top: 1px solid var(--line); }
.capability-row { width: 100%; display: grid; grid-template-columns: 44px 1fr auto 20px; gap: 16px; align-items: center; min-height: 83px; border: 0; border-bottom: 1px solid var(--line); padding: 0; text-align: left; background: none; cursor: pointer; transition: padding .35s var(--ease), color .35s; }
.capability-row span { font: 10px/1 "Nimbus Mono PS", monospace; color: var(--muted); }
.capability-row b { font-size: clamp(1.25rem, 2vw, 2rem); font-weight: 500; letter-spacing: -.025em; }
.capability-row em { font-style: normal; font-size: 11px; color: var(--muted); }
.capability-row i { font-style: normal; font-size: 18px; transition: transform .35s var(--ease); }
.capability-row:hover, .capability-row.is-active { padding-left: 10px; color: var(--oxide); }
.capability-row:hover i, .capability-row.is-active i { transform: rotate(45deg); }
.capability-preview { position: sticky; top: 100px; margin: 0; }
.capability-preview__frame { aspect-ratio: 4 / 3; overflow: hidden; background: #ddd8cf; }
.capability-preview img { width: 100%; height: 100%; object-fit: cover; transition: opacity .25s, transform .75s var(--ease); }
.capability-preview.is-changing img { opacity: 0; transform: scale(.98); }
.capability-preview figcaption { max-width: 420px; min-height: 60px; margin-top: 18px; font-size: 18px; line-height: 1.15; }

.method { padding: 100px var(--page) 0; color: var(--paper); background: var(--ink); }
.method .section-index { color: #c2bbb1; margin-bottom: 82px; }
.method__title { display: grid; grid-template-columns: 2fr 1fr; align-items: end; gap: 30px; padding-bottom: 70px; }
.method__title h2 { margin: 0; font-size: clamp(2.8rem, 5.2vw, 5.7rem); font-weight: 400; line-height: .94; letter-spacing: -.055em; }
.method__title p { max-width: 330px; margin: 0; color: #c8c1b7; font-size: 15px; }
.method__steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.25); }
.method__steps article { min-height: 390px; padding: 28px 40px 55px 0; border-right: 1px solid rgba(255,255,255,.25); display: flex; flex-direction: column; }
.method__steps article + article { padding-left: 40px; }
.method__steps article:last-child { border: 0; }
.method__steps span { font: 10px/1 "Nimbus Mono PS", monospace; color: var(--oxide); text-transform: uppercase; }
.method__steps h3 { max-width: 330px; margin: auto 0 18px; font-size: clamp(1.7rem, 2.6vw, 2.6rem); font-weight: 400; line-height: 1; letter-spacing: -.035em; }
.method__steps p { max-width: 320px; margin: 0; color: #bdb6ac; font-size: 14px; }

.studio { display: grid; grid-template-columns: 5fr 7fr; min-height: 100svh; background: var(--paper); }
.studio__media { position: relative; min-height: 760px; overflow: hidden; }
.studio__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.04); }
.studio__stamp { position: absolute; left: 22px; bottom: 22px; padding: 10px 12px; color: var(--paper); background: rgba(21,22,20,.88); font: 9px/1.35 "Nimbus Mono PS", monospace; text-transform: uppercase; }
.studio__content { padding: 85px var(--page) 55px; display: flex; flex-direction: column; }
.studio__content h2 { max-width: 800px; margin: auto 0 34px; font-size: clamp(2.8rem, 5vw, 5.5rem); font-weight: 500; line-height: .94; letter-spacing: -.055em; }
.studio__lead { max-width: 630px; margin: 0 0 60px; font-size: clamp(1.1rem, 1.8vw, 1.6rem); line-height: 1.15; }
.studio__roles { margin-top: auto; border-top: 1px solid var(--line); }
.studio__roles div { display: grid; grid-template-columns: 1fr 1.5fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.studio__roles span { font: 10px/1 "Nimbus Mono PS", monospace; color: var(--muted); text-transform: uppercase; }
.studio__roles b { font-size: 14px; font-weight: 500; }

.contact { padding: 140px var(--page); background: var(--paper); }
.contact__inner { min-height: 560px; padding: clamp(28px, 5vw, 72px); display: flex; flex-direction: column; color: var(--white); background: var(--ink); }
.contact__eyebrow { color: var(--oxide); }
.contact h2 { max-width: 1000px; margin: auto 0 45px; font-size: clamp(3rem, 6.4vw, 7rem); font-weight: 400; line-height: .91; letter-spacing: -.06em; text-wrap: balance; }
.contact a { display: inline-flex; align-items: center; justify-content: space-between; width: min(380px, 100%); padding: 13px 0; border-top: 1px solid rgba(255,255,255,.45); border-bottom: 1px solid rgba(255,255,255,.45); font-size: 18px; }
.contact a span { color: var(--oxide); transition: transform .35s var(--ease); }
.contact a:hover span { transform: rotate(45deg); }
.contact__meta { display: flex; justify-content: space-between; margin-top: 58px; font: 9px/1 "Nimbus Mono PS", monospace; color: #aaa39a; text-transform: uppercase; }

.site-footer { display: grid; grid-template-columns: 2fr 3fr 2fr 2fr; gap: 30px; align-items: start; padding: 40px var(--page) 70px; color: var(--paper); background: var(--ink); border-top: 1px solid rgba(255,255,255,.18); }
.wordmark--footer { font-size: 32px; }
.site-footer > div { display: flex; flex-direction: column; gap: 9px; font-size: 11px; }
.site-footer a:hover { color: var(--oxide); }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-meta { display: none; }
  .work-teasers { width: 50vw; }
  .manifesto { grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; }
  .manifesto__statement, .manifesto__facts, .manifesto > .section-index { grid-column: 1; }
  .manifesto__statement { padding: 110px 0; }
  .projects__header { grid-template-columns: 1fr 2fr; gap: 30px; }
  .projects__header > p { grid-column: 2; margin-top: 20px; }
  .capabilities__layout { grid-template-columns: 1fr; }
  .capability-preview { position: relative; top: 0; width: 70%; margin-left: auto; }
  .studio { grid-template-columns: 1fr 1.2fr; }
  .site-footer { grid-template-columns: 1.4fr 2fr 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --header-h: 64px; }
  .site-header { gap: 14px; }
  .hero__content { padding-top: 112px; }
  .hero__title { max-width: 9.6ch; margin-top: 34px; font-size: clamp(3.2rem, 14vw, 4.6rem); }
  .hero__brief { max-width: 270px; }
  .hero__slide:first-child { object-position: 58% center; }
  .work-teasers { display: none; }
  .scroll-cue { bottom: 25px; }

  .manifesto { min-height: auto; padding-top: 65px; }
  .manifesto__statement { padding: 130px 0 110px; }
  .accent-dot { top: 62px; }
  .manifesto__facts { grid-template-columns: 1fr; }
  .manifesto__facts div { border-right: 0; border-bottom: 1px solid var(--line); padding: 18px 0; }
  .manifesto__facts div + div { padding-left: 0; }

  .projects { padding-top: 75px; padding-bottom: 95px; }
  .projects__header { grid-template-columns: 1fr; margin-bottom: 55px; }
  .projects__header > p { grid-column: 1; }
  .project-card, .project-card:nth-child(2), .project-card:nth-child(3), .project-card:nth-child(4) { position: relative; top: auto; height: 78svh; min-height: 520px; margin: 0 0 18px; }
  .project-card__top { grid-template-columns: 1fr auto; padding: 16px; }
  .project-card__top span:nth-child(2) { display: none; }
  .project-card__bottom { padding: 20px 16px; }
  .project-card__bottom h3 { grid-column: 1 / -1; font-size: clamp(2.6rem, 12vw, 4rem); }
  .project-card__arrow { display: none; }

  .capabilities { padding-top: 75px; padding-bottom: 90px; }
  .capabilities__intro { grid-template-columns: 1fr; margin-bottom: 50px; }
  .capability-row { grid-template-columns: 32px 1fr 20px; min-height: 72px; }
  .capability-row em { display: none; }
  .capability-preview { width: 100%; margin-top: 34px; }

  .method { padding-top: 72px; }
  .method .section-index { margin-bottom: 70px; }
  .method__title { grid-template-columns: 1fr; padding-bottom: 55px; }
  .method__steps { grid-template-columns: 1fr; }
  .method__steps article, .method__steps article + article { min-height: 310px; padding: 28px 0 38px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
  .method__steps h3 { margin-top: auto; }

  .studio { grid-template-columns: 1fr; }
  .studio__media { min-height: 72svh; }
  .studio__content { min-height: 92svh; padding-top: 65px; }
  .studio__content h2 { margin-top: auto; }
  .studio__roles div { grid-template-columns: 1fr; gap: 8px; }

  .contact { padding: 80px var(--page); }
  .contact__inner { min-height: 72svh; }
  .contact__meta { flex-direction: column; gap: 10px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > .wordmark { grid-column: 1 / -1; margin-bottom: 28px; }
  .menu-panel__foot { flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero__media { transform: none !important; }
}
