:root {
  --ink: #151719;
  --ink-2: #202326;
  --ink-3: #303438;
  --muted: #64686b;
  --paper: #f7f5ee;
  --paper-2: #eeece5;
  --white: #ffffff;
  --yellow: #f5c400;
  --yellow-deep: #dbaa00;
  --line: rgba(21, 23, 25, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --font: "Manrope", "Inter", "Noto Sans", system-ui, sans-serif;
  --header-height: 88px;
  --page-gutter: clamp(1.25rem, 4vw, 5rem);
  --section-space: clamp(5rem, 9vw, 9rem);
  --radius: 10px;
}

/* Documents library */
.documents-hero {
  display: grid;
  min-height: 42rem;
  grid-template-columns: minmax(0, 1fr) minmax(32rem, 1fr);
  border-bottom: 1px solid var(--line);
}

.documents-hero__copy {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(4.5rem, 7vw, 7.5rem) var(--page-gutter);
}

.documents-hero__page-title {
  margin: 0 0 1.25rem;
  color: var(--yellow-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.documents-hero__copy h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(4.2rem, 7vw, 7.35rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.91;
}

.documents-hero__lead {
  max-width: 37rem;
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.65;
}

.documents-hero__button {
  width: auto;
  margin-top: 2rem;
  text-decoration: none;
}

.documents-hero__visual {
  display: grid;
  min-width: 0;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 6rem);
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #171717;
  background-size: 4rem 4rem;
  place-items: center;
}

.documents-hero__stack {
  position: relative;
  width: min(38rem, 92%);
  aspect-ratio: 16 / 11;
}

.documents-hero__sheet {
  position: absolute;
  width: 86%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #062446;
  box-shadow: 0 1.75rem 3.5rem rgba(0, 0, 0, 0.32);
  aspect-ratio: 16 / 9;
}

.documents-hero__sheet::after {
  position: absolute;
  inset: 0 0 0 auto;
  width: 4px;
  background: var(--yellow);
  content: "";
}

.documents-hero__sheet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.documents-hero__sheet--back {
  top: 26%;
  right: -2%;
  transform: rotate(5deg);
}

.documents-hero__sheet--middle {
  top: 14%;
  left: 8%;
  transform: rotate(-2.5deg);
}

.documents-hero__sheet--front {
  top: 0;
  left: 0;
  transform: rotate(2.25deg);
}

.documents-library {
  padding: clamp(5.5rem, 9vw, 9rem) var(--page-gutter);
  background: var(--paper);
}

.documents-library__inner {
  max-width: 80rem;
  margin: 0 auto;
}

.documents-library__header {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.35fr) minmax(20rem, 0.65fr);
  gap: 2rem clamp(3rem, 8vw, 8rem);
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.documents-library__number {
  margin: 0 0 1.4rem;
  color: var(--yellow-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.documents-library__number::before {
  display: inline-block;
  width: 1.75rem;
  height: 2px;
  margin-right: 0.75rem;
  background: var(--yellow);
  content: "";
  vertical-align: middle;
}

.documents-library__header h2 {
  margin: 0;
  font-size: clamp(3.6rem, 6vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.documents-library__header > p {
  max-width: 33rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.document-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(24rem, 0.88fr);
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.document-feature__cover,
.document-card__cover {
  display: block;
  min-width: 0;
  overflow: hidden;
  background: #062446;
  aspect-ratio: 16 / 9;
}

.document-feature__cover {
  margin: 2rem 2rem 2rem 0;
}

.document-feature__cover img,
.document-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.document-feature__cover:hover img,
.document-feature__cover:focus-visible img,
.document-card__cover:hover img,
.document-card__cover:focus-visible img {
  transform: scale(1.018);
}

.document-feature__content {
  display: flex;
  min-width: 0;
  justify-content: center;
  flex-direction: column;
  padding: clamp(2rem, 5vw, 4rem);
  border-left: 1px solid var(--line);
}

.document-index,
.document-category {
  margin: 0;
  text-transform: uppercase;
}

.document-index {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.document-category {
  margin-top: 1.5rem;
  color: var(--yellow-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.document-feature h3,
.document-card h3 {
  margin: 0.75rem 0 0;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.document-feature h3 {
  max-width: 15ch;
  font-size: clamp(2.25rem, 3.8vw, 4rem);
}

.document-feature h3 a,
.document-card h3 a {
  text-decoration: none;
}

.document-feature__content > p:not(.document-index, .document-category),
.document-card__content > p {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
}

.document-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: auto;
  padding-top: 2.25rem;
}

.document-action > span {
  color: var(--muted);
  font-size: 0.82rem;
}

.document-action a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.document-action a > span {
  display: grid;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--ink);
  font-size: 1.25rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  place-items: center;
}

.document-action a:hover > span,
.document-action a:focus-visible > span {
  background: var(--ink);
  color: var(--white);
  transform: translateX(3px);
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.document-card {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1.2fr) minmax(14rem, 0.8fr);
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.document-card:nth-child(odd) {
  padding-right: 2rem;
  border-right: 1px solid var(--line);
}

.document-card:nth-child(even) {
  padding-left: 2rem;
}

.document-card__content {
  display: flex;
  min-width: 0;
  justify-content: center;
  flex-direction: column;
  padding-left: 1.5rem;
}

.document-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.document-card__meta .document-category {
  margin-top: 0;
}

.document-card h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.document-card__content > p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.document-card .document-action {
  padding-top: 1.5rem;
}

@media (max-width: 1180px) {
  .documents-hero {
    grid-template-columns: minmax(0, 1fr) minmax(28rem, 0.9fr);
  }

  .documents-hero__copy h1 {
    font-size: clamp(3.9rem, 7vw, 5.5rem);
  }

  .document-feature {
    grid-template-columns: minmax(0, 1.1fr) minmax(21rem, 0.9fr);
  }

  .document-card {
    grid-template-columns: 1fr;
  }

  .document-card__content {
    min-height: 17rem;
    padding: 1.5rem 0 0;
  }
}

@media (max-width: 1040px) {
  .documents-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .documents-hero__copy {
    min-height: 34rem;
  }

  .documents-hero__visual {
    min-height: 34rem;
  }

  .documents-hero__stack {
    width: min(38rem, 82%);
  }

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

  .documents-library__header > p {
    max-width: 42rem;
  }
}

@media (max-width: 720px) {
  .documents-hero__copy {
    min-height: 34rem;
    padding-block: 4.5rem;
  }

  .documents-hero__copy h1 {
    font-size: clamp(3.35rem, 16vw, 4.7rem);
  }

  .documents-hero__lead {
    font-size: 1rem;
  }

  .documents-hero__button {
    width: 100%;
  }

  .documents-hero__visual {
    min-height: 22rem;
    padding: 2rem 1.25rem;
    background-size: 2.75rem 2.75rem;
  }

  .documents-hero__stack {
    width: min(22rem, 88%);
  }

  .documents-library {
    padding-block: 5rem;
  }

  .documents-library__header {
    margin-bottom: 3rem;
  }

  .documents-library__header h2 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .document-feature {
    grid-template-columns: 1fr;
  }

  .document-feature__cover {
    margin: 1.25rem 0 0;
  }

  .document-feature__content {
    padding: 2rem 0 2.5rem;
    border-left: 0;
  }

  .document-feature h3 {
    font-size: clamp(2.2rem, 10vw, 3.1rem);
  }

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

  .document-card,
  .document-card:nth-child(odd),
  .document-card:nth-child(even) {
    padding: 2rem 0;
    border-right: 0;
  }

  .document-card__content {
    min-height: 0;
  }

  .document-card__content > p {
    font-size: 0.92rem;
  }

  .document-card .document-action {
    padding-top: 2rem;
  }
}

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

html {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

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

.screen-reader-text:focus {
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  background: var(--yellow);
  color: var(--ink);
}

.grid-surface {
  background-color: var(--paper);
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(8.333% - 1px),
    rgba(21, 23, 25, 0.055) calc(8.333% - 1px),
    rgba(21, 23, 25, 0.055) 8.333%
  );
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  color: var(--yellow-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.75rem;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--yellow {
  background: var(--yellow);
  color: var(--ink);
}

.button--yellow:hover,
.button--yellow:focus-visible {
  background: #ffd225;
  color: var(--ink);
}

.button--outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.button--ink {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button--ink:hover,
.button--ink:focus-visible {
  background: var(--ink-3);
  color: var(--yellow);
}

.text-link {
  display: inline-flex;
  min-width: min(100%, 15rem);
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--yellow-deep);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 180ms ease, padding 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  padding-left: 0.35rem;
  color: var(--yellow-deep);
}

.text-link--light {
  border-color: var(--yellow);
  color: var(--white);
}

.text-link--light:hover,
.text-link--light:focus-visible {
  color: var(--yellow);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 238, 0.95);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 245, 238, 0.98);
  box-shadow: 0 8px 30px rgba(21, 23, 25, 0.07);
}

.site-header__inner {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3rem);
  padding-inline: var(--page-gutter);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.site-logo img {
  width: auto;
  height: 42px;
}

.site-logo__text,
.site-footer__wordmark {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.primary-nav {
  justify-self: end;
}

.primary-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav > ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.1vw, 2.2rem);
}

.primary-nav > ul > li {
  position: relative;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.primary-nav > ul > li > a {
  min-height: var(--header-height);
  border-bottom: 2px solid transparent;
}

.primary-nav > ul > li.current-menu-item > a,
.primary-nav > ul > li.current-menu-ancestor > a,
.primary-nav > ul > li > a:hover,
.primary-nav > ul > li > a:focus-visible {
  border-color: var(--yellow);
}

.primary-nav .menu-item--contact > a {
  min-height: 2.9rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--yellow);
  border-radius: 3px;
  background: var(--yellow);
}

.primary-nav .menu-item--contact > a:hover,
.primary-nav .menu-item--contact > a:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: -1.25rem;
  min-width: 20rem;
  padding: 1rem 0;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(21, 23, 25, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
}

.primary-nav .menu-item--company > .sub-menu {
  display: grid;
  width: min(42rem, calc(100vw - 3rem));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
}

@media (min-width: 1041px) {
  .primary-nav > ul > li:nth-last-child(-n + 2) > .sub-menu {
    right: 0;
    left: auto;
  }
}

.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
  visibility: visible;
}

.primary-nav .sub-menu > li > a {
  display: flex;
  min-height: 2.55rem;
  align-items: center;
  padding: 0.6rem 1.25rem;
  white-space: normal;
}

.primary-nav .sub-menu > li > a:hover,
.primary-nav .sub-menu > li > a:focus-visible {
  background: var(--yellow);
}

.primary-nav .sub-menu .sub-menu {
  position: static;
  min-width: 0;
  padding: 0 0 0.65rem;
  border: 0;
  box-shadow: none;
  opacity: 1;
  transform: none;
  visibility: inherit;
}

.primary-nav .sub-menu .sub-menu > li > a {
  min-height: 2rem;
  padding-block: 0.3rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.primary-nav .sub-menu > .menu-item--section-label > a {
  padding-top: 1rem;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  pointer-events: none;
  text-transform: uppercase;
}

.language-link {
  display: inline-grid;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: background 180ms ease, border-color 180ms ease;
}

.language-link:hover,
.language-link:focus-visible {
  border-color: var(--yellow);
  background: var(--yellow);
}

.nav-toggle,
.submenu-toggle,
.nav-backdrop {
  display: none;
}

.primary-nav__utility {
  display: none;
}

/* Hero */
.home-hero {
  display: grid;
  min-height: min(760px, calc(100svh - var(--header-height)));
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  border-bottom: 1px solid var(--line);
}

.home-hero__copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(4.5rem, 9vw, 8rem) var(--page-gutter);
}

.home-hero h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.home-hero__lead {
  max-width: 34rem;
  margin: 2rem 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.65vw, 1.3rem);
  line-height: 1.55;
}

.home-hero .button--yellow {
  min-width: 16rem;
}

.home-hero .button--outline {
  min-width: 12.5rem;
}

.home-hero__visual {
  position: relative;
  min-height: 42rem;
  align-self: stretch;
  overflow: hidden;
  background: var(--ink);
}

.home-hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 23, 25, 0.4), transparent 42%);
  content: "";
}

.home-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15);
}

.home-hero__frame {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.home-hero__frame--one {
  top: 15%;
  right: 7%;
  width: 68%;
  height: 56%;
}

.home-hero__frame--two {
  right: 28%;
  bottom: 7%;
  width: 48%;
  height: 38%;
}

.home-hero__signal {
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 7%;
  width: 34%;
  height: 29%;
  background: rgba(245, 196, 0, 0.82);
  mix-blend-mode: screen;
}

.home-hero__signal::before,
.home-hero__signal::after {
  position: absolute;
  background: var(--yellow);
  content: "";
}

.home-hero__signal::before {
  top: -9rem;
  left: 0;
  width: 1px;
  height: 9rem;
}

.home-hero__signal::after {
  top: 0;
  left: -17rem;
  width: 17rem;
  height: 1px;
}

/* Proof strip */
.proof-strip {
  display: grid;
  min-height: 8.75rem;
  grid-template-columns: 1.45fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem var(--page-gutter);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-strip p {
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 600;
}

.proof-strip ul {
  display: grid;
  grid-template-columns: repeat(3, auto);
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-strip li {
  padding: 0.25rem 1.1rem;
  border-left: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

/* Product */
.product-section {
  display: grid;
  min-height: 50rem;
  grid-template-columns: minmax(0, 1.75fr) minmax(22rem, 0.85fr);
  background: var(--ink);
  color: var(--white);
}

.product-showcase {
  display: grid;
  min-width: 0;
  align-content: center;
  padding: clamp(2rem, 4vw, 4.5rem);
  background:
    radial-gradient(circle at 86% 14%, rgba(245, 196, 0, 0.1), transparent 24rem),
    #151719;
}

.product-showcase__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.25rem;
}

.product-showcase__header > p {
  max-width: 12rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.product-showcase__tabs {
  display: flex;
  min-width: 0;
  border-bottom: 1px solid var(--line-light);
}

.product-showcase__tab {
  position: relative;
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease;
}

.product-showcase__tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: transparent;
  content: "";
}

.product-showcase__tab span {
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.product-showcase__tab:hover,
.product-showcase__tab:focus-visible,
.product-showcase__tab.is-active {
  color: var(--white);
}

.product-showcase__tab.is-active::after {
  background: var(--yellow);
}

.product-showcase__tab:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: -2px;
}

.product-showcase__role {
  min-width: 0;
}

.product-showcase__role[hidden] {
  display: none;
}

.product-showcase__screen-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.product-showcase__screen-tab {
  display: flex;
  min-width: 0;
  min-height: 3.25rem;
  align-items: center;
  gap: 0.6rem;
  justify-content: flex-start;
  padding: 0.7rem 0.9rem;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.52);
  font: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

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

.product-showcase__screen-tab span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.54rem;
  letter-spacing: 0.08em;
}

.product-showcase__screen-tab:hover,
.product-showcase__screen-tab:focus-visible,
.product-showcase__screen-tab.is-active {
  background: rgba(245, 196, 0, 0.1);
  color: var(--white);
}

.product-showcase__screen-tab.is-active span {
  color: var(--yellow);
}

.product-showcase__screen-tab:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: -2px;
}

.product-showcase__stage {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #202326;
  box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 0.3);
}

.product-showcase__panel {
  margin: 0;
}

.product-showcase__panel[hidden] {
  display: none;
}

.product-showcase__panel img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  background: #eef2f7;
}

.product-showcase__panel figcaption {
  display: grid;
  grid-template-columns: minmax(10rem, auto) minmax(0, 1fr);
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 1.15rem 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.product-showcase__panel figcaption strong {
  font-size: 0.8rem;
  font-weight: 700;
}

.product-showcase__panel figcaption span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  line-height: 1.55;
}

.product-section__copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(4rem, 7vw, 7rem) clamp(2rem, 5vw, 5rem);
  border-left: 1px solid var(--line);
  color: var(--ink);
}

