@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 Extra Bold";
  src: url("/assets/fonts/ROCKEB.TTF") format("truetype");
  font-weight: 800;
  font-style: normal;
  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: relative;
  z-index: 20;
  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;
}

.intro-scrub {
  position: relative;
  height: clamp(260vh, 320vh, 380vh);
  background: #000;
}

.intro-scrub--hidden {
  display: none;
}

.intro-scrub__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.intro-scrub__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 160ms linear;
}

.intro-scrub__frame.is-active {
  opacity: 1;
}

.intro-scrub__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.42) 100%);
  pointer-events: none;
}

.intro-scrub__hint {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 4.2vh, 42px);
  transform: translateX(-50%);
  margin: 0;
  color: #fedd00;
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 0.9vw, 1.05rem);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

.intro-scrub__skip {
  position: absolute;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(16px, 3.2vh, 30px);
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(254, 221, 0, 0.75);
  border-radius: 999px;
  color: #fedd00;
  background: rgba(0, 0, 0, 0.65);
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.8vw, 0.9rem);
  cursor: pointer;
  transition: color 140ms ease, background-color 140ms ease;
}

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

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

.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-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;
}

.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-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-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 16px);
  width: min(100%, var(--section-max));
  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: block;
  background: #090909;
  overflow: hidden;
}

.news-card img {
  width: 100%;
  aspect-ratio: 237 / 165;
  object-fit: cover;
}

.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-shell {
  display: grid;
  gap: 22px;
}

.article-featured-media {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(244, 213, 0, 0.12);
}

.article-featured-media img {
  width: 100%;
  height: auto;
}

.article-body {
  padding: 26px;
  border-radius: 24px;
  background: #0b0b0b;
  border: 1px solid rgba(244, 213, 0, 0.12);
}

.article-excerpt {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.7;
  color: #f3ebba;
}

.article-richtext {
  color: #f6f1d5;
  line-height: 1.75;
}

.article-richtext img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 18px 0;
  border-radius: 18px;
}

.article-richtext h1,
.article-richtext h2,
.article-richtext h3,
.article-richtext h4 {
  margin: 28px 0 12px;
  color: var(--accent);
}

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

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

.clients-swiper {
  --clients-gap: clamp(8px, 0.9vw, 14px);
  --clients-slide-width: clamp(190px, 18.6vw, 300px);
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: clamp(8px, 1.6vw, 24px);
}

.clients-swiper-viewport {
  overflow: hidden;
}

.clients-swiper-track {
  display: flex;
  gap: var(--clients-gap);
  will-change: transform;
}

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

.clients-swiper-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: clamp(34px, 2.4vw, 42px);
  height: clamp(34px, 2.4vw, 42px);
  border: 1px solid rgba(254, 221, 0, 0.8);
  border-radius: 999px;
  background: rgba(6, 6, 6, 0.9);
  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;
}

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

.clients-swiper-arrow--prev {
  left: clamp(8px, 1vw, 16px);
}

.clients-swiper-arrow--next {
  right: clamp(8px, 1vw, 16px);
}

.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;
}

.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;
}

.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;
  }

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

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

  .intro-scrub {
    height: 240vh;
  }

  .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));
  }

  .clients-swiper {
    --clients-slide-width: clamp(190px, 28vw, 280px);
    padding-inline: 8px;
  }

  .clients-swiper-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.02rem;
  }
}

@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;
  }

  .intro-scrub {
    height: 210vh;
  }

  .intro-scrub__hint {
    font-size: 0.76rem;
  }

  .intro-scrub__skip {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .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 {
    grid-template-columns: 1fr;
  }

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

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

  .clients-swiper-arrow {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

}
