:root {
  --ink: #20211f;
  --paper: #f4f3ef;
  --paper-deep: #e8e3d9;
  --forest: #286346;
  --forest-dark: #163b2c;
  --gold: #e7b955;
  --rose: #c77979;
  --line: rgba(32, 33, 31, 0.2);
  --sans: "Manrope", Arial, sans-serif;
  --display: "Forum", Georgia, serif;
  --page: min(1320px, calc(100vw - 64px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 7%, rgba(255, 255, 255, 0.95), transparent 24rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, ol, figure { margin: 0; }

section[id] { scroll-margin-top: 92px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.skip-link:focus { transform: none; }

.scroll-progress {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: calc(var(--scroll, 0) * 1%);
  background: #286346;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--page);
  min-height: 54px;
  padding: 8px clamp(22px, 2.4vw, 34px);
  border: 1px solid rgba(32, 33, 31, 0.13);
  border-radius: 999px;
  background: rgba(244, 243, 239, 0.78);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.site-header nav {
  display: flex;
  gap: 28px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-header nav a { transition: opacity 180ms ease; }
.site-header nav a:hover { opacity: 0.48; }

.studio-mark {
  display: inline-flex;
  align-items: center;
  width: max-content;
  transition: opacity 180ms ease;
}

.studio-mark img { width: 112px; height: auto; }
.studio-mark:hover { opacity: 0.5; }

.header-note {
  justify-self: end;
  padding-right: 8px;
  color: rgba(32, 33, 31, 0.55);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 5vw, 88px);
  align-items: center;
  width: var(--page);
  min-height: 100svh;
  margin: 0 auto;
  padding: 120px 0 64px;
}

.eyebrow,
.hero__foot,
.card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: rgba(32, 33, 31, 0.64);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.hero__brand {
  position: relative;
  z-index: 2;
  margin: clamp(32px, 6vh, 76px) 0;
}

.hero__brand img {
  width: min(100%, 580px);
  margin: 0 auto;
  filter: brightness(0) saturate(100%);
}

.hero__foot {
  display: block;
  padding-top: 0;
  border-top: 0;
}

.hero__foot p {
  max-width: 540px;
  color: var(--ink);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  text-transform: none;
  letter-spacing: 0;
}

.hero__visual {
  position: relative;
  display: grid;
  justify-items: center;
  width: 100%;
}

.hero__circle {
  position: relative;
  display: grid;
  place-items: center;
  width: min(49vw, 710px);
  aspect-ratio: 1;
}

.hero__circle img {
  position: relative;
  z-index: 1;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.hero__orbit {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(32, 33, 31, 0.28);
  border-radius: 50%;
}

.hero__visual figcaption,
.idea__image figcaption,
.app-shot figcaption {
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__visual figcaption { margin-top: 20px; }

.section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: var(--page);
  margin: 0 auto;
  padding: clamp(110px, 13vw, 190px) 0;
}

.idea {
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  grid-template-areas:
    "copy image";
  column-gap: clamp(24px, 3.2vw, 48px);
  align-items: start;
  padding-bottom: clamp(32px, 4vw, 64px);
}

.idea__copy { grid-area: copy; }
.idea__image { grid-area: image; }

.lead,
.light-label {
  display: block;
  margin-bottom: 20px;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.idea h2,
.section-heading h2,
.applications h2,
.finale h2,
.modules h2,
.wayfinding h2,
.reset-band h2 {
  max-width: 1060px;
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 94px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.two-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 900px;
  margin-top: 48px;
}

.idea__subtitle {
  max-width: 760px;
  margin-top: 28px;
  color: rgba(32, 33, 31, 0.66);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.3;
}

.idea h2 { font-size: clamp(48px, 3.75vw, 61px); }

.idea .two-copy {
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 520px;
  margin-top: 42px;
}

.two-copy p,
.applications__head > p,
.finale__copy > p,
.modules__copy > p {
  font-size: clamp(1rem, 1.25vw, 1.24rem);
}

.idea__image {
  position: relative;
  width: 100%;
  margin: 0;
}

.idea__image img {
  height: clamp(640px, 72vh, 820px);
  border-radius: 999px 999px 24px 24px;
  object-fit: cover;
}

.idea__image figcaption { text-align: right; }

.reset-band {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 72px;
  min-height: clamp(620px, 68vh, 760px);
  padding: clamp(90px, 12vw, 170px) max(32px, calc((100vw - 1320px) / 2));
  color: var(--paper);
  background: var(--forest-dark);
  overflow: hidden;
}

.reset-band__copy,
.reset-steps { position: relative; z-index: 2; align-self: center; }
.reset-band h2 { max-width: 850px; }
.light-label { color: rgba(244, 243, 239, 0.68); }

.reset-steps {
  display: grid;
  gap: 0;
  padding: 0;
  list-style: none;
}

.reset-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 20px 0;
  font-size: 1.02rem;
}

.reset-steps li + li { border-top: 1px solid rgba(244, 243, 239, 0.28); }

.reset-steps span { color: rgba(244, 243, 239, 0.46); font-size: 0.7rem; }

.system {
  grid-template-areas:
    "heading"
    "grid";
  row-gap: 56px;
}

.section-heading { grid-area: heading; }
.system-grid { grid-area: grid; }

.system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.system-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 520px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.42);
}

.system-card > p {
  max-width: 460px;
  margin: 0;
  padding-top: 24px;
  color: rgba(32, 33, 31, 0.68);
}

.logo-card img {
  align-self: center;
  justify-self: center;
  width: 78%;
  margin: 0;
  filter: brightness(0) saturate(100%);
}

.palette {
  display: flex;
  align-self: center;
  justify-self: stretch;
  align-items: stretch;
  width: 100%;
  height: 230px;
  margin: 0;
}

.palette i {
  position: relative;
  flex: 1;
  background: var(--swatch);
  transition: flex 260ms ease;
}

.palette i:first-child { border-radius: 18px 0 0 18px; border: 1px solid var(--line); }
.palette i:last-child { border-radius: 0 18px 18px 0; }
.palette i:hover { flex: 1.9; }

.palette b {
  position: absolute;
  left: 12px;
  bottom: 14px;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  transform: rotate(-90deg) translateY(100%);
  transform-origin: left bottom;
}

.palette i:nth-child(4) b,
.palette i:nth-child(5) b { color: white; }

.type-card { grid-template-rows: auto 1fr 1fr; }
.type-sample { display: flex; flex-direction: column; justify-content: center; padding: 24px 0; }
.type-sample + .type-sample { border-top: 1px solid var(--line); }
.type-sample span { display: block; font-family: var(--display); font-size: clamp(72px, 8vw, 118px); line-height: 0.9; }
.type-sample strong { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.09em; }
.type-sample--sans span { font-family: "Geologica", var(--sans); font-size: clamp(56px, 6.4vw, 94px); font-weight: 500; letter-spacing: -0.05em; }
.type-sample--sans strong { font-family: "Geologica", var(--sans); }

.relief-card {
  color: #dedbd3;
  background: #e7e4dc;
  border-color: rgba(255,255,255,.8);
  box-shadow: inset 1px 1px 0 white, inset -1px -1px 0 rgba(0,0,0,.07);
}

.relief-card .card-head,
.relief-card > p { color: rgba(77, 76, 70, 0.54); }

.embossed-word {
  align-self: center;
  justify-self: center;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(80px, 10vw, 150px);
  line-height: 1;
  color: #e7e4dc;
  text-shadow: -2px -2px 2px rgba(255,255,255,.85), 2px 2px 3px rgba(80,75,65,.28);
}

.modules {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 50vw;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(96px, 12vw, 172px) 0 clamp(96px, 12vw, 172px) max(32px, calc((100vw - 1320px) / 2));
  background: #e8dfcf;
}

.modules__copy { padding-right: 0; }
.modules h2 {
  max-width: none;
  font-size: clamp(49px, 4.4vw, 88px);
  white-space: normal;
}
.modules__copy > p { max-width: 560px; margin-top: 36px; }
.modules .light-label { color: rgba(32, 33, 31, 0.58); }
.modules__image {
  display: grid;
  place-items: center;
  min-height: clamp(320px, 28vw, 520px);
  padding: 26px clamp(32px, 4vw, 74px);
  border-radius: 999px 0 0 999px;
  background: rgba(255,255,255,.82);
  overflow: hidden;
}
.modules__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.guardians {
  grid-template-areas:
    "heading"
    "content";
  row-gap: 56px;
}

.guardians__heading { grid-area: heading; }
.guardians__grid { grid-area: content; }

.guardians__subtitle {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(32, 33, 31, 0.64);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.35;
}

.guardians__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}

.guardians__media {
  display: grid;
  gap: 24px;
}

.guardians__characters {
  min-height: clamp(800px, 64vw, 920px);
  padding: 38px;
  border-radius: 28px;
  background: #fff;
}

.guardians__characters img { height: 100%; object-fit: contain; mix-blend-mode: multiply; }

.guardians__stone { align-self: start; }
.guardians__stone-crop { height: 420px; border-radius: 28px; overflow: hidden; }
.guardians__stone img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.25);
  transform: scale(1.14);
  transform-origin: 50% 30%;
}

.guardian-notes {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 0;
  align-self: start;
  margin-top: 0;
}

.guardian-notes p {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.guardian-notes p + p { border-top: 1px solid var(--line); }

.guardian-notes span { color: rgba(32, 33, 31, 0.58); text-align: right; }

.wayfinding {
  padding: clamp(100px, 12vw, 180px) max(32px, calc((100vw - 1320px) / 2));
  color: var(--paper);
  background: var(--forest);
}

.wayfinding__head {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
  margin-bottom: 72px;
}

.wayfinding__head h2 { max-width: 920px; }
.wayfinding__head > p {
  max-width: 540px;
  color: rgba(244, 243, 239, .72);
  font-size: clamp(1rem, 1.25vw, 1.24rem);
}

.wayfinding__visual img {
  aspect-ratio: 16 / 8.8;
  border-radius: 30px;
  object-fit: cover;
}

.wayfinding__visual figcaption {
  margin-top: 12px;
  color: rgba(244, 243, 239, .58);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.wayfinding__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
}

.wayfinding__details article {
  display: grid;
  grid-template-columns: 22px 1fr;
  column-gap: 12px;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(244, 243, 239, .23);
  border-radius: 24px;
  background: rgba(244, 243, 239, .06);
}

.wayfinding__details article > span {
  grid-row: 1 / 3;
  color: rgba(244, 243, 239, .5);
  font-size: .7rem;
}

.wayfinding__details h3 {
  align-self: start;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.wayfinding__details p {
  align-self: end;
  max-width: 520px;
  margin: 34px 0 0;
  color: rgba(244, 243, 239, .68);
}

.wayfinding__detail--pictograms {
  grid-column: 1 / -1;
  grid-template-columns: 22px minmax(240px, .68fr) minmax(0, 1.32fr) !important;
  grid-template-rows: auto 1fr;
  column-gap: 12px !important;
  min-height: 300px !important;
}

.wayfinding__detail--pictograms > span { grid-column: 1; grid-row: 1 / 3; }
.wayfinding__detail--pictograms h3 { grid-column: 2; grid-row: 1; }
.wayfinding__detail--pictograms > p {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  margin-bottom: 0;
}

.pictogram-strip {
  position: relative;
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: end;
  width: 100%;
  height: auto;
  aspect-ratio: 3467 / 850;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.pictogram-strip img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-42.72%);
}

.applications {
  padding: clamp(100px, 12vw, 180px) max(32px, calc((100vw - 1320px) / 2));
  color: var(--paper);
  background: var(--ink);
}

.applications__head {
  display: grid;
  grid-template-columns: 1.5fr .5fr;
  column-gap: 70px;
  margin-bottom: 80px;
}

.applications__head .light-label,
.applications__head h2 { grid-column: 1; }
.applications__head > p { grid-column: 2; grid-row: 1 / 3; align-self: end; color: rgba(244,243,239,.65); }

.application-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.application-column {
  display: grid;
  gap: 18px;
  align-content: start;
}

.app-shot { align-self: start; }
.app-shot__media {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.app-shot img { height: 530px; border-radius: 0; object-fit: cover; }
.app-shot--tall img { height: 760px; }
.app-shot--portrait img { height: 760px; object-position: center 24%; }
.app-shot--wide { grid-column: 1 / -1; }
.app-shot--wide img { height: 650px; object-position: center 42%; }
.app-shot figcaption { color: rgba(244,243,239,.56); }

.has-parallax .app-shot__media img {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.08);
  transform-origin: center;
  will-change: transform;
}

.finale {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(46px, 8vw, 120px);
  align-items: center;
  min-height: 100svh;
  padding: clamp(100px, 12vw, 180px) max(32px, calc((100vw - 1320px) / 2));
  background: #e8e5de;
}

.finale__visual img {
  aspect-ratio: 4 / 5;
  border-radius: 50% 50% 24px 24px;
  object-fit: cover;
}

.finale .light-label { color: rgba(32,33,31,.54); }
.finale__copy > p { max-width: 620px; margin-top: 40px; color: rgba(32,33,31,.68); }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  width: var(--page);
  min-height: 78px;
  margin: 0 auto;
  padding: 24px 0;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.footer-mark { display: inline-flex; align-items: center; width: max-content; }
.footer-mark img { width: 34px; height: 24px; object-fit: contain; }
.seo-name { color: rgba(32,33,31,.48); line-height: 1.3; text-align: center; }
footer > a:last-child { justify-self: end; }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

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

@media (max-width: 1600px) and (min-width: 981px) {
  .wayfinding__detail--pictograms {
    grid-template-columns: 22px minmax(0, 1fr) !important;
    grid-template-rows: auto auto auto;
    min-height: 0 !important;
  }

  .wayfinding__detail--pictograms > span { grid-column: 1; grid-row: 1 / 3; }
  .wayfinding__detail--pictograms h3 { grid-column: 2; grid-row: 1; }
  .wayfinding__detail--pictograms > p {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    max-width: 760px;
    margin-top: 24px;
  }

  .wayfinding__detail--pictograms .pictogram-strip {
    grid-column: 2;
    grid-row: 3;
    margin-top: 32px;
  }
}

@media (max-width: 980px) {
  :root { --page: min(100% - 36px, 760px); }
  .site-header { grid-template-columns: auto 1fr; }
  .site-header nav { justify-self: end; gap: 16px; }
  .header-note { display: none; }

  .hero { grid-template-columns: 1fr; padding-top: 130px; }
  .hero__brand img { width: min(82vw, 590px); }
  .hero__visual { margin-top: 30px; }
  .hero__circle { width: min(84vw, 650px); }

  .section { grid-template-columns: 1fr; }
  .idea {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "image";
  }
  .system { grid-template-areas: "heading" "grid"; }
  .guardians { grid-template-areas: "heading" "content"; }
  .idea, .system, .guardians { row-gap: 54px; }
  .idea .two-copy { grid-template-columns: 1fr 1fr; gap: 28px; max-width: 900px; }
  .idea h2 { font-size: clamp(44px, 6vw, 94px); }
  .idea__image img { height: min(75vw, 900px); }
  .reset-band, .modules, .finale { grid-template-columns: 1fr; }
  .modules { padding-right: max(32px, calc((100vw - 1320px) / 2)); }
  .modules__copy { padding-right: 0; }
  .modules h2 { white-space: normal; }
  .modules__image { min-height: 0; border-radius: 999px; }
  .reset-band { min-height: 760px; }
  .system-grid { grid-template-columns: 1fr; }
  .system-card { min-height: 480px; }
  .guardians__grid { grid-template-columns: 1fr; }
  .guardians__characters { min-height: 620px; }
  .guardian-notes { position: static; margin-top: 0; }
  .wayfinding__head { grid-template-columns: 1fr; }
  .applications__head { grid-template-columns: 1fr; }
  .applications__head > p { grid-column: 1; grid-row: auto; max-width: 600px; margin-top: 34px; }
  .application-grid { grid-template-columns: 1fr; }
  .application-column { gap: 44px; }
  .app-shot--wide { grid-column: 1; }
  .app-shot img, .app-shot--tall img, .app-shot--portrait img, .app-shot--wide img { height: auto; max-height: 760px; }
  .finale__visual img { max-height: 720px; }
}

@media (max-width: 640px) {
  :root { --page: calc(100vw - 28px); }
  body { font-size: 15px; }
  .site-header { top: 10px; min-height: 48px; }
  .site-header nav { gap: 12px; font-size: .64rem; }
  .site-header { padding-right: 16px; padding-left: 16px; }
  .studio-mark img { width: 92px; }
  .hero { min-height: auto; padding: 112px 0 90px; }
  .eyebrow { align-items: start; }
  .hero__brand { margin: 42px 0; }
  .hero__brand img { width: min(82vw, 500px); }
  .hero__foot { align-items: start; }
  .hero__index { display: none; }
  .hero__circle { width: 92vw; }
  .hero__visual figcaption { text-align: center; }

  .section { grid-template-columns: 1fr; padding: 104px 0; }
  .idea { grid-template-areas: "copy" "image"; }
  .idea { padding-bottom: 28px; }
  .system { grid-template-areas: "heading" "grid"; }
  .guardians { grid-template-areas: "heading" "content"; }
  .idea h2, .section-heading h2, .applications h2, .finale h2, .modules h2, .wayfinding h2, .reset-band h2 { font-size: clamp(41px, 12.75vw, 65px); }
  .two-copy { grid-template-columns: 1fr; gap: 20px; margin-top: 36px; }
  .idea__image img { height: 125vw; }

  .reset-band, .modules, .wayfinding, .applications, .finale { padding-left: 18px; padding-right: 18px; }
  .reset-band { min-height: 700px; gap: 58px; }
  .reset-band__copy, .reset-steps { align-self: end; }
  .system-card { min-height: 420px; padding: 20px; }
  .palette { height: 190px; }
  .modules { gap: 48px; }
  .modules__image { margin: 0; border-radius: 16px; }
  .guardians__characters { min-height: 490px; padding: 18px; }
  .guardians__stone-crop { height: 280px; }
  .guardian-notes p { align-items: baseline; }
  .wayfinding__head { margin-bottom: 44px; }
  .wayfinding__visual img { aspect-ratio: 4 / 5; object-position: 51% center; }
  .wayfinding__details { grid-template-columns: 1fr; margin-top: 36px; }
  .wayfinding__details article { min-height: 240px; padding: 22px; }
  .wayfinding__detail--pictograms {
    grid-column: 1;
    grid-template-columns: 22px 1fr !important;
    grid-template-rows: auto auto auto;
    column-gap: 12px !important;
    min-height: 0 !important;
  }
  .wayfinding__detail--pictograms > span { grid-column: 1; grid-row: 1 / 3; }
  .wayfinding__detail--pictograms h3 { grid-column: 2; grid-row: 1; }
  .wayfinding__detail--pictograms > p { grid-column: 2; grid-row: 2; }
  .pictogram-strip { grid-column: 2; grid-row: 3; width: 100%; height: auto; margin-top: 26px; }
  .applications__head { margin-bottom: 54px; }
  .application-grid { gap: 44px; }
  .app-shot img { border-radius: 16px; }
  .finale { min-height: auto; }
  .finale__visual { order: 2; }
  .finale__visual img { border-radius: 24px; }
  footer { grid-template-columns: 1fr auto; }
  footer span:nth-child(2) { display: none; }
}

@media (max-width: 380px) {
  .site-header { grid-template-columns: 1fr; }
  .site-header nav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .has-parallax .app-shot__media img { transform: none; will-change: auto; }
}