.product-section__copy h2 {
  max-width: 8.6ch;
  margin: 0;
  font-size: clamp(2.65rem, 4.7vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.product-section__copy > p:not(.eyebrow) {
  max-width: 29rem;
  margin: 2rem 0 2.25rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Capabilities */
.capabilities-section {
  padding: var(--section-space) var(--page-gutter);
}

.section-heading {
  max-width: 68rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading h2,
.insights-section h2,
.archive-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-heading > p:not(.eyebrow) {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability {
  position: relative;
  display: grid;
  min-height: 14rem;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease, color 200ms ease;
}

.capability:hover,
.capability:focus-visible {
  background: var(--yellow);
  color: var(--ink);
}

.capability--strong {
  background: var(--ink);
  color: var(--white);
}

.capability--strong::after {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-top: 3px solid var(--yellow);
  border-right: 3px solid var(--yellow);
  content: "";
}

.capability__number {
  color: #c9c6bc;
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1;
}

.capability--strong .capability__number {
  color: rgba(255, 255, 255, 0.78);
}

.capability strong {
  max-width: 13rem;
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  font-weight: 600;
  line-height: 1.35;
}

.capability__arrow {
  position: absolute;
  right: 1.5rem;
  bottom: 1.25rem;
  font-size: 1.4rem;
}

/* Industry */
.industry-section {
  position: relative;
  display: grid;
  min-height: 50rem;
  grid-template-columns: 0.82fr 1.18fr;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background-color: var(--ink);
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(8.333% - 1px),
    rgba(255, 255, 255, 0.09) calc(8.333% - 1px),
    rgba(255, 255, 255, 0.09) 8.333%
  );
  color: var(--white);
}

.industry-section__copy {
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: var(--section-space) var(--page-gutter);
}

.industry-section__copy .eyebrow {
  color: var(--yellow);
}

.industry-section__copy h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.industry-section__copy > p:not(.eyebrow) {
  max-width: 31rem;
  margin: 2rem 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.05rem;
}

.industry-section__links {
  display: grid;
  width: min(100%, 20rem);
  gap: 0.75rem;
}

.industry-section__media {
  position: relative;
  min-height: 43rem;
  align-self: stretch;
  overflow: hidden;
}

.industry-section__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink), transparent 28%);
  content: "";
}

.industry-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.25) brightness(0.68);
}

