:root {
  --black: #050505;
  --black-2: #0a0b0d;
  --panel: #111214;
  --panel-2: #151618;
  --white: #ffffff;
  --paper: #f5f4f1;
  --paper-2: #eceae6;
  --ink: #111111;
  --muted: #5d5b56;
  --muted-light: rgba(255, 255, 255, 0.66);
  --line: rgba(17, 17, 17, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --gold: #b98943;
  --gold-light: #d8b166;
  --gold-soft: rgba(184, 137, 67, 0.16);
  --radius: 8px;
  --container: min(1130px, calc(100vw - 48px));
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 70px;
  padding: 18px max(24px, calc((100vw - 1130px) / 2));
  color: var(--white);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition:
    min-height 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  min-height: 62px;
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--gold-light);
  border-left: 6px solid var(--gold);
  border-right: 2px solid var(--gold);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1;
}

.brand-word {
  display: grid;
  gap: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-word strong {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.brand-word small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.47rem;
  font-weight: 800;
  letter-spacing: 0.26em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-control {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  margin-left: 2px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.9);
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.language-control:hover,
.language-control:focus-within {
  border-color: rgba(216, 177, 102, 0.72);
  background: rgba(216, 177, 102, 0.1);
}

.language-control svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-control select {
  max-width: 96px;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
}

.language-control select option {
  color: var(--ink);
  background: var(--white);
}

#google_translate_element,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-gadget,
.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.is-rtl {
  direction: rtl;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 120;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.nav-toggle-line {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: currentColor;
  transition:
    top 220ms ease,
    transform 220ms ease,
    opacity 220ms ease;
}

.nav-toggle-line:nth-child(1) {
  top: 14px;
}

.nav-toggle-line:nth-child(2) {
  top: 21px;
}

.nav-toggle-line:nth-child(3) {
  top: 28px;
}

.nav-open .nav-toggle-line:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.nav-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle-line:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 500px;
  padding: 116px 0 94px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-image {
  position: absolute;
  inset: 70px 0 0 auto;
  width: min(66vw, 820px);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.86;
  filter: saturate(0.96) contrast(1.06);
  transform: scale(1.02);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 63% 36%, rgba(184, 137, 67, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.88) 33%, rgba(0, 0, 0, 0.38) 66%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-copy-block {
  max-width: 650px;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  display: grid;
  gap: 2px;
  font-size: clamp(2.28rem, 3.65vw, 3.75rem);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: -0.02em;
}

h1 em {
  color: var(--gold-light);
  font-style: normal;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 0.96rem;
  line-height: 1.25;
  font-weight: 850;
}

.hero-copy-block p {
  max-width: 510px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.button::after {
  content: "→";
  transition: transform 220ms ease;
}

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

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(3px);
}

.button-gold {
  background: linear-gradient(135deg, #d3ad6b, var(--gold));
  color: var(--black);
  box-shadow: 0 16px 32px rgba(184, 137, 67, 0.2);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  backdrop-filter: blur(12px);
}

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

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--gold);
  background: rgba(184, 137, 67, 0.08);
}

.button-light {
  background: var(--white);
  color: var(--black);
}

.pillar-wrap {
  position: relative;
  z-index: 5;
  margin-top: -70px;
  padding-bottom: 34px;
  background: linear-gradient(180deg, transparent 0 70px, var(--paper) 70px);
}

.pillar-panel {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: #111214;
  color: var(--white);
  box-shadow: var(--shadow);
}

.pillar-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 150px;
  padding: 20px 16px 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.pillar-card:last-child {
  border-right: 0;
}

.pillar-card:hover {
  background: rgba(184, 137, 67, 0.08);
}

.pillar-card h3 {
  margin-top: 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.pillar-card p {
  max-width: 138px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
}

.line-icon,
.mini-icon {
  display: inline-grid;
  place-items: center;
  color: var(--gold-light);
}

.line-icon svg,
.mini-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

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

.section-dark {
  background: var(--black-2);
  color: var(--white);
}

.site-nav a[aria-current="page"] {
  color: var(--gold-light);
}

.page-hero {
  position: relative;
  min-height: 430px;
  padding: 142px 0 74px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(184, 137, 67, 0.18), transparent 30%),
    linear-gradient(135deg, var(--black), #101113);
  color: var(--white);
}

.page-hero-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
  filter: saturate(0.95) contrast(1.08);
}

.page-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.68) 48%, rgba(0, 0, 0, 0.34)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.78));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-hero h1 {
  max-width: 840px;
  font-size: clamp(2.55rem, 4.5vw, 4.85rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.page-section {
  padding: clamp(58px, 7vw, 92px) 0;
}

.page-split {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.page-split h2,
.page-band h2 {
  max-width: 570px;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.copy-stack p,
.feature-row p,
.page-card p,
.image-card p,
.article-card p,
.news-feature p,
.news-sidebar p,
.contact-cards p,
.form-card label,
.job-list p {
  color: var(--muted);
  font-size: 0.95rem;
}

.section-dark .page-card p,
.page-band .page-list p,
.page-band .timeline p {
  color: rgba(255, 255, 255, 0.66);
}

.page-card-grid {
  display: grid;
  gap: 18px;
}

.page-card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.page-card {
  min-height: 230px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.page-card.dark {
  border-color: rgba(255, 255, 255, 0.1);
  background: #111214;
  color: var(--white);
}

.page-card:hover,
.image-card:hover,
.article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 137, 67, 0.5);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
}

.page-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.page-card h3 {
  font-size: 1.04rem;
}

.page-card p {
  margin-top: 12px;
}

.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.image-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.image-card div {
  padding: 24px;
}

.image-card h2 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.image-card p:not(.eyebrow) {
  margin-top: 12px;
}

.page-band {
  padding: clamp(58px, 7vw, 92px) 0;
  background:
    radial-gradient(circle at 92% 20%, rgba(184, 137, 67, 0.15), transparent 30%),
    var(--black-2);
  color: var(--white);
}

.page-band-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 78px);
}

.page-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.page-list article {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-list h3 {
  margin-bottom: 8px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.metric-row article {
  padding: 28px;
  border-left: 1px solid var(--line);
}

.metric-row article:first-child {
  border-left: 0;
}

.metric-row strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.metric-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
}

.page-band .timeline article {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 137, 67, 0.55);
  color: var(--gold-light);
  font-weight: 900;
}

.timeline p {
  margin-top: 6px;
  color: var(--muted);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.feature-row img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.feature-row p {
  max-width: 590px;
  margin-top: 16px;
}

.feature-row .button {
  margin-top: 24px;
}

.job-list {
  display: grid;
  gap: 12px;
}

.job-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.job-list p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
}

.job-list a,
.article-card a,
.news-sidebar a,
.contact-cards a {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: 22px;
}

.news-feature,
.news-sidebar,
.article-card,
.form-card,
.contact-cards article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.news-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  overflow: hidden;
}

