:root {
  --ink: #0d1113;
  --ink-soft: #20282d;
  --paper: #f4f1ea;
  --paper-strong: #fffdf7;
  --muted: #697178;
  --line: rgba(16, 20, 23, 0.14);
  --gold: #b9975b;
  --gold-strong: #d6b36e;
  --champagne: #efe0bd;
  --teal: #2d7c82;
  --steel: #d9dee1;
  --shadow: 0 24px 70px rgba(16, 20, 23, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(214, 179, 110, 0.13), transparent 28rem),
    linear-gradient(180deg, #f8f6f0 0%, var(--paper) 34%, #ece7dc 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(16, 20, 23, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 23, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 74%, transparent 100%);
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--paper-strong);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  min-width: 38px;
  align-items: center;
  justify-content: center;
  padding: 7px 0;
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
}

.brand-mark::before {
  position: absolute;
  inset: 0;
  content: "";
  border-top: 1px solid rgba(214, 179, 110, 0.78);
  border-bottom: 1px solid rgba(214, 179, 110, 0.42);
}

.brand-mark::after {
  position: absolute;
  right: -9px;
  top: 50%;
  width: 1px;
  height: 24px;
  content: "";
  background: rgba(214, 179, 110, 0.42);
  transform: translateY(-50%);
}

.brand-name {
  position: relative;
  display: inline-block;
  padding-left: 8px;
}

.brand-name::after {
  position: absolute;
  left: 8px;
  bottom: -8px;
  width: 42px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(214, 179, 110, 0.82), transparent);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  opacity: 0.82;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 5vw, 72px) 48px;
  overflow: hidden;
  color: var(--paper-strong);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--ink);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.12) brightness(0.9);
  transform: scale(1.03);
  animation: imageDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 28%, rgba(214, 179, 110, 0.18), transparent 20rem),
    linear-gradient(90deg, rgba(8, 11, 13, 0.94) 0%, rgba(8, 11, 13, 0.68) 48%, rgba(8, 11, 13, 0.24) 100%),
    linear-gradient(0deg, rgba(8, 11, 13, 0.8) 0%, rgba(8, 11, 13, 0) 48%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 253, 247, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 247, 0.12) 1px, transparent 1px);
  background-size: 94px 94px;
  mask-image: linear-gradient(90deg, #000 0%, #000 50%, transparent 84%);
}

.route-visual {
  position: absolute;
  right: clamp(24px, 7vw, 112px);
  top: 22%;
  width: min(36vw, 520px);
  height: min(36vw, 520px);
  z-index: -1;
  border: 1px solid rgba(255, 253, 247, 0.1);
  border-radius: 50%;
  opacity: 0.78;
}

.route-visual::before,
.route-visual::after {
  position: absolute;
  inset: 14%;
  content: "";
  border: 1px solid rgba(214, 179, 110, 0.18);
  border-radius: 50%;
}

.route-visual::after {
  inset: 31%;
  border-color: rgba(255, 253, 247, 0.14);
}

.route-node {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(255, 253, 247, 0.78);
  border-radius: 50%;
  background: var(--gold-strong);
  box-shadow: 0 0 0 8px rgba(214, 179, 110, 0.1), 0 0 30px rgba(214, 179, 110, 0.48);
}

.node-one {
  left: 12%;
  top: 43%;
}

.node-two {
  right: 14%;
  top: 24%;
}

.node-three {
  right: 25%;
  bottom: 16%;
}

.route-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 179, 110, 0.72), transparent);
  transform-origin: left;
}

.line-one {
  left: 15%;
  top: 45%;
  width: 72%;
  transform: rotate(-17deg);
}

.line-two {
  left: 45%;
  top: 35%;
  width: 46%;
  transform: rotate(67deg);
}

.route-pulse {
  position: absolute;
  left: 13%;
  top: 43%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 24px var(--gold-strong);
  animation: routePulse 5s ease-in-out infinite;
}

.hero-content {
  max-width: 860px;
  padding-bottom: clamp(50px, 9vw, 96px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(4.2rem, 12vw, 10.5rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.42);
}

.hero-copy {
  max-width: min(690px, 100%);
  margin: 28px 0 0;
  color: rgba(255, 253, 247, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--champagne), var(--gold-strong) 62%, #ad8746);
  box-shadow: inset 0 1px 0 rgba(255, 253, 247, 0.62), 0 18px 42px rgba(185, 151, 91, 0.28);
}

.button.secondary {
  color: var(--paper-strong);
  border-color: rgba(255, 253, 247, 0.34);
  background: rgba(255, 253, 247, 0.08);
  backdrop-filter: blur(12px);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 253, 247, 0.62), 0 22px 52px rgba(185, 151, 91, 0.34);
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(980px, 100%);
  border: 1px solid rgba(255, 253, 247, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.14), rgba(255, 253, 247, 0.04)),
    rgba(13, 17, 19, 0.66);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(214, 179, 110, 0.22), transparent 32%, transparent 68%, rgba(45, 124, 130, 0.18));
}