.industry-section__plane {
  position: absolute;
  z-index: 2;
  right: 18%;
  bottom: 0;
  width: 19%;
  height: 69%;
  border: 1px solid var(--yellow);
  background: rgba(245, 196, 0, 0.46);
  mix-blend-mode: screen;
}

.industry-section__proof {
  z-index: 3;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
}

.industry-section__proof span {
  padding: 1.35rem var(--page-gutter);
  border-right: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  text-align: center;
}

/* Company */
.company-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 7vw, 7rem);
  padding: var(--section-space) var(--page-gutter);
}

.company-section__media {
  position: relative;
  min-height: 43rem;
}

.company-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12);
}

.company-section__media::before,
.company-section__media::after {
  position: absolute;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  content: "";
}

.company-section__media::before {
  top: -0.7rem;
  left: -0.7rem;
  border-top: 2px solid var(--yellow);
  border-left: 2px solid var(--yellow);
}

.company-section__media::after {
  right: -0.7rem;
  bottom: -0.7rem;
  border-right: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
}

.company-section__marker {
  position: absolute;
  z-index: 1;
  right: -1px;
  bottom: 0;
  width: 32%;
  height: 31%;
  background: rgba(245, 196, 0, 0.68);
  mix-blend-mode: screen;
}

.company-section__copy {
  align-self: center;
}

.company-section__copy h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 5.7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1;
}

.company-section__copy > p:not(.eyebrow):not(.company-section__proof) {
  max-width: 42rem;
  margin: 1.75rem 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.principles li {
  display: grid;
  min-height: 11rem;
  align-content: center;
  gap: 0.75rem;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
}

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

.principles span {
  color: #cbc8bf;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.principles strong {
  font-size: 0.9rem;
  line-height: 1.35;
}

.company-section__proof {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Insights */
.insights-section {
  padding: var(--section-space) var(--page-gutter);
  border-top: 1px solid var(--line);
}

.insights-section__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.insights-section__heading .text-link {
  flex: 0 0 auto;
}

.story-grid {
  display: grid;
  min-height: 43rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(18rem, 0.82fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem 2.5rem;
}

.story {
  min-width: 0;
}

.story--lead {
  display: grid;
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  grid-template-rows: minmax(24rem, 1fr) auto;
}

.story--side {
  display: grid;
  grid-column: 3;
  grid-template-columns: 0.85fr 1fr;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.story__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--paper-2);
}

.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
  transition: filter 300ms ease, transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.story__media > span {
  position: absolute;
  top: 16%;
  right: 12%;
  width: 24%;
  height: 62%;
  background: rgba(245, 196, 0, 0.6);
  mix-blend-mode: screen;
  transition: transform 400ms ease;
}

.story:hover .story__media img {
  filter: grayscale(0.75) contrast(1.1);
  transform: scale(1.02);
}

.story:hover .story__media > span {
  transform: translateX(-10%);
}

.story__body {
  position: relative;
  padding-top: 1.15rem;
}

.story__body time {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding-top: 0.65rem;
  border-top: 2px solid var(--yellow);
  color: var(--muted);
  font-size: 0.75rem;
}

.story__body h3 {
  max-width: 24ch;
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.story--side .story__body h3 {
  font-size: clamp(1rem, 1.45vw, 1.45rem);
}

.story__body h3 a:hover,
.story__body h3 a:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.story__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1.4rem;
}

/* CTA */
.contact-cta {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  background-color: var(--yellow);
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(8.333% - 1px),
    rgba(21, 23, 25, 0.12) calc(8.333% - 1px),
    rgba(21, 23, 25, 0.12) 8.333%
  );
}

.contact-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 62rem;
  padding: clamp(4.5rem, 8vw, 7rem) var(--page-gutter);
}

.contact-cta .eyebrow {
  color: var(--ink);
}

.contact-cta h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.contact-cta__inner > p:not(.eyebrow) {
  max-width: 36rem;
  margin: 1.5rem 0 2rem;
  font-size: 1.05rem;
}

.contact-cta__email {
  padding: 0.65rem 1.25rem;
  border-left: 1px solid rgba(21, 23, 25, 0.55);
  font-weight: 600;
}

.contact-cta__email:hover,
.contact-cta__email:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.contact-cta__orbit {
  position: absolute;
  top: 20%;
  right: -4rem;
  width: min(38vw, 34rem);
  height: min(38vw, 34rem);
  border: 1px dashed rgba(21, 23, 25, 0.35);
  border-radius: 50%;
}

.contact-cta__orbit::before,
.contact-cta__orbit::after {
  position: absolute;
  background: rgba(21, 23, 25, 0.45);
  content: "";
}

.contact-cta__orbit::before {
  top: 50%;
  left: -16rem;
  width: calc(100% + 16rem);
  height: 1px;
}

