@font-face {
  font-family: "Rockwell";
  src: url("/assets/fonts/ROCK.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rockwell";
  src: url("/assets/fonts/ROCKI.TTF") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Rockwell";
  src: url("/assets/fonts/ROCKB.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rockwell";
  src: url("/assets/fonts/ROCKBI.TTF") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Rockwell Condensed";
  src: url("/assets/fonts/ROCC____.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rockwell Condensed";
  src: url("/assets/fonts/ROCCB___.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #000000;
  --surface: #050505;
  --surface-soft: #101010;
  --card: #0b0b0b;
  --accent: #fedd00;
  --accent-deep: #ebc900;
  --text: #f7f2d0;
  --text-dark: #151515;
  --muted: #c9be70;
  --line: rgba(244, 213, 0, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 0 18px rgba(244, 213, 0, 0.16);
  --content-max: 1440px;
  --section-max: 1360px;
  --gutter: clamp(12px, 1.55vw, 26px);
  --gutter-fluid: clamp(12px, 2vw, 34px);
  --font-body: "Rockwell", Georgia, "Times New Roman", serif;
  --font-display: "Rockwell", Georgia, "Times New Roman", serif;
  --font-condensed: "Rockwell Condensed", "Rockwell", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #000;
  font-family: var(--font-body);
}

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

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

.page-shell {
  overflow: clip;
}

.container {
  width: 100%;
  max-width: var(--content-max);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin: 0 auto;
}

.container--fluid {
  max-width: none;
  padding-left: var(--gutter-fluid);
  padding-right: var(--gutter-fluid);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;
  border-bottom: 1px solid rgba(254, 221, 0, 0.12);
}

.header-inner {
  display: grid;
  grid-template-rows: auto auto;
  gap: clamp(8px, 0.8vw, 12px);
  padding-top: clamp(14px, 1.2vw, 20px);
  padding-bottom: clamp(10px, 1vw, 16px);
}

.header-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-top-spacer {
  display: block;
  width: 1px;
  height: 1px;
}

.brand img,
.footer-inner img {
  height: clamp(36px, 2.2vw, 42px);
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.25vw, 18px);
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: clamp(0.84rem, 0.8vw, 0.98rem);
  font-weight: 400;
  color: #fedd00;
  letter-spacing: 0.01em;
}

.nav a {
  display: inline-block;
  padding: 4px 0;
  color: #fedd00;
  transition: color 140ms ease, background-color 140ms ease;
}

.nav a:hover,
.socials a:hover {
  color: var(--accent);
}

.socials {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0;
  line-height: 1;
}

.socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.socials--header {
  justify-self: end;
}

.mobile-menu-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(254, 221, 0, 0.55);
  border-radius: 10px;
  background: #fedd00;
  color: #050505;
  cursor: pointer;
}

.mobile-menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

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

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

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

.nav--header {
  justify-content: center;
  flex-wrap: nowrap;
}

.nav-link {
  border-radius: 8px;
  padding: 4px 10px;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #000;
  background: #fedd00;
  outline: none;
}

.nav--header .nav-link:hover,
.nav--header .nav-link:focus-visible {
  color: #000;
}

.nav--header .nav-link--home {
  padding-left: 12px;
  padding-right: 12px;
  color: #000;
  background: #fedd00;
}

.hero {
  padding: 0 0 clamp(10px, 1.4vw, 18px);
}

.hero-card {
  position: relative;
  min-height: clamp(360px, 36vw, 620px);
  overflow: hidden;
  border-radius: 0;
  border: 1px solid rgba(244, 213, 0, 0.08);
  background: #111;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.18) 47%, rgba(0, 0, 0, 0.68) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.54) 100%);
}

.hero-copy-wrap {
  position: relative;
  z-index: 1;
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.hero-copy {
  position: relative;
  width: min(100%, clamp(560px, 42vw, 760px));
  padding: clamp(24px, 3.2vw, 48px) 0 clamp(20px, 2vw, 32px) 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
}

.hero-copy h1 {
  color: var(--accent);
  font-size: clamp(2.6rem, 4.6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: clamp(12px, 1.2vw, 18px);
  max-width: 760px;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy p {
  max-width: 560px;
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 0.76vw, 0.95rem);
  line-height: 1.44;
  color: #ffffff;
}

.hero-copy .hero-note {
  color: #f4d500;
}

.section {
  padding: clamp(20px, 2.4vw, 38px) 0;
}

.section-heading {
  margin-bottom: 14px;
  text-align: center;
}

.section-heading h2 {
  color: var(--accent);
  font-size: clamp(2.2rem, 3.3vw, 4rem);
  text-shadow: var(--shadow);
}

.section-heading p,
.section-heading span {
  display: block;
}

.section-heading.dark-on-yellow h2,
.section-heading.dark-on-yellow p,
.section-heading.dark-on-yellow span {
  color: var(--text-dark);
  text-shadow: none;
}

.section-heading p {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 0.92vw, 1.12rem);
  font-weight: 400;
}

.section-heading span {
  width: min(74ch, 100%);
  margin: 6px auto 0;
  font-family: var(--font-body);
  font-size: clamp(0.84rem, 0.82vw, 1.02rem);
  line-height: 1.45;
}

.mobile-snap-carousel {
  position: relative;
}

.mobile-carousel-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(254, 221, 0, 0.9);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.94);
  color: #fedd00;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.mobile-carousel-arrow:hover,
.mobile-carousel-arrow:focus-visible {
  outline: none;
  background: #fedd00;
  color: #050505;
}

.mobile-carousel-arrow[disabled] {
  opacity: 0.42;
  cursor: default;
}

.people-section,
.clients-section {
  background: var(--accent);
}

.about-section {
  background: #fedd00;
  padding-top: clamp(12px, 1.4vw, 20px);
  padding-bottom: clamp(22px, 2.2vw, 44px);
  overflow: hidden;
}

.about-board {
  position: relative;
  width: min(100%, 1420px);
  aspect-ratio: 1440 / 900;
  --about-left: 1%;
  --about-right: 0.2%;
  --about-top: 7.8%;
  --about-bottom: 2.4%;
  --about-gap: 3.2%;
  --about-side-width: 28.8%;
  --about-mid-height: 28.5%;
  --about-side-height: calc(100% - var(--about-top) - var(--about-bottom) - var(--about-mid-height) - var(--about-gap));
  margin: 0 auto;
}

.about-artwork {
  position: absolute;
  left: -3.4%;
  top: -2%;
  width: min(108%, 1450px);
  max-width: 1450px;
  height: 106%;
  object-fit: cover;
  object-position: left top;
  pointer-events: none;
}

.about-card,
.about-chip {
  position: relative;
  z-index: 1;
}

.about-card {
  position: absolute;
  background: #090909;
  color: #f6f2df;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.about-card h3 {
  font-size: clamp(1.1rem, 1.55vw, 2.05rem);
  line-height: 1.04;
  color: var(--accent);
}

.about-card-front {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(14px, 1.15vw, 22px);
  background: #090909;
  transition: opacity 220ms ease;
}

.about-card-front h3 {
  margin: 0;
  max-width: 88%;
  text-wrap: balance;
}

.about-card-hover-pane {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 220ms ease;
}

.about-card-hover-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card-static-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.6vw, 10px);
  width: min(100%, 62%);
  padding: clamp(12px, 1.08vw, 18px);
}

.about-card-copy h3 {
  margin: 0;
  text-wrap: balance;
}

.about-card-copy p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.66rem, 0.64vw, 0.92rem);
  line-height: 1.3;
  color: #f6f2df;
}