.news-feature img,
.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-feature div,
.news-sidebar,
.article-card {
  padding: 26px;
}

.news-feature time,
.article-card time {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-feature h2 {
  margin-top: 10px;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
}

.news-feature p,
.news-sidebar p {
  margin-top: 14px;
}

.news-feature .button {
  margin-top: 22px;
}

.news-sidebar h2 {
  font-size: 1.4rem;
}

.news-sidebar a {
  display: inline-flex;
  margin-top: 20px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.article-card {
  display: grid;
  align-content: start;
  min-height: 420px;
  padding: 0;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.article-card img {
  aspect-ratio: 1.65;
  height: auto;
}

.article-card time,
.article-card h3,
.article-card p,
.article-card a {
  margin-left: 22px;
  margin-right: 22px;
}

.article-card time {
  margin-top: 20px;
}

.article-card h3 {
  margin-top: 9px;
  font-size: 1.06rem;
}

.article-card p {
  margin-top: 10px;
}

.article-card a {
  margin-top: 18px;
  margin-bottom: 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-cards article {
  min-height: 185px;
  padding: 24px;
}

.contact-cards p {
  margin-top: 10px;
}

.contact-cards a {
  display: inline-flex;
  margin-top: 18px;
  text-transform: none;
  letter-spacing: 0;
}

.form-card {
  display: grid;
  gap: 15px;
  padding: clamp(24px, 4vw, 34px);
}

.form-card h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
}

.form-card label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.form-card textarea {
  resize: vertical;
}

.form-card button {
  cursor: pointer;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about {
  padding: 28px 0 56px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(320px, 1.1fr) minmax(220px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
}

.about-copy p {
  max-width: 330px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.93rem;
}

.about-copy .button {
  margin-top: 24px;
}

.about-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.about-image img {
  width: 100%;
  aspect-ratio: 1.66;
  height: auto;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.about-image:hover img {
  transform: scale(1.035);
}

.about-points {
  display: grid;
  gap: 30px;
}

.about-points article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.about-points h3 {
  margin-bottom: 7px;
  color: var(--ink);
}

.about-points p {
  color: var(--muted);
  font-size: 0.82rem;
}

.business {
  padding: 52px 0 62px;
}

.section-title {
  margin-bottom: 18px;
}

.section-title h2 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  letter-spacing: 0;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.business-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: #111214;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.business-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 177, 102, 0.45);
  background: #151618;
}

.business-card img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  filter: saturate(0.95);
}

.business-card div {
  display: grid;
  min-height: 152px;
  padding: 16px 14px 13px;
}

.business-card h3 {
  font-size: 0.85rem;
}

.business-card p {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
}

.business-card a {
  justify-self: end;
  align-self: end;
  color: var(--gold-light);
  font-size: 1.05rem;
}

.innovation {
  padding: 50px 0 42px;
}

.innovation-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.innovation-intro {
  padding: 12px 22px 12px 0;
}

.innovation-intro h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
}

.innovation-intro p {
  max-width: 310px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.innovation-intro .button {
  margin-top: 24px;
}

.innovation-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.innovation-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 137, 67, 0.46);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.innovation-card img {
  width: 100%;
  aspect-ratio: 2;
  object-fit: cover;
}

.innovation-card h3 {
  padding: 14px 14px 0;
  font-size: 0.86rem;
}

.innovation-card p {
  padding: 8px 14px 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.innovation-card a {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: var(--gold);
}

.stats-band {
  padding: 0 0 22px;
  background: var(--paper);
}

.stats-panel {
  padding: 26px 24px 22px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(184, 137, 67, 0.18), transparent 28%),
    #090a0c;
  color: var(--white);
}

.stats-label {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat {
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-areas:
    "icon value"
    "icon label"
    "icon copy";
  gap: 0 16px;
  min-width: 0;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.stat:first-child {
  border-left: 0;
  padding-left: 0;
}

.stat > .line-icon {
  grid-area: icon;
  align-self: center;
}

.stat strong {
  grid-area: value;
  font-size: clamp(1.65rem, 2.7vw, 2.3rem);
  line-height: 1;
}

.stat span:not(.line-icon) {
  grid-area: label;
  margin-top: 3px;
  font-size: 0.78rem;
  font-weight: 850;
}

.stat p {
  grid-area: copy;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
}

.news-careers {
  padding: 0 0 34px;
}

.news-careers-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.88fr);
  gap: 18px;
}

.latest-news,
.career-card {
  min-width: 0;
}

.news-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line);
}

.news-heading a {
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 16px;
}

.news-list article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  min-width: 0;
}

