/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
  --bg: #0a0a12;
  --bg-2: #101022;
  --surface: #16162a;
  --surface-2: #1c1c34;
  --text: #f5f6fb;
  --muted: #a4a7bd;
  --gold: #c9a84c;
  --gold-2: #e8c96e;
  --gold-dk: #8b6914;
  --cream: #f5f1e8;
  --ink: #0c0c18;
  --ink-muted: #555568;
  --border: rgba(201, 168, 76, 0.28);
  --ok: #7dd3a7;
  --page-gutter: 2.5rem;
  --page-gutter-mobile: 1.5rem;
  --section-pad-y: 5rem;
  --section-pad-y-mobile: 4rem;
  --header-height: 74px;
  --content-frame: 1440px;
  --site-frame: 1840px;
}

/* ==========================================================================
   Base Reset And Global Page Shell
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

/* ==========================================================================
   Shared Motion
   ========================================================================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes peopleEltCycle {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  4%,
  18% {
    opacity: 1;
    transform: translateY(0);
  }
  20%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 17px;
  background:
    linear-gradient(180deg, rgba(74, 127, 165, 0.04), transparent 22%),
    linear-gradient(180deg, var(--bg), #080812 60%);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.16;
}

[data-component="site-header"] {
  display: block;
  min-height: 75px;
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
}

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

/* ==========================================================================
   Layout Primitives
   ========================================================================== */

.container {
  width: min(var(--content-frame), 92vw);
  margin: 0 auto;
}

.section {
  padding: var(--section-pad-y) 0;
  position: relative;
  z-index: 1;
}

.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.layout-stack-center {
  width: min(100%, 24rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.layout-stack-center > * {
  width: 100%;
}

/* ==========================================================================
   Shared Typography
   ========================================================================== */

.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.title {
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0 0 1rem;
}

.title .accent,
.section-title .accent {
  color: var(--gold);
}

body:not([data-page="home"]) main > .section:first-of-type .title,
body:not([data-page="home"]) main > .section:first-of-type .section-title {
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
  max-width: 64%;
  text-wrap: balance;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 0.97;
  letter-spacing: 0.03em;
  margin: 0 0 1.5rem;
}

.section-label-dk {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 1rem;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.1vw, 1.15rem);
  line-height: 1.7;
  max-width: 68ch;
}

/* ==========================================================================
   Shared Components: Buttons And Cards
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: #09090f;
}

.btn-primary:hover {
  background: var(--gold-2);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border-radius: 10px;
  padding: 1.15rem;
}

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.1vw, 1.15rem);
  line-height: 1.55;
}

/* ==========================================================================
   Shared Components: Cookie Consent
   ========================================================================== */

.sci-cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2000;
  background: #111224;
  color: #f5f6fb;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.sci-cookie p {
  margin: 0;
  line-height: 1.45;
  font-size: 0.92rem;
}

.sci-cookie a {
  color: #e8c96e;
}

.sci-cookie-copy {
  max-width: 66ch;
}

.sci-cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sci-cookie-btn {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: #f5f6fb;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.sci-cookie-btn.accept {
  background: #c9a84c;
  color: #0a0a12;
  border-color: #c9a84c;
}

/* ==========================================================================
   Site Header And Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 18, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.site-header.scrolled {
  background: rgba(10, 10, 18, 0.96);
  border-bottom-color: var(--border);
}

.site-header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-header .container,
.mobile-nav .container,
.site-footer .container {
  width: min(100%, var(--site-frame));
  max-width: var(--site-frame);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 0 0 auto;
  min-width: 0;
  min-height: 56px;
  text-decoration: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand span {
  font-family: "Bebas Neue", Inter, sans-serif;
  letter-spacing: 0.08em;
  font-size: 27px;
  line-height: 0.92;
  white-space: nowrap;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.7),
    0 4px 12px rgba(0, 0, 0, 0.36);
  transform: translateY(0.04em);
}

body[data-page="home"] .site-header-inner {
  justify-content: flex-end;
}

body[data-page="home"] .site-header .brand {
  display: none;
}

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

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.main-nav li {
  position: relative;
  margin: 0;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(9, 10, 18, 0.82);
  color: #f8f9ff;
  text-decoration: none;
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 14px;
  letter-spacing: 0.02em;
  font-weight: 600;
  text-transform: none;
  line-height: 1.2;
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 8px 22px rgba(0, 0, 0, 0.28);
  transform: translateZ(0);
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.menu-toggle,
.mobile-nav a {
  font-family: Inter, "Segoe UI", sans-serif;
}

.main-nav a:hover,
.main-nav a.active {
  border-color: rgba(232, 201, 110, 0.85);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
    rgba(13, 15, 25, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 0 0 1px rgba(232, 201, 110, 0.12),
    0 8px 22px rgba(0, 0, 0, 0.24);
}

.main-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, transparent 0 18%, rgba(232, 201, 110, 0.18) 46%, transparent 74%),
    linear-gradient(180deg, rgba(232, 201, 110, 0.16), rgba(255, 255, 255, 0.04));
  opacity: 0;
  transition: opacity 0.18s ease;
}

.main-nav a:hover::before,
.main-nav a.active::before {
  opacity: 1;
}

.main-nav a:active {
  transform: translateZ(0);
}

.main-nav a:focus-visible {
  border-color: rgba(232, 201, 110, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 0 0 2px rgba(232, 201, 110, 0.36),
    0 8px 22px rgba(0, 0, 0, 0.24);
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(9, 10, 18, 0.82);
  color: var(--text);
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 8px 22px rgba(0, 0, 0, 0.28);
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.menu-toggle:hover {
  border-color: rgba(232, 201, 110, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
    rgba(13, 15, 25, 0.92);
}

.menu-toggle-bars {
  position: relative;
  display: inline-flex;
  width: 18px;
  height: 14px;
}

.menu-toggle-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.24s ease, opacity 0.18s ease, top 0.24s ease;
}

.menu-toggle-bars span:nth-child(1) {
  top: 0;
}

.menu-toggle-bars span:nth-child(2) {
  top: 6px;
}

.menu-toggle-bars span:nth-child(3) {
  top: 12px;
}

.menu-toggle[aria-expanded="true"] {
  border-color: rgba(232, 201, 110, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
    rgba(13, 15, 25, 0.92);
}

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

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

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

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 18, 0.98);
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.9rem 0;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.2;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}


.mobile-nav a.active,
.mobile-nav a:hover {
  color: var(--gold);
}

/* ==========================================================================
   Shared Page Components: Carousels And Media Controls
   ========================================================================== */