.about-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: clamp(7px, 0.6vw, 10px);
}

.about-list li {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.66rem, 0.64vw, 0.92rem);
  line-height: 1.3;
  color: #f6f2df;
}

.about-card--hover:hover .about-card-front,
.about-card--hover:focus-within .about-card-front {
  opacity: 0;
  pointer-events: none;
}

.about-card--hover:hover .about-card-hover-pane,
.about-card--hover:focus-within .about-card-hover-pane {
  opacity: 1;
}

.about-card--who {
  left: var(--about-left);
  top: var(--about-top);
  width: var(--about-side-width);
  height: var(--about-side-height);
}

.about-card--how {
  left: calc(var(--about-left) + var(--about-side-width) + var(--about-gap));
  top: var(--about-top);
  right: var(--about-right);
  height: var(--about-mid-height);
}

.about-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: grid;
  place-items: center;
}

.about-chip img {
  width: clamp(190px, 20vw, 380px);
}

.about-card--region {
  right: var(--about-right);
  bottom: var(--about-bottom);
  width: var(--about-side-width);
  height: var(--about-side-height);
}

.about-card--define {
  left: var(--about-left);
  right: calc(var(--about-right) + var(--about-side-width) + var(--about-gap));
  bottom: var(--about-bottom);
  height: var(--about-mid-height);
}

.about-card-copy--who,
.about-card-copy--region {
  width: min(100%, 84%);
}

.about-card-copy--who {
  width: min(100%, 80%);
}

.about-card-copy--how,
.about-card-copy--define {
  width: min(100%, 60%);
}

.about-card-copy--who p {
  font-size: clamp(0.56rem, 0.5vw, 0.76rem);
  line-height: 1.15;
}

.about-card-copy--define .about-list {
  gap: clamp(5px, 0.45vw, 8px);
}

.about-card-copy--define .about-list li {
  font-size: clamp(0.58rem, 0.52vw, 0.8rem);
  line-height: 1.2;
}

.about-card-copy--region {
  width: min(100%, 86%);
  padding-right: clamp(8px, 0.7vw, 13px);
}

.about-card-copy--region h3 {
  font-size: clamp(0.96rem, 1.34vw, 1.8rem);
  max-width: 96%;
}

@media (max-width: 1500px) and (min-width: 961px) {
  .about-board {
    --about-side-width: 27%;
    --about-gap: 3%;
    --about-bottom: 2.2%;
    aspect-ratio: 1440 / 860;
  }

  .about-chip img {
    width: clamp(170px, 18vw, 320px);
  }

  .about-card-copy--who p {
    font-size: clamp(0.52rem, 0.46vw, 0.7rem);
  }
}