.news-list img {
  width: 76px;
  height: 76px;
  border-radius: 4px;
  object-fit: cover;
}

.news-list time {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-list h3 {
  font-size: 0.72rem;
  line-height: 1.35;
}

.news-list a {
  display: inline-flex;
  margin-top: 9px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
}

.career-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), #7d5a2b);
}

.career-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  mix-blend-mode: multiply;
}

.career-card > div {
  position: relative;
  z-index: 1;
  max-width: 330px;
  padding: 26px;
}

.career-card .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.career-card h2 {
  font-size: 1.7rem;
}

.career-card p {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
}

.career-card .button {
  margin-top: 18px;
}

.contact-section {
  padding: 36px 0;
  background: var(--paper);
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-strip h2 {
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
}

.site-footer {
  padding: 34px 0;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr repeat(4, minmax(120px, 0.75fr));
  gap: 26px;
  align-items: start;
}

.footer-copy {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.footer-column,
.footer-social {
  display: grid;
  gap: 7px;
}

.footer-column h2,
.footer-social h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  transition: color 180ms ease;
}

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

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.74);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--gold-light);
  transform: translateY(-2px);
}

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

.footer-social small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
}

.article-layout,
.role-layout,
.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.article-body,
.role-content,
.legal-content {
  display: grid;
  gap: 24px;
  max-width: 780px;
}