.hero {
  padding: 5rem 0 3rem;
}

.whatdo-carousel {
  position: relative;
  margin-top: 1.2rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #090913;
  aspect-ratio: 16 / 7;
}

.whatdo-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.whatdo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.95s ease-in-out;
  z-index: 1;
}

.whatdo-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.whatdo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06) translate3d(0, 0, 0);
  transform-origin: 50% 50%;
  animation: whatdoDrift 14s ease-in-out infinite alternate;
  will-change: transform;
  backface-visibility: hidden;
}

.whatdo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(10, 10, 20, 0.48);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
}

.whatdo-nav.prev {
  left: 0.8rem;
}

.whatdo-nav.next {
  right: 0.8rem;
}

.whatdo-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.whatdo-dots {
  position: absolute;
  left: 50%;
  bottom: 0.65rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 2;
}

.whatdo-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}

.whatdo-dot.is-active {
  background: var(--gold);
}

.whatdo-support {
  margin: 0.9rem 0 0;
  max-width: 88ch;
  line-height: 1.68;
  color: var(--muted);
}

.whatdo-play-link {
  margin: 1.35rem 0 0;
}

/* ==========================================================================
   Careers Page
   ========================================================================== */

body[data-page="careers"] {
  font-size: 16px;
}

body[data-page="careers"] .careers-page-intro .lead,
body[data-page="careers"] .careers-jobs-head .lead,
body[data-page="careers"] .careers-bases-intro .lead {
  max-width: 72ch;
  font-size: 1.03rem;
  line-height: 1.78;
}

body[data-page="careers"] .careers-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(1.6rem, 3.2vw, 3.2rem);
  align-items: center;
}

body[data-page="careers"] .careers-page-copy {
  max-width: 44rem;
}

body[data-page="careers"] .careers-page-intro .title {
  margin-bottom: 1.1rem;
}

body[data-page="careers"] .careers-page-media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(201, 168, 76, 0.12), transparent 42%),
    rgba(8, 10, 22, 0.92);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.28s forwards;
}

body[data-page="careers"] .careers-page-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 19, 0.03), rgba(7, 9, 19, 0.12) 58%, rgba(7, 9, 19, 0.3)),
    linear-gradient(135deg, rgba(201, 168, 76, 0.12), transparent 42%);
  pointer-events: none;
}

body[data-page="careers"] .careers-page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  filter: brightness(1.08) contrast(1.03) saturate(1.03);
  transform: scale(1);
  transition: transform 0.45s ease, filter 0.45s ease;
}

body[data-page="careers"] .careers-page-media:hover img {
  transform: scale(1.04);
  filter: brightness(1.11) contrast(1.04) saturate(1.04);
}

body[data-page="careers"] .careers-jobs-section {
  padding-top: 0.4rem;
  padding-bottom: 5rem;
}

body[data-page="careers"] .careers-jobs-shell {
  display: grid;
  gap: 1.6rem;
}

body[data-page="careers"] .careers-jobs-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(1.4rem, 3vw, 2.8rem);
  align-items: start;
}

body[data-page="careers"] .careers-widget-frame {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: clamp(1rem, 2vw, 1.4rem);
  background:
    radial-gradient(140% 130% at 0% 0%, rgba(201, 168, 76, 0.1), transparent 45%),
    linear-gradient(180deg, rgba(20, 20, 37, 0.96), rgba(11, 11, 21, 0.98));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

body[data-page="careers"] .careers-jobs-aside {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 18px;
  padding: clamp(1.4rem, 2.4vw, 2.1rem);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.13), transparent 38%),
    linear-gradient(180deg, rgba(22, 22, 42, 0.92), rgba(9, 10, 18, 0.96));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24);
}

body[data-page="careers"] .careers-jobs-aside h3 {
  margin: 0 0 1rem;
  max-width: 12ch;
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 0.94;
  letter-spacing: 0.03em;
}

body[data-page="careers"] .careers-jobs-aside p {
  margin: 0;
  color: rgba(245, 246, 251, 0.82);
  line-height: 1.72;
}

body[data-page="careers"] .careers-jobs-aside ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.4rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

body[data-page="careers"] .careers-jobs-aside li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(245, 246, 251, 0.82);
  line-height: 1.55;
}

body[data-page="careers"] .careers-jobs-aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(201, 168, 76, 0.4);
}

body[data-page="careers"] .careers-jobs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

body[data-page="careers"] .teamtailor-jobs-widget,
body[data-page="careers"] .teamtailor-jobs-widget * {
  box-sizing: border-box;
  max-width: 100%;
}

body[data-page="careers"] .careers-widget-fallback-noscript {
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  color: var(--muted);
}

body[data-page="careers"] .careers-bases-section {
  padding-top: 0.5rem;
  padding-bottom: 6rem;
}

body[data-page="careers"] .careers-bases-shell {
  display: grid;
  gap: 2rem;
}