.hero-panel div {
  padding: 22px;
  border-right: 1px solid rgba(255, 253, 247, 0.14);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel span,
.metric span,
.company span,
.capability-card span,
.client-grid span {
  display: block;
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1.2;
}

.section {
  padding: clamp(78px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.intro,
.structure,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(38px, 8vw, 96px);
  align-items: start;
}

.section-heading h2,
.structure-copy h2,
.contact-copy h2,
.flow-copy h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading.narrow h2 {
  max-width: 740px;
}

.intro-text {
  position: relative;
  display: grid;
  gap: 22px;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  padding-left: clamp(22px, 4vw, 46px);
  border-left: 1px solid rgba(185, 151, 91, 0.34);
}

.intro-text::before {
  position: absolute;
  top: 0;
  left: -5px;
  width: 9px;
  height: 58px;
  content: "";
  background: linear-gradient(180deg, var(--gold-strong), transparent);
  border-radius: 999px;
}

.intro-text p,
.structure-copy p,
.contact-copy p,
.business-item p,
.company p,
.metric p,
.flow-copy p {
  margin: 0;
}

.content-list,
.business-item ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-list {
  margin-top: 4px;
}

.content-list li,
.business-item li {
  position: relative;
  padding-left: 20px;
}

.content-list li::before,
.business-item li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  content: "";
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  background: linear-gradient(90deg, transparent clamp(20px, 5vw, 72px), var(--line) 0, var(--line) calc(100% - clamp(20px, 5vw, 72px)), transparent 0);
}

.metric {
  position: relative;
  min-height: 260px;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.94), rgba(246, 240, 228, 0.86)),
    var(--paper-strong);
  overflow: hidden;
}

.metric::after {
  position: absolute;
  right: -30px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  content: "";
  border: 1px solid rgba(185, 151, 91, 0.16);
  border-radius: 50%;
}

.metric h3,
.business-item h3,
.company h3 {
  margin: 18px 0 12px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.metric p,
.business-item p,
.company p,
.structure-copy p,
.contact-copy p {
  color: var(--muted);
}

.business {
  color: var(--paper-strong);
  background:
    radial-gradient(circle at 85% 8%, rgba(45, 124, 130, 0.26), transparent 30rem),
    linear-gradient(180deg, #0d1113 0%, #11191d 100%);
}

.capabilities {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.72), rgba(244, 241, 234, 0.92)),
    var(--paper);
}

.capabilities .section-heading {
  margin-bottom: 42px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.capability-card {
  min-height: 310px;
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.94), rgba(246, 240, 228, 0.82)),
    var(--paper-strong);
}

.capability-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.1;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
}

.business .section-heading {
  margin-bottom: 48px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 253, 247, 0.14);
  border-left: 1px solid rgba(255, 253, 247, 0.14);
}

.business-item {
  position: relative;
  min-height: 320px;
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid rgba(255, 253, 247, 0.14);
  border-bottom: 1px solid rgba(255, 253, 247, 0.14);
  background:
    linear-gradient(160deg, rgba(255, 253, 247, 0.06), transparent 42%),
    rgba(255, 253, 247, 0.015);
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease;
}

.business-item::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(135deg, rgba(214, 179, 110, 0.16), transparent 48%);
  transition: opacity 180ms ease;
}

.business-item:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 253, 247, 0.045);
}

.business-item:hover::before {
  opacity: 1;
}

.item-index {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gold-strong);
  border: 1px solid rgba(214, 179, 110, 0.48);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
}

.business-item p {
  color: rgba(255, 253, 247, 0.68);
}

.business-item ul {
  margin-top: 24px;
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.business-item li::before {
  border-color: rgba(214, 179, 110, 0.78);
}

.structure {
  background:
    radial-gradient(circle at 16% 30%, rgba(45, 124, 130, 0.16), transparent 24rem),
    linear-gradient(135deg, rgba(45, 124, 130, 0.12), transparent 34%),
    var(--paper);
}

.structure-copy p,
.contact-copy p {
  max-width: 620px;
  margin-top: 22px;
  font-size: 1.05rem;
}

.contact-details {
  display: grid;
  gap: 12px;
  max-width: 680px;
  margin-top: 34px;
}

.contact-details div {
  padding: 18px 20px;
  border: 1px solid rgba(255, 253, 247, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.1), rgba(255, 253, 247, 0.035)),
    rgba(255, 253, 247, 0.045);
}