.article-body > p,
.role-content > p,
.legal-content > p,
.legal-content li,
.article-body li,
.role-content li {
  color: var(--muted);
  font-size: 1rem;
}

.article-body h2,
.role-content h2,
.legal-content h2 {
  margin-top: 8px;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
}

.article-body ul,
.role-content ul,
.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.article-sidebar,
.role-aside,
.legal-aside {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
}

.side-panel,
.quote-panel,
.next-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.side-panel h2,
.quote-panel h2,
.next-panel h2 {
  font-size: 1.18rem;
}

.side-panel p,
.quote-panel p,
.next-panel p,
.side-panel li {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.side-panel ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
}

.side-panel a,
.next-panel a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-meta,
.role-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.article-meta span,
.role-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(216, 177, 102, 0.42);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-panel {
  border-color: rgba(184, 137, 67, 0.35);
  background:
    radial-gradient(circle at 100% 0, rgba(184, 137, 67, 0.12), transparent 32%),
    var(--white);
}

.quote-panel p {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 760;
}

.next-grid,
.sitemap-grid,
.follow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.next-panel {
  min-height: 190px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.next-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 137, 67, 0.5);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.1);
}

.role-highlight {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(184, 137, 67, 0.2), transparent 32%),
    #111214;
  color: var(--white);
}

.role-highlight p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
}

.role-highlight .button {
  margin-top: 22px;
}

.follow-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.follow-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.follow-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.follow-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sitemap-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.sitemap-card h2 {
  font-size: 1.25rem;
}

.sitemap-card nav {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.sitemap-card a {
  color: var(--muted);
  font-size: 0.92rem;
}

.sitemap-card a:hover,
.sitemap-card a:focus-visible {
  color: var(--gold);
}

.legal-content {
  gap: 20px;
}

.anchor-target {
  scroll-margin-top: 92px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 650ms var(--ease),
    transform 650ms var(--ease);
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(-1.2%, -0.6%, 0);
  }
}

@keyframes menuFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