@media (max-width: 1240px) and (min-width: 961px) {
  .about-board {
    --about-side-width: 25.4%;
    --about-gap: 2.6%;
    --about-bottom: 2%;
    --about-mid-height: 27.8%;
    aspect-ratio: 1440 / 820;
  }

  .about-chip img {
    width: clamp(150px, 16vw, 270px);
  }

  .about-card-copy--who p {
    font-size: clamp(0.5rem, 0.42vw, 0.64rem);
  }

  .about-card-copy--define .about-list li {
    font-size: clamp(0.54rem, 0.47vw, 0.7rem);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 16px);
  width: min(100%, var(--section-max));
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 505 / 359;
  background: #090909;
}

.service-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.service-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  transition: opacity 200ms ease;
}

.service-card-image--front {
  opacity: 1;
}

.service-hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(8px, 0.9vw, 14px);
  padding: clamp(12px, 1.2vw, 20px);
  border-radius: 24px;
  border: 1px solid rgba(254, 221, 0, 0.85);
  background: #030303;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.service-hover-copy {
  display: grid;
  gap: clamp(6px, 0.6vw, 10px);
  color: #ffffff;
}

.service-hover-copy h3,
.service-hover-copy h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--accent);
  line-height: 1.08;
}

.service-hover-copy h3 {
  font-size: clamp(0.86rem, 0.82vw, 1.08rem);
}

.service-hover-copy h4 {
  margin-top: clamp(10px, 0.9vw, 16px);
  font-size: clamp(0.96rem, 0.96vw, 1.2rem);
}

.service-hover-copy p,
.service-hover-list li {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.72vw, 0.96rem);
  line-height: 1.26;
}

.service-hover-list {
  margin: 0;
  padding-left: 1.05em;
  display: grid;
  gap: clamp(2px, 0.25vw, 5px);
}

.service-hover-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: auto;
  font-family: var(--font-display);
  font-size: clamp(0.84rem, 0.86vw, 1.08rem);
  font-weight: 400;
  color: var(--accent);
}

.service-hover-actions {
  display: grid;
  gap: clamp(5px, 0.55vw, 9px);
  margin-top: auto;
}

.service-hover-cta::before {
  content: "\2192";
  font-size: 1.18em;
  line-height: 1;
}

.service-card--trade .service-hover-copy {
  gap: clamp(4px, 0.45vw, 7px);
}

.service-card--trade .service-hover-copy p,
.service-card--trade .service-hover-list li {
  font-size: clamp(0.66rem, 0.62vw, 0.86rem);
  line-height: 1.22;
}

.service-card--trade .service-hover-copy h4 {
  margin-top: clamp(10px, 0.9vw, 16px);
}

.service-card--hover:hover .service-card-image--front,
.service-card--hover:focus-within .service-card-image--front,
.service-card--hover:focus-visible .service-card-image--front {
  opacity: 0;
}

.service-card--hover:hover .service-hover,
.service-card--hover:focus-within .service-hover,
.service-card--hover:focus-visible .service-hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.people-section {
  padding-top: 16px;
  padding-bottom: 34px;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 16px);
  width: min(100%, var(--section-max));
  margin: 0 auto;
}

.person-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #0d0d0d;
  color: #fff;
}

.person-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  pointer-events: none;
}

.person-card img {
  width: 100%;
  aspect-ratio: 294 / 360;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 240ms ease;
}

.person-card:hover img,
.person-card:focus-within img {
  filter: grayscale(0);
}

.person-meta {
  position: absolute;
  left: clamp(10px, 1vw, 16px);
  right: clamp(10px, 1vw, 16px);
  bottom: clamp(10px, 1vw, 16px);
  z-index: 1;
  padding: 0;
}

.person-meta strong,
.person-meta span {
  display: block;
}

.person-meta strong {
  font-family: var(--font-display);
  font-size: clamp(0.94rem, 1vw, 1.22rem);
  line-height: 1.08;
  color: #ffffff;
}

.person-meta span {
  margin-top: 3px;
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 0.74vw, 0.9rem);
  line-height: 1.2;
  color: #efe3a4;
}

.news-carousel {
  position: relative;
  width: min(100%, var(--section-max));
  margin: 0 auto;
}

.news-carousel-viewport {
  overflow: hidden;
}

.news-carousel-track {
  display: flex;
  align-items: stretch;
  transition: transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.news-page {
  flex: 0 0 100%;
  min-width: 0;
}

.news-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: clamp(34px, 2.4vw, 42px);
  height: clamp(34px, 2.4vw, 42px);
  border: 1px solid rgba(254, 221, 0, 0.85);
  border-radius: 999px;
  background: rgba(6, 6, 6, 0.92);
  color: #fedd00;
  font-size: clamp(1.05rem, 1.2vw, 1.28rem);
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.news-carousel-arrow:hover,
.news-carousel-arrow:focus-visible {
  outline: none;
  background: #fedd00;
  color: #0a0a0a;
  border-color: #fedd00;
}

.news-carousel-arrow[hidden] {
  display: none;
}

.news-carousel-arrow--prev {
  left: clamp(-18px, -1.1vw, -10px);
}

.news-carousel-arrow--next {
  right: clamp(-18px, -1.1vw, -10px);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 16px);
  width: 100%;
  margin: 0 auto;
  align-items: stretch;
}

