:root {
  --paper: #f7f4ee;
  --paper-soft: #fbfaf7;
  --paper-deep: #eee9df;
  --ink: #292928;
  --ink-soft: #555451;
  --ink-faint: #706e69;
  --stone: #b7b6b2;
  --stone-light: #d8d6d0;
  --line: rgba(41, 41, 40, 0.13);
  --line-light: rgba(255, 255, 255, 0.16);
  --gold: #c89a32;
  --gold-deep: #8d6212;
  --gold-soft: #e3c979;
  --charcoal: #242524;
  --charcoal-2: #1c1d1c;
  --white: #fff;
  --danger: #a33a32;
  --success: #38734e;
  --shadow: 0 30px 80px rgba(38, 37, 34, 0.12);
  --shadow-soft: 0 18px 48px rgba(38, 37, 34, 0.08);
  --container: 1220px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(.22, .78, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 14%, rgba(200, 154, 50, 0.045), transparent 30%),
    radial-gradient(circle at 84% 30%, rgba(183, 182, 178, 0.11), transparent 34%),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; }
::selection { color: var(--ink); background: rgba(200, 154, 50, 0.28); }

.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 140px 0; }
.route-section { position: relative; }

.skip-link {
  position: fixed;
  z-index: 200;
  inset-inline-start: 20px;
  top: 16px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--charcoal);
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 88px;
  border-bottom: 1px solid transparent;
  transition: height .35s var(--ease), background-color .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(247, 244, 238, 0.93);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(41, 41, 40, 0.04);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { width: 47px; height: auto; }
