:root {
  --ink: #08090a;
  --ink-soft: #111316;
  --paper: #f4f1e9;
  --muted: #9b9d9f;
  --gold: #d1a83c;
  --gold-bright: #ecc65d;
  --line: rgba(244, 241, 233, 0.14);
  --page: min(1240px, calc(100vw - 64px));
  --display: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding: 0 max(32px, calc((100vw - 1240px) / 2));
  background: rgba(8, 9, 10, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(8, 9, 10, 0.94); }
.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .17em;
}
.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(209, 168, 60, .58);
  font-size: .85rem;
  letter-spacing: 0;
}
.desktop-nav { display: flex; gap: 30px; }
.desktop-nav a {
  color: #b8b9ba;
  font-size: .88rem;
  transition: color .2s ease;
}
.desktop-nav a:hover { color: var(--paper); }
.header-cta {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  color: var(--gold-bright);
  font-size: .88rem;
  font-weight: 500;
}
.header-cta span { transition: transform .2s ease; }
.header-cta:hover span { transform: translate(3px, -3px); }
.mobile-menu { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  width: var(--page);
  margin: 0 auto;
  padding: 150px 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-art {
  position: absolute;
  z-index: -1;
  inset: 96px 0 52px;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(8, 9, 10, .82) 28%, rgba(8, 9, 10, .12) 67%, rgba(8, 9, 10, .28) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 30%, rgba(8, 9, 10, .38) 100%);
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.83) contrast(1.03);
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(209, 168, 60, .09);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, .45fr);
  align-items: end;
  gap: 80px;
  padding: clamp(70px, 11vh, 130px) 0;
}
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 8.8vw, 8.8rem);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.07em;
  text-wrap: balance;
}
.outline-word {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(244, 241, 233, .46);
}
.hero-aside {
  padding-bottom: .6rem;
}
.hero-aside p {
  margin: 0 0 32px;
  color: #babbbc;
  font-size: 1.05rem;
  line-height: 1.7;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  font-size: .9rem;
  font-weight: 600;
  transition: background .25s ease, color .25s ease;
}
.button-primary { background: var(--gold); color: var(--ink); }
.button-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.button span { margin-left: auto; }
.hero-rule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  color: #777a7d;
  font-family: var(--display);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-rule span { padding-top: 20px; }
.hero-rule span:nth-child(2) { text-align: center; }
.hero-rule span:last-child { text-align: right; }

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.statement {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 56px;
  width: var(--page);
  margin: 0 auto;
  padding: clamp(110px, 14vw, 210px) 0;
}
.statement-copy {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -.045em;
  text-wrap: pretty;
}
.statement-copy em {
  color: var(--gold-bright);
  font-style: normal;
}

.services {
  padding: clamp(90px, 12vw, 160px) max(32px, calc((100vw - 1240px) / 2));
  background: var(--paper);
  color: var(--ink);
}
.section-heading {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 56px;
  margin-bottom: clamp(64px, 8vw, 110px);
}
.section-heading-copy { min-width: 0; }
.services .eyebrow { color: #866918; }
.section-heading h2,
.approach h2,
.about h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.055em;
}
.systems-image {
  position: relative;
  margin: clamp(50px, 7vw, 84px) 0 0;
  overflow: hidden;
  background: #111;
}
.systems-image::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(8, 9, 10, .15);
  pointer-events: none;
}
.systems-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
}
.systems-image figcaption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  max-width: 330px;
  padding: 10px 13px;
  background: rgba(8, 9, 10, .8);
  color: #d4d2cb;
  font-size: .78rem;
  line-height: 1.45;
  backdrop-filter: blur(8px);
}
.service-list { border-top: 1px solid rgba(8, 9, 10, .22); }
.service {
  display: grid;
  grid-template-columns: .35fr .9fr 1fr;
  gap: 48px;
  padding: clamp(36px, 5vw, 62px) 0;
  border-bottom: 1px solid rgba(8, 9, 10, .22);
  transition: padding .25s ease;
}
.service:hover { padding-left: 12px; padding-right: 12px; }
.service-number {
  color: #8e742e;
  font-family: var(--display);
  font-size: .78rem;
  letter-spacing: .16em;
}
.service h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.04em;
}
.service-main p {
  max-width: 430px;
  margin: 0;
  color: #676867;
  line-height: 1.65;
}
.service ul {
  margin: 3px 0 0;
  padding: 0;
  list-style: none;
}
.service li {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  color: #3f4141;
}
.service li::before { content: "—"; color: #92731b; }

.approach {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(110px, 14vw, 190px) 0;
}
.approach-lead {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 56px;
  margin-bottom: clamp(70px, 9vw, 120px);
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principle {
  min-height: 330px;
  padding: 34px 32px 38px;
  border-right: 1px solid var(--line);
}
.principle:first-child { padding-left: 0; }
.principle:last-child { border-right: 0; }
.principle > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: .74rem;
  letter-spacing: .16em;
}
.principle h3 {
  margin: 105px 0 16px;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -.03em;
}
.principle p { max-width: 330px; margin: 0; color: var(--muted); }

.about {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 56px;
  padding: clamp(100px, 13vw, 180px) max(32px, calc((100vw - 1240px) / 2));
  background: var(--ink-soft);
}
.about-copy { max-width: 820px; }
.operator-image {
  margin: 54px 0 0;
  max-width: 300px;
  overflow: hidden;
  background: #090a0b;
}
.operator-image img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 2.55;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(.78) contrast(1.03);
}
.about-copy h2 { margin-bottom: 54px; }
.about-copy > p {
  max-width: 690px;
  margin: 0 0 22px;
  color: #b3b5b6;
  font-size: 1.08rem;
  line-height: 1.75;
}
.locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 46px;
}
.locations span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  color: #d0d1d1;
  font-size: .78rem;
  letter-spacing: .04em;
}