@media (max-width: 1120px) {
  .site-header {
    padding-inline: 24px;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.65rem;
  }

  .pillar-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .pillar-card:nth-child(3n) {
    border-right: 0;
  }

  .pillar-card:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .business-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-card-grid.three,
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .innovation-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .innovation-intro {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px 28px;
    align-items: end;
    padding: 0;
  }

  .innovation-intro .eyebrow,
  .innovation-intro h2,
  .innovation-intro p {
    grid-column: 1;
  }

  .innovation-intro .button {
    grid-column: 2;
    grid-row: 2 / span 2;
    margin-top: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .stat:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    width: 100%;
    height: 100vh;
    min-height: 100svh;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 96px 28px 36px;
    background:
      radial-gradient(circle at 80% 18%, rgba(184, 137, 67, 0.16), transparent 34%),
      rgba(5, 5, 5, 0.97);
    font-size: clamp(1.35rem, 6vw, 2.6rem);
    font-weight: 850;
    letter-spacing: -0.01em;
    text-transform: none;
    animation: menuFade 180ms ease;
  }

  body.nav-open .site-nav {
    display: flex !important;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .language-control {
    width: 100%;
    min-height: 54px;
    margin: 18px 0 0;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: transparent;
  }

  .site-nav .language-control svg {
    width: 20px;
    height: 20px;
  }

  .site-nav .language-control select {
    max-width: none;
    width: min(100%, 280px);
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .hero {
    min-height: 560px;
    padding-top: 116px;
  }

  .hero-image {
    top: 70px;
    right: auto;
    bottom: 0;
    left: 20%;
    width: 92vw;
  }

  .about-grid,
  .news-careers-grid,
  .page-split,
  .page-band-grid,
  .feature-row,
  .news-feature,
  .article-layout,
  .role-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar,
  .role-aside,
  .legal-aside {
    position: static;
  }

  .page-hero {
    min-height: 380px;
  }

  .page-hero h1 {
    max-width: 720px;
  }

  .page-list,
  .metric-row,
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-copy p {
    max-width: 620px;
  }

  .about-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .news-list {
    grid-template-columns: 1fr;
  }

  .news-list article {
    grid-template-columns: 92px 1fr;
  }

  .news-list img {
    width: 92px;
    height: 72px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(1130px, calc(100vw - 32px));
  }

  .site-header {
    min-height: 66px;
    padding: 14px 16px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .brand-word strong {
    font-size: 0.92rem;
  }

  .brand-word small {
    font-size: 0.42rem;
  }

  .hero {
    min-height: 650px;
    padding: 112px 0 116px;
  }

  .hero-copy-block {
    max-width: 100%;
  }

  .hero-copy-block p {
    max-width: 360px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 310px;
  }

  .button {
    width: 100%;
  }

  .pillar-wrap {
    margin-top: -82px;
  }

  .pillar-panel,
  .business-grid,
  .innovation-grid,
  .stats-grid,
  .about-points,
  .footer-grid,
  .page-card-grid.three,
  .article-grid,
  .page-list,
  .metric-row,
  .contact-cards,
  .next-grid,
  .sitemap-grid,
  .follow-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 360px;
    padding: 118px 0 56px;
  }

  .anchor-target {
    scroll-margin-top: 72px;
  }

  .page-hero h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .page-card,
  .image-card div,
  .news-feature div,
  .news-sidebar,
  .article-card,
  .contact-cards article,
  .form-card {
    padding: 22px;
  }

  .metric-row article,
  .metric-row article:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .metric-row article:first-child {
    border-top: 0;
  }

  .job-list article {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-feature img {
    aspect-ratio: 1.6;
    height: auto;
  }

  .pillar-card,
  .pillar-card:nth-child(3n),
  .pillar-card:nth-child(n + 4) {
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .pillar-card:first-child {
    border-top: 0;
  }

  .pillar-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar-card {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .pillar-card:nth-child(2n) {
    border-right: 0;
  }

  .pillar-card:nth-child(-n + 2) {
    border-top: 0;
  }

  .business-card div {
    min-height: auto;
  }

  .innovation-intro {
    display: block;
  }

  .innovation-intro .button {
    margin-top: 22px;
  }

  .stat,
  .stat:nth-child(odd) {
    padding: 20px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .news-heading,
  .contact-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .career-card > div {
    max-width: none;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(2.25rem, 12vw, 3.1rem);
  }

  .hero {
    min-height: 620px;
    padding-bottom: 108px;
  }

  .hero-image {
    right: auto;
    left: 8%;
    width: 116vw;
    opacity: 0.72;
  }

  .hero-copy-block p {
    font-size: 0.9rem;
  }

  .pillar-card {
    min-height: 142px;
  }

  .page-hero {
    padding-top: 104px;
  }

  .page-section,
  .page-band {
    padding: 48px 0;
  }
}