body[data-page="careers"] .careers-bases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

body[data-page="careers"] .career-base-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(18, 18, 34, 0.94), rgba(12, 12, 22, 0.96));
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

body[data-page="careers"] .career-base-copy {
  padding: 1.3rem 1.35rem 1.4rem;
}

body[data-page="careers"] .career-base-copy h3 {
  margin: 0 0 0.45rem;
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  line-height: 0.98;
  letter-spacing: 0.04em;
}

body[data-page="careers"] .career-base-positioning {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.98rem;
}

body[data-page="careers"] .career-base-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

body[data-page="careers"] .career-base-media {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: #0e101c;
}

body[data-page="careers"] .career-base-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(1.03);
  transition: transform 0.45s ease;
}

body[data-page="careers"] .career-base-card:hover .career-base-media::before {
  transform: scale(1.06);
}

body[data-page="careers"] .career-base-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 17, 0.04), rgba(8, 9, 17, 0.18) 72%, rgba(8, 9, 17, 0.34));
}

body[data-page="careers"] .career-base-media-sheffield::before {
  background-image:
    linear-gradient(180deg, rgba(8, 9, 17, 0.02), rgba(8, 9, 17, 0.14)),
    url("images/locations/sheffield.png");
  background-position: center center;
}

body[data-page="careers"] .career-base-media-leamington::before {
  background-image:
    linear-gradient(180deg, rgba(8, 9, 17, 0.01), rgba(8, 9, 17, 0.12)),
    url("images/locations/Leamington.jpg");
  background-position: center center;
}

body[data-page="careers"] .career-base-media-remote::before {
  background-image:
    linear-gradient(180deg, rgba(8, 9, 17, 0.02), rgba(8, 9, 17, 0.16)),
    url("images/locations/remote.png");
  background-position: center center;
}


/* ==========================================================================
   What We Do Page
   ========================================================================== */

body[data-page="what-we-do"] .lead,
body[data-page="what-we-do"] .whatdo-support {
  max-width: none;
  text-wrap: pretty;
}

/* What We Do */
body[data-page="what-we-do"] main > .section {
  padding-bottom: 0;
}

body[data-page="what-we-do"] .title {
  margin-bottom: 1rem;
  max-width: 11ch;
}

.whatdo-subtitle {
  margin: 0 0 0.9rem;
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  letter-spacing: 0.06em;
  line-height: 1.08;
  color: rgba(255, 255, 255, 0.88);
}

.whatdo-hero-band {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) clamp(320px, 30vw, 440px);
  gap: clamp(1.6rem, 2.6vw, 3rem);
  align-items: center;
  margin-top: 1.2rem;
  margin-bottom: 0.2rem;
  padding: 0;
}

body[data-page="what-we-do"] .lead {
  max-width: 75ch;
  margin-bottom: 1.8rem;
  line-height: 1.68;
  font-size: 1.02rem;
}

.whatdo-feature-copy {
  max-width: 75ch;
}

.whatdo-brand-mark {
  position: relative;
  margin: 0;
  justify-self: end;
  width: min(100%, 370px);
  aspect-ratio: 1510 / 2349;
  transform: none;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.28s forwards;
}

.whatdo-brand-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.42));
}

.whatdo-packshot {
  opacity: 0;
  animation: whatdoPackshotCycle 12s infinite;
}

.whatdo-packshot:nth-child(2) {
  animation-delay: 4s;
}

.whatdo-packshot:nth-child(3) {
  animation-delay: 8s;
}

@keyframes whatdoPackshotCycle {
  0%,
  28% {
    opacity: 0.96;
  }
  34%,
  100% {
    opacity: 0;
  }
}

.whatdo-support {
  max-width: 44ch;
  margin: 0;
  line-height: 1.68;
  color: var(--muted);
}

body[data-page="what-we-do"] .whatdo-carousel {
  margin-top: 1.4rem;
  margin-inline: 0;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #080911;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16 / 7.4;
}

body[data-page="what-we-do"] .whatdo-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 9, 17, 0.3), transparent 38%);
  pointer-events: none;
  z-index: 1;
}

@keyframes whatdoDrift {
  from { transform: scale(1.06) translate3d(-0.7%, -0.4%, 0); }
  to { transform: scale(1.09) translate3d(0.7%, 0.5%, 0); }
}

body[data-page="what-we-do"] .whatdo-nav {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(9, 9, 18, 0.34);
  font-size: 1rem;
}

body[data-page="what-we-do"] .whatdo-nav.prev {
  left: 1rem;
}

body[data-page="what-we-do"] .whatdo-nav.next {
  right: 1rem;
}

body[data-page="what-we-do"] .whatdo-nav:hover {
  border-color: rgba(201, 168, 76, 0.75);
  color: var(--gold-2);
}

body[data-page="what-we-do"] .whatdo-dots {
  bottom: 0.95rem;
}

body[data-page="what-we-do"] .whatdo-support {
  max-width: 75ch;
  margin-top: 1.5rem;
  line-height: 1.78;
}

body[data-page="what-we-do"] .events-section {
  margin-top: 8.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(17, 18, 32, 0.82), transparent 34%);
}

body[data-page="what-we-do"] .events-section > .container {
  padding-bottom: 1.7rem;
}

body[data-page="what-we-do"] .events-section .section-label {
  margin-bottom: 1.2rem;
}

body[data-page="what-we-do"] .events-section .section-title {
  font-size: clamp(3rem, 5.4vw, 4.8rem);
  margin-bottom: 0.9rem;
}

body[data-page="what-we-do"] .events-intro {
  margin: 0;
  max-width: 76ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
}

/* ==========================================================================
   Shared Partner Card Base
   ========================================================================== */

