:root {
  --bg: #080807;
  --bg-soft: #0d0d0b;
  --surface: #11110f;
  --surface-2: #171714;
  --paper: #e8e4da;
  --paper-deep: #d9d3c7;
  --ink: #11110f;
  --text: #f2eee5;
  --muted: #aaa397;
  --muted-dark: #635f57;
  --gold: #c3a15d;
  --gold-bright: #e0bd72;
  --line: rgba(232, 221, 198, .16);
  --line-dark: rgba(17, 17, 15, .16);
  --sans: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --page: min(1440px, 90vw);
  --header-height: 88px;
  color-scheme: dark;
  font-synthesis: none;
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) #161511;
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-loading,
body.menu-open { overflow: hidden; }

::selection { background: var(--gold); color: #0a0907; }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img, canvas { display: block; }
h1, h2, h3, p { margin-top: 0; }
p:last-child { margin-bottom: 0; }

.mono {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.loader {
  position: fixed;
  z-index: 180;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #060605;
  transition: opacity .7s cubic-bezier(.65, 0, .35, 1), visibility .7s;
}
.loader.is-complete { opacity: 0; visibility: hidden; }
.loader__grid,
.technical-grid,
.contact__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(195, 161, 93, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(195, 161, 93, .055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}
.loader__inner { position: relative; width: min(560px, 82vw); }
.loader__mark {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 92px;
  letter-spacing: .16em;
}
.loader__mark span { color: var(--gold); font-size: 22px; font-weight: 800; }
.loader__mark small { color: #7e786d; font: 10px/1 var(--mono); letter-spacing: .28em; }
.loader__readout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 13px;
}
.loader__readout > span { color: #7e786d; font-size: 10px; letter-spacing: .16em; }
.loader__readout strong { color: var(--text); font: 500 clamp(30px, 5vw, 56px)/.9 var(--mono); letter-spacing: -.07em; }
.loader__track { height: 1px; overflow: visible; background: #2d2921; }
.loader__track span {
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold-bright);
  box-shadow: 0 0 18px rgba(224, 189, 114, .65);
  transition: width .16s linear;
}
.loader__inner > p {
  margin: 14px 0 0;
  color: #68635a;
  font: 10px/1.5 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.loader__legal {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: clamp(18px, 4vw, 42px);
  display: flex;
  gap: 18px;
  font: 9px/1.4 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.loader__legal a { color: #777064; }
.loader__legal a:hover { color: var(--gold-bright); }
.global-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  pointer-events: none;
}
.global-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(0);
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5vw;
  border-bottom: 1px solid transparent;
  transition: height .25s, background .25s, border-color .25s;
}
.site-header.is-scrolled {
  height: 70px;
  border-color: var(--line);
  background: rgba(8, 8, 7, .94);
  backdrop-filter: none;
}
.brand { display: flex; align-items: center; gap: 15px; }
.brand__monogram {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(195, 161, 93, .7);
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -.04em;
}
.brand__text {
  display: flex;
  flex-direction: column;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .16em;
}
.brand__text small {
  margin-top: 6px;
  color: #817b70;
  font: 8px/1 var(--mono);
  letter-spacing: .2em;
}
.main-nav { display: flex; align-items: center; gap: clamp(22px, 2.6vw, 48px); }
.main-nav a {
  position: relative;
  color: #c6c0b5;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.main-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transition: right .3s;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { right: 0; }
.main-nav .nav-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 11px 15px;
  border: 1px solid rgba(195, 161, 93, .55);
  color: var(--text);
  transition: background .25s, color .25s;
}
.main-nav .nav-contact:hover { background: var(--gold); color: var(--ink); }
.main-nav .language-link {
  color: var(--gold-bright);
  font-family: var(--mono);
  letter-spacing: .16em;
}
.menu-toggle { display: none; border: 0; background: none; cursor: pointer; }
.mobile-nav { display: none; }

.sequence { position: relative; height: 360vh; background: #050504; }
.sequence--manual { height: 300vh; }
.sequence__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
}
.sequence__poster {
  position: absolute;
  z-index: -5;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sequence canvas {
  position: absolute;
  z-index: -4;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  contain: strict;
  transform: translateZ(0);
  opacity: 0;
  transition: opacity .18s ease;
}
.sequence canvas.has-frame { opacity: 1; }
.sequence__shade {
  position: absolute;
  z-index: -3;
  inset: 0;
  pointer-events: none;
}
.sequence__shade--hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 4, .96) 0%, rgba(5, 5, 4, .76) 31%, rgba(5, 5, 4, .12) 62%, rgba(5, 5, 4, .2) 100%),
    linear-gradient(0deg, rgba(5, 5, 4, .65) 0%, transparent 32%);
}
.sequence__shade--manual {
  background:
    linear-gradient(90deg, rgba(5, 5, 4, .89) 0%, rgba(5, 5, 4, .54) 38%, rgba(5, 5, 4, .05) 72%),
    linear-gradient(0deg, rgba(5, 5, 4, .75), transparent 35%);
}
.technical-grid {
  z-index: -2;
  opacity: .6;
  background-size: 110px 110px;
  mask-image: linear-gradient(90deg, #000, transparent 67%);
}
.technical-grid--fine {
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.hero-copy,
.manual-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 5vw;
  width: min(830px, 68vw);
  transform: translateY(-46%);
  will-change: opacity, transform;
}
.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #b2aa9d;
  font: 10px/1.4 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span,
.section-kicker span { color: var(--gold-bright); }
.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.hero-copy h1 {
  max-width: 900px;
  margin: 26px 0 26px;
  font-size: clamp(3.4rem, 6.7vw, 7.5rem);
  font-weight: 500;
  line-height: .91;
  letter-spacing: -.07em;
  text-wrap: balance;
}
.hero-copy__lead {
  max-width: 640px;
  margin-bottom: 34px;
  color: #bbb4a9;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 205px;
  min-height: 51px;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .25s, background .25s, border-color .25s, color .25s;
}
.button span { font-size: 15px; }
.button:hover { transform: translateY(-2px); }
.button--gold { border-color: var(--gold); background: var(--gold); color: #0a0907; }
.button--gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.button--ghost { background: rgba(8, 8, 7, .4); color: var(--text); }
.button--ghost:hover { border-color: var(--gold); }
.hero-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: #858075;
  font: 9px/1 var(--mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}
.hero-signature span + span { padding-left: 12px; border-left: 1px solid var(--line); }
.status-dot {
  width: 6px;
  height: 6px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(224, 189, 114, .8);
}

.sequence-caption {
  position: absolute;
  z-index: 3;
  top: 53%;
  right: 6vw;
  width: min(400px, 32vw);
  padding: 25px 0 25px 26px;
  border-left: 1px solid rgba(195, 161, 93, .7);
  opacity: 0;
  transform: translateY(-40%) translateX(24px);
  will-change: opacity, transform;
}
.sequence-caption__index {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font: 9px/1 var(--mono);
  letter-spacing: .17em;
}
.sequence-caption h2 {
  margin-bottom: 16px;
  font-size: clamp(25px, 2.5vw, 43px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.045em;
}
.sequence-caption p { color: #aaa397; font-size: 14px; line-height: 1.7; }
.sequence-caption--manual { right: 5vw; }
.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: 5vw;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #7d776d;
  font: 8px/1 var(--mono);
  letter-spacing: .18em;
}
.scroll-cue i {
  position: relative;
  width: 72px;
  height: 1px;
  overflow: hidden;
  background: #39342c;
}
.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}
.frame-counter {
  position: absolute;
  z-index: 3;
  right: 5vw;
  bottom: 30px;
  color: #777168;
  font-size: 9px;
  letter-spacing: .12em;
}
.frame-counter span { color: var(--gold-bright); }

.proof-band {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 180px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a0a08;
}
.proof-band__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 0;
  padding: 36px 3vw;
}
.proof-band__item + .proof-band__item { border-left: 1px solid var(--line); }
.proof-band strong {
  color: var(--gold-bright);
  font: 400 clamp(28px, 3vw, 48px)/1 var(--mono);
  letter-spacing: -.08em;
}
.proof-band span {
  color: #9d968b;
  font-size: 10px;
  line-height: 1.55;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.section {
  position: relative;
  width: var(--page);
  margin: 0 auto;
  padding: clamp(110px, 11vw, 190px) 0;
}
.section-kicker { margin-bottom: clamp(55px, 7vw, 100px); }
.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(55px, 9vw, 150px);
  align-items: start;
}
.display-heading {
  margin: 0;
  font-size: clamp(3rem, 5.7vw, 7rem);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.065em;
}
.display-heading em {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.intro__copy { padding-top: 10px; color: var(--muted); }
.intro__copy .lead {
  margin-bottom: 26px;
  color: var(--text);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.38;
  letter-spacing: -.02em;
}
.intro__copy p:not(.lead) { max-width: 600px; font-size: 16px; line-height: 1.85; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(90px, 10vw, 160px);
  padding: 1px;
  background: var(--line);
}
.service-card {
  position: relative;
  min-height: 370px;
  padding: clamp(30px, 4vw, 62px);
  overflow: hidden;
  background: var(--surface);
  transition: background .35s, transform .35s;
}
.service-card:hover { z-index: 2; background: #161612; }
.service-card--primary { min-height: 585px; }
.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(56px, 7vw, 98px);
}
.service-card__number { color: var(--gold-bright); font-size: 11px; letter-spacing: .12em; }
.service-card__tag {
  padding: 7px 9px;
  border: 1px solid rgba(195, 161, 93, .35);
  color: #a99d86;
  font: 8px/1 var(--mono);
  letter-spacing: .13em;
}
.service-card h3 {
  max-width: 580px;
  margin-bottom: 24px;
  font-size: clamp(26px, 2.8vw, 45px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.045em;
}
.service-card p { max-width: 590px; color: var(--muted); line-height: 1.75; }
.service-card ul {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: #c1baae;
  font-size: 13px;
}
.service-card li { position: relative; padding-left: 19px; }
.service-card li::before {
  content: "";
  position: absolute;
  top: .75em;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--gold);
}
.service-card__line {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 27%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s;
}
.service-card:hover .service-card__line { transform: scaleX(1); }
.service-card__meta {
  position: absolute;
  right: clamp(30px, 4vw, 62px);
  bottom: clamp(30px, 4vw, 62px);
  color: #6f6a61;
  font-size: 8px;
  letter-spacing: .13em;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--gold-bright);
  font: 700 10px/1.4 var(--mono);
  letter-spacing: .09em;
  text-transform: uppercase;
  text-underline-offset: 5px;
}
.service-card__link:hover { color: #fff; }

.process { padding-top: 70px; }
.process__head,
.capabilities__head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
}
.process__head > p,
.capabilities__head > p {
  max-width: 530px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: clamp(80px, 10vw, 150px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.process-steps li {
  position: relative;
  min-height: 310px;
  padding: 35px clamp(20px, 2.4vw, 40px) 30px 0;
}
.process-steps li + li { padding-left: clamp(20px, 2.4vw, 40px); border-left: 1px solid var(--line); }
.process-steps__number { color: var(--gold-bright); font-size: 10px; }
.process-steps h3 {
  margin: 72px 0 16px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -.035em;
}
.process-steps p { color: var(--muted); font-size: 13px; line-height: 1.75; }

.manual-copy { width: min(760px, 59vw); }
.manual-copy h2 {
  margin: 26px 0 28px;
  font-size: clamp(3.2rem, 6.3vw, 7.2rem);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.07em;
  text-wrap: balance;
}
.manual-copy > p:last-child {
  max-width: 600px;
  color: #b9b2a6;
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.7;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(80px, 10vw, 150px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.capability {
  min-height: 290px;
  padding: clamp(28px, 4vw, 58px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.capability > span { color: var(--gold-bright); font-size: 9px; letter-spacing: .14em; }
.capability h3 {
  margin: 62px 0 16px;
  font-size: clamp(25px, 2.6vw, 39px);
  font-weight: 500;
  letter-spacing: -.04em;
}
.capability p { max-width: 520px; color: var(--muted); font-size: 14px; }
.tools-line {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.tools-line > span { color: #716b61; font-size: 9px; letter-spacing: .14em; }
.tools-line div { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.tools-line b { color: #b7b0a4; font-size: 11px; font-weight: 500; letter-spacing: .05em; }

.profile {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(17, 17, 15, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 15, .045) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
  color: var(--ink);
}
.profile__grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  width: var(--page);
  margin: 0 auto;
}
.profile__identity {
  position: relative;
  display: flex;
  min-height: 900px;
  padding: 90px 6vw 70px 0;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-dark);
}
.profile__identity > p { margin: 0; color: var(--muted-dark); font-size: 8px; letter-spacing: .16em; }
.profile__monogram {
  position: relative;
  display: flex;
  align-items: center;
  align-self: center;
  gap: 19px;
  color: #1a1916;
  font-size: clamp(74px, 10vw, 160px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.09em;
}
.profile__monogram i {
  display: block;
  width: 1px;
  height: 1.15em;
  background: var(--gold);
  transform: rotate(21deg);
}
.profile__content { padding: clamp(100px, 11vw, 175px) 0 clamp(100px, 11vw, 175px) clamp(55px, 8vw, 130px); }
.section-kicker--dark { color: var(--muted-dark); }
.display-heading--dark { color: var(--ink); font-size: clamp(3rem, 5.5vw, 6.7rem); }
.display-heading--dark em { color: #856b39; }
.profile__lead {
  max-width: 830px;
  margin: 80px 0 26px;
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.45;
  letter-spacing: -.025em;
}
.profile__content > p:not(.profile__lead) {
  max-width: 760px;
  color: #58544d;
  font-size: 16px;
  line-height: 1.8;
}
.profile-facts {
  display: grid;
  margin-top: 75px;
  border-top: 1px solid var(--line-dark);
}
.profile-facts > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line-dark);
}
.profile-facts span { color: #8a6f3c; font-size: 9px; letter-spacing: .12em; }
.profile-facts strong { font-size: 13px; font-weight: 600; }
.certifications { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.certifications span {
  padding: 8px 11px;
  border: 1px solid rgba(17, 17, 15, .2);
  color: #565149;
  font: 8px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faq__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(60px, 9vw, 150px);
}
.faq__grid .display-heading { font-size: clamp(3rem, 5.1vw, 6.4rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  color: #d9d3c8;
  font-size: 17px;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span {
  color: var(--gold-bright);
  font: 300 25px/1 var(--sans);
  transition: transform .3s;
}
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p {
  max-width: 720px;
  padding: 0 55px 30px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.contact {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(195, 161, 93, .25);
  background: #0e0d0a;
}
.contact__grid {
  opacity: .65;
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, transparent, #000 32%, #000);
}
.contact__inner {
  position: relative;
  width: var(--page);
  margin: 0 auto;
  padding: clamp(110px, 12vw, 190px) 0;
}
.contact h2 {
  max-width: 1180px;
  margin: 35px 0;
  font-size: clamp(3.5rem, 7vw, 8.8rem);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.075em;
}
.contact__lead {
  max-width: 620px;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.business-hours {
  display: grid;
  max-width: 620px;
  margin-bottom: 72px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 14px;
}
.business-hours > span {
  color: var(--gold-bright);
  font-size: 9px;
  letter-spacing: .14em;
}
.business-hours p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
}
.business-hours strong,
.business-hours b {
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
}
.business-hours small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.business-hours__location {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}
.contact__links {
  display: grid;
  grid-template-columns: 1.5fr .75fr .75fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.contact__links a {
  position: relative;
  display: flex;
  min-height: 150px;
  padding: 30px;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s, color .3s;
}
.contact__links a:hover { background: var(--gold); color: var(--ink); }
.contact__links span {
  color: #817a70;
  font: 8px/1 var(--mono);
  letter-spacing: .13em;
  text-transform: uppercase;
}
.contact__links a:hover span { color: rgba(17, 17, 15, .65); }
.contact__links strong {
  overflow-wrap: anywhere;
  color: #e2ddd3;
  font-size: clamp(14px, 1.25vw, 20px);
  font-weight: 500;
}
.contact__links a:hover strong { color: var(--ink); }
.contact__primary i {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--gold-bright);
  font-style: normal;
  font-size: 23px;
}
.contact__primary:hover i { color: var(--ink); }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 150px;
  padding: 35px 5vw;
  border-top: 1px solid var(--line);
  background: #070706;
}
.site-footer > div:first-child { display: flex; align-items: center; gap: 18px; }
.site-footer p {
  max-width: 420px;
  margin: 0;
  color: #6f6a61;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-footer__meta { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 24px; color: #706a60; font: 8px/1.4 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.site-footer__meta a { color: #aaa296; }
.site-footer__meta a:hover { color: var(--gold-bright); }

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(195, 161, 93, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(195, 161, 93, .035) 1px, transparent 1px),
    #080807;
  background-size: 72px 72px;
}
.legal-header {
  display: flex;
  min-height: var(--header-height);
  padding: 0 5vw;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 7, .96);
}
.legal-header .brand { position: static; }
.legal-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 36px);
  font: 9px/1.4 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.legal-header__nav a { color: #aaa296; }
.legal-header__nav a:hover,
.legal-header__nav a[aria-current="page"] { color: var(--gold-bright); }
.legal-main {
  width: min(920px, 88vw);
  margin: 0 auto;
  padding: clamp(90px, 10vw, 150px) 0 clamp(100px, 12vw, 180px);
}
.legal-kicker {
  margin: 0 0 28px;
  color: var(--gold-bright);
  font: 9px/1.4 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.legal-main h1 {
  max-width: 900px;
  margin: 0 0 34px;
  color: var(--text);
  font-size: clamp(3.7rem, 8vw, 7.5rem);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.07em;
}
.service-page .legal-main {
  width: min(1040px, 88vw);
  padding-top: clamp(68px, 7vw, 105px);
}
.service-page .legal-main h1 {
  max-width: 1000px;
  font-size: clamp(3.7rem, 6.6vw, 6.5rem);
  line-height: .91;
  hyphens: auto;
  overflow-wrap: break-word;
}
.service-page .legal-intro { margin-bottom: 30px; }
.service-page .hero-actions { margin-bottom: 76px; }
.legal-intro {
  max-width: 700px;
  margin: 0 0 80px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
}
.legal-section {
  display: grid;
  grid-template-columns: minmax(180px, .36fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 90px);
  padding: 42px 0;
  border-top: 1px solid var(--line);
}
.legal-section h2 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.025em;
}
.legal-section__content {
  min-width: 0;
  color: #aaa49a;
  font-size: 15px;
  line-height: 1.8;
}
.legal-section__content p { margin: 0 0 18px; }
.legal-section__content p:last-child { margin-bottom: 0; }
.legal-section__content strong { color: #e2ddd3; font-weight: 500; }
.legal-section__content a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-decoration-color: rgba(224, 189, 114, .35);
  text-underline-offset: 4px;
}
.legal-section__content ul {
  margin: 0;
  padding-left: 20px;
}
.legal-section__content li + li { margin-top: 8px; }
.legal-address {
  font-style: normal;
  color: #e2ddd3;
}
.legal-facts {
  display: grid;
  grid-template-columns: minmax(150px, .42fr) 1fr;
  margin: 0;
  border-top: 1px solid rgba(207, 199, 185, .12);
}
.legal-facts dt,
.legal-facts dd {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(207, 199, 185, .12);
}
.legal-facts dt {
  padding-right: 18px;
  color: #716c63;
  font: 9px/1.55 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.legal-facts dd { color: #d7d1c7; }
.cookie-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}
.cookie-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  text-align: left;
}
.cookie-table th,
.cookie-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.cookie-table tr:last-child td { border-bottom: 0; }
.cookie-table th {
  color: #777168;
  font: 8px/1.5 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cookie-table td { color: #bdb7ad; font-size: 13px; }
.legal-note {
  padding: 20px;
  border-left: 2px solid var(--gold);
  background: rgba(195, 161, 93, .06);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.noscript { padding: 18px; background: #b32929; color: white; text-align: center; }

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

@media (max-width: 1100px) {
  :root { --page: min(90vw, 940px); }
  .main-nav { gap: 20px; }
  .hero-copy { width: 76vw; }
  .sequence-caption { width: 39vw; }
  .proof-band { grid-template-columns: repeat(2, 1fr); }
  .proof-band__item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .proof-band__item:nth-child(4) { border-top: 1px solid var(--line); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps li:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .process-steps li:nth-child(4) { border-top: 1px solid var(--line); }
  .profile__grid { grid-template-columns: .52fr 1.48fr; }
  .profile__monogram { flex-direction: column; gap: 8px; }
  .profile__monogram i { width: 1.1em; height: 1px; transform: rotate(-8deg); }
  .contact__links { grid-template-columns: 1fr 1fr; }
  .contact__primary { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  :root { --header-height: 72px; --page: 88vw; }
  .site-header { padding: 0 6vw; }
  .site-header.is-scrolled {
    background: rgba(8, 8, 7, .96);
    backdrop-filter: none;
  }
  .brand__text { display: none; }
  .main-nav { display: none; }
  .menu-toggle {
    position: relative;
    display: block;
    width: 44px;
    height: 44px;
    padding: 0;
  }
  .menu-toggle span {
    position: absolute;
    left: 9px;
    width: 26px;
    height: 1px;
    background: var(--text);
    transition: transform .3s, top .3s;
  }
  .menu-toggle span:first-child { top: 17px; }
  .menu-toggle span:last-child { top: 26px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    z-index: 70;
    inset: 0;
    display: flex;
    padding: 120px 8vw 60px;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    background: rgba(7, 7, 6, .98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .3s, visibility .3s, transform .3s;
  }
  body.menu-open .mobile-nav { opacity: 1; visibility: visible; transform: none; }
  .mobile-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(25px, 8vw, 42px);
    font-weight: 500;
    letter-spacing: -.04em;
  }
  .mobile-nav .mobile-language {
    color: var(--gold-bright);
    font: 11px/1.4 var(--mono);
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .mobile-nav__legal {
    display: flex;
    gap: 24px;
    padding-top: 18px;
  }
  .mobile-nav__legal a {
    padding: 0;
    border: 0;
    color: #8d867b;
    font: 9px/1.5 var(--mono);
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .sequence { height: 320vh; }
  .sequence--manual { height: 270vh; }
  .sequence__pin { min-height: 560px; }
  .sequence__shade--hero {
    background:
      linear-gradient(0deg, rgba(5, 5, 4, .97) 0%, rgba(5, 5, 4, .72) 54%, rgba(5, 5, 4, .2) 100%),
      linear-gradient(90deg, rgba(5, 5, 4, .45), transparent);
  }
  .sequence__shade--manual {
    background: linear-gradient(0deg, rgba(5, 5, 4, .96) 0%, rgba(5, 5, 4, .65) 60%, rgba(5, 5, 4, .1) 100%);
  }
  .technical-grid { opacity: .28; }
  .hero-copy,
  .manual-copy {
    top: auto;
    bottom: 88px;
    left: 6vw;
    width: 88vw;
    transform: none;
  }
  .hero-copy h1 { margin: 19px 0; font-size: clamp(3rem, 13.3vw, 5.8rem); line-height: .91; }
  .hero-copy__lead { margin-bottom: 24px; font-size: 14px; line-height: 1.55; }
  .hero-actions { gap: 8px; }
  .button { min-width: 0; min-height: 47px; padding: 0 14px; font-size: 9px; }
  .hero-signature { display: none; }
  .scroll-cue { display: none; }
  .frame-counter { right: 6vw; bottom: 24px; }
  .sequence-caption {
    top: auto;
    right: 6vw;
    bottom: 105px;
    width: 88vw;
    transform: translateY(20px);
    background: linear-gradient(90deg, rgba(8, 8, 7, .78), transparent);
  }
  .sequence-caption h2 { font-size: 30px; }
  .manual-copy h2 { margin: 19px 0; font-size: clamp(3rem, 12vw, 5.6rem); }
  .manual-copy > p:last-child { font-size: 14px; line-height: 1.6; }
  .proof-band__item { justify-content: flex-start; min-height: 135px; padding: 24px 6vw; }
  .proof-band strong { font-size: 27px; }
  .proof-band span { font-size: 8px; }
  .intro__grid,
  .process__head,
  .capabilities__head,
  .faq__grid { grid-template-columns: 1fr; gap: 42px; }
  .display-heading { font-size: clamp(3rem, 13vw, 5.5rem); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--primary { min-height: 510px; }
  .service-card { padding: 34px 28px; }
  .service-card__top { margin-bottom: 58px; }
  .service-card__meta { position: static; margin-top: 48px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps li,
  .process-steps li + li {
    min-height: 230px;
    padding: 30px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .process-steps li:first-child { border-top: 0; }
  .process-steps h3 { margin-top: 48px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability { min-height: 250px; padding: 34px 28px; }
  .capability h3 { margin-top: 52px; }
  .tools-line { grid-template-columns: 1fr; gap: 22px; }
  .profile__grid { display: block; }
  .profile__identity {
    min-height: 430px;
    padding: 85px 0 36px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .profile__monogram { flex-direction: row; }
  .profile__monogram i { width: 1px; height: 1.15em; transform: rotate(21deg); }
  .profile__content { padding: 95px 0; }
  .profile__lead { margin-top: 58px; }
  .contact__links { grid-template-columns: 1fr; }
  .contact__primary { grid-column: auto; }
  .contact__links a { min-height: 125px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .site-footer__meta { justify-content: flex-start; }
  .legal-header { min-height: 72px; padding: 0 6vw; }
  .legal-header .brand__text { display: none; }
  .legal-header__nav { gap: 14px; font-size: 8px; }
  .legal-section { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 500px) {
  .loader__mark { margin-bottom: 70px; }
  .loader__readout > span { max-width: 150px; line-height: 1.4; }
  .loader__legal { right: auto; left: 9vw; }
  .hero-copy { bottom: 76px; }
  .hero-copy h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .hero-actions .button { width: 100%; }
  .hero-actions .button--ghost { display: none; }
  .sequence-caption { bottom: 85px; }
  .sequence-caption p { font-size: 12px; }
  .eyebrow, .section-kicker { font-size: 8px; letter-spacing: .11em; }
  .proof-band { grid-template-columns: 1fr; }
  .proof-band__item + .proof-band__item { border-left: 0; border-top: 1px solid var(--line); }
  .proof-band__item { min-height: 108px; }
  .profile-facts > div { grid-template-columns: 95px 1fr; }
  .contact h2 { font-size: clamp(3rem, 14vw, 5rem); }
  .contact__lead { font-size: 15px; }
  .business-hours p { align-items: flex-start; flex-direction: column; gap: 6px; }
  .contact__links strong { font-size: 13px; }
  .legal-header__nav a:not(.language-link) { display: none; }
  .legal-main h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .legal-facts { grid-template-columns: 1fr; }
  .legal-facts dt { padding-bottom: 3px; border-bottom: 0; }
  .legal-facts dd { padding-top: 3px; }
}

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