.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #ebe8da;
  color: #111;
  min-height: 100%;
}

.news-media-link {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  background: #090909;
  overflow: hidden;
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.news-copy {
  position: static;
  padding: clamp(12px, 1vw, 16px);
  min-height: clamp(150px, 13vw, 220px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  gap: 12px;
}

.news-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 0.95vw, 1.22rem);
  line-height: 1.26;
  color: #111;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.news-copy p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 0.86vw, 1.04rem);
  line-height: 1.2;
  font-weight: 600;
  color: #111;
}

.news-copy a {
  color: #111;
}

.news-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #f3ebba;
}

.article-page {
  background:
    radial-gradient(circle at 18% 5%, rgba(254, 221, 0, 0.13), rgba(0, 0, 0, 0) 28%),
    #000;
}

.article-detail {
  padding: clamp(28px, 4.2vw, 74px) 0 clamp(42px, 5vw, 90px);
}

.article-detail__container {
  max-width: 1240px;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(16px, 1.8vw, 28px);
  color: #fedd00;
  font-family: var(--font-body);
  font-size: clamp(0.86rem, 0.85vw, 1rem);
}

.article-back-link::before {
  content: "←";
  font-size: 1.25em;
  line-height: 1;
}

.article-back-link:hover,
.article-back-link:focus-visible {
  color: #ffffff;
  outline: none;
}

.article-masthead {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(18px, 2vw, 34px);
  align-items: stretch;
  padding: clamp(16px, 2vw, 30px);
  border: 1px solid rgba(254, 221, 0, 0.24);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(254, 221, 0, 0.13), rgba(255, 255, 255, 0.02) 34%, rgba(0, 0, 0, 0.94) 100%),
    #070707;
  box-shadow: 0 0 42px rgba(254, 221, 0, 0.1);
}

.article-masthead--text-only {
  grid-template-columns: 1fr;
}

.article-masthead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(330px, 28vw, 500px);
}

.article-kicker {
  align-self: flex-start;
  margin: 0 0 clamp(14px, 1.4vw, 22px);
  padding: 7px 14px 6px;
  border-radius: 999px;
  background: #fedd00;
  color: #090909;
  font-family: var(--font-body);
  font-size: clamp(0.76rem, 0.7vw, 0.9rem);
  line-height: 1;
}

.article-masthead h1 {
  max-width: 13.4ch;
  color: #fedd00;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 3.45vw, 4.3rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-shadow: 0 0 18px rgba(254, 221, 0, 0.18);
}

.article-meta {
  margin: clamp(14px, 1.2vw, 20px) 0 0;
  color: #d8cf96;
  font-size: clamp(0.82rem, 0.76vw, 0.98rem);
}

.article-lead {
  max-width: 58ch;
  margin: clamp(16px, 1.6vw, 26px) 0 0;
  color: #ffffff;
  font-size: clamp(0.98rem, 0.95vw, 1.16rem);
  line-height: 1.55;
}

.article-featured-media {
  min-height: 0;
  aspect-ratio: 16 / 9;
  align-self: center;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #090909;
}

.article-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.article-body {
  width: min(100%, 880px);
  margin: clamp(24px, 2.4vw, 40px) auto 0;
  padding: clamp(30px, 4vw, 62px) clamp(24px, 4.5vw, 76px);
  border-radius: 30px;
  background: #ebe8da;
  color: #101010;
  border: 1px solid rgba(254, 221, 0, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.article-richtext {
  color: #111111;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.98vw, 1.18rem);
  line-height: 1.72;
}

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

.article-richtext > p:first-of-type {
  font-size: clamp(1.14rem, 1.2vw, 1.32rem);
  line-height: 1.62;
}

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

.article-richtext img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: clamp(20px, 2vw, 32px) auto;
  border-radius: 22px;
}

.article-richtext h1,
.article-richtext h2,
.article-richtext h3,
.article-richtext h4 {
  margin: clamp(28px, 3vw, 42px) 0 12px;
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
}

.article-richtext h1,
.article-richtext h2 {
  font-size: clamp(1.85rem, 2.2vw, 2.7rem);
}

.article-richtext h3 {
  font-size: clamp(1.35rem, 1.55vw, 2rem);
}

.article-richtext p,
.article-richtext ul,
.article-richtext ol,
.article-richtext blockquote {
  margin: 0 0 18px;
}

.article-richtext a {
  color: #0a0a0a;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: #fedd00;
  text-underline-offset: 4px;
}

.article-richtext blockquote {
  padding: 18px 22px;
  border-left: 6px solid #fedd00;
  border-radius: 16px;
  background: rgba(254, 221, 0, 0.18);
}

.article-related {
  width: min(100%, 1080px);
  margin: clamp(30px, 3vw, 56px) auto 0;
}

.article-related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(14px, 1.5vw, 24px);
}