.contact {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(110px, 15vw, 210px) 0 clamp(90px, 11vw, 150px);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: 80px;
  margin-top: 42px;
}
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.8rem, 8vw, 8rem);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.07em;
}
.contact h2 em { color: var(--gold); font-style: normal; }
.contact-details p {
  margin: 0 0 30px;
  color: #afb1b2;
  font-size: 1.05rem;
}
.email-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}
.email-link span { transition: transform .2s ease; }
.email-link:hover span { transform: translate(3px, -3px); }
.contact-details .response-note {
  margin: 16px 0 0;
  color: #696c6f;
  font-size: .82rem;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
  width: var(--page);
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  color: #74777a;
  font-size: .72rem;
}
.legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 22px; }
footer p { margin: 0; }
.footer-brand { color: var(--paper); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s cubic-bezier(.22,.61,.36,1), transform .75s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  :root { --page: calc(100vw - 40px); }
  .site-header {
    height: 72px;
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary {
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-content: center;
    cursor: pointer;
    list-style: none;
  }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { width: 22px; height: 1px; background: var(--paper); }
  .mobile-menu nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: grid;
    padding: 24px 20px 32px;
    background: rgba(8, 9, 10, .98);
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu nav a { padding: 12px 0; font-family: var(--display); font-size: 1.2rem; }
  .hero { min-height: auto; padding-top: 126px; }
  .hero-grid { grid-template-columns: 1fr; gap: 42px; padding: 68px 0 70px; }
  .hero h1 { font-size: clamp(4rem, 15.5vw, 7rem); }
  .hero-aside { max-width: 500px; }
  .statement, .section-heading, .approach-lead, .about { grid-template-columns: 1fr; gap: 34px; }
  .hero-art { inset: 72px -20px 28px; }
  .hero-art::after {
    background:
      linear-gradient(90deg, rgba(8, 9, 10, .74) 0%, rgba(8, 9, 10, .1) 100%),
      linear-gradient(0deg, var(--ink) 0%, transparent 38%, rgba(8, 9, 10, .46) 100%);
  }
  .services { padding-left: 20px; padding-right: 20px; }
  .service { grid-template-columns: 55px 1fr; gap: 28px; }
  .service ul { grid-column: 2; }
  .principles { grid-template-columns: 1fr; }
  .principle, .principle:first-child {
    min-height: 0;
    padding: 30px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .principle:last-child { border-bottom: 0; }
  .principle h3 { margin-top: 48px; }
  .about { padding-left: 20px; padding-right: 20px; }
  .about-label {
    display: grid;
    grid-template-columns: .65fr 1fr;
    align-items: start;
    gap: 26px;
  }
  .operator-image { margin: 0; max-width: none; }
  .contact-grid { grid-template-columns: 1fr; align-items: start; gap: 54px; }
  footer { grid-template-columns: 1fr; align-items: start; gap: 22px; }
  .legal { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .brand { font-size: .7rem; }
  .hero h1 { font-size: clamp(3.4rem, 17vw, 5.2rem); }
  .hero-rule { font-size: .61rem; letter-spacing: .09em; }
  .statement { padding: 100px 0; }
  .section-heading h2,
  .approach h2,
  .about h2 { font-size: clamp(2.45rem, 12vw, 3.5rem); }
  .service { grid-template-columns: 1fr; }
  .service ul { grid-column: 1; }
  .systems-image img { aspect-ratio: 1.25; }
  .systems-image figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }
  .about-label { grid-template-columns: 1fr; }
  .operator-image { width: 72%; }
  .contact h2 { font-size: clamp(3.4rem, 17vw, 5rem); }
}

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