:root {
  --paper: #eee6d8;
  --paper-light: #f5efe5;
  --paper-deep: #ded2bf;
  --ink: #211a14;
  --muted: #6e6256;
  --copper: #a13e24;
  --copper-dark: #7f2d18;
  --gold: #a37a31;
  --night: #1a1917;
  --night-soft: #27231f;
  --line: rgba(53, 42, 31, 0.21);
  --line-light: rgba(244, 232, 214, 0.2);
  --display:
    "Bahnschrift Condensed", "Franklin Gothic Medium", "Arial Narrow",
    sans-serif;
  --body: "Trebuchet MS", "Aptos", sans-serif;
  --serif: Baskerville, "Book Antiqua", Georgia, serif;
  --gutter: clamp(1.35rem, 4.4vw, 5.5rem);
  --max: 1500px;
  --header-h: 92px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: multiply;
  background-image: url("../assets/ground.svg");
}

::selection {
  background: var(--copper);
  color: #fff8ed;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10001;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--copper);
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 3.6rem);
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
  background: rgba(238, 230, 216, 0.94);
  backdrop-filter: blur(18px);
  transition:
    min-height 0.3s ease,
    box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  min-height: 72px;
  box-shadow: 0 12px 30px rgba(35, 27, 19, 0.08);
}
.brand {
  width: max-content;
  display: inline-flex;
  align-items: flex-end;
  gap: 0.32rem;
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.29em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-spire {
  position: relative;
  width: 3px;
  height: 38px;
  margin: 0 -0.18rem 0 -0.12rem;
  background: var(--gold);
  box-shadow: 0 -4px 0 -1px var(--gold);
}
.brand-spire::before,
.brand-spire::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid var(--gold);
}
.brand-spire::before {
  width: 7px;
  height: 2px;
  top: 5px;
}
.brand-spire::after {
  width: 5px;
  height: 18px;
  top: 11px;
}

.brand-word2 {
  display: inline-block;
  transform: translateX(0.3rem);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.7vw, 3.1rem);
}
.site-nav a {
  position: relative;
  padding: 1.1rem 0;
  font-size: 0.82rem;
  letter-spacing: 0.025em;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.75rem;
  height: 1px;
  background: var(--copper);
  transition: right 0.25s ease;
}
.site-nav a:hover::after,
.site-nav a.is-active::after {
  right: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.language-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.75rem;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-family: var(--display);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}
.language-toggle:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.22);
}
.language-toggle i {
  width: 1px;
  height: 13px;
  background: var(--line);
}
.language-toggle span {
  transition: color 0.2s ease;
}
.language-toggle span.is-active {
  color: var(--copper);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.25rem;
  color: #fff6e8;
  background: var(--copper);
  font-size: 0.76rem;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.header-cta:hover {
  background: var(--copper-dark);
  transform: translateY(-2px);
}
.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  padding-top: var(--header-h);
  display: grid;
  grid-template-columns: 55.5% 44.5%;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.blueprint-field {
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(116, 91, 56, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 91, 56, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(116, 91, 56, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 91, 56, 0.04) 1px, transparent 1px);
  background-size:
    180px 180px,
    180px 180px,
    30px 30px,
    30px 30px;
}
.hero-copy {
  position: relative;
  min-width: 0;
  padding: clamp(6.4rem, 13vh, 9.4rem) var(--gutter) 3.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--gold);
  isolation: isolate;
}
.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -1px;
  bottom: 2.8rem;
  width: min(36vw, 550px);
  aspect-ratio: 1;
  border: 1px solid rgba(139, 103, 46, 0.36);
  border-radius: 50%;
  clip-path: inset(0 50% 50% 0);
  transform: translate(26%, 12%) rotate(-20deg);
}
.hero-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 4.8%;
  top: 36%;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 13px rgba(164, 122, 49, 0.05);
}
.coordinates {
  position: absolute;
  top: 5.4rem;
  right: 2.3rem;
  display: grid;
  gap: 0.18rem;
  padding: 0.6rem 0.85rem;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.54rem;
  letter-spacing: 0.08em;
}
.hero-inner {
  max-width: 650px;
}
.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--copper);
  font-family: var(--display);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.3;
  text-transform: uppercase;
}
.hero-eyebrow {
  animation: rise-in 0.75s 0.12s both;
}
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5.1rem, 8.1vw, 9.1rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.73;
  text-transform: none;
}
.hero h1 span {
  display: block;
  animation: title-in 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero h1 span:nth-child(1) {
  animation-delay: 0.08s;
}
.hero h1 span:nth-child(2) {
  animation-delay: 0.14s;
}
.hero h1 span:nth-child(3) {
  animation-delay: 0.2s;
}
.hero h1 span:nth-child(4) {
  animation-delay: 0.26s;
}
.hero h1 i {
  color: var(--copper);
  font-style: normal;
}
.hero-lead {
  max-width: 490px;
  margin: 1.65rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.25vw, 1.25rem);
  line-height: 1.4;
  animation: rise-in 0.75s 0.38s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
  animation: rise-in 0.75s 0.48s both;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  padding: 0.9rem 1.45rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.82rem;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}
.button span {
  transition: transform 0.25s ease;
}
.button:hover span {
  transform: translate(3px, -3px);
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  color: #fff8ef;
  background: var(--copper);
}
.button-primary:hover {
  background: var(--copper-dark);
}
.button-outline {
  border-color: var(--ink);
  background: rgba(245, 239, 229, 0.32);
}
.button-outline:hover {
  color: var(--paper-light);
  background: var(--ink);
}
.sector-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem 2.1rem;
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.sector-rail span:not(:last-child)::after {
  content: "·";
  color: var(--copper);
  margin-left: 2.1rem;
}
.hero-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--night);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  animation: image-in 1.25s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.image-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 19, 12, 0.08) 42%,
    rgba(24, 17, 12, 0.62) 100%
  );
  pointer-events: none;
}
.hero-visual figcaption {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff7ec;
  font-family: var(--display);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.figure-index {
  color: #dec295;
}
.vertical-note {
  position: absolute;
  top: 1.5rem;
  right: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--display);
  font-size: 0.48rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 1.4rem;
  left: calc(55.5% - 1px);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--paper-light);
  font-family: var(--display);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(-90deg) translateX(55%);
  transform-origin: center;
}
.scroll-cue i {
  width: 44px;
  height: 1px;
  background: currentColor;
}

.section {
  position: relative;
  padding: clamp(6rem, 10vw, 10rem) var(--gutter);
}
.section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.section-kicker {
  display: grid;
  grid-template-columns: 52px auto;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(4rem, 7vw, 7rem);
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-kicker span {
  color: var(--copper);
}
.section-kicker p {
  margin: 0;
}
.section-kicker::after {
  content: "";
  height: 1px;
  background: var(--line);
  grid-column: 2;
}
.section-kicker-light {
  color: var(--paper-light);
}
.section-kicker-light::after {
  background: var(--line-light);
}
.section-kicker-light span {
  color: #cf7555;
}
.vision {
  background: var(--paper-light);
}
.vision-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}
.vision h2,
.section-heading h2,
.sectors-intro h2,
.approach h2,
.international h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.7rem, 6.2vw, 7.3rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.82;
}
.vision-copy {
  max-width: 610px;
  padding-top: 2rem;
}
.vision-copy > p:not(.lead-serif) {
  color: var(--muted);
}
.lead-serif {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.35;
}
.text-link {
  display: inline-flex;
  gap: 1rem;
  margin-top: 1.6rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--copper);
  color: var(--copper);
  font-size: 0.84rem;
}
.manifesto {
  position: relative;
  grid-column: 1 / -1;
  width: min(980px, 88%);
  margin: clamp(4rem, 8vw, 8rem) 0 0 auto;
  padding: clamp(2rem, 4vw, 4rem) 0 0 clamp(2rem, 5vw, 6rem);
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.manifesto p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  line-height: 1.23;
}
.quote-mark {
  position: absolute;
  top: 1rem;
  left: 0.8rem;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
}
.role-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(5rem, 9vw, 9rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.role-strip article {
  min-height: 220px;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}
.role-strip article:last-child {
  border-right: 0;
}
.role-strip span {
  color: var(--copper);
  font-family: var(--display);
  font-size: 0.64rem;
}
.role-strip h3 {
  margin: 3.8rem 0 0.5rem;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
}
.role-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.section-dark {
  color: var(--paper-light);
  background: var(--night);
}
.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.55fr;
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
}
.section-heading .eyebrow {
  grid-column: 1 / -1;
}
.section-heading > p:last-child {
  max-width: 480px;
  margin: 0;
  color: #bdb0a0;
}
.expertise-list {
  margin-top: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--line-light);
}
.expertise-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-light);
  transition:
    padding 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}