.contact-details span {
  display: block;
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details strong {
  display: block;
  margin-top: 8px;
  color: var(--paper-strong);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.35;
}

.contact-details a {
  text-decoration: none;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--champagne);
}

.contact-details em {
  margin: 0 10px;
  color: rgba(255, 253, 247, 0.42);
  font-style: normal;
}

.company-meta {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
}

.company-meta div {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 20, 23, 0.1);
}

.company-meta dt {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-meta dd {
  margin: 0;
  color: var(--ink-soft);
}

.company-list {
  display: grid;
  gap: 18px;
}

.company {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(255, 253, 247, 0.62)),
    rgba(255, 253, 247, 0.76);
  box-shadow: 0 18px 50px rgba(16, 20, 23, 0.06);
  overflow: hidden;
}

.company::after {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 66px;
  height: 66px;
  content: "";
  border-top: 1px solid rgba(185, 151, 91, 0.34);
  border-right: 1px solid rgba(185, 151, 91, 0.34);
}

.clients {
  background:
    linear-gradient(90deg, rgba(13, 17, 19, 0.04), transparent 22%, transparent 78%, rgba(13, 17, 19, 0.04)),
    var(--paper-strong);
}

.clients .section-heading {
  margin-bottom: 36px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.client-grid article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 36px);
  background: linear-gradient(180deg, #fffdf7, var(--paper));
}

.client-grid h3 {
  margin: 18px 0 12px;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.1;
}

.client-grid p {
  margin: 0;
  color: var(--muted);
}

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.principles span {
  padding: 12px 16px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(180deg, #fffdf7, var(--paper));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.team {
  color: var(--paper-strong);
  background:
    radial-gradient(circle at 16% 12%, rgba(214, 179, 110, 0.14), transparent 24rem),
    linear-gradient(180deg, #0d1113 0%, #121a1d 100%);
}

.team .section-heading {
  margin-bottom: 44px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 253, 247, 0.14);
  border: 1px solid rgba(255, 253, 247, 0.14);
}

.team-member {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background:
    linear-gradient(160deg, rgba(255, 253, 247, 0.08), transparent 42%),
    #111719;
  overflow: hidden;
}

.team-member::after {
  position: absolute;
  inset: auto 24px 24px auto;
  width: 58px;
  height: 58px;
  content: "";
  pointer-events: none;
  border-right: 1px solid rgba(214, 179, 110, 0.35);
  border-bottom: 1px solid rgba(214, 179, 110, 0.35);
}

.team-member figure {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  background: #171f22;
}

.team-member figure::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(13, 17, 19, 0.72) 100%),
    linear-gradient(90deg, rgba(13, 17, 19, 0.18), transparent 40%, rgba(13, 17, 19, 0.14));
}

.team-member img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.86) contrast(1.04);
  transition: transform 220ms ease, filter 220ms ease;
}

.team-member:hover img {
  transform: scale(1.03);
  filter: saturate(0.94) contrast(1.08);
}

.member-info {
  position: relative;
  padding: 26px;
}

.member-info span {
  display: block;
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.member-info h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
  line-height: 1;
}

.member-info a {
  color: rgba(255, 253, 247, 0.72);
  font-size: 0.98rem;
  overflow-wrap: anywhere;
}

.member-info a:hover,
.member-info a:focus-visible {
  color: var(--champagne);
}

.contact {
  color: var(--paper-strong);
  background:
    radial-gradient(circle at 18% 20%, rgba(214, 179, 110, 0.18), transparent 26rem),
    linear-gradient(135deg, rgba(185, 151, 91, 0.16), transparent 34%),
    linear-gradient(315deg, rgba(45, 124, 130, 0.2), transparent 42%),
    var(--ink);
}

.contact-showcase {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 253, 247, 0.16);
  background:
    radial-gradient(circle at 72% 18%, rgba(214, 179, 110, 0.22), transparent 15rem),
    linear-gradient(135deg, rgba(255, 253, 247, 0.12), rgba(255, 253, 247, 0.035)),
    rgba(255, 253, 247, 0.055);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.contact-showcase::before {
  position: absolute;
  inset: 28px;
  content: "";
  pointer-events: none;
  border-top: 1px solid rgba(214, 179, 110, 0.26);
  border-right: 1px solid rgba(214, 179, 110, 0.26);
}