.brand-name { font-family: var(--serif); font-size: 29px; font-weight: 600; letter-spacing: -.02em; line-height: 1; }
.site-nav { justify-self: center; display: flex; align-items: center; gap: 32px; }
.nav-link {
  position: relative;
  padding: 12px 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .015em;
}
.nav-link::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 20px; }
.language-switch { display: flex; gap: 7px; align-items: center; font-size: 11px; letter-spacing: .11em; color: var(--ink-faint); }
.language-link { padding: 6px 0; }
.language-link.is-active { color: var(--ink); font-weight: 600; }
.menu-toggle { display: none; border: 0; background: none; width: 44px; height: 44px; padding: 9px; cursor: pointer; }
.menu-toggle svg { width: 100%; height: 100%; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .28s var(--ease), box-shadow .28s ease, background-color .28s ease, color .28s ease;
}
.button svg, .text-link svg { width: 18px; height: 18px; transition: transform .28s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button:hover svg, .text-link:hover svg { transform: translateX(4px); }
.button-gold { color: #201d16; background: var(--gold); box-shadow: 0 12px 30px rgba(155, 111, 23, .16); }
.button-gold:hover { background: #d4aa4d; box-shadow: 0 16px 36px rgba(155, 111, 23, .22); }
.button-small { min-height: 42px; padding: 10px 17px; font-size: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 14px; padding: 10px 0; font-size: 13px; font-weight: 600; }
.text-link-light { color: var(--white); }

.section-kicker,
.hero-kicker {
  margin: 0 0 22px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-kicker-light { color: var(--gold-soft); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: .96; letter-spacing: -.035em; }
h1 em, h2 em, h3 em { color: var(--gold-deep); font-weight: 500; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal-delay { transition-delay: .14s; }
.js .reveal-delay-2 { transition-delay: .26s; }

.route-indicator {
  position: fixed;
  z-index: 80;
  top: 50%;
  right: 21px;
  width: 14px;
  height: 168px;
  transform: translateY(-50%);
  pointer-events: none;
}
.route-track,
.route-progress {
  position: absolute;
  left: 6px;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(41, 41, 40, .16);
}
.route-progress { height: var(--route-progress, 0%); background: var(--gold); transition: height .5s var(--ease); }
.route-current {
  position: absolute;
  left: 2px;
  top: calc(var(--route-progress, 0%) - 5px);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(200, 154, 50, .13);
  transition: top .5s var(--ease);
}

/* Hero */
.hero {
  min-height: 100vh;
  padding-top: 128px;
  background: var(--paper-soft);
  isolation: isolate;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .55;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(41,41,40,.025) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(200,154,50,.025) 0 1px, transparent 1px);
  background-size: 22px 22px, 28px 28px;
}
.hero-layout {
  min-height: calc(100vh - 182px);
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 72px;
}
.hero-copy { padding: 52px 0 72px; position: relative; z-index: 2; }
.hero h1 { max-width: 720px; margin-bottom: 32px; font-size: clamp(76px, 7vw, 118px); }
.hero h1 em { display: inline-block; }
.hero-lead { max-width: 610px; margin-bottom: 34px; color: var(--ink-soft); font-size: 17px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }
.hero-office-line {
  margin-top: 58px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-office-line i { width: 18px; height: 1px; background: var(--stone); }

.hero-canvas {
  position: relative;
  min-height: 720px;
  align-self: stretch;
  margin-inline-end: calc((100vw - min(100vw - 64px, var(--container))) / -2);
  overflow: hidden;
  background: var(--paper-deep);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 8% 70%, 0 35%);
}
.hero-image-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(.62) contrast(.95) brightness(1.06);
  transform: scale(1.02) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  transition: transform .8s var(--ease);
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(247,244,238,.93) 0 12%, rgba(247,244,238,.2) 44%, rgba(37,38,37,.08) 100%),
    linear-gradient(180deg, transparent 62%, rgba(33,34,33,.3));
}
.hero-mark { position: absolute; width: 31%; right: 10%; top: 23%; filter: drop-shadow(0 24px 30px rgba(34,34,33,.2)); }
.hero-current { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.hero-current path { fill: none; stroke-linecap: round; }
.current-silver { stroke: rgba(183,182,178,.84); stroke-width: 5; }
.current-gold { stroke: var(--gold); stroke-width: 3; }
.js .hero-current path { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw-current 1.8s .35s var(--ease) forwards; }
@keyframes draw-current { to { stroke-dashoffset: 0; } }
.hero-note {
  position: absolute;
  z-index: 2;
  width: 222px;
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(251,250,247,.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}
.hero-note span { display: block; margin-bottom: 4px; color: var(--gold-deep); font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.hero-note strong { display: block; font-family: var(--serif); font-size: 23px; font-weight: 600; line-height: 1.06; }
.hero-note-world { left: 14%; top: 20%; }
.hero-note-offices { right: 7%; bottom: 12%; }
.hero-orbit-dot {
  position: absolute;
  left: 51%;
  top: 51%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(200,154,50,.18);
  animation: pulse-dot 2.8s ease-in-out infinite;
}
@keyframes pulse-dot { 50% { transform: scale(.72); box-shadow: 0 0 0 14px rgba(200,154,50,.05); } }
.hero-flow { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-flow-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--ink-faint); font-family: var(--serif); font-size: 20px; }
.hero-flow-inner i { width: min(10vw, 110px); height: 1px; background: linear-gradient(90deg, var(--stone), var(--gold)); }

/* Company */
.company { overflow: hidden; background: var(--paper); }
.company-grid { display: grid; grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr); gap: 98px; align-items: center; }
.company-visual { position: relative; min-height: 660px; }
.company-image-wrap {
  position: absolute;
  inset: 0 42px 80px 0;
  overflow: hidden;
  border-radius: 220px 28px 190px 30px / 160px 30px 180px 42px;
  box-shadow: var(--shadow);
}
.company-image-wrap img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65) sepia(.08) brightness(1.02); }
.company-image-cut {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 46%;
  height: 36%;
  background: var(--paper);
  border-radius: 100% 0 0 0;
}
.company-side-note {
  position: absolute;
  right: -16px;
  bottom: 38px;
  width: 245px;
  margin: 0;
  padding: 22px 24px 22px 48px;
  color: var(--ink-soft);
  background: var(--paper-soft);
  border-left: 2px solid var(--gold);
  box-shadow: var(--shadow-soft);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.2;
}
.company-copy h2 { margin-bottom: 38px; font-size: clamp(62px, 6vw, 92px); }
.company-lead { max-width: 760px; margin-bottom: 34px; color: var(--ink); font-family: var(--serif); font-size: 30px; line-height: 1.3; }
.company-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; color: var(--ink-soft); }
.company-principle { margin-top: 44px; display: flex; flex-wrap: wrap; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.company-principle span { flex: 1 1 210px; padding: 18px 24px; border-inline-end: 1px solid var(--line); color: var(--ink-soft); font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.company-principle span:last-child { border-inline-end: 0; }
.company-thread { position: absolute; left: 0; right: 0; bottom: -8px; width: 100%; height: 260px; pointer-events: none; }
.company-thread path { fill: none; stroke: var(--stone-light); stroke-width: 1.2; }
.company-thread path + path { stroke: rgba(200,154,50,.58); }

/* Capabilities */
.capabilities { padding-bottom: 164px; background: var(--paper-soft); }
.capabilities-heading { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); column-gap: 80px; align-items: end; margin-bottom: 84px; }
.capabilities-heading .section-kicker { grid-column: 1 / -1; }
.capabilities-heading h2 { margin-bottom: 0; font-size: clamp(58px, 5.7vw, 88px); }
.capabilities-heading > p:last-child { margin-bottom: 8px; color: var(--ink-soft); }
.capability-stage { display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(360px, .84fr); min-height: 720px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability-field { position: relative; min-height: 720px; overflow: hidden; }
.capability-field::before {
  content: "";
  position: absolute;
  inset: 12% 9%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,154,50,.08), transparent 58%);
}
.capability-orbit { position: absolute; inset: 4% 2%; width: 96%; height: 92%; }
.capability-orbit path { fill: none; stroke: rgba(41,41,40,.1); stroke-width: 1.1; }
.capability-orbit path + path { stroke: rgba(200,154,50,.28); }
.capability-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  background: rgba(247,244,238,.72);
  box-shadow: inset 0 0 0 1px rgba(41,41,40,.08), 0 26px 70px rgba(41,41,40,.08);
  backdrop-filter: blur(10px);
}
.capability-core img { width: 94px; margin-bottom: 7px; opacity: .82; }
.capability-core span { color: var(--ink-faint); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.capability-core strong { font-family: var(--serif); font-size: 24px; font-weight: 600; }
.capability-token {
  position: absolute;
  z-index: 3;
  padding: 10px 3px;
  border: 0;
  border-bottom: 1px solid transparent;
  color: var(--ink-soft);
  background: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.05;
  white-space: nowrap;
  transition: color .35s ease, transform .35s var(--ease), border-color .35s ease;
}
.capability-token:hover,
.capability-token:focus-visible,
.capability-token.is-active { color: var(--gold-deep); transform: translateY(-3px); border-color: var(--gold); outline: 0; }
.token-sourcing { left: 7%; top: 18%; }
.token-suppliers { right: 8%; top: 12%; }
.token-purchasing { right: 2%; top: 38%; }
.token-trade { right: 8%; bottom: 20%; }
.token-supply { left: 35%; bottom: 8%; }
.token-followup { left: 4%; bottom: 22%; }
.token-docs { left: 1%; top: 46%; }
.token-shipping { left: 38%; top: 4%; }
.token-tailored { left: 33%; bottom: 29%; }
.capability-cursor {
  position: absolute;
  z-index: 2;
  left: var(--cursor-x, 15%);
  top: var(--cursor-y, 20%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(200,154,50,.12);
  transform: translate(-50%, -50%);
  transition: left .62s var(--ease), top .62s var(--ease);
}
.capability-story { position: relative; min-height: 720px; overflow: hidden; color: var(--white); background: var(--charcoal); }
.capability-story::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 10%, rgba(200,154,50,.15), transparent 34%); }
.capability-story-inner { position: relative; z-index: 2; padding: 78px 64px 48px; }
.capability-label { display: block; margin-bottom: 28px; color: var(--gold-soft); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.capability-story h3 { max-width: 420px; margin-bottom: 26px; color: var(--white); font-size: clamp(48px, 4.4vw, 72px); }
.capability-story p { max-width: 470px; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.8; }
.capability-story .text-link { margin-top: 16px; }
.capability-story-image { position: absolute; inset: auto 0 0; height: 42%; overflow: hidden; opacity: .58; }
.capability-story-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--charcoal), transparent 42%, rgba(28,29,28,.5)); }
.capability-story-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.75) sepia(.2) contrast(.9); }
.capability-story-sweep { position: absolute; z-index: 2; right: -12%; top: 20%; width: 78%; height: 46%; border: 2px solid var(--gold); border-left: 0; border-bottom: 0; border-radius: 0 100% 0 0; transform: rotate(-8deg); }
.capability-story.is-changing .capability-story-inner { animation: story-shift .5s var(--ease); }
@keyframes story-shift { 0% { opacity: .45; transform: translateY(12px); } 100% { opacity: 1; transform: none; } }