.expertise-item:hover {
  padding-left: 1rem;
  padding-right: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
}
.expertise-number {
  color: #c96b4b;
  font-family: var(--display);
  font-size: 0.65rem;
}
.expertise-item h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1;
}
.expertise-item p {
  max-width: 760px;
  margin: 0;
  color: #a99d90;
  font-size: 0.86rem;
}
.expertise-meta {
  color: #d7c7b4;
  font-family: var(--display);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sectors {
  background: var(--paper);
}
.sectors-intro {
  max-width: var(--max);
  margin-bottom: clamp(4rem, 7vw, 7rem);
}
.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.sector-card {
  position: relative;
  min-height: 440px;
  padding: clamp(1.5rem, 3vw, 3.3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper-light);
  overflow: hidden;
  transition:
    background 0.35s ease,
    color 0.35s ease;
}
.sector-card::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -40%;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid rgba(164, 122, 49, 0.23);
  border-radius: 50%;
  transition: transform 0.6s ease;
}
.sector-card:hover {
  color: var(--paper-light);
  background: var(--copper-dark);
}
.sector-card:hover::after {
  transform: scale(1.3);
  border-color: rgba(255, 255, 255, 0.2);
}
.sector-card:hover .eyebrow,
.sector-card:hover .sector-card-top span {
  color: #e1b18e;
}
.sector-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.sector-card-top span {
  color: var(--copper);
  font-family: var(--display);
  font-size: 0.65rem;
}
.sector-card svg {
  width: 74px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.1;
}
.sector-card h3 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5vw, 6rem);
  line-height: 0.8;
}
.sector-card p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}
.sector-card:hover p:last-child {
  color: #ebded0;
}

.approach {
  overflow: hidden;
}
.approach::before {
  content: "";
  position: absolute;
  right: -13vw;
  top: 12%;
  width: 43vw;
  max-width: 650px;
  aspect-ratio: 1;
  border: 1px solid rgba(164, 122, 49, 0.35);
  border-radius: 50%;
}
.approach-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  gap: 4rem;
  align-items: end;
}
.approach-heading > p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin-top: clamp(4rem, 8vw, 8rem);
  list-style: none;
  counter-reset: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.process-grid li {
  min-height: 245px;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(238, 230, 216, 0.6);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.process-grid li:hover {
  z-index: 1;
  background: var(--paper-light);
  transform: translateY(-5px);
}
.process-grid span {
  color: var(--copper);
  font-family: var(--display);
  font-size: 0.68rem;
}
.process-grid h3 {
  margin: 4rem 0 0.65rem;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
}
.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.international {
  min-height: 850px;
  color: var(--paper-light);
  background: #22201d;
  overflow: hidden;
}
.international::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 78% 49%,
    rgba(174, 105, 66, 0.16),
    transparent 33%
  );
}
.world-grid {
  position: absolute;
  z-index: 0;
  right: -7vw;
  top: 50%;
  width: min(58vw, 850px);
  aspect-ratio: 1;
  border: 1px solid rgba(232, 213, 186, 0.18);
  border-radius: 50%;
  transform: translateY(-48%);
  background-image:
    linear-gradient(rgba(232, 213, 186, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 213, 186, 0.06) 1px, transparent 1px);
  background-size: 8% 8%;
  overflow: hidden;
}
.orbit {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(232, 213, 186, 0.17);
  border-radius: 50%;
}
.orbit-one {
  transform: scaleX(0.35);
}
.orbit-two {
  transform: scaleY(0.35);
}
.hub-dot {
  position: absolute;
  left: 49%;
  top: 46%;
  width: 11px;
  height: 11px;
  border: 2px solid #d87d59;
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(216, 125, 89, 0.1);
}
.route {
  position: absolute;
  left: 50%;
  top: 47%;
  height: 1px;
  background: linear-gradient(90deg, #d87d59, transparent);
  transform-origin: left center;
}
.route::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  background: #d7b37f;
  border-radius: 50%;
}
.route-one {
  width: 36%;
  transform: rotate(-31deg);
}
.route-two {
  width: 42%;
  transform: rotate(39deg);
}
.route-three {
  width: 29%;
  transform: rotate(156deg);
}
.international > *:not(.world-grid) {
  position: relative;
  z-index: 2;
}
.international-content {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
}
.international h2 {
  font-size: clamp(3.8rem, 6.5vw, 7.8rem);
}
.international-copy {
  max-width: 500px;
}
.international-copy > p:last-child {
  color: #b9ac9d;
}
.international .lead-serif {
  font-size: clamp(1.3rem, 1.75vw, 1.7rem);
}
.region-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(7rem, 12vw, 13rem);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.region-row span {
  min-height: 105px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem;
  border-right: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: 1.1rem;
}
.region-row span:last-child {
  border-right: 0;
}
.region-row i {
  color: #cf7555;
  font-size: 0.55rem;
  font-style: normal;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 9rem);
  background: var(--paper-light);
}
.contact > * {
  width: 100%;
}
.contact .section-kicker {
  margin-bottom: 5rem;
}
.contact-intro > div:last-child > p:last-child {
  max-width: 570px;
  color: var(--muted);
}
.contact-direct {
  max-width: 570px;
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.contact-direct > span {
  color: var(--copper);
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.company-address {
  display: grid;
  gap: 0.12rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.45;
}
.company-address strong {
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.contact-links {
  display: grid;
  gap: 0.25rem;
}
.contact-direct a {
  width: max-content;
  font-family: var(--serif);
  font-size: 1.05rem;
}
.contact-direct a:hover {
  color: var(--copper);
}
.contact-form {
  align-self: end;
  padding-top: 5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-form label {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.3rem;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
  font-family: var(--body);
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--copper);
}
.contact-form [aria-invalid="true"] {
  border-color: #a12520;
}
.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}
.form-submit {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.form-submit .button {
  border: 0;
}
.form-status {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 4rem var(--gutter) 1.5rem;
  color: var(--paper-light);
  background: var(--night);
}
.site-footer > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.brand-light {
  color: var(--paper-light);
}
.footer-brand {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-light);
}
.footer-contact {
  display: grid;
  justify-items: end;
  gap: 0.25rem;
  text-align: right;
}
.footer-contact a {
  color: #d5c6b4;
  font-size: 0.76rem;
}
.footer-contact a:hover {
  color: #fff8ed;
}
.footer-contact p {
  margin: 0.4rem 0 0;
  color: #9f9487;
  font-family: var(--display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-locations {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2.8rem);
}
.footer-locations span:not(:last-child)::after {
  content: "·";
  margin-left: clamp(1rem, 3vw, 4rem);
  color: var(--copper);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  color: #918679;
  font-size: 0.68rem;
}
.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes title-in {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes image-in {
  from {
    opacity: 0.35;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1180px) {
  :root {
    --header-h: 80px;
  }
  .site-header {
    grid-template-columns: minmax(190px, 1fr) auto auto;
  }
  .header-cta {
    display: none;
  }
  .hero {
    grid-template-columns: 57% 43%;
  }
  .hero h1 {
    font-size: clamp(4.6rem, 9vw, 7.2rem);
  }
  .coordinates {
    top: 4.2rem;
  }
  .role-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .role-strip article:nth-child(2) {
    border-right: 0;
  }
  .role-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 72px;
  }
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 0.65rem;
    min-height: var(--header-h);
    backdrop-filter: none;
  }
  .header-actions {
    position: relative;
    z-index: 2;
    grid-column: 2;
    grid-row: 1;
  }
  .menu-toggle {
    position: relative;
    z-index: 2;
    grid-column: 3;
    grid-row: 1;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    color: var(--ink);
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle > span:not(.sr-only) {
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease;
  }
  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    width: 100vw;
    height: 100svh;
    padding: 7rem var(--gutter) 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.8rem;
    color: var(--paper-light);
    background: var(--night);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s;
  }
  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .site-nav a {
    font-family: var(--display);
    font-size: clamp(2.3rem, 8vw, 4rem);
    line-height: 1;
  }
  .site-nav a::after {
    bottom: 0.5rem;
  }
  .menu-toggle[aria-expanded="true"] {
    color: var(--paper-light);
    border-color: var(--line-light);
  }
  .menu-toggle[aria-expanded="true"] ~ .header-actions .language-toggle,
  body.menu-open .language-toggle {
    color: #cbbcab;
    border-color: var(--line-light);
  }
  body.menu-open .language-toggle span.is-active {
    color: #e48a68;
  }
  body.menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: auto;
    display: block;
  }
  .hero-copy {
    min-height: 720px;
    border-right: 0;
    border-bottom: 1px solid var(--gold);
  }
  .hero-visual {
    height: 72svh;
    min-height: 540px;
  }
  .hero-visual img {
    object-position: center;
  }
  .coordinates {
    top: 3rem;
  }
  .scroll-cue {
    display: none;
  }
  .sector-rail {
    margin-top: 3rem;
  }
  .vision-grid,
  .section-heading,
  .approach-heading,
  .international-content,
  .contact {
    grid-template-columns: 1fr;
  }
  .vision-copy {
    padding-top: 0;
  }
  .manifesto {
    width: 94%;
  }
  .section-heading > p:last-child,
  .approach-heading > p {
    margin-top: 1rem;
  }
  .region-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .region-row span:nth-child(2) {
    border-right: 0;
  }
  .region-row span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }
  .contact-form {
    padding-top: 0;
  }
  .world-grid {
    right: -25vw;
    width: 90vw;
    opacity: 0.65;
  }
  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-contact {
    justify-items: start;
    text-align: left;
  }
  .footer-locations {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 1.25rem;
  }
  .brand {
    font-size: 1rem;
    letter-spacing: 0.22em;
  }
  .brand-spire {
    height: 31px;
  }
  .language-toggle {
    min-height: 38px;
    padding: 0 0.55rem;
    gap: 0.38rem;
  }
  .hero-copy {
    min-height: 690px;
    padding-top: 7.2rem;
  }
  .coordinates {
    top: 2.6rem;
    right: 1.25rem;
  }
  .hero h1 {
    font-size: clamp(4rem, 20vw, 6.2rem);
    line-height: 0.77;
  }
  .hero-eyebrow {
    max-width: 80%;
  }
  .hero-actions {
    display: grid;
  }
  .button {
    width: 100%;
    justify-content: space-between;
  }
  .sector-rail {
    gap: 0.75rem 1.1rem;
  }
  .sector-rail span:not(:last-child)::after {
    margin-left: 1.1rem;
  }
  .hero-visual {
    height: 65svh;
    min-height: 430px;
  }
  .section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
  .section-kicker {
    margin-bottom: 3.6rem;
  }
  .vision h2,
  .section-heading h2,
  .sectors-intro h2,
  .approach h2,
  .international h2,
  .contact h2 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }
  .manifesto {
    width: 100%;
    padding-left: 2rem;
  }
  .role-strip,
  .sector-grid,
  .process-grid,
  .region-row,
  .form-row {
    grid-template-columns: 1fr;
  }
  .role-strip article {
    min-height: 175px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .role-strip article:last-child {
    border-bottom: 0;
  }
  .role-strip h3 {
    margin-top: 2.8rem;
  }
  .expertise-item {
    grid-template-columns: 38px 1fr;
    gap: 1rem;
  }
  .expertise-meta {
    grid-column: 2;
  }
  .sector-card {
    min-height: 390px;
  }
  .process-grid li {
    min-height: 205px;
  }
  .process-grid h3 {
    margin-top: 3rem;
  }
  .region-row span {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }
  .region-row span:last-child {
    border-bottom: 0;
  }
  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }
  .footer-locations {
    display: grid;
    grid-template-columns: repeat(2, auto);
  }
  .footer-locations span::after {
    display: none;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