.contact-showcase::after {
  position: absolute;
  right: -70px;
  top: -70px;
  width: 230px;
  height: 230px;
  content: "";
  border: 1px solid rgba(255, 253, 247, 0.11);
  border-radius: 50%;
}

.showcase-kicker,
.contact-showcase dt {
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-showcase strong {
  position: relative;
  display: block;
  max-width: 560px;
  margin-top: 16px;
  font-size: clamp(1.55rem, 2.6vw, 2.8rem);
  line-height: 1.04;
  text-wrap: balance;
}

.showcase-line {
  width: min(220px, 54%);
  height: 1px;
  margin: 34px 0;
  background: linear-gradient(90deg, var(--gold-strong), transparent);
}

.contact-showcase dl {
  position: relative;
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-showcase dl div {
  display: grid;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 253, 247, 0.12);
}

.contact-showcase dd {
  margin: 0;
  color: rgba(255, 253, 247, 0.76);
  font-size: 1rem;
}

.contact-showcase a:hover,
.contact-showcase a:focus-visible {
  color: var(--champagne);
}

.contact-showcase em {
  margin: 0 10px;
  color: rgba(255, 253, 247, 0.42);
  font-style: normal;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: rgba(255, 253, 247, 0.72);
  background: #090c0e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.supply-flow {
  padding-top: 0;
  background: var(--paper);
}

.flow-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: stretch;
  padding: clamp(28px, 5vw, 64px);
  color: var(--paper-strong);
  background:
    radial-gradient(circle at 12% 18%, rgba(214, 179, 110, 0.16), transparent 24rem),
    linear-gradient(135deg, #111719 0%, #172226 100%);
  border: 1px solid rgba(255, 253, 247, 0.12);
  box-shadow: 0 36px 100px rgba(16, 20, 23, 0.2);
  overflow: hidden;
}

.flow-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 253, 247, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 247, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 82%, transparent);
}

.flow-copy,
.flow-steps {
  position: relative;
}

.flow-copy p {
  max-width: 520px;
  margin-top: 22px;
  color: rgba(255, 253, 247, 0.68);
  font-size: 1.02rem;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 253, 247, 0.12);
}

.flow-steps article {
  min-height: 260px;
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(255, 253, 247, 0.08), transparent 44%),
    #111719;
}

.flow-steps span {
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.flow-steps strong {
  display: block;
  margin: 18px 0 12px;
  font-size: 1.28rem;
  line-height: 1.1;
}

.flow-steps p {
  margin: 0;
  color: rgba(255, 253, 247, 0.68);
}

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

.js-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.hero-animate {
  animation: heroRise 820ms ease both;
}

.hero-panel.hero-animate {
  animation-delay: 160ms;
}

@keyframes imageDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(1.6%, -1.2%, 0);
  }
}

@keyframes routePulse {
  0%,
  100% {
    left: 13%;
    top: 43%;
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  48% {
    left: 75%;
    top: 24%;
    opacity: 1;
  }

  72% {
    left: 68%;
    top: 78%;
    opacity: 1;
  }

  90% {
    opacity: 0;
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .business-grid,
  .capability-grid,
  .client-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .flow-card,
  .flow-steps {
    grid-template-columns: 1fr;
  }

  .flow-steps article {
    min-height: auto;
  }

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

  .route-visual {
    right: -120px;
    width: 440px;
    height: 440px;
    opacity: 0.48;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    inset: 70px 18px auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: rgba(247, 245, 239, 0.96);
    border: 1px solid var(--line);
    box-shadow: 0 18px 60px rgba(16, 20, 23, 0.18);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 14px;
  }

  .hero {
    min-height: 90svh;
    padding: 122px 18px 28px;
  }

  .route-visual {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 14.5vw, 3.9rem);
    line-height: 0.92;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-copy {
    max-width: 31ch;
    font-size: 1rem;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 247, 0.14);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 18px;
  }

  .supply-flow {
    padding-top: 0;
  }

  .flow-card {
    padding: 28px 20px;
  }

  .business-grid,
  .capability-grid,
  .client-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .business-item {
    min-height: auto;
  }

  .team-member {
    min-height: auto;
  }

  .team-member figure,
  .team-member img {
    min-height: 430px;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }
}

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

  .hero-animate {
    animation: none;
  }
}