.article-related-heading h2 {
  color: #fedd00;
  font-size: clamp(2rem, 2.4vw, 3.2rem);
  line-height: 1;
}

.article-related-heading a {
  color: #fedd00;
  font-size: clamp(0.84rem, 0.8vw, 0.98rem);
}

.article-related-heading a:hover,
.article-related-heading a:focus-visible {
  color: #ffffff;
  outline: none;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 18px);
}

.article-mini-card {
  display: grid;
  overflow: hidden;
  border-radius: 22px;
  background: #ebe8da;
  color: #111111;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-mini-card:hover,
.article-mini-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 0 22px rgba(254, 221, 0, 0.24);
  outline: none;
}

.article-mini-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-mini-card span {
  display: block;
  padding: 14px 16px 18px;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 0.95vw, 1.18rem);
  line-height: 1.22;
}

.credentials-page {
  background:
    radial-gradient(circle at 16% 5%, rgba(254, 221, 0, 0.14), rgba(0, 0, 0, 0) 28%),
    #000;
}

.credentials-hero {
  padding: clamp(26px, 4vw, 72px) 0 clamp(42px, 5vw, 88px);
}

.credentials-shell {
  max-width: 1320px;
}

.credentials-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(16px, 2vw, 34px);
  align-items: end;
  margin-bottom: clamp(18px, 2vw, 30px);
}

.credentials-heading p {
  grid-column: 1 / -1;
  width: fit-content;
  margin: 0;
  padding: 7px 14px 6px;
  border-radius: 999px;
  background: #fedd00;
  color: #090909;
  font-size: clamp(0.76rem, 0.7vw, 0.9rem);
  line-height: 1;
}

.credentials-heading h1 {
  max-width: 15ch;
  color: #fedd00;
  font-size: clamp(2.5rem, 4.2vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.credentials-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.credentials-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fedd00;
  color: #070707;
  border: 1px solid #fedd00;
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 0.82vw, 0.98rem);
}

.credentials-action--ghost {
  background: transparent;
  color: #fedd00;
}

.credentials-action:hover,
.credentials-action:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: #070707;
  outline: none;
}

.credentials-viewer {
  height: min(78vh, 900px);
  min-height: 620px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(254, 221, 0, 0.28);
  background: #111111;
  box-shadow: 0 0 42px rgba(254, 221, 0, 0.12);
}

.credentials-viewer iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #111111;
}

.credentials-empty {
  width: min(100%, 760px);
  padding: clamp(26px, 3vw, 46px);
  border-radius: 28px;
  border: 1px solid rgba(254, 221, 0, 0.24);
  background: #070707;
}

.credentials-empty h1 {
  color: #fedd00;
  font-size: clamp(2.2rem, 3.6vw, 4.7rem);
  line-height: 0.96;
}

.credentials-empty p {
  max-width: 58ch;
  margin: 16px 0 0;
  color: #ffffff;
  line-height: 1.5;
}

.clients-section {
  padding-top: 14px;
  padding-bottom: 18px;
  overflow: hidden;
}

.clients-marquee {
  --clients-gap: clamp(6px, 0.7vw, 12px);
  --clients-slide-width: clamp(128px, 11vw, 190px);
  --clients-speed: 20s;
  display: grid;
  gap: var(--clients-gap);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: clamp(8px, 1.5vw, 24px);
  overflow: hidden;
}

.clients-marquee-row {
  overflow: hidden;
}

.clients-marquee-track {
  display: flex;
  width: max-content;
  gap: var(--clients-gap);
  will-change: transform;
  animation: clients-marquee-left var(--clients-speed) linear infinite;
}

.clients-marquee-row--right .clients-marquee-track {
  animation-name: clients-marquee-right;
}

.clients-marquee-row--left .clients-marquee-track {
  animation-name: clients-marquee-left;
}

.clients-marquee:hover .clients-marquee-track {
  animation-play-state: paused;
}

.clients-slide {
  flex: 0 0 var(--clients-slide-width);
  min-width: 0;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 300 / 178;
  overflow: hidden;
  border-radius: 18px;
  background: #060606;
}

.client-logo img {
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
}

@keyframes clients-marquee-left {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-33.333%, 0, 0);
  }
}

@keyframes clients-marquee-right {
  from {
    transform: translate3d(-33.333%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.site-footer {
  padding: 0;
  background: #000;
  border-top: 1px solid rgba(254, 221, 0, 0.45);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: clamp(14px, 1.6vw, 30px);
  color: #ffffff;
  min-height: 136px;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: clamp(0.68rem, 0.72vw, 0.86rem);
}

.footer-left {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: clamp(14px, 1.6vw, 26px);
}

.footer-brand-stack {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-contact {
  align-self: start;
}

.footer-contact p {
  margin: 0;
  line-height: 1.32;
  font-family: var(--font-body);
  color: #ffffff;
}

.footer-contact-title {
  margin-bottom: 2px;
  font-family: var(--font-display);
  font-size: clamp(0.74rem, 0.8vw, 0.92rem);
}

.footer-rights {
  margin-top: 10px !important;
  color: #fedd00 !important;
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 0.7vw, 0.84rem);
}

.footer-socials-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials-left a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #ffffff;
  transition: color 150ms ease;
}

.footer-socials-left a:hover,
.footer-socials-left a:focus-visible {
  color: #fedd00;
  outline: none;
}

.footer-socials-left svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-right {
  display: grid;
  justify-items: end;
  align-content: center;
  gap: 12px;
  align-self: center;
}

.footer-powered {
  margin: 0;
  color: #d4ca92;
  font-family: var(--font-body);
  font-size: clamp(0.64rem, 0.68vw, 0.8rem);
  white-space: nowrap;
}

.footer-powered a {
  color: #fedd00;
  text-decoration: none;
}

.footer-powered a:hover,
.footer-powered a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  outline: none;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px 14px;
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 0.66vw, 0.78rem);
}