.partner-item {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.02);
}

.partner-item h4 {
  margin: 0 0 0.35rem;
}

.partner-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

/* ==========================================================================
   People Page
   ========================================================================== */

body[data-page="people"] .values-section {
  position: relative;
  overflow: hidden;
}

body[data-page="people"] .people-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.54fr);
  gap: clamp(1.8rem, 3vw, 3.2rem);
  align-items: center;
}

body[data-page="people"] .people-page-copy {
  max-width: 48rem;
}

body[data-page="people"] .people-page-media {
  position: relative;
  margin: 0;
  width: min(100%, 22rem);
  max-width: 22rem;
  justify-self: end;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.26);
  border-radius: 18px;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(201, 168, 76, 0.12), transparent 42%),
    rgba(8, 10, 22, 0.92);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.28s forwards;
}

body[data-page="people"] .people-page-media::after,
body[data-page="people"] .people-elt-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(7, 9, 19, 0.08), rgba(7, 9, 19, 0.22) 52%, rgba(7, 9, 19, 0.42)),
    linear-gradient(135deg, rgba(201, 168, 76, 0.06), transparent 40%);
  pointer-events: none;
}

body[data-page="people"] .people-page-media.people-elt-rotator::after {
  content: none;
}

body[data-page="people"] .people-page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--portrait-x, center) var(--portrait-y, 22%);
  display: block;
  position: relative;
  z-index: 1;
  transform: scale(1);
  transition: transform 0.5s ease;
}

body[data-page="people"] .people-page-media:hover img {
  transform: scale(1.06);
}

body[data-page="people"] .people-elt-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(18px);
  animation: peopleEltCycle 20s infinite;
}

body[data-page="people"] .people-elt-slide.is-active {
  opacity: 1;
}

body[data-page="people"] .people-elt-slide:nth-child(1) {
  --portrait-x: 50%;
  --portrait-y: 20%;
  animation-delay: 0s;
}

body[data-page="people"] .people-elt-slide:nth-child(1)::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(3, 4, 8, 0.18), rgba(3, 4, 8, 0.58)),
    url("images/elt-portraits/tim-coupe.png") center center / cover no-repeat;
  filter: blur(18px) saturate(0.9);
  opacity: 0.72;
  transform: scale(1.06);
}

body[data-page="people"] .people-elt-slide:nth-child(1) img {
  object-fit: cover;
  object-position: center 12%;
  padding: 0;
  transform: scale(1.24);
}

body[data-page="people"] .people-page-media:hover .people-elt-slide:nth-child(1) img {
  transform: scale(1.28);
}

body[data-page="people"] .people-elt-slide:nth-child(2) {
  --portrait-x: 50%;
  --portrait-y: 20%;
  animation-delay: 4s;
}

body[data-page="people"] .people-elt-slide:nth-child(3) {
  --portrait-x: 50%;
  --portrait-y: 19%;
  animation-delay: 8s;
}

body[data-page="people"] .people-elt-slide:nth-child(4) {
  --portrait-x: 50%;
  --portrait-y: 20%;
  animation-delay: 12s;
}

body[data-page="people"] .people-elt-slide:nth-child(5) {
  --portrait-x: 50%;
  --portrait-y: 20%;
  animation-delay: 16s;
}

body[data-page="people"] .people-elt-rotator:hover .people-elt-slide.is-active img {
  transform: scale(1.06);
}

body[data-page="people"] .people-page-media-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  margin: 0;
  padding: 2.5rem 1.75rem 1.75rem;
  background: linear-gradient(to top, rgba(10, 10, 18, 0.95) 60%, transparent);
}

body[data-page="people"] .people-page-media .founder-name {
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  color: var(--text);
  display: block;
}

body[data-page="people"] .people-page-media .founder-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 0.2rem;
}

body[data-page="people"] .values-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(64% 42% at 18% 18%, rgba(201, 168, 76, 0.08), transparent 68%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015));
  pointer-events: none;
}

body[data-page="people"] .values-section .container {
  position: relative;
  z-index: 1;
}

body[data-page="people"] .values-intro {
  max-width: 64ch;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

body[data-page="people"] .values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 1.6vw, 1.3rem);
  margin-top: 2rem;
}

body[data-page="people"] .value-card {
  min-height: 100%;
  padding: 1.2rem 1.1rem 1.25rem;
  border: 1px solid rgba(201, 168, 76, 0.32);
  border-radius: 14px;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  background:
    linear-gradient(180deg, rgba(201, 168, 76, 0.08), transparent 34%),
    rgba(6, 8, 20, 0.62);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body[data-page="people"] .value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  border-color: rgba(232, 201, 110, 0.7);
}

body[data-page="people"] .value-card-word {
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  letter-spacing: 0.05em;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--gold-2);
}

body[data-page="people"] .value-card-line {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.16;
  font-weight: 600;
  color: var(--text);
}

body[data-page="people"] .value-card-body {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.72;
}

/* ==========================================================================
   Shared Event And Working Sections
   ========================================================================== */

.events-section {
  padding: 5rem 0 0;
}

.events-section > .container {
  padding-bottom: 2.5rem;
}

.events-strip-wrap {
  position: relative;
  overflow: hidden;
}

.events-strip-wrap::before,
.events-strip-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 1;
  pointer-events: none;
}

.events-strip-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.events-strip-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.events-strip {
  display: flex;
  width: max-content;
  overflow: visible;
  animation: marqueeScroll 80s linear infinite;
}

.events-track {
  display: flex;
  gap: 4px;
  width: max-content;
  will-change: transform;
  animation: none;
}

.events-strip:hover {
  animation-play-state: paused;
}

.events-strip-item {
  flex-shrink: 0;
  height: 420px;
  overflow: hidden;
}