/* Reach / offices */
.reach { position: relative; min-height: 880px; padding: 150px 0; overflow: hidden; color: var(--white); background: var(--charcoal-2); }
.reach::before { content: ""; position: absolute; inset: 0; opacity: .34; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 42px 42px; }
.reach-glow { position: absolute; width: 740px; height: 740px; right: -240px; top: -220px; border-radius: 50%; background: radial-gradient(circle, rgba(200,154,50,.15), transparent 66%); }
.reach-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .82fr) minmax(540px, 1.18fr); gap: 60px; align-items: center; }
.reach-copy h2 { margin-bottom: 34px; color: var(--white); font-size: clamp(60px, 6vw, 92px); }
.reach-copy h2 em { color: var(--gold-soft); }
.reach-copy > p:not(.section-kicker) { max-width: 620px; color: rgba(255,255,255,.62); font-size: 16px; }
.reach-statement { margin-top: 52px; padding-top: 28px; border-top: 1px solid var(--line-light); }
.reach-statement span { display: block; margin-bottom: 7px; color: var(--gold-soft); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.reach-statement strong { font-family: var(--serif); font-size: 34px; font-weight: 500; }
.office-orbit { position: relative; min-height: 650px; }
.office-orbit > svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.office-orbit ellipse,
.office-orbit path { fill: none; stroke: rgba(255,255,255,.15); stroke-width: 1.1; }
.office-orbit .office-orbit-gold { stroke: rgba(200,154,50,.65); }
.office-orbit-mark { position: absolute; left: 50%; top: 50%; width: 180px; opacity: .78; transform: translate(-50%, -50%); filter: drop-shadow(0 24px 34px rgba(0,0,0,.34)); }
.office-comet { position: absolute; left: 50%; top: 50%; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 8px rgba(200,154,50,.12), -16px 0 30px rgba(200,154,50,.8); transform-origin: -255px 0; animation: orbit-comet 12s linear infinite; }
@keyframes orbit-comet { from { transform: translate(255px, -4px) rotate(0deg); } to { transform: translate(255px, -4px) rotate(360deg); } }
.office { position: absolute; min-width: 126px; padding: 13px 16px; background: rgba(28,29,28,.82); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(10px); }
.office span { color: var(--gold-soft); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.office h3 { margin: 2px 0 0; color: var(--white); font-size: 29px; }
.office-yemen { left: 3%; top: 49%; }
.office-turkey { left: 24%; top: 11%; }
.office-indonesia { right: 18%; bottom: 17%; }
.office-china { right: 0; top: 38%; }
.office-world-label { position: absolute; left: 50%; bottom: 3%; text-align: center; transform: translateX(-50%); }
.office-world-label span { display: block; color: rgba(255,255,255,.46); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.office-world-label strong { font-family: var(--serif); font-size: 27px; font-weight: 500; }

/* Contact */
.contact { padding: 150px 0 118px; background: var(--paper-deep); }
.contact-shell { display: grid; grid-template-columns: minmax(0, .72fr) minmax(480px, 1fr) 190px; gap: 48px; align-items: stretch; }
.contact-intro { padding: 28px 0; }
.contact-intro h2 { margin-bottom: 30px; font-size: clamp(62px, 5.6vw, 88px); }
.contact-intro > p:not(.section-kicker) { max-width: 500px; color: var(--ink-soft); }
.contact-details { margin-top: 42px; display: grid; gap: 14px; font-style: normal; }
.contact-details a,
.contact-details > span { display: flex; align-items: center; gap: 13px; color: var(--ink-soft); font-size: 13px; }
.contact-details svg { width: 18px; height: 18px; color: var(--gold-deep); }
.contact-form { position: relative; padding: 42px 42px 34px; background: var(--paper-soft); box-shadow: var(--shadow); }
.form-intro { margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.form-intro span { display: block; color: var(--gold-deep); font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.form-intro strong { font-family: var(--serif); font-size: 34px; font-weight: 500; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; }
.field { display: grid; gap: 7px; }
.field-label { color: var(--ink-soft); font-size: 10px; font-weight: 600; letter-spacing: .04em; }
.field input,
.field textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(41,41,40,.25); border-radius: 0; padding: 10px 0 11px; color: var(--ink); background: transparent; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.field textarea { resize: vertical; min-height: 142px; line-height: 1.6; }
.field input:focus,
.field textarea:focus { border-color: var(--gold); box-shadow: 0 1px 0 var(--gold); }
.field input.is-invalid,
.field textarea.is-invalid { border-color: var(--danger); }
.form-wide { grid-column: 1 / -1; }
.consent { margin-top: 20px; display: flex; align-items: flex-start; gap: 10px; color: var(--ink-faint); font-size: 10px; line-height: 1.55; }
.consent input { margin-top: 3px; accent-color: var(--gold); }
.consent a { text-decoration: underline; text-underline-offset: 2px; }
.honeypot { position: fixed !important; inset: 0 auto auto 0 !important; width: 1px !important; height: 1px !important; padding: 0 !important; border: 0 !important; clip-path: inset(50%) !important; opacity: 0 !important; pointer-events: none !important; }
.form-footer { margin-top: 25px; display: flex; align-items: center; gap: 20px; }
.form-status { margin: 0; font-size: 11px; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--danger); }
.form-meta { margin-top: 14px; }
.form-fallback { display: inline-block; margin-bottom: 8px; color: var(--gold-deep); font-size: 11px; text-decoration: underline; }
.form-fallback[hidden] { display: none; }
.form-note,
.no-script-note { margin: 0; color: var(--ink-faint); font-size: 9px; }
.contact-art { position: relative; overflow: hidden; background: var(--charcoal); }
.contact-art img { position: absolute; left: 50%; bottom: 12%; width: 124px; transform: translateX(-50%); filter: drop-shadow(0 24px 30px rgba(0,0,0,.35)); }
.contact-art-line { position: absolute; width: 250%; height: 46%; border-radius: 50%; border: 1px solid; transform: rotate(-24deg); }
.contact-art-silver { left: -108%; top: 12%; border-color: rgba(183,182,178,.6); }
.contact-art-gold { left: -92%; top: 22%; border-color: var(--gold); }
.contact-art-caption { position: absolute; left: 50%; bottom: 28px; white-space: nowrap; color: rgba(255,255,255,.48); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; transform: translateX(-50%) rotate(-90deg); transform-origin: center; }

/* Footer */
.site-footer { padding: 58px 0 28px; color: rgba(255,255,255,.68); background: var(--charcoal-2); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr auto; gap: 48px; align-items: start; }
.brand-footer { color: var(--white); }
.brand-footer .brand-name { font-size: 27px; }
.footer-brand p { margin: 15px 0 0; color: rgba(255,255,255,.48); font-size: 10px; line-height: 1.7; }
.footer-position { margin: 5px 0 0; color: rgba(255,255,255,.48); font-size: 11px; line-height: 1.8; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 22px; font-size: 11px; }
.footer-nav a:hover { color: var(--gold-soft); }
.copyright { grid-column: 1 / -1; margin: 32px 0 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.34); font-size: 9px; text-align: center; }

/* Legal and error pages */
.legal-main { padding: 150px 0 110px; min-height: 78vh; }
.legal-shell { max-width: 880px; }
.legal-shell h1,
.error-shell h1 { margin-bottom: 20px; font-size: clamp(64px, 7vw, 96px); }
.legal-shell h1 span,
.error-shell h1 span { color: var(--gold); }
.legal-meta { color: var(--ink-faint); font-size: 12px; }
.legal-shell h2 { margin: 42px 0 12px; font-size: 37px; }
.legal-shell p { color: var(--ink-soft); }
.legal-shell a { color: var(--gold-deep); text-decoration: underline; }
.error-page { min-height: 78vh; padding: 180px 0 100px; display: grid; align-items: center; }
.error-shell { max-width: 760px; }
.error-code { color: var(--gold-deep); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.error-shell > p:not(.error-code) { margin-bottom: 30px; color: var(--ink-soft); }

/* RTL */
html[dir="rtl"] {
  --serif: "Noto Naskh Arabic", "Times New Roman", serif;
  --sans: "Noto Sans Arabic", Arial, sans-serif;
}
html[dir="rtl"] body { letter-spacing: 0; }
html[dir="rtl"] .brand-name { font-size: 27px; }
html[dir="rtl"] .nav-link,
html[dir="rtl"] .section-kicker,
html[dir="rtl"] .hero-kicker,
html[dir="rtl"] .hero-office-line,
html[dir="rtl"] .capability-label,
html[dir="rtl"] .office span,
html[dir="rtl"] .reach-statement span,
html[dir="rtl"] .form-intro span { letter-spacing: 0; text-transform: none; }
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 { letter-spacing: -.02em; line-height: 1.18; }
html[dir="rtl"] .hero h1 { font-size: clamp(68px, 6.6vw, 105px); }
html[dir="rtl"] .company-copy h2,
html[dir="rtl"] .capabilities-heading h2,
html[dir="rtl"] .reach-copy h2,
html[dir="rtl"] .contact-intro h2 { line-height: 1.16; }
html[dir="rtl"] .button svg,
html[dir="rtl"] .text-link svg { transform: scaleX(-1); }
html[dir="rtl"] .button:hover svg,
html[dir="rtl"] .text-link:hover svg { transform: scaleX(-1) translateX(4px); }
html[dir="rtl"] .hero-canvas { margin-inline-end: calc((100vw - min(100vw - 64px, var(--container))) / -2); clip-path: polygon(0 0, 82% 0, 100% 35%, 92% 70%, 100% 100%, 0 100%); }
html[dir="rtl"] .hero-note-world { left: auto; right: 14%; }
html[dir="rtl"] .hero-note-offices { right: auto; left: 7%; }
html[dir="rtl"] .company-image-wrap { inset: 0 0 80px 42px; }
html[dir="rtl"] .company-side-note { right: auto; left: -16px; padding: 22px 48px 22px 24px; border-left: 0; border-right: 2px solid var(--gold); }
html[dir="rtl"] .capability-token { font-size: 22px; }
html[dir="rtl"] .token-sourcing { left: auto; right: 7%; }
html[dir="rtl"] .token-suppliers { right: auto; left: 8%; }
html[dir="rtl"] .token-purchasing { right: auto; left: 2%; }
html[dir="rtl"] .token-trade { right: auto; left: 8%; }
html[dir="rtl"] .token-supply { left: auto; right: 35%; }
html[dir="rtl"] .token-followup { left: auto; right: 4%; }
html[dir="rtl"] .token-docs { left: auto; right: 1%; }
html[dir="rtl"] .token-shipping { left: auto; right: 38%; }
html[dir="rtl"] .token-tailored { left: auto; right: 33%; }
html[dir="rtl"] .contact-art-caption { transform: translateX(-50%) rotate(90deg); }

/* Focus */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@media (max-width: 1180px) {
  .container { width: min(calc(100% - 48px), var(--container)); }
  .site-nav { gap: 22px; }
  .header-inner { gap: 22px; }
  .header-actions .button { display: none; }
  .hero-layout { grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); gap: 40px; }
  .hero h1 { font-size: clamp(70px, 7.7vw, 98px); }
  .company-grid { gap: 64px; }
  .capability-stage { grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr); }
  .capability-token { font-size: 21px; }
  .reach-grid { grid-template-columns: minmax(0, .86fr) minmax(480px, 1.14fr); }
  .contact-shell { grid-template-columns: .72fr 1fr; }
  .contact-art { display: none; }
}

@media (max-width: 980px) {
  html { scroll-padding-top: 74px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .site-header { height: 72px; background: rgba(247,244,238,.96); border-bottom-color: var(--line); }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .menu-toggle { display: block; justify-self: end; }
  .header-actions { gap: 13px; }
  .language-switch { order: -1; }
  .site-nav {
    position: fixed;
    inset: 72px 0 0;
    padding: 70px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: rgba(247,244,238,.985);
    width: 100%;
    max-width: none;
    justify-self: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(110%);
    transition: transform .42s var(--ease), opacity .24s ease, visibility 0s linear .42s;
  }
  html[dir="rtl"] .site-nav { transform: translateX(-110%); }
  .site-nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; transform: translateX(0); transition-delay: 0s; }
  .nav-link { font-family: var(--serif); font-size: 44px; font-weight: 500; }
  .nav-link::after { bottom: 8px; }
  .route-indicator { display: none; }

  .hero { padding-top: 72px; }
  .hero-layout { min-height: auto; grid-template-columns: 1fr; gap: 0; }
  .hero-copy { padding: 88px 0 58px; }
  .hero h1 { max-width: 760px; font-size: clamp(72px, 12vw, 105px); }
  .hero-lead { max-width: 720px; }
  .hero-canvas,
  html[dir="rtl"] .hero-canvas { min-height: 650px; margin-inline: -18px; clip-path: polygon(0 8%, 82% 0, 100% 11%, 100% 100%, 0 100%); }
  .hero-note-world { top: 20%; left: 6%; }
  .hero-note-offices { right: 5%; bottom: 9%; }
  html[dir="rtl"] .hero-note-world { right: 6%; }
  html[dir="rtl"] .hero-note-offices { left: 5%; }
  .hero-flow-inner { overflow-x: auto; justify-content: flex-start; scrollbar-width: none; }
  .hero-flow-inner::-webkit-scrollbar { display: none; }
  .hero-flow-inner span { white-space: nowrap; }
  .hero-flow-inner i { flex: 0 0 70px; }

  .company-grid { grid-template-columns: 1fr; gap: 72px; }
  .company-visual { min-height: 570px; max-width: 720px; }
  .company-image-wrap,
  html[dir="rtl"] .company-image-wrap { inset: 0 36px 72px 0; }
  html[dir="rtl"] .company-image-wrap { inset: 0 0 72px 36px; }
  .company-copy { max-width: 820px; }

  .capabilities-heading { grid-template-columns: 1fr; gap: 28px; }
  .capability-stage { grid-template-columns: 1fr; }
  .capability-field { min-height: 690px; }
  .capability-story { min-height: 560px; }
  .capability-story-image { height: 46%; }

  .reach-grid { grid-template-columns: 1fr; gap: 44px; }
  .reach-copy { max-width: 820px; }
  .office-orbit { min-height: 620px; }

  .contact-shell { grid-template-columns: 1fr; }
  .contact-intro { max-width: 760px; }
  .contact-form { max-width: 760px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-nav { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-mark { width: 39px; }
  .brand-name { font-size: 24px; }
  .language-switch { font-size: 10px; }
  .section { padding: 98px 0; }
  .hero-copy { padding: 72px 0 46px; }
  .hero h1,
  html[dir="rtl"] .hero h1 { font-size: clamp(62px, 18vw, 88px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 13px; }
  .hero-office-line { margin-top: 40px; gap: 8px; font-size: 9px; }
  .hero-office-line i { width: 10px; }
  .hero-canvas,
  html[dir="rtl"] .hero-canvas { min-height: 500px; }
  .hero-mark { width: 36%; top: 26%; right: 7%; }
  .hero-note { width: 180px; padding: 14px 16px; }
  .hero-note strong { font-size: 19px; }
  .hero-note-world { top: 12%; }
  .hero-note-offices { bottom: 6%; }
  .hero-flow-inner { min-height: 62px; font-size: 17px; }

  .company-grid { gap: 54px; }
  .company-visual { min-height: 480px; }
  .company-image-wrap,
  html[dir="rtl"] .company-image-wrap { inset: 0 22px 64px 0; border-radius: 150px 24px 130px 24px / 120px 24px 140px 28px; }
  html[dir="rtl"] .company-image-wrap { inset: 0 0 64px 22px; }
  .company-side-note,
  html[dir="rtl"] .company-side-note { right: 0; left: auto; bottom: 12px; width: 218px; padding: 18px 20px; font-size: 19px; border-left: 2px solid var(--gold); border-right: 0; }
  html[dir="rtl"] .company-side-note { left: 0; right: auto; border-right: 2px solid var(--gold); border-left: 0; }
  .company-copy h2 { font-size: clamp(54px, 15vw, 72px); }
  .company-lead { font-size: 24px; }
  .company-columns { grid-template-columns: 1fr; gap: 10px; }
  .company-principle { display: block; }
  .company-principle span { display: block; border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .company-principle span:last-child { border-bottom: 0; }

  .capabilities { padding-bottom: 112px; }
  .capabilities-heading { margin-bottom: 56px; }
  .capabilities-heading h2 { font-size: clamp(52px, 14vw, 70px); }
  .capability-stage { border-bottom: 0; }
  .capability-field { min-height: auto; padding: 48px 0 42px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 12px; }
  .capability-field::before,
  .capability-orbit,
  .capability-core,
  .capability-cursor { display: none; }
  .capability-token,
  html[dir="rtl"] .capability-token {
    position: static;
    flex: 0 0 auto;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 13px;
    white-space: normal;
  }
  .capability-token:hover,
  .capability-token:focus-visible,
  .capability-token.is-active { transform: none; border-color: var(--gold); background: rgba(200,154,50,.08); }
  .capability-story { min-height: 540px; }
  .capability-story-inner { padding: 54px 28px 38px; }
  .capability-story h3 { font-size: clamp(46px, 13vw, 64px); }

  .reach { min-height: auto; padding: 108px 0; }
  .reach-copy h2 { font-size: clamp(52px, 14vw, 70px); }
  .reach-statement strong { font-size: 28px; }
  .office-orbit { min-height: 520px; margin-inline: -8px; }
  .office-orbit-mark { width: 128px; }
  .office { min-width: 102px; padding: 10px 12px; }
  .office h3 { font-size: 23px; }
  .office-yemen { left: 0; top: 49%; }
  .office-turkey { left: 19%; top: 8%; }
  .office-indonesia { right: 12%; bottom: 18%; }
  .office-china { right: 0; top: 37%; }
  .office-world-label { bottom: 2%; width: 100%; }
  .office-world-label strong { font-size: 22px; }

  .contact { padding: 100px 0 86px; }
  .contact-intro h2 { font-size: clamp(54px, 15vw, 74px); }
  .contact-form { padding: 30px 22px 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .form-footer { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-column: auto; justify-content: flex-start; }
  .copyright { grid-column: auto; }

  .legal-main { padding-top: 118px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

html[dir="rtl"] .route-indicator { right: auto; left: 21px; }

/* v4.2 — refined navigation, mobile capability rail, and responsive office route */
.nav-links { display: flex; align-items: center; gap: 32px; }
.mobile-nav-meta { display: none; }
.capability-mobile-rail { display: contents; }
.capability-mobile-guide { display: none; }

@media (min-width: 981px) {
  .capability-field::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: var(--cursor-y, 20%);
    inset-inline-start: var(--cursor-x, 15%);
    inset-inline-end: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(200,154,50,.72), rgba(200,154,50,.08));
    transform: translateY(-50%);
    transition: top .62s var(--ease), inset-inline-start .62s var(--ease);
    pointer-events: none;
  }
  html[dir="rtl"] .capability-field::after {
    background: linear-gradient(270deg, rgba(200,154,50,.72), rgba(200,154,50,.08));
  }
}

@media (max-width: 1180px) {
  .nav-links { gap: 22px; }
}

@media (max-width: 980px) {
  body.menu-open { touch-action: none; }
  .site-nav {
    overflow-y: auto;
    overscroll-behavior: contain;
    align-items: stretch;
    justify-content: space-between;
    gap: 52px;
    padding: clamp(48px, 8vh, 82px) max(28px, calc((100vw - 720px) / 2)) 34px;
    background:
      radial-gradient(circle at 84% 14%, rgba(200,154,50,.12), transparent 28%),
      linear-gradient(150deg, rgba(247,244,238,.995), rgba(238,233,223,.99));
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  html[dir="rtl"] .nav-links { align-items: flex-start; }
  .nav-link {
    width: fit-content;
    padding: 8px 0;
    font-size: clamp(42px, 10vw, 66px);
    line-height: 1;
  }
  .mobile-nav-meta {
    position: relative;
    display: grid;
    gap: 18px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
    isolation: isolate;
  }
  .mobile-nav-current {
    position: absolute;
    z-index: -1;
    inset: -50px -34px auto;
    width: calc(100% + 68px);
    height: 190px;
    opacity: .52;
    pointer-events: none;
  }
  .mobile-nav-current path { fill: none; stroke: var(--stone-light); stroke-width: 1.2; }
  .mobile-nav-current path + path { stroke: rgba(200,154,50,.65); }
  .mobile-nav-eyebrow {
    margin: 0;
    color: var(--gold-deep);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  html[dir="rtl"] .mobile-nav-eyebrow { letter-spacing: 0; text-transform: none; }
  .mobile-nav-meta > strong {
    max-width: 620px;
    font-family: var(--serif);
    font-size: clamp(32px, 7vw, 50px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.025em;
  }
  .mobile-nav-cta { width: fit-content; margin-top: 2px; }
  .mobile-nav-utility {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 28px;
    padding-top: 8px;
  }
  .mobile-nav-languages { display: flex; gap: 18px; align-items: center; }
  .mobile-nav-languages a,
  .mobile-nav-email {
    color: var(--ink-faint);
    font-size: 12px;
    font-weight: 600;
  }
  .mobile-nav-languages a.is-active { color: var(--ink); text-decoration: underline; text-underline-offset: 5px; text-decoration-color: var(--gold); }
  .mobile-nav-offices { margin: 0; color: var(--ink-faint); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
  html[dir="rtl"] .mobile-nav-offices { letter-spacing: 0; text-transform: none; }
}

@media (max-width: 680px) {
  .header-actions .language-switch { display: flex; }
  .site-nav { gap: 40px; padding-top: 42px; }
  .nav-link { font-size: clamp(40px, 13vw, 56px); }
  .mobile-nav-meta { gap: 14px; padding-top: 24px; }
  .mobile-nav-meta > strong { font-size: clamp(30px, 9vw, 42px); }
  .mobile-nav-cta { width: 100%; }
  .mobile-nav-utility { align-items: flex-start; flex-direction: column; gap: 12px; }

  .capability-field {
    display: block;
    min-height: auto;
    padding: 46px 0 34px;
    overflow: visible;
  }
  .capability-mobile-guide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    color: var(--ink-faint);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .06em;
  }
  .capability-mobile-guide::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    order: -1;
    background: linear-gradient(90deg, var(--gold), var(--line));
  }
  html[dir="rtl"] .capability-mobile-guide::after { background: linear-gradient(270deg, var(--gold), var(--line)); }
  .capability-mobile-rail {
    display: flex;
    gap: 16px;
    margin-inline: -14px;
    padding: 0 14px 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 14px;
    scrollbar-width: none;
  }
  .capability-mobile-rail::-webkit-scrollbar { display: none; }
  .capability-token,
  html[dir="rtl"] .capability-token {
    position: relative;
    flex: 0 0 min(78vw, 330px);
    min-height: 122px;
    padding: 24px 24px 20px;
    display: flex;
    align-items: flex-end;
    border: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink-soft);
    background: transparent;
    font-family: var(--serif);
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.03;
    text-align: start;
    white-space: normal;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .capability-token::before {
    content: "";
    position: absolute;
    inset-inline-start: 24px;
    top: 22px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--stone);
    box-shadow: 0 0 0 0 rgba(200,154,50,0);
    transition: background-color .3s ease, box-shadow .3s ease, transform .3s var(--ease);
  }
  .capability-token::after {
    content: "";
    position: absolute;
    inset-inline: 24px;
    bottom: -1px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: inline-start;
    transition: transform .38s var(--ease);
  }
  .capability-token:hover,
  .capability-token:focus-visible,
  .capability-token.is-active {
    transform: none;
    color: var(--ink);
    border-color: rgba(200,154,50,.45);
    background: linear-gradient(135deg, rgba(200,154,50,.08), rgba(255,255,255,.2));
  }
  .capability-token.is-active::before {
    background: var(--gold);
    box-shadow: 0 0 0 7px rgba(200,154,50,.12);
    transform: scale(.9);
  }
  .capability-token.is-active::after { transform: scaleX(1); }
  .capability-story { min-height: 500px; }
  .capability-story-inner { padding: 50px 28px 34px; }
  .capability-story-image { height: 39%; }

  .office-orbit {
    min-height: auto;
    margin-inline: 0;
    padding: 18px 0 0;
    display: grid;
    gap: 0;
  }
  .office-orbit > svg,
  .office-comet { display: none; }
  .office-orbit-mark {
    display: block;
    left: auto;
    right: -14px;
    top: 42%;
    width: 164px;
    opacity: .1;
    transform: translateY(-50%);
    filter: none;
  }
  html[dir="rtl"] .office-orbit-mark { right: auto; left: -14px; }
  .office-orbit::before {
    content: "";
    position: absolute;
    inset-block: 38px 96px;
    inset-inline-start: 11px;
    width: 1px;
    background: linear-gradient(var(--gold), rgba(255,255,255,.16) 38%, rgba(255,255,255,.1));
  }
  .office {
    position: relative;
    inset: auto !important;
    min-width: 0;
    padding: 20px 0 20px 42px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: transparent;
    backdrop-filter: none;
  }
  html[dir="rtl"] .office { padding: 20px 42px 20px 0; }
  .office::before {
    content: "";
    position: absolute;
    inset-inline-start: 6px;
    top: 50%;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--charcoal-2);
    border: 2px solid var(--gold);
    box-shadow: 0 0 0 7px rgba(200,154,50,.08);
    transform: translateY(-50%);
  }
  .office span { font-size: 9px; }
  .office h3 { font-size: 34px; }
  .office-world-label {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    padding: 28px 0 0 42px;
    text-align: start;
    transform: none;
  }
  html[dir="rtl"] .office-world-label { padding: 28px 42px 0 0; }
  .office-world-label strong { font-size: 28px; }
}

@media (max-width: 380px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .brand-name { font-size: 21px; }
  .header-inner { gap: 10px; }
  .header-actions { gap: 8px; }
  .menu-toggle { width: 41px; height: 41px; }
  .hero h1,
  html[dir="rtl"] .hero h1 { font-size: clamp(55px, 17vw, 68px); }
  .hero-office-line { font-size: 8px; }
  .capability-token,
  html[dir="rtl"] .capability-token { flex-basis: 84vw; }
  .contact-form { padding-inline: 18px; }
}

@media (hover: none) {
  .button:hover { transform: none; }
  .hero-image-frame img { transform: none; }
}

@supports not (backdrop-filter: blur(1px)) {
  .site-header.is-scrolled,
  .hero-note,
  .capability-core,
  .office { backdrop-filter: none; }
}

/* Overflow containment and non-layout-shifting mobile panels */
html { overflow-x: clip; }
.capability-stage,
.capability-field,
.capability-story { min-width: 0; max-width: 100%; }

@media (max-width: 980px) {
  .site-nav,
  html[dir="rtl"] .site-nav {
    transform: none;
    clip-path: inset(0 0 0 100%);
    transition: clip-path .42s var(--ease), opacity .24s ease, visibility 0s linear .42s;
  }
  html[dir="rtl"] .site-nav { clip-path: inset(0 100% 0 0); }
  .site-nav.is-open,
  html[dir="rtl"] .site-nav.is-open {
    transform: none;
    clip-path: inset(0);
    transition-delay: 0s;
  }
}

@media (max-width: 680px) {
  .capability-mobile-rail {
    width: calc(100% + 28px);
    max-width: calc(100% + 28px);
    min-width: 0;
  }
  .capability-token,
  html[dir="rtl"] .capability-token {
    inset: auto !important;
  }
}

@supports not (overflow: clip) {
  html { overflow-x: hidden; }
}