.footer-legal a,
.footer-cookie-settings {
  color: #ffffff;
  text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a:focus-visible,
.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible {
  color: #fedd00;
  outline: none;
}

.footer-cookie-settings {
  padding: 0;
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.legal-page {
  min-height: 70vh;
  padding: clamp(34px, 5vw, 80px) 0;
  background: #050505;
}

.legal-document {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 70px);
  color: #171717;
  background: #f6f1dd;
  border: 1px solid rgba(254, 221, 0, 0.4);
  border-radius: 28px;
}

.legal-document h1,
.legal-document h2 {
  font-family: var(--font-display);
}

.legal-document h1 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.legal-document h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.legal-document p,
.legal-document li {
  font-family: var(--font-body);
  font-size: clamp(0.94rem, 1.1vw, 1.08rem);
  line-height: 1.65;
}

.legal-document a {
  color: #604f00;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-document .legal-updated {
  color: #655f4a;
  font-size: 0.88rem;
}

.legal-company-data {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid rgba(23, 23, 23, 0.16);
  border-radius: 16px;
  overflow: hidden;
}

.legal-company-data div {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) 1.3fr;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.12);
}

.legal-company-data div:last-child {
  border-bottom: 0;
}

.legal-company-data dt,
.legal-company-data dd {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.45;
}

.legal-company-data dt {
  font-weight: 700;
}

.cookie-notice {
  position: fixed;
  right: clamp(14px, 2.4vw, 38px);
  bottom: clamp(14px, 2.4vw, 34px);
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 18px;
  width: min(720px, calc(100vw - 28px));
  max-height: min(820px, calc(100dvh - 28px));
  overflow-y: auto;
  padding: 18px 20px;
  color: #ffffff;
  background: #080808;
  border: 1px solid rgba(254, 221, 0, 0.72);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.52);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice__copy strong {
  display: block;
  margin-bottom: 5px;
  color: #fedd00;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.cookie-notice__copy p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.86rem;
  line-height: 1.45;
}

.cookie-notice__copy a {
  color: #fedd00;
  text-underline-offset: 3px;
}

.cookie-preferences {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.cookie-preferences h2 {
  margin: 4px 0 2px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1rem;
}

.cookie-preferences[hidden] {
  display: none;
}

.cookie-preference-row {
  padding: 11px 13px;
  color: #ffffff;
  background: #151515;
  border: 1px solid rgba(254, 221, 0, 0.18);
  border-radius: 12px;
  font-family: var(--font-body);
}

.cookie-preference-row summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
}

.cookie-preference-row summary::-webkit-details-marker {
  display: none;
}

.cookie-preference-row summary b::before {
  display: inline-block;
  width: 1em;
  margin-right: 5px;
  color: #fedd00;
  content: "+";
}

.cookie-preference-row[open] summary b::before {
  content: "−";
}

.cookie-preference-row p {
  margin: 10px 27px 2px;
  color: #bebaa7;
  font-size: 0.76rem;
  line-height: 1.5;
}

.cookie-preference-row input {
  width: 22px;
  height: 22px;
  accent-color: #fedd00;
}

.cookie-required-label {
  color: #fedd00;
  font-size: 0.75rem;
  white-space: nowrap;
}

.cookie-notice__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.cookie-notice__button {
  min-height: 42px;
  padding: 0 18px;
  color: #080808;
  background: #fedd00;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  cursor: pointer;
}

.cookie-notice__button:hover,
.cookie-notice__button:focus-visible {
  color: #fedd00;
  background: #242424;
  outline: 2px solid #fedd00;
  outline-offset: 2px;
}

.cookie-notice__button--secondary {
  color: #ffffff;
  background: #222222;
  border: 1px solid rgba(254, 221, 0, 0.5);
}