.events-strip-item img {
  height: 100%;
  width: auto;
  max-width: none;
  aspect-ratio: auto;
  display: block;
  filter: grayscale(10%);
  transition: filter 0.3s ease, transform 0.4s ease;
}

.events-strip-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.working-section {
  background: var(--bg);
  color: var(--text);
}

.working-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.9fr);
  gap: clamp(2.2rem, 4vw, 4.5rem);
  align-items: start;
}

.working-copy {
  max-width: 46rem;
}

.working-body {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 78ch;
}

.working-pull {
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--text);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1.4rem 0 1.6rem;
  max-width: 40ch;
}

.working-pull .accent {
  color: var(--gold-2);
}

.working-portrait {
  position: relative;
  margin: 0;
  width: min(100%, 34rem);
  max-width: none;
  justify-self: end;
  margin-top: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(201, 168, 76, 0.12), transparent 42%),
    rgba(8, 10, 22, 0.92);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.working-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 19, 0.08), rgba(7, 9, 19, 0.18) 52%, rgba(7, 9, 19, 0.48)),
    linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent 38%);
  pointer-events: none;
}

.working-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1);
  transition: transform 0.55s ease;
}

.working-portrait:hover img {
  transform: scale(1.06);
}

/* ==========================================================================
   Benefits Showcase
   ========================================================================== */

.benefits-showcase-section {
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(201, 168, 76, 0.13), transparent 36%),
    radial-gradient(120% 140% at 100% 100%, rgba(123, 33, 11, 0.14), transparent 30%),
    linear-gradient(180deg, #090b16, #121626 58%, #171b2d);
  color: var(--text);
}

.benefits-showcase-section .container {
  position: relative;
}

.benefits-showcase-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.benefits-showcase-section .section-title {
  margin-bottom: 0;
}

.benefit-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(12, 16, 30, 0.82);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.benefit-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), transparent 42%);
  opacity: 0.45;
  pointer-events: none;
}

.benefit-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 201, 110, 0.48);
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.28);
}

.benefit-tile-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.benefit-tile h4 {
  margin: 0.55rem 0 0.45rem;
  color: var(--text);
  line-height: 1.05;
}

.benefit-tile p {
  margin: 0;
  color: rgba(233, 236, 244, 0.8);
  line-height: 1.68;
}

.benefits-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-tile {
  min-height: 100%;
  padding: 1.15rem;
  border-color: rgba(255, 255, 255, 0.12);
}

.benefit-tile h4 {
  font-size: 1.04rem;
  font-family: Inter, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.benefit-tile p {
  font-size: 0.98rem;
}

.btn-mt-sm {
  margin-top: 0.5rem;
}

/* ==========================================================================
   Partners Page
   ========================================================================== */

.partner-item {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.016);
  color: inherit;
  text-decoration: none;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.partner-item:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.partner-logo {
  width: 100%;
  height: 68px;
  object-fit: contain;
  object-position: center;
  background: rgba(8, 8, 16, 0.72);
  border-radius: 8px;
  padding: 0.62rem 0.6rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  transition: filter 0.2s ease, border-color 0.2s ease;
}

.partner-item h4 {
  margin: 0.1rem 0 0;
  line-height: 1.2;
  font-size: 0.95rem;
  color: var(--text);
}

body[data-page="partners"] .partner-item {
  min-height: 132px;
  height: 100%;
  padding: 1rem 1rem 0.95rem;
}

body[data-page="partners"] .partner-item h4 {
  color: var(--text);
  margin-top: 0.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.18;
}

body[data-page="partners"] .partner-logo {
  background: rgba(8, 8, 16, 0.68);
}

body[data-page="partners"] .partner-grid .partner-logo {
  margin-bottom: 0.45rem;
}

body[data-page="partners"] .partners-logos-section {
  padding-top: 0.5rem;
  position: relative;
  overflow: hidden;
}

body[data-page="partners"] .partners-context {
  margin-top: 1rem;
  max-width: 72ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

body[data-page="partners"] .partner-group + .partner-group {
  margin-top: clamp(7.2rem, 10vw, 8rem);
}

body[data-page="partners"] .partner-group-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.7rem;
}

body[data-page="partners"] .partner-group-head .section-label {
  margin: 0;
  text-align: center;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
}

body[data-page="partners"] .partner-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.58), transparent);
}

body[data-page="partners"] .partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.75rem, 2.3vw, 2rem);
}

body[data-page="partners"] .partner-grid-primary {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body[data-page="partners"] .partner-grid-secondary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="partners"] .partner-prestige-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.7vw, 1.5rem);
  align-items: end;
}

body[data-page="partners"] .partner-item-prestige {
  min-height: 0;
  padding: 0.5rem 0 1.1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  transition: transform 0.25s ease;
}

body[data-page="partners"] .partner-item-prestige::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.65), transparent);
  opacity: 0.55;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

body[data-page="partners"] .partner-item-prestige .partner-logo {
  height: 164px;
  max-width: min(100%, 275px);
  border: 0;
  background: transparent;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.32));
  transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
}

body[data-page="partners"] .partner-item-prestige h4 {
  display: none;
}

body[data-page="partners"] .partner-item-prestige:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: none;
}

body[data-page="partners"] .partner-item-prestige:hover::before {
  opacity: 1;
  transform: scaleX(1.04);
}

body[data-page="partners"] .partner-item-prestige:hover .partner-logo {
  transform: translateY(-4px);
  filter: drop-shadow(0 14px 24px rgba(201, 168, 76, 0.18));
  opacity: 1;
}

body[data-page="partners"] .partner-item:not(.partner-item-prestige):hover {
  transform: translateX(var(--shift-x, 0px)) translateY(-6px);
  border-color: rgba(202, 162, 76, 0.9);
  box-shadow: 0 0 30px rgba(202, 162, 76, 0.25);
}