.contact-cta__orbit::after {
  top: -8rem;
  left: 50%;
  width: 1px;
  height: calc(100% + 8rem);
}

/* Footer */
.site-footer {
  padding: clamp(4rem, 7vw, 6rem) var(--page-gutter) 1.75rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--yellow);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 0.9fr repeat(3, minmax(8rem, 0.7fr)) minmax(12rem, 1fr);
  border-bottom: 1px solid var(--line-light);
}

.site-footer__brand,
.site-footer__column,
.site-footer__map {
  min-width: 0;
  padding: 0 clamp(1rem, 3vw, 2.5rem) 3rem;
  border-right: 1px solid var(--line-light);
}

.site-footer__brand {
  padding-left: 0;
}

.site-footer__map {
  border-right: 0;
  padding-right: 0;
  min-height: 14rem;
}

.site-footer__column:last-child {
  border-right: 0;
}

.site-footer__logo {
  display: inline-block;
  padding: 0;
}

.site-footer__logo img {
  width: auto;
  height: 39px;
}

.site-footer__brand p {
  max-width: 27rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.site-footer h2 {
  margin: 0 0 1.3rem;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-footer ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li,
.site-footer__column > a,
.site-footer address {
  font-size: 0.82rem;
}

.site-footer__contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.7rem;
}

.site-footer__contact h2 {
  margin-bottom: 0.6rem;
}

.site-footer address {
  max-width: 13rem;
  color: rgba(255, 255, 255, 0.52);
  font-style: normal;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2.5rem;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
}

.site-footer__bottom nav,
.site-footer__social {
  display: flex;
  gap: 1.5rem;
}

.site-footer__bottom p {
  margin: 0;
}

/* Internal page hero */
.internal-hero,
.article-hero {
  display: grid;
  min-height: 34rem;
  grid-template-columns: minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.internal-hero--media,
.article-hero--media {
  grid-template-columns: minmax(0, 0.95fr) minmax(24rem, 1.05fr);
}

.internal-hero__copy,
.article-hero__copy {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(4rem, 8vw, 7rem) var(--page-gutter);
}

.internal-hero h1,
.article-hero h1,
.not-found h1 {
  max-width: 12ch;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.internal-hero__copy > p:not(.eyebrow) {
  max-width: 43rem;
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.internal-hero__media,
.article-hero__media {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  background: var(--ink);
}

.internal-hero__media img,
.article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}

.internal-hero__media span,
.article-hero__media span {
  position: absolute;
  right: 9%;
  bottom: 0;
  width: 23%;
  height: 66%;
  border: 1px solid var(--yellow);
  background: rgba(245, 196, 0, 0.52);
  mix-blend-mode: screen;
}

.home-hero__signal,
.industry-section__plane,
.company-section__marker,
.story__media > span,
.internal-hero__media span,
.article-hero__media span {
  display: none;
}

.article-hero__back {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.article-hero time {
  margin-bottom: 1.5rem;
  padding-top: 0.6rem;
  border-top: 2px solid var(--yellow);
  color: var(--muted);
  font-size: 0.78rem;
}

.article-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
}

/* Long-form content */
.entry {
  padding: var(--section-space) var(--page-gutter);
  background: var(--paper);
}

.entry__layout {
  display: grid;
  max-width: 92rem;
  grid-template-columns: 5rem minmax(0, 58rem);
  gap: clamp(2rem, 5vw, 6rem);
  margin: 0 auto;
}

.entry--legal .entry__layout {
  grid-template-columns: 5rem minmax(0, 48rem);
}

.entry--location .entry__layout {
  grid-template-columns: 5rem minmax(0, 68rem);
}

.entry__rail {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.35rem;
  color: #b8b5ad;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

.entry__rail i {
  width: 1px;
  height: 8rem;
  background: var(--line);
}

.entry__content {
  min-width: 0;
  color: var(--ink-3);
  overflow-wrap: anywhere;
}

.entry__content :where(p, ul, ol, blockquote, h1, h2, h3, h4, h5, h6) {
  max-width: 46rem;
}

.entry__content > *:first-child {
  margin-top: 0;
}

.entry__content > *:last-child {
  margin-bottom: 0;
}

.entry__content h1,
.entry__content h2,
.entry__content h3,
.entry__content h4,
.entry__content h5,
.entry__content h6 {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.entry__content h1 {
  margin: 0 0 2rem;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.entry__content h2 {
  margin: 4rem 0 1.25rem;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.entry__content h3 {
  margin: 3rem 0 1rem;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
}

.entry__content h4,
.entry__content h5,
.entry__content h6 {
  margin: 2rem 0 0.75rem;
  font-size: 1.15rem;
}

.entry__content p,
.entry__content li {
  font-size: clamp(1rem, 1.25vw, 1.1rem);
}

.entry__content p {
  margin: 0 0 1.3rem;
}

.entry__content ul,
.entry__content ol {
  display: grid;
  min-width: 0;
  max-width: 46rem;
  gap: 0.65rem;
  margin: 1.5rem 0 2rem;
  padding-left: 1.3rem;
}

.entry__content li {
  min-width: 0;
}

.entry__content li::marker {
  color: var(--yellow-deep);
}

.entry__content a:not(.button) {
  font-size: inherit;
  word-break: break-word;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.entry__content blockquote {
  margin: 3rem 0;
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--yellow);
  background: var(--paper-2);
  font-size: 1.2rem;
}

.entry__content img {
  width: auto;
  max-width: 100%;
  margin: 2.5rem 0;
}

.entry__content table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
}

.entry__content th,
.entry__content td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.reference-note {
  padding: clamp(2rem, 5vw, 4rem);
  border-left: 4px solid var(--yellow);
  background: var(--paper-2);
}

.reference-note h2 {
  margin-top: 0;
}

.reference-note .button {
  text-decoration: none;
}

.office-location {
  display: grid;
  max-width: 68rem;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(26rem, 1.2fr);
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.office-location__copy {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(2.5rem, 5vw, 4.5rem);
}

.office-location__copy > * {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.office-location__copy h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.office-location__copy > p:not(.eyebrow) {
  margin-bottom: 1.5rem;
}

.office-location__copy address {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1rem;
  font-style: normal;
  line-height: 1.7;
}

.office-location__copy address strong {
  color: var(--ink);
}

.office-location__copy .button {
  text-decoration: none;
}

.office-location__map {
  min-height: 31rem;
  background: var(--ink);
}

.office-location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 31rem;
  border: 0;
}

/* Press kit */
.press-kit-hero {
  display: grid;
  min-height: 38rem;
  grid-template-columns: minmax(0, 1fr) minmax(26rem, 1fr);
  border-bottom: 1px solid var(--line);
}

.press-kit-hero__copy {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(4.5rem, 8vw, 8rem) var(--page-gutter);
}

.press-kit-hero__copy h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(4.2rem, 7vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.press-kit-hero__copy > p:last-child {
  max-width: 38rem;
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.press-kit-hero__mark {
  display: grid;
  min-height: 30rem;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 7rem);
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #1d1d1d;
  background-size: 4rem 4rem;
  place-items: center;
}

.press-kit-hero__mark img {
  width: min(34rem, 82%);
}

.press-kit {
  background: var(--paper);
}

.press-kit-section {
  padding: clamp(5.5rem, 9vw, 9rem) var(--page-gutter);
  border-bottom: 1px solid var(--line);
}

.press-kit-section__inner {
  max-width: 80rem;
  margin: 0 auto;
}

.press-kit-section__header {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.35fr) minmax(20rem, 0.65fr);
  gap: 1.5rem clamp(2rem, 7vw, 7rem);
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.press-kit-section__number {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--yellow-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.press-kit-section__number::before {
  display: inline-block;
  width: 1.75rem;
  height: 2px;
  margin-right: 0.75rem;
  background: var(--yellow);
  content: "";
  vertical-align: middle;
}

.press-kit-section__header h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.press-kit-section__header > p:last-child {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.press-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.press-logo-asset {
  min-width: 0;
}

.press-logo-asset__visual {
  display: grid;
  min-height: 22rem;
  border: 1px solid var(--line);
  place-items: center;
}

.press-logo-asset__visual--light {
  background: var(--white);
}

.press-logo-asset__visual--dark {
  border-color: #1d1d1d;
  background: #1d1d1d;
}

.press-logo-asset__visual img {
  width: min(26rem, 72%);
  max-height: 10rem;
  object-fit: contain;
}

.press-logo-asset__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.press-logo-asset__index {
  margin: 0 0 0.4rem;
  color: var(--yellow-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.press-logo-asset__meta h3,
.press-clear-space h3,
.press-type-specimen__identity h3,
.press-font-row h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.press-logo-asset__meta h3 {
  font-size: 1.35rem;
}

.press-logo-asset__meta > div:first-child > p:last-child {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.press-downloads {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.press-downloads a {
  display: inline-flex;
  min-width: 4.65rem;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 750;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.press-downloads a:hover,
.press-downloads a:focus-visible {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.press-downloads a span {
  font-size: 1rem;
}

.press-clear-space {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  margin: clamp(4rem, 7vw, 7rem) 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.press-clear-space__visual {
  display: grid;
  min-height: 27rem;
  border-right: 1px solid var(--line);
  background: var(--paper-2);
  place-items: center;
}

.press-clear-space__visual img {
  width: min(38rem, 82%);
}

.press-clear-space figcaption {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.press-clear-space h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.press-clear-space figcaption > p:last-child {
  margin: 1.25rem 0 0;
  color: var(--muted);
}

.press-kit-section--colors {
  background: var(--white);
}

.press-color-table-wrap {
  width: 100%;
  border-top: 2px solid var(--ink);
}

.press-color-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.press-color-table th,
.press-color-table td {
  height: 6.75rem;
  padding: 1rem 1.1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.press-color-table th:last-child,
.press-color-table td:last-child {
  border-right: 0;
}

.press-color-table thead th {
  height: auto;
  padding-block: 1.1rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.press-color-table thead th:first-child,
.press-color-table__swatch-cell {
  width: 9.5rem;
}

.press-color-table tbody th {
  font-size: 0.95rem;
  font-weight: 700;
}

.press-color-table tbody td {
  color: var(--ink-3);
  font-size: 0.88rem;
}

.press-color-table code,
.press-type-scale code {
  color: inherit;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.82rem;
}

.press-color-table__swatch-cell {
  padding: 0 !important;
}

.press-color-table__swatch {
  display: block;
  width: 100%;
  min-height: 6.7rem;
}

.press-color-table__swatch--process-black {
  background: #1d1d1d;
}

.press-color-table__swatch--cool-gray {
  background: #4d4e53;
}

.press-color-table__swatch--inosas-yellow {
  background: #ffc82e;
}

.press-color-table__swatch--accent-yellow {
  background: #f2ae00;
}

.press-color-table__swatch--inosas-navy {
  background: #062446;
}

.press-type-specimen {
  display: grid;
  grid-template-columns: minmax(20rem, 0.72fr) minmax(0, 1.28fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.press-type-specimen__identity {
  min-width: 0;
  padding: clamp(2rem, 5vw, 4rem);
  border-right: 1px solid var(--line);
}

.press-type-specimen__glyph {
  margin: 0 0 1.5rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(8rem, 15vw, 13rem);
  font-weight: 400;
  letter-spacing: -0.1em;
  line-height: 0.72;
}

.press-type-specimen__identity h3 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.press-type-specimen__weights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.press-type-specimen__identity > p:last-child {
  max-width: 28rem;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.press-type-scale {
  min-width: 0;
}

.press-type-scale__head,
.press-type-scale__row {
  display: grid;
  align-items: center;
  grid-template-columns: 6.25rem minmax(0, 1fr) 4.5rem 3.5rem;
  gap: 1.25rem;
  padding: 1.2rem clamp(1.25rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}

.press-type-scale__head {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.press-type-scale__head span:nth-child(n + 3) {
  text-align: right;
}

.press-type-scale__row:last-child {
  border-bottom: 0;
}

.press-type-scale__row > strong {
  font-size: 0.8rem;
}

.press-type-scale__row > code {
  color: var(--muted);
  text-align: right;
}

.press-type-scale__sample {
  min-width: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.035em;
}

.press-type-scale__sample--xl {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 0.98;
}

.press-type-scale__sample--lg {
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
  line-height: 1.05;
}

.press-type-scale__sample--md {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  line-height: 1.12;
}

.press-type-scale__sample--body {
  font-size: 1rem;
  line-height: 1.65;
}

.press-type-scale__sample--label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.4;
}

.press-font-list {
  margin-top: clamp(4rem, 7vw, 7rem);
  border-top: 2px solid var(--ink);
}

.press-font-row {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(13rem, 0.75fr) minmax(18rem, 1.15fr) minmax(7rem, 0.45fr) minmax(11rem, 0.65fr);
  gap: 2rem;
  min-height: 9rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.press-font-row h3 {
  font-size: 1.65rem;
}

.press-font-row > p {
  margin: 0;
  color: var(--muted);
}

.press-font-row > p:nth-child(3) {
  display: grid;
  gap: 0.25rem;
}

.press-font-row > p:nth-child(3) span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.press-font-row > p:nth-child(3) strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.press-font-row__sample {
  color: var(--ink) !important;
  font-size: 2rem;
  text-align: right;
  white-space: nowrap;
}

.press-font-row--helvetica .press-font-row__sample {
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.press-font-row--futura .press-font-row__sample {
  font-family: Futura, "Trebuchet MS", sans-serif;
}

.press-font-row--isonorm .press-font-row__sample {
  font-family: Isonorm, Verdana, sans-serif;
}

.press-font-row--montserrat .press-font-row__sample {
  font-family: Montserrat, Arial, sans-serif;
}

.brand-logo-stage {
  display: grid;
  min-height: 24rem;
  margin-top: 3rem;
  border: 1px solid var(--line);
  background: var(--white);
  place-items: center;
}

.brand-logo-stage img {
  width: min(26rem, 70%);
  margin: 0;
}

.brand-palette {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
  border: 1px solid var(--line);
}

.brand-palette > div {
  display: flex;
  min-height: 19rem;
  justify-content: space-between;
  flex-direction: column;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

.brand-palette > div:last-child {
  border-right: 0;
}

.brand-palette span,
.brand-palette strong {
  font-size: 0.78rem;
}

.brand-palette__ink {
  background: var(--ink);
  color: var(--white);
}

.brand-palette__yellow {
  background: var(--yellow);
  color: var(--ink);
}

.brand-palette__paper {
  background: var(--paper);
  color: var(--ink);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.contact-layout__intro h2 {
  margin-top: 0;
}

.contact-layout__details {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.contact-layout__details span {
  display: inline-block;
  max-width: 25rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border-top: 4px solid var(--yellow);
  background: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
}

.contact-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact-form .button,
.contact-form .btn {
  display: inline-flex;
  width: max-content;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border: 0;
  border-radius: 3px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.form-notice {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid #3c8f53;
  background: #e4f3e8;
  color: #173d22;
}

.form-notice--error {
  border-left-color: #b23333;
  background: #f9e4e4;
  color: #5e1717;
}

/* Archive */
.archive-hero {
  min-height: 34rem;
  padding: clamp(5rem, 9vw, 9rem) var(--page-gutter);
  border-bottom: 1px solid var(--line);
}

.archive-hero__inner > p:not(.eyebrow) {
  max-width: 42rem;
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.archive-section {
  padding: var(--section-space) var(--page-gutter);
}

.archive-grid {
  display: grid;
  max-width: 92rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 7vw, 7rem) 2.5rem;
  margin: 0 auto;
}

.archive-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.archive-card--lead {
  grid-column: 1 / -1;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
  border-bottom: 1px solid var(--line);
}

.archive-card__media {
  min-height: 20rem;
  overflow: hidden;
  background: var(--paper-2);
}

.archive-card--lead .archive-card__media {
  min-height: 32rem;
}

.archive-card__media img,
.archive-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transition: filter 250ms ease, transform 400ms ease;
}

.archive-card__placeholder {
  display: block;
  background:
    linear-gradient(135deg, transparent 40%, rgba(245, 196, 0, 0.5) 40%, rgba(245, 196, 0, 0.5) 58%, transparent 58%),
    var(--ink);
}

.archive-card:hover .archive-card__media img {
  filter: grayscale(0.5);
  transform: scale(1.02);
}

.archive-card__body {
  padding-top: 1.25rem;
}

.archive-card--lead .archive-card__body {
  align-self: center;
}

.archive-card time {
  display: inline-block;
  padding-top: 0.55rem;
  border-top: 2px solid var(--yellow);
  color: var(--muted);
  font-size: 0.75rem;
}

.archive-card h2 {
  margin: 1rem 0;
  font-size: clamp(1.7rem, 3vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.archive-card:not(.archive-card--lead) h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.3rem);
}

.archive-card h2 a:hover,
.archive-card h2 a:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 0.16em;
}

.archive-card p {
  color: var(--muted);
}

.archive-pagination {
  max-width: 92rem;
  margin: 4rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.archive-pagination .nav-links {
  display: flex;
  gap: 0.5rem;
}

.archive-pagination .page-numbers {
  display: grid;
  min-width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  place-items: center;
}

.archive-pagination .current,
.archive-pagination a:hover {
  border-color: var(--yellow);
  background: var(--yellow);
}

.archive-pagination .prev,
.archive-pagination .next {
  width: auto;
  padding-inline: 0.85rem;
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: var(--section-space) var(--page-gutter);
}

.not-found__inner {
  max-width: 55rem;
}

.not-found__inner > p:not(.eyebrow) {
  margin: 1.5rem 0 2rem;
  color: var(--muted);
}

/* Motion */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 750ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

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

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

  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .primary-nav > ul {
    gap: 1rem;
  }

  .primary-nav a {
    font-size: 0.8rem;
  }

  .language-link {
    width: 2.3rem;
    height: 2.3rem;
  }

  .home-hero {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .product-section {
    grid-template-columns: minmax(0, 1.55fr) minmax(21rem, 0.8fr);
  }

  .product-showcase {
    padding: 2rem;
  }

  .product-showcase__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .product-showcase__header > p {
    max-width: none;
  }

  .story--side {
    grid-template-columns: 1fr;
  }

  .entry--location .entry__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .entry--location .entry__rail {
    display: none;
  }

  .office-location {
    grid-template-columns: minmax(0, 1fr);
  }

  .office-location__map,
  .office-location__map iframe {
    min-height: 24rem;
  }
}

@media (max-width: 1040px) {
  :root {
    --header-height: 76px;
  }

  body {
    padding-top: var(--header-height);
  }

  .site-header {
    position: fixed;
    right: 0;
    left: 0;
  }

  .site-logo img {
    height: 36px;
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }

  .nav-toggle__label {
    font-size: 0.72rem;
    font-weight: 800;
  }

  .nav-toggle__icon {
    display: grid;
    width: 1rem;
    gap: 0.25rem;
  }

  .nav-toggle__icon span {
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__icon span:first-child {
    transform: translateY(2.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__icon span:last-child {
    transform: translateY(-2.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 102;
    top: var(--header-height);
    right: 0;
    bottom: auto;
    width: min(90vw, 32rem);
    height: calc(100dvh - var(--header-height));
    padding: 1.25rem var(--page-gutter) 3rem;
    overflow-y: auto;
    background: var(--paper);
    box-shadow: -16px 28px 50px rgba(21, 23, 25, 0.18);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 220ms ease, clip-path 280ms cubic-bezier(0.2, 0.7, 0.2, 1), visibility 0s linear 280ms;
  }

  .primary-nav.is-open {
    clip-path: inset(0);
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
    visibility: visible;
  }

  .primary-nav > ul {
    display: block;
  }

  .primary-nav > ul > li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav li.menu-item-has-children {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .primary-nav li.menu-item-has-children > a {
    grid-column: 1;
    grid-row: 1;
  }

  .primary-nav li.menu-item-has-children > .submenu-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .primary-nav li.menu-item-has-children > .sub-menu {
    grid-column: 1 / -1;
  }

  .primary-nav > ul > li > a {
    min-height: 3.8rem;
    border: 0;
    font-size: 1rem;
  }

  .primary-nav .menu-item--contact > a {
    min-height: 3.1rem;
    margin: 1rem 0;
    padding: 0.7rem 1rem;
  }

  .primary-nav .sub-menu,
  .primary-nav .menu-item--company > .sub-menu {
    position: static;
    display: none;
    width: auto;
    min-width: 0;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    padding: 0 0 1rem 1rem;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .primary-nav li.is-submenu-open > .sub-menu {
    display: block;
    pointer-events: auto;
  }

  .primary-nav__utility {
    display: block;
    margin-top: 1.25rem;
    border-top: 1px solid var(--line);
  }

  .primary-nav .primary-nav__language {
    display: flex;
    width: 100%;
    min-height: 4rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.86rem;
    font-weight: 700;
  }

  .primary-nav__language-code {
    display: inline-grid;
    width: 2.35rem;
    height: 2.35rem;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 50%;
    place-items: center;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
  }

  .primary-nav .sub-menu > li > a {
    min-height: 2.6rem;
    padding: 0.55rem 0.75rem;
  }

  .primary-nav .sub-menu .sub-menu {
    padding-left: 0.5rem;
  }

  .submenu-toggle {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    align-self: center;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    place-items: center;
  }

  .submenu-toggle::after {
    font-size: 1.25rem;
    content: "+";
  }

  .submenu-toggle[aria-expanded="true"]::after {
    content: "−";
  }

  .nav-backdrop {
    position: fixed;
    z-index: 99;
    inset: var(--header-height) 0 0;
    width: 100%;
    height: calc(100% - var(--header-height));
    border: 0;
    background: rgba(21, 23, 25, 0.48);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .nav-open .nav-backdrop {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .language-link {
    justify-self: end;
  }

  .home-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .home-hero__copy {
    min-height: 37rem;
  }

  .home-hero__visual {
    min-height: 34rem;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip ul {
    max-width: 36rem;
  }

  .product-section {
    grid-template-columns: 1fr;
  }

  .product-showcase {
    min-height: 43rem;
  }

  .product-section__copy {
    min-height: 35rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-section {
    grid-template-columns: 1fr;
  }

  .industry-section__copy {
    min-height: 38rem;
  }

  .industry-section__media {
    min-height: 34rem;
  }

  .company-section {
    grid-template-columns: 1fr;
  }

  .company-section__media {
    min-height: 36rem;
  }

  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .story--lead {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .story--side {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__map {
    grid-column: 1 / -1;
  }

  .site-footer__brand,
  .site-footer__column,
  .site-footer__map {
    padding: 0 1.5rem 2.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .site-footer__column {
    padding-top: 2.5rem;
  }

  .site-footer__brand + .site-footer__column {
    padding-top: 0;
  }

  .internal-hero--media,
  .article-hero--media {
    grid-template-columns: minmax(0, 1fr);
  }

  .press-kit-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .press-kit-hero__mark {
    min-height: 24rem;
  }

  .press-kit-section__header,
  .press-logo-grid,
  .press-clear-space,
  .press-type-specimen {
    grid-template-columns: minmax(0, 1fr);
  }

  .press-kit-section__header {
    align-items: start;
  }

  .press-logo-grid {
    gap: 4rem;
  }

  .press-clear-space__visual,
  .press-type-specimen__identity {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .press-font-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .press-font-row__sample {
    text-align: left;
  }

  .internal-hero__media,
  .article-hero__media {
    min-height: 28rem;
  }
}

@media (max-width: 720px) {
  :root {
    --page-gutter: 1.25rem;
    --section-space: 4.5rem;
  }

  .grid-surface {
    background-image: repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(25% - 1px),
      rgba(21, 23, 25, 0.05) calc(25% - 1px),
      rgba(21, 23, 25, 0.05) 25%
    );
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
  }

  .site-logo img {
    height: 31px;
  }

  .nav-toggle__label {
    display: none;
  }

  .nav-toggle {
    width: 2.65rem;
    justify-content: center;
  }

  .language-link {
    width: 2.35rem;
    height: 2.35rem;
  }

  .language-link--header {
    display: none;
  }

  .home-hero__copy {
    min-height: 35rem;
    padding-block: 4.5rem;
  }

  .home-hero h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .home-hero__lead {
    margin-block: 1.5rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .home-hero__visual {
    min-height: 27rem;
  }

  .proof-strip {
    gap: 1.25rem;
    padding-block: 2rem;
  }

  .proof-strip ul {
    grid-template-columns: 1fr;
  }

  .proof-strip li {
    padding: 0.55rem 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    text-align: left;
  }

  .product-showcase {
    min-height: 0;
    padding: 2.25rem 1.25rem 2.5rem;
  }

  .product-showcase__header {
    gap: 1rem;
  }

  .product-showcase__tabs {
    width: 100%;
  }

  .product-showcase__tab {
    min-width: 0;
    flex: 1;
    justify-content: center;
    gap: 0.35rem;
    padding-inline: 0.35rem;
    font-size: 0.68rem;
  }

  .product-showcase__tab span {
    font-size: 0.52rem;
  }

  .product-showcase__screen-tab {
    min-height: 4rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.65rem 0.55rem;
    font-size: 0.64rem;
  }

  .product-showcase__screen-tab span {
    font-size: 0.5rem;
  }

  .product-showcase__panel figcaption {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.35rem;
    padding: 0.85rem 0.9rem 0.95rem;
  }

  .product-section__copy {
    min-height: 33rem;
  }

  .product-section__copy h2 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .section-heading h2,
  .insights-section h2,
  .archive-hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

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

  .capability {
    min-height: 11rem;
  }

  .industry-section__copy {
    min-height: 35rem;
  }

  .industry-section__copy h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .industry-section__media {
    min-height: 27rem;
  }

  .industry-section__proof {
    grid-template-columns: 1fr;
  }

  .industry-section__proof span {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .company-section__media {
    min-height: 30rem;
  }

  .company-section__copy h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

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

  .principles li {
    min-height: 8rem;
    grid-template-columns: auto 1fr;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principles li:last-child {
    border-bottom: 0;
  }

  .insights-section__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-grid {
    display: block;
    min-height: auto;
  }

  .story,
  .story--lead,
  .story--side {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
  }

  .story__media {
    width: 100%;
    min-width: 0;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .home-hero__visual::after,
  .industry-section__media::after {
    display: none;
  }

  .home-hero__visual img,
  .industry-section__media img,
  .company-section__media img,
  .story__media img,
  .internal-hero__media img,
  .article-hero__media img,
  .archive-card__media img {
    filter: none;
  }

  .story:hover .story__media img,
  .archive-card:hover .archive-card__media img {
    filter: none;
    transform: none;
  }

  .contact-cta h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .contact-cta__email {
    padding-left: 0;
    border-left: 0;
  }

  .contact-cta__orbit {
    opacity: 0.45;
  }

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

  .site-footer__brand,
  .site-footer__brand + .site-footer__column,
  .site-footer__column {
    padding: 2rem 0;
  }

  .site-footer__brand {
    padding-top: 0;
  }

  .site-footer__bottom {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.25rem 1rem;
  }

  .site-footer__bottom nav {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--line-light);
  }

  .site-footer__bottom nav a:nth-child(2) {
    text-align: center;
  }

  .site-footer__bottom nav a:last-child {
    text-align: right;
  }

  .site-footer__social {
    grid-column: 1;
    gap: 1.25rem;
  }

  .site-footer__bottom p {
    grid-column: 2;
    justify-self: end;
    text-align: right;
  }

  .internal-hero,
  .article-hero {
    min-height: auto;
  }

  .internal-hero__copy,
  .article-hero__copy {
    min-height: 30rem;
    padding-block: 4.5rem;
  }

  .internal-hero h1,
  .article-hero h1,
  .not-found h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .article-hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.4rem);
  }

  .internal-hero__media,
  .article-hero__media {
    min-height: 22rem;
  }

  .press-kit-hero {
    min-height: auto;
  }

  .press-kit-hero__copy {
    min-height: 31rem;
    padding-block: 4.5rem;
  }

  .press-kit-hero__copy h1 {
    font-size: clamp(3.6rem, 17vw, 5rem);
  }

  .press-kit-hero__mark {
    min-height: 19rem;
    padding: 3rem 2rem;
    background-size: 2.75rem 2.75rem;
  }

  .press-kit-hero__mark img {
    width: min(24rem, 86%);
  }

  .press-kit-section {
    padding-block: 5rem;
  }

  .press-kit-section__header h2 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .press-kit-section__header > p:last-child {
    font-size: 1rem;
  }

  .press-logo-asset__visual {
    min-height: 16rem;
  }

  .press-logo-asset__visual img {
    width: min(22rem, 78%);
  }

  .press-logo-asset__meta {
    grid-template-columns: minmax(0, 1fr);
  }

  .press-downloads {
    width: 100%;
  }

  .press-downloads a {
    min-width: 0;
    flex: 1;
  }

  .press-clear-space__visual {
    min-height: 18rem;
  }

  .press-clear-space figcaption {
    padding: 2rem 0;
  }

  .press-color-table,
  .press-color-table tbody,
  .press-color-table tr,
  .press-color-table th,
  .press-color-table td {
    display: block;
    width: 100%;
  }

  .press-color-table thead {
    display: none;
  }

  .press-color-table tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 1.5rem;
    border: 1px solid var(--line);
  }

  .press-color-table th,
  .press-color-table td {
    height: auto;
    min-height: 5.25rem;
    padding: 0.9rem 1rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .press-color-table th:nth-child(odd),
  .press-color-table td:nth-child(odd) {
    border-right: 0;
  }

  .press-color-table th::before,
  .press-color-table td::before {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--muted);
    content: attr(data-label);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .press-color-table__swatch-cell {
    grid-column: 1 / -1;
    border-right: 0 !important;
  }

  .press-color-table__swatch-cell::before {
    display: none !important;
  }

  .press-color-table__swatch {
    min-height: 7rem;
  }

  .press-type-specimen__identity {
    padding: 3rem 0;
  }

  .press-type-scale__head {
    display: none;
  }

  .press-type-scale__row {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.65rem 1rem;
    padding: 1.5rem 0;
  }

  .press-type-scale__sample {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .press-type-scale__row > code::before {
    margin-right: 0.3rem;
    color: var(--muted);
    font-family: var(--font);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .press-type-scale__row > code:first-of-type::before {
    content: "Boyut";
  }

  .press-type-scale__row > code:last-of-type::before {
    content: "Satır";
  }

  .press-font-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    padding-block: 2rem;
  }

  .press-font-row__sample {
    font-size: 1.7rem;
  }

  .entry__layout,
  .entry--legal .entry__layout {
    grid-template-columns: 1fr;
  }

  .entry__rail {
    display: none;
  }

  .entry__content h2 {
    margin-top: 3rem;
  }

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

  .brand-palette {
    grid-template-columns: 1fr;
  }

  .brand-palette > div {
    min-height: 12rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .archive-card--lead {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .archive-card--lead .archive-card__media,
  .archive-card__media {
    min-height: 18rem;
  }
}

/* Image-based document reader */
.document-reader-hero {
  padding: clamp(3.5rem, 6vw, 6rem) var(--page-gutter);
  border-bottom: 1px solid var(--line);
}

.document-reader-hero__inner {
  max-width: 80rem;
  margin: 0 auto;
}

.document-reader-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.document-reader-hero__back span {
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.document-reader-hero__back:hover span,
.document-reader-hero__back:focus-visible span {
  transform: translateX(-3px);
}

.document-reader-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.document-reader-breadcrumb a {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 0.3em;
}

.document-reader-hero h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.35rem);
  font-weight: 550;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.document-reader-hero__inner > p {
  max-width: 43rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.document-reader-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.document-reader-hero__meta i {
  width: 3px;
  height: 3px;
  background: var(--yellow-deep);
}

.document-reader {
  width: min(80rem, calc(100% - clamp(2.5rem, 8vw, 10rem)));
  margin: clamp(2.5rem, 5vw, 4.5rem) auto clamp(5rem, 8vw, 8rem);
  border: 1px solid rgba(21, 23, 25, 0.2);
  color: var(--white);
  background: #151719;
}

.document-reader__toolbar {
  position: sticky;
  z-index: 15;
  top: var(--header-height);
  display: grid;
  min-height: 5.25rem;
  align-items: stretch;
  grid-template-columns: 18.5rem minmax(8rem, 1fr) auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(21, 23, 25, 0.97);
}

.document-reader__toolbar > strong,
.document-reader__counter {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 1.75rem;
}

.document-reader__toolbar > strong {
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.document-reader__counter {
  justify-content: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.8);
  font-variant-numeric: tabular-nums;
}

.document-reader__counter [data-reader-current] {
  color: var(--white);
  font-size: 1.15rem;
}

.document-reader__controls {
  display: flex;
  align-items: stretch;
}

.document-reader__controls button {
  display: inline-flex;
  min-width: 7rem;
  min-height: 5.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0 1rem;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.document-reader__controls button:hover,
.document-reader__controls button:focus-visible {
  color: var(--ink);
  background: var(--yellow);
}

.document-reader__controls button:disabled {
  color: rgba(255, 255, 255, 0.32);
  cursor: not-allowed;
}

.document-reader__controls button:disabled:hover {
  background: transparent;
}

.document-reader__controls button > span:first-child {
  font-size: 1.25rem;
}

.document-reader__fullscreen-icon {
  position: relative;
  width: 1rem;
  height: 1rem;
  border: 1px solid currentColor;
}

.document-reader__fullscreen-icon::after {
  position: absolute;
  inset: 3px;
  border: 1px solid currentColor;
  content: "";
}

.document-reader__body {
  display: grid;
  min-height: 48rem;
  grid-template-columns: 18.5rem minmax(0, 1fr);
}

.document-reader__thumbnails {
  max-height: calc(100svh - var(--header-height) - 5.25rem);
  overflow-y: auto;
  padding: 1rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: #171a1d;
  scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
  scrollbar-width: thin;
}

.document-reader__thumbnail {
  display: grid;
  width: 100%;
  align-items: center;
  grid-template-columns: 2.35rem minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.65rem 1rem 0.65rem 0.75rem;
  border: 0;
  border-left: 3px solid transparent;
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.document-reader__thumbnail:hover,
.document-reader__thumbnail:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
}

.document-reader__thumbnail.is-active {
  border-left-color: var(--yellow);
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
}

.document-reader__thumbnail > span {
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.document-reader__thumbnail img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #062446;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.document-reader__stage {
  display: grid;
  min-width: 0;
  align-items: center;
  padding: clamp(2rem, 5vw, 4.75rem);
  outline: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #202326;
  background-size: 4rem 4rem;
}

.document-reader__stage:focus-visible {
  box-shadow: inset 0 0 0 2px var(--yellow);
}

.document-reader__page {
  width: min(100%, 70rem);
  margin: 0 auto;
}

.document-reader__page[hidden] {
  display: none;
}

.document-reader__page img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #062446;
  box-shadow: 0 1.75rem 4rem rgba(0, 0, 0, 0.28);
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.document-reader__page figcaption {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  text-align: center;
}

.document-reader:fullscreen {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  border: 0;
  background: #151719;
}

.document-reader:fullscreen .document-reader__toolbar {
  top: 0;
}

.document-reader:fullscreen .document-reader__body {
  min-height: calc(100vh - 5.25rem);
}

.document-reader:fullscreen .document-reader__stage {
  max-height: calc(100vh - 5.25rem);
}

.document-reader-empty {
  padding: var(--section-space) var(--page-gutter);
}

.document-reader-empty h2,
.document-reader-empty p {
  max-width: 48rem;
  margin-inline: auto;
}

@media (max-width: 1040px) {
  .document-reader__toolbar {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .document-reader__toolbar > strong {
    border-right: 0;
  }

  .document-reader__counter {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .document-reader__controls button {
    min-width: 4.75rem;
  }

  .document-reader__control-label {
    display: none;
  }

  .document-reader__body {
    grid-template-columns: 13.5rem minmax(0, 1fr);
  }

  .document-reader__thumbnails {
    max-height: none;
  }

  .document-reader__thumbnail {
    grid-template-columns: 1.7rem minmax(0, 1fr);
    padding-right: 0.75rem;
  }
}

@media (max-width: 720px) {
  .document-reader {
    width: 100%;
    max-width: none;
    margin: 0;
    border-right: 0;
    border-left: 0;
  }

  .document-reader-hero {
    padding-block: 3.5rem;
  }

  .document-reader-hero__back {
    margin-bottom: 1.5rem;
  }

  .document-reader-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  .document-reader-hero__inner > p {
    font-size: 1rem;
  }

  .document-reader__toolbar {
    position: static;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .document-reader__toolbar > strong {
    display: none;
  }

  .document-reader__counter {
    justify-content: flex-start;
    padding: 0 1.25rem;
    border-left: 0;
  }

  .document-reader__controls button {
    min-width: 3.5rem;
    min-height: 4.5rem;
    padding-inline: 0.75rem;
  }

  .document-reader__body {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .document-reader__thumbnails {
    display: flex;
    width: 100%;
    order: 2;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 0;
    scroll-snap-type: x proximity;
  }

  .document-reader__thumbnail {
    width: 8.75rem;
    min-width: 8.75rem;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0.55rem;
    border-top: 3px solid transparent;
    border-left: 0;
    scroll-snap-align: start;
  }

  .document-reader__thumbnail.is-active {
    border-top-color: var(--yellow);
    border-left-color: transparent;
  }

  .document-reader__thumbnail > span {
    order: 2;
    text-align: left;
  }

  .document-reader__stage {
    min-height: 18rem;
    order: 1;
    padding: 1.25rem;
    background-size: 2.75rem 2.75rem;
  }

  .document-reader__page figcaption {
    margin-top: 0.8rem;
  }

  .document-reader:fullscreen .document-reader__body {
    min-height: calc(100vh - 4.5rem);
  }

  .document-reader:fullscreen .document-reader__thumbnails {
    display: none;
  }

  .document-reader:fullscreen .document-reader__stage {
    min-height: calc(100vh - 4.5rem);
    max-height: calc(100vh - 4.5rem);
  }
}