@media (max-width: 640px) {
  .legal-company-data div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .cookie-notice {
    left: 14px;
    right: 14px;
    grid-template-columns: 1fr;
    gap: 14px;
    width: auto;
    padding: 17px;
  }

  .cookie-notice__button {
    width: 100%;
  }

  .cookie-notice__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.locale-switcher {
  display: grid;
  gap: 6px;
  justify-items: end;
  align-content: center;
  align-self: center;
}

.locale-switcher label {
  color: #d4ca92;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.locale-switcher select {
  min-height: 34px;
  padding: 0 11px;
  color: #f7f2d0;
  background: #0a0a0a;
  border: 1px solid rgba(244, 213, 0, 0.18);
  border-radius: 999px;
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-rows: auto auto;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .header-top {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
  }

  .header-top-spacer {
    display: none;
  }

  .socials--header {
    justify-self: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
    gap: 14px;
    min-height: 0;
  }

  .footer-left {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .nav {
    gap: 12px;
    font-size: 0.82rem;
  }

  .nav--header {
    flex-wrap: wrap;
  }

  .locale-switcher {
    justify-items: start;
  }

  .footer-right {
    justify-items: start;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .socials a {
    width: 17px;
    height: 17px;
  }

  .hero-copy {
    width: min(100%, 620px);
    padding-top: 28px;
  }

  .about-board {
    width: 100%;
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 24px 18px 18px;
    background: url("../img/Vector Smart Object.png") left top / cover no-repeat;
  }

  .about-artwork {
    display: none;
  }

  .about-card,
  .about-chip {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    height: auto;
  }

  .about-card--who,
  .about-card--how,
  .about-card--define {
    min-height: 160px;
  }

  .about-card--region {
    min-height: 220px;
  }

  .about-card--who {
    min-height: 220px;
  }

  .about-chip {
    justify-self: center;
    align-self: center;
    transform: none;
  }

  .about-card-copy {
    width: min(100%, 72%);
  }

  .about-card-copy--who,
  .about-card-copy--region {
    width: min(100%, 86%);
  }

  .about-card--define {
    grid-column: 1 / -1;
  }

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

  .article-masthead {
    grid-template-columns: 1fr;
  }

  .article-masthead h1 {
    max-width: 14ch;
  }

  .article-masthead-copy {
    min-height: auto;
  }

  .article-featured-media {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

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

  .credentials-heading {
    grid-template-columns: 1fr;
  }

  .credentials-actions {
    justify-content: flex-start;
  }

  .credentials-viewer {
    min-height: 560px;
  }

  .clients-marquee {
    --clients-slide-width: clamp(118px, 20vw, 170px);
    padding-inline: 8px;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container--fluid {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-copy-wrap {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero {
    padding-top: 0;
  }

  .header-inner {
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand img {
    height: 32px;
  }

  .nav {
    font-size: 0.74rem;
    gap: 8px;
  }

  .socials a {
    width: 16px;
    height: 16px;
  }

  .socials svg {
    width: 13px;
    height: 13px;
  }

  .nav-link,
  .nav-link--home {
    padding-left: 9px;
    padding-right: 9px;
  }

  .hero-card {
    min-height: 340px;
  }

  .hero-copy {
    width: min(100%, 100%);
    padding: 20px 12px 18px 12px;
  }

  .hero-copy h1 {
    font-size: 2.25rem;
    max-width: 100%;
  }

  .hero-copy p {
    max-width: 300px;
    font-size: 0.66rem;
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .about-board,
  .services-grid,
  .people-grid,
  .news-grid,
  .article-related-grid {
    grid-template-columns: 1fr;
  }

  .about-board {
    display: grid;
    padding: 18px 14px 14px;
  }

  .article-detail {
    padding-top: 24px;
  }

  .article-masthead,
  .article-body {
    border-radius: 22px;
  }

  .article-masthead {
    padding: 14px;
  }

  .article-masthead h1 {
    max-width: 100%;
    font-size: 2.2rem;
  }

  .article-lead {
    font-size: 0.94rem;
  }

  .article-body {
    padding: 20px 16px;
  }

  .article-related-heading {
    display: grid;
    align-items: start;
  }

  .credentials-heading h1 {
    max-width: 100%;
    font-size: 2.35rem;
  }

  .credentials-viewer {
    min-height: 480px;
    height: 72vh;
    border-radius: 20px;
  }

  .clients-marquee {
    --clients-gap: 8px;
    --clients-slide-width: calc((100vw - 16px - var(--clients-gap)) / 2.25);
    padding-inline: 8px;
  }

}

@media (max-width: 768px) {
  body.is-menu-open {
    overflow: hidden;
  }

  .site-header {
    border-bottom-color: rgba(254, 221, 0, 0.28);
  }

  .header-inner {
    position: relative;
    display: block;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .header-top {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .header-top-spacer,
  .socials--header {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .brand {
    justify-self: start;
  }

  .brand img {
    height: 34px;
  }

  .nav--header {
    position: absolute;
    top: calc(100% + 9px);
    left: 10px;
    right: 10px;
    z-index: 20;
    display: grid;
    justify-content: stretch;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(254, 221, 0, 0.32);
    border-radius: 18px;
    background: rgba(3, 3, 3, 0.98);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

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

  .nav--header .nav-link {
    display: block;
    width: 100%;
    padding: 11px 13px;
    border-radius: 12px;
    color: #fedd00;
    background: transparent;
    text-align: left;
    font-size: 1rem;
  }

  .nav--header .nav-link--home,
  .nav--header .nav-link:hover,
  .nav--header .nav-link:focus-visible {
    color: #050505;
    background: #fedd00;
  }

  .section {
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .section-heading {
    margin-bottom: 12px;
  }

  .about-section {
    padding-bottom: 28px;
  }

  .mobile-snap-carousel {
    width: 100%;
  }

  .mobile-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 12;
    display: inline-flex;
    transform: translateY(-50%);
  }

  .mobile-carousel-arrow--prev {
    left: 4px;
  }

  .mobile-carousel-arrow--next {
    right: 4px;
  }

  .about-board {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: calc(100vw - 64px);
    margin: 0 auto;
    padding: 0 0 4px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    -webkit-overflow-scrolling: touch;
    background: transparent;
  }

  .about-board::-webkit-scrollbar,
  .people-grid::-webkit-scrollbar,
  .news-carousel-viewport::-webkit-scrollbar {
    height: 0;
  }

  .about-artwork {
    display: none;
  }

  .about-card,
  .about-chip {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    flex: 0 0 100%;
    width: auto;
    height: auto;
    min-height: 380px;
    scroll-snap-align: center;
  }

  .about-card {
    border-radius: 22px;
    background: #090909;
  }

  .about-card--who {
    min-height: 500px;
  }

  .about-card--how,
  .about-card--define {
    min-height: 500px;
  }

  .about-card--region {
    min-height: 500px;
  }

  .about-chip {
    display: none;
  }

  .about-chip img {
    width: min(78%, 290px);
  }

  .about-card-front {
    opacity: 0;
    pointer-events: none;
  }

  .about-card-hover-pane {
    opacity: 1;
  }

  .about-card-hover-bg {
    inset: auto 0 0;
    width: 100%;
    height: 58%;
    object-fit: cover;
    object-position: center bottom;
    opacity: 1;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
  }

  .about-card--how .about-card-hover-bg,
  .about-card--define .about-card-hover-bg {
    inset: 0 0 0 auto;
    width: 58%;
    height: 100%;
    object-position: right center;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%);
  }

  .about-card--region .about-card-hover-bg {
    height: 60%;
    object-position: center bottom;
  }

  .about-card-copy,
  .about-card-copy--who,
  .about-card-copy--how,
  .about-card-copy--define,
  .about-card-copy--region {
    width: 100%;
    padding: 22px;
  }

  .about-card-copy h3 {
    font-size: clamp(1.5rem, 7.6vw, 2rem);
    line-height: 0.98;
  }

  .about-card-copy p,
  .about-list li,
  .about-card-copy--who p,
  .about-card-copy--define .about-list li {
    font-size: clamp(0.72rem, 3.05vw, 0.9rem);
    line-height: 1.25;
  }

  .about-card-copy--who {
    padding-bottom: 286px;
  }

  .about-card-copy--how,
  .about-card-copy--define {
    width: min(100%, 64%);
    padding-bottom: 22px;
  }

  .about-card-copy--region {
    padding-bottom: 296px;
  }

  .about-card-copy--region h3 {
    font-size: clamp(1.38rem, 7vw, 1.9rem);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    padding: 0 2px;
  }

  .service-card {
    border-radius: 18px;
    aspect-ratio: 1 / 1;
  }

  .service-hover {
    padding: 10px;
    border-radius: 18px;
    overflow-y: auto;
  }

  .service-hover-copy {
    gap: 5px;
  }

  .service-hover-copy h3 {
    font-size: 0.86rem;
  }

  .service-hover-copy h4 {
    margin-top: 5px;
    font-size: 0.9rem;
  }

  .service-hover-copy p,
  .service-hover-list li,
  .service-card--trade .service-hover-copy p,
  .service-card--trade .service-hover-list li {
    font-size: clamp(0.58rem, 2.35vw, 0.78rem);
    line-height: 1.12;
  }

  .service-hover-cta {
    font-size: clamp(0.66rem, 2.75vw, 0.86rem);
  }

  .people-grid {
    display: flex;
    gap: 12px;
    width: calc(100vw - 64px);
    margin: 0 auto;
    padding: 0 0 4px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .person-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }

  .news-carousel {
    width: 100%;
    margin: 0;
  }

  .news-carousel-viewport {
    width: calc(100vw - 64px);
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .news-carousel-track {
    gap: 12px;
    transform: none !important;
  }

  .news-page,
  .news-grid {
    display: contents;
  }

  .news-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    min-height: 0;
  }

  .news-copy {
    min-height: 148px;
  }

  .news-carousel-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }

  .news-carousel-arrow--prev {
    left: 4px;
  }

  .news-carousel-arrow--next {
    right: 4px;
  }

  .article-detail {
    padding-top: 18px;
  }

  .article-masthead {
    gap: 14px;
  }

  .article-masthead-copy {
    justify-content: flex-start;
  }

  .article-masthead h1 {
    font-size: clamp(2rem, 11vw, 3.15rem);
    line-height: 0.95;
  }

  .article-body {
    width: 100%;
    padding: 26px 20px;
  }

  .article-richtext {
    font-size: 0.98rem;
    line-height: 1.64;
  }

  .article-richtext > p:first-of-type {
    font-size: 1.13rem;
    line-height: 1.55;
  }
}