body[data-page="partners"] .partner-item:not(.partner-item-prestige):hover .partner-logo {
  border-color: rgba(201, 168, 76, 0.55);
  filter: brightness(1.08);
}

body[data-page="partners"] .partners-logos-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(64% 42% at 18% 22%, rgba(74, 127, 165, 0.08), transparent 68%),
    radial-gradient(58% 40% at 82% 76%, rgba(201, 168, 76, 0.06), transparent 70%),
    repeating-linear-gradient(
      -14deg,
      transparent 0,
      transparent 26px,
      rgba(255, 255, 255, 0.015) 27px,
      transparent 28px,
      transparent 52px
    );
  animation: partnerTextureDrift 54s ease-in-out infinite alternate;
}

body[data-page="partners"] .partners-logos-section > .container {
  position: relative;
  z-index: 1;
}

body[data-page="partners"] .partner-grid .partner-item {
  --shift-x: 0px;
  transform: translateX(var(--shift-x));
}

body[data-page="partners"] .partner-grid:not(.partner-grid-primary) .partner-item:nth-child(n+5):nth-child(-n+8) {
  --shift-x: 30px;
}

body[data-page="partners"] .partner-grid:not(.partner-grid-primary) .partner-item:nth-child(n+9) {
  --shift-x: -20px;
}

@keyframes partnerTextureDrift {
  from {
    transform: translate3d(-1.1%, -0.5%, 0) scale(1.015);
  }
  to {
    transform: translate3d(1.1%, 0.8%, 0) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="partners"] .partners-logos-section::before {
    animation: none;
  }
}

.muted-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer .kicker,
.site-footer h4 {
  margin: 0 0 0.85rem;
}

.site-footer .muted-note + .muted-note {
  margin-top: 0.45rem;
}

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.2rem 0;
  position: relative;
  z-index: 1;
}

.site-footer-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

.footer-link-button:hover {
  color: var(--gold);
}

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

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
}

.footer-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social-links a:hover {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.7);
  transform: translateY(-2px);
}

.footer-social-links svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */

.legal-content {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.6;
}

.legal-content h2,
.legal-content h3,
.legal-content h4 {
  margin-top: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.legal-content th,
.legal-content td {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem;
  vertical-align: top;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-form {
  display: grid;
  gap: 0.9rem;
  max-width: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.75fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

body[data-page="contact"] main > .section:first-of-type {
  padding-bottom: 1.5rem;
}

body[data-page="contact"] .contact-layout {
  margin-top: 0;
}

body[data-page="contact"] main > .section:first-of-type + .section {
  padding-top: 1.25rem;
}

.contact-addresses {
  display: grid;
  gap: 1rem;
  margin-top: calc((0.82rem * 1.2) + 0.35rem);
}

.contact-office-card {
  min-height: 100%;
  padding: 1.2rem 1.1rem 1.25rem;
  border: 1px solid rgba(201, 168, 76, 0.32);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(201, 168, 76, 0.08), transparent 34%),
    rgba(6, 8, 20, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.contact-office-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  border-color: rgba(232, 201, 110, 0.7);
}

.contact-office-card h3 {
  margin: 0 0 0.45rem;
  color: var(--gold);
}

.contact-office-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-company-section {
  padding-top: 0;
}

.contact-image-section {
  padding-top: 0;
  padding-bottom: clamp(1.1rem, 2vw, 1.6rem);
}

.contact-image-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.24);
  border-radius: 18px;
  background: rgba(11, 14, 30, 0.9);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.contact-image-card img {
  display: block;
  width: 100%;
  height: clamp(240px, 32vw, 420px);
  object-fit: cover;
  object-position: center;
}

.contact-company-card {
  padding: clamp(1.35rem, 2.4vw, 2rem);
  border: 1px solid rgba(201, 168, 76, 0.24);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 60%),
    rgba(11, 14, 30, 0.9);
}

.contact-company-head {
  margin-bottom: 1.1rem;
}

.contact-company-head .kicker {
  margin-bottom: 0.4rem;
}

.contact-company-head h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.1;
}

.contact-company-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  padding: 1rem 0 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-company-meta-item {
  display: grid;
  gap: 0.28rem;
}

.contact-company-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-company-meta-item p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.contact-company-copy {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.78;
  max-width: 1100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-field {
  display: grid;
  gap: 0.35rem;
}

.contact-field label {
  font-size: 0.82rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-field input,
.contact-field textarea,
.contact-field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  padding: 0.75rem;
  font: inherit;
}

.contact-field textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-msg {
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  font-size: 0.93rem;
}

.contact-msg.ok {
  background: rgba(125, 211, 167, 0.14);
  border: 1px solid rgba(125, 211, 167, 0.55);
  color: #d7ffe9;
}

.contact-msg.err {
  background: rgba(255, 120, 120, 0.12);
  border: 1px solid rgba(255, 120, 120, 0.4);
  color: #ffdcdc;
}

/* Keep the anti-spam honeypot visually hidden even if form styles change. */
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ==========================================================================
   Responsive Rules
   ========================================================================== */

@media (max-width: 1180px) {
  .site-header-inner {
    min-height: var(--header-height);
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 980px) {

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

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

  body:not([data-page="home"]) main > .section:first-of-type .title,
  body:not([data-page="home"]) main > .section:first-of-type .section-title {
    max-width: 100%;
    text-wrap: initial;
  }

  body[data-page="what-we-do"] .whatdo-carousel {
    margin-inline: 0;
    width: 100%;
    aspect-ratio: 16 / 8.5;
  }

  .whatdo-hero-band {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 0.9rem;
  }

  .whatdo-brand-mark {
    justify-self: start;
    width: min(72vw, 380px);
  }

  body[data-page="what-we-do"] .events-section {
    margin-top: 6.2rem;
  }

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

  .benefits-showcase-head {
    grid-template-columns: 1fr;
  }

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

  .working-copy {
    max-width: none;
  }

  .working-portrait {
    width: min(100%, 28rem);
    justify-self: start;
    margin-top: 0.5rem;
  }

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

  .contact-addresses {
    margin-top: 0;
  }

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

  body[data-page="partners"] .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="partners"] .partner-grid-primary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="partners"] .partner-grid-secondary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="partners"] .partner-prestige-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
  }

  body[data-page="partners"] .partner-item-prestige .partner-logo {
    height: 128px;
  }

  body[data-page="partners"] .partner-grid .partner-item {
    --shift-x: 0px;
  }

  body[data-page="careers"] .careers-bases-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="people"] .people-page-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  body[data-page="people"] .people-page-copy {
    max-width: none;
  }

  body[data-page="people"] .people-page-media {
    width: min(100%, 21rem);
    max-width: 21rem;
    justify-self: center;
  }

  body[data-page="careers"] .careers-page-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  body[data-page="careers"] .careers-page-copy {
    max-width: none;
  }

  body[data-page="careers"] .careers-page-media {
    max-width: 48rem;
  }

  body[data-page="careers"] .career-base-media {
    min-height: 300px;
  }

  body[data-page="people"] .values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .events-strip-wrap::before,
  .events-strip-wrap::after {
    width: 64px;
  }

  .events-strip-item {
    height: 300px;
  }

}

@media (max-width: 640px) {
  .section {
    padding: var(--section-pad-y-mobile) 0;
  }

  .site-header-inner {
    min-height: 62px;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .brand {
    min-width: 0;
    min-height: 40px;
    width: auto;
    justify-content: center;
    gap: 0;
    padding: 0;
  }

  .site-header .brand span {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
    border: 0;
    font-size: 20px;
    letter-spacing: 0.075em;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
  }

  body[data-page="home"] .site-header-inner {
    justify-content: space-between;
  }

  body[data-page="home"] .site-header .brand {
    display: inline-flex;
  }

  .benefits-showcase-grid {
    grid-template-columns: 1fr;
  }

  .whatdo-carousel {
    aspect-ratio: 4 / 3;
  }

  body[data-page="careers"] .careers-widget-frame {
    border-radius: 14px;
    padding: 0.85rem;
  }

  body[data-page="careers"] .careers-page-media {
    border-radius: 14px;
  }

  body[data-page="careers"] .careers-page-media::after,
  body[data-page="careers"] .career-base-media::after,
  .working-portrait::after {
    opacity: 0.42;
  }

  body[data-page="people"] .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  body[data-page="people"] .people-page-media {
    border-radius: 14px;
    width: min(100%, 21rem);
    justify-self: center;
  }

  body[data-page="people"] .people-page-media-caption {
    padding: 2.1rem 1.2rem 1.2rem;
  }

  body[data-page="people"] .value-card {
    min-height: 220px;
    padding: 1rem 0.8rem;
  }

  body[data-page="careers"] .career-base-media {
    min-height: 260px;
  }

  .working-portrait {
    border-radius: 14px;
  }

  body[data-page="what-we-do"] .lead {
    margin-bottom: 0;
  }

  body[data-page="what-we-do"] .whatdo-carousel {
    aspect-ratio: 4 / 3;
    margin-top: 1.6rem;
  }

  body[data-page="what-we-do"] .whatdo-support {
    margin-top: 1.1rem;
  }

  .whatdo-hero-band {
    gap: 0.9rem;
  }

  .whatdo-brand-mark {
    width: min(78vw, 290px);
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page="what-we-do"] .events-section {
    margin-top: 4.5rem;
    padding-top: 1.2rem;
  }

  body[data-page="what-we-do"] .events-section > .container {
    padding-bottom: 1.2rem;
  }

  body[data-page="what-we-do"] .events-section .section-title {
    font-size: clamp(2.6rem, 10.5vw, 3.2rem);
    margin-bottom: 0.6rem;
  }

  body[data-page="what-we-do"] .events-intro {
    line-height: 1.66;
  }

  .whatdo-nav {
    width: 36px;
    height: 36px;
  }

  .site-header .container,
  .mobile-nav .container,
  .site-footer .container {
    padding-inline: var(--page-gutter-mobile);
  }

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

  .events-strip-wrap::before,
  .events-strip-wrap::after {
    width: 36px;
  }

  .events-strip-item {
    height: 220px;
  }

  body[data-page="partners"] .partner-group-head {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin-bottom: 1.15rem;
  }

  body[data-page="partners"] .partner-divider {
    display: none;
  }

  body[data-page="partners"] .partner-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  body[data-page="partners"] .partner-grid-primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="partners"] .partner-prestige-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
    scrollbar-width: auto;
  }

  body[data-page="partners"] .partner-item-prestige {
    padding: 0.35rem 0 0.8rem;
    min-height: 0;
  }

  body[data-page="partners"] .partner-item-prestige .partner-logo {
    height: 88px;
    max-width: 100%;
  }

  body[data-page="partners"] .partner-grid-secondary {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  body[data-page="partners"] .partner-grid .partner-item {
    --shift-x: 0px;
    transform: none;
  }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  body:not([data-page="home"]) main > .section:first-of-type .title,
  body:not([data-page="home"]) main > .section:first-of-type .section-title {
    animation: none;
    opacity: 1;
    transform: none;
  }

  body[data-page="people"] .people-page-media,
  body[data-page="careers"] .careers-page-media,
  .whatdo-brand-mark {
    animation: none;
    opacity: 1;
    transform: none;
  }

  body[data-page="what-we-do"] .whatdo-slide img {
    animation: none;
    transform: scale(1.06);
  }

  .whatdo-packshot {
    animation: none;
  }

  .whatdo-packshot:first-child {
    opacity: 0.96;
  }

  body[data-page="people"] .people-elt-slide {
    animation: none;
  }

  body[data-page="people"] .people-elt-slide:not(.is-active) {
    opacity: 0;
  }
}

/* ==========================================================================
   Late Overrides And Compatibility Cleanup
   TODO: Gradually fold these rules into the sections above during later CSS stages.
   ========================================================================== */

.values-intro,
.working-body,
.events-intro,
.partners-context,
.contact-company-copy,
body[data-page="careers"] .careers-page-intro .lead,
body[data-page="careers"] .careers-jobs-head .lead,
body[data-page="careers"] .careers-bases-intro .lead,
body[data-page="what-we-do"] .lead,
body[data-page="what-we-do"] .whatdo-support {
  font-size: clamp(1.04rem, 1.1vw, 1.15rem);
}

.kicker,
.section-label,
.section-label-dk,
.benefit-tile-tag,
.career-base-positioning,
.founder-role {
  color: rgba(232, 201, 110, 0.9);
}

body[data-page="people"] .values-container > .kicker,
body[data-page="people"] .values-container > .title,
body[data-page="people"] .values-intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body[data-page="people"] .values-intro {
  max-width: 68ch;
}

body[data-page="people"] .people-elt-slide {
  transform: none;
  animation: peopleEltImageCycle 20s infinite;
}

body[data-page="people"] .people-page-media-caption {
  opacity: 0;
  transform: translateX(2rem);
  animation: peopleEltCaptionCycle 20s infinite;
}

body[data-page="people"] .people-elt-slide:nth-child(1) .people-page-media-caption { animation-delay: 0s; }
body[data-page="people"] .people-elt-slide:nth-child(2) .people-page-media-caption { animation-delay: 4s; }
body[data-page="people"] .people-elt-slide:nth-child(3) .people-page-media-caption { animation-delay: 8s; }
body[data-page="people"] .people-elt-slide:nth-child(4) .people-page-media-caption { animation-delay: 12s; }
body[data-page="people"] .people-elt-slide:nth-child(5) .people-page-media-caption { animation-delay: 16s; }

@keyframes peopleEltImageCycle {
  0% {
    opacity: 0;
    transform: scale(1.015);
  }
  4%,
  18% {
    opacity: 1;
    transform: scale(1);
  }
  22%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes peopleEltCaptionCycle {
  0% {
    opacity: 0;
    transform: translateX(2rem);
  }
  5%,
  18% {
    opacity: 1;
    transform: translateX(0);
  }
  22%,
  100% {
    opacity: 0;
    transform: translateX(-1.25rem);
  }
}

body[data-page="careers"] .career-base-card-working {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  align-items: stretch;
}

body[data-page="careers"] .career-base-card-working .career-base-media {
  min-height: 260px;
}

body[data-page="careers"] .career-base-card-working .career-base-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body[data-page="partners"] .partner-grid .partner-item,
body[data-page="partners"] .partner-grid:not(.partner-grid-primary) .partner-item:nth-child(n+5):nth-child(-n+8),
body[data-page="partners"] .partner-grid:not(.partner-grid-primary) .partner-item:nth-child(n+9) {
  --shift-x: 0px;
  transform: none;
}

body[data-page="partners"] .partner-item:not(.partner-item-prestige):hover {
  transform: translateY(-6px);
}

body[data-page="partners"] .partner-group + .partner-group {
  margin-top: clamp(4.5rem, 7vw, 5.5rem);
}

body[data-page="contact"] .contact-layout {
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.8fr);
}

body[data-page="contact"] .contact-addresses {
  grid-template-columns: 1fr;
}

@media (max-width: 980px) {
  body[data-page="careers"] .career-base-card-working {
    grid-template-columns: 1fr;
  }

  body[data-page="careers"] .careers-jobs-layout {
    grid-template-columns: 1fr;
  }

  body[data-page="careers"] .careers-jobs-aside {
    position: relative;
    top: auto;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  body:not([data-page="home"]) main > .section:first-of-type {
    padding-top: 1.45rem;
  }

  body:not([data-page="home"]) main > .section:first-of-type .title,
  body:not([data-page="home"]) main > .section:first-of-type .section-title {
    font-size: clamp(2.7rem, 11.8vw, 3.55rem);
    line-height: 0.94;
    margin-bottom: 1rem;
  }

  .lead,
  .values-intro,
  .working-body,
  .events-intro,
  .partners-context,
  .contact-company-copy,
  body[data-page="careers"] .careers-page-intro .lead,
  body[data-page="careers"] .careers-jobs-head .lead,
  body[data-page="careers"] .careers-bases-intro .lead,
  body[data-page="what-we-do"] .lead,
  body[data-page="what-we-do"] .whatdo-support {
    font-size: 1.01rem;
    line-height: 1.6;
  }

  .kicker,
  .section-label,
  .section-label-dk {
    margin-bottom: 0.75rem;
    font-size: 0.66rem;
    letter-spacing: 0.24em;
  }

  .benefits-showcase-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="people"] .people-page-media {
    width: min(100%, 19rem);
    max-width: 19rem;
    aspect-ratio: 4 / 4.7;
  }

  body[data-page="people"] .people-page-media-caption {
    padding: 1.8rem 1rem 1rem;
  }

  body[data-page="careers"] .careers-page-intro,
  body[data-page="people"] .people-page-intro {
    gap: 1.65rem;
  }
}
