:root {
  --charcoal: #171a1d;
  --charcoal-2: #20252a;
  --slate: #505b62;
  --copper: #b7784d;
  --copper-light: #d39a72;
  --sage: #7c8b79;
  --stone: #eeeae3;
  --cream: #f7f4ee;
  --paper: #fbfaf7;
  --ink: #202326;
  --muted: #697178;
  --line: rgba(32, 35, 38, .14);
  --shell: min(1180px, calc(100% - 40px));
  --radius: 3px;
  --shadow: 0 28px 80px rgba(19, 23, 26, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.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: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(23, 26, 29, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(23, 26, 29, .97);
  box-shadow: 0 12px 32px rgba(0,0,0,.13);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: white;
}
.brand-mark {
  width: 48px;
  height: 18px;
  display: grid;
  grid-template-columns: 9px 1fr 9px;
  align-items: center;
}
.brand-mark i {
  width: 9px;
  height: 9px;
  border: 2px solid var(--copper-light);
  border-radius: 50%;
}
.brand-mark b {
  display: block;
  height: 1px;
  background: var(--copper-light);
  position: relative;
}
.brand-mark b::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--copper-light);
  transform: translate(-50%, -50%) rotate(45deg);
}
.brand-type { display: grid; line-height: 1; }
.brand-type strong {
  letter-spacing: .20em;
  font-size: 18px;
  font-weight: 720;
}
.brand-type small {
  margin-top: 5px;
  color: var(--copper-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .38em;
}
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav a {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .04em;
  transition: color .2s ease;
}
.primary-nav a:hover,
.primary-nav a.is-active { color: white; }
.primary-nav .nav-cta {
  color: white;
  border: 1px solid rgba(211,154,114,.72);
  padding: 12px 16px;
}
.primary-nav .nav-cta:hover { background: var(--copper); border-color: var(--copper); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  background: white;
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 76% 38%, rgba(183,120,77,.10), transparent 28%),
    linear-gradient(135deg, #171a1d 0%, #1d2226 58%, #252b2e 100%);
  color: white;
  padding: 150px 0 90px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 86%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, .78fr);
  gap: clamp(52px, 8vw, 110px);
  align-items: center;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--copper-light);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
}
.hero h1,
.page-hero h1,
.section h2,
.cta-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 450;
  line-height: .98;
  letter-spacing: -.035em;
}
.hero h1 { max-width: 820px; font-size: clamp(56px, 7vw, 102px); }
.hero h1 em { color: var(--copper-light); font-style: normal; }
.hero-lede {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.69);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.7;
}
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--copper); color: white; }
.button-primary:hover { background: #c4875d; }
.button-ghost { color: white; border-color: rgba(255,255,255,.28); }
.button-ghost:hover { border-color: white; }
.button-dark { background: var(--charcoal); color: white; }
.button-light { background: var(--cream); color: var(--charcoal); }

.hero-panel {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.045);
  box-shadow: var(--shadow);
}
.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--copper-light);
}
.hero-panel::before { top: -1px; left: -1px; border-top: 1px solid; border-left: 1px solid; }
.hero-panel::after { bottom: -1px; right: -1px; border-right: 1px solid; border-bottom: 1px solid; }
.panel-kicker {
  color: rgba(255,255,255,.48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.panel-word {
  margin-top: 9px;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 760;
  letter-spacing: .14em;
}
.hero-panel > p { color: rgba(255,255,255,.65); line-height: 1.7; }
.signal-row { display: flex; align-items: center; margin: 30px 0; }
.node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--copper-light);
  flex: 0 0 auto;
}
.signal { height: 1px; flex: 1; background: linear-gradient(to right, var(--copper-light), rgba(211,154,114,.2), var(--copper-light)); }
.hero-panel dl { margin: 0; }
.hero-panel dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-panel dt { color: white; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.hero-panel dd { margin: 0; color: rgba(255,255,255,.55); font-size: 13px; }

.topo { position: absolute; pointer-events: none; opacity: .22; }
.topo::before,
.topo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(211,154,114,.46);
  border-radius: 49% 51% 38% 62% / 52% 45% 55% 48%;
  transform: rotate(-12deg);
}
.topo::after { inset: 26px; border-color: rgba(211,154,114,.25); transform: rotate(7deg); }
.topo-a { width: 420px; height: 300px; right: -100px; bottom: -60px; }
.topo-a::before { box-shadow: inset 0 0 0 28px transparent, 0 0 0 28px rgba(211,154,114,.07), 0 0 0 58px rgba(211,154,114,.035); }
.hero-line { position: absolute; height: 1px; background: rgba(183,120,77,.45); transform-origin: left; }
.hero-line span { position: absolute; width: 8px; height: 8px; border: 1px solid var(--copper-light); border-radius: 50%; top: -4px; right: -4px; }
.hero-line-one { width: 20vw; right: 0; top: 30%; }
.hero-line-two { width: 13vw; left: 0; bottom: 22%; }

.section { padding: 110px 0; position: relative; }
.split-heading {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}
.section h2 { font-size: clamp(42px, 5.2vw, 72px); color: var(--charcoal); }
.split-heading > p,
.section-heading > p,
.experience-body p,
.region-copy > p,
.page-lede,
.body-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.card-grid { display: grid; gap: 16px; }
.three-up { grid-template-columns: repeat(3, 1fr); }
.capability-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: white;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.capability-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--copper);
  transition: width .25s ease;
}
.capability-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(21,25,28,.08); border-color: rgba(183,120,77,.35); }
.capability-card:hover::after { width: 100%; }
.card-number { color: var(--copper); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.capability-card h3 { margin: 74px 0 15px; font-size: 24px; letter-spacing: -.02em; }
.capability-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.capability-card a { margin-top: auto; padding-top: 30px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.capability-card a span,
.text-link span { color: var(--copper); margin-left: 5px; }

.method-section { background: var(--stone); }
.section-heading { max-width: 760px; margin-bottom: 58px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading.centered > p:last-child { max-width: 580px; margin: 18px auto 0; }
.method-track { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.method-track::before { content: ""; position: absolute; top: 42px; left: 12.5%; right: 12.5%; height: 1px; background: rgba(32,35,38,.2); }
.method-step { position: relative; text-align: center; padding: 0 20px; }
.method-step > span { display: block; color: var(--copper); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.method-node { position: relative; z-index: 1; width: 13px; height: 13px; margin: 22px auto 26px; background: var(--stone); border: 2px solid var(--copper); border-radius: 50%; box-shadow: 0 0 0 8px var(--stone); }
.method-step h3 { margin: 0 0 14px; font-size: 20px; }
.method-step p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }

.experience-section { overflow: hidden; background: var(--charcoal); color: white; }
.experience-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.experience-section h2 { color: white; }
.experience-body p { color: rgba(255,255,255,.64); margin-bottom: 18px; }
.text-link { display: inline-block; margin-top: 14px; color: white; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.topo-b { width: 520px; height: 350px; right: -90px; top: -90px; }

.region-section { background: var(--cream); }
.region-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.region-map { position: relative; min-height: 430px; display: grid; place-items: center; background: var(--charcoal-2); overflow: hidden; box-shadow: var(--shadow); }
.region-map::before { content: ""; position: absolute; inset: 24px; border: 1px solid rgba(255,255,255,.08); }
.region-map svg { width: 86%; overflow: visible; }
.region-map path { fill: none; stroke: rgba(211,154,114,.36); stroke-width: 1.25; }
.region-map circle { fill: var(--copper-light); stroke: none; }
.region-map .map-ring { fill: none; stroke: rgba(211,154,114,.45); stroke-width: 1; }
.region-map span { position: absolute; bottom: 36px; left: 40px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .17em; font-size: 10px; font-weight: 800; }
.region-copy > p { margin: 22px 0 30px; }

.cta-section { background: var(--copper); color: white; padding: 64px 0; }
.cta-inner { display: flex; justify-content: space-between; gap: 40px; align-items: center; }
.cta-section .eyebrow { color: rgba(255,255,255,.72); }
.cta-section h2 { color: white; font-size: clamp(38px, 4.2vw, 58px); }

.site-footer { background: #111315; color: white; padding: 70px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 70px; }
.footer-brand > p { max-width: 330px; color: rgba(255,255,255,.45); line-height: 1.65; margin-top: 20px; }
.site-footer h3 { margin: 0 0 18px; color: rgba(255,255,255,.45); font-size: 10px; text-transform: uppercase; letter-spacing: .18em; }
.site-footer .footer-grid > div:not(.footer-brand) a,
.site-footer .footer-grid > div:not(.footer-brand) > p:not(.preview-note) { display: block; margin: 0 0 12px; color: rgba(255,255,255,.72); font-size: 14px; }
.preview-note { max-width: 320px; margin-top: 18px; color: rgba(255,255,255,.34); font-size: 11px; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.36); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }

.page-hero {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 170px 0 80px;
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, #171a1d, #252b2f);
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -160px;
  top: -120px;
  border: 1px solid rgba(211,154,114,.24);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(211,154,114,.035), 0 0 0 108px rgba(211,154,114,.02);
}
.page-hero .shell { position: relative; z-index: 2; }
.page-hero h1 { max-width: 900px; font-size: clamp(58px, 7vw, 100px); }
.page-lede { max-width: 700px; color: rgba(255,255,255,.63); margin-top: 24px; font-size: 18px; }

.detail-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.sticky-label { position: sticky; top: 120px; }
.sticky-label h2 { font-size: clamp(40px, 4.8vw, 64px); }
.service-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: 72px 1fr; gap: 26px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.service-item > span { color: var(--copper); font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.service-item h3 { margin: 0 0 10px; font-size: 22px; }
.service-item p { margin: 0; color: var(--muted); line-height: 1.7; }

.quote-panel { background: var(--charcoal); color: white; padding: clamp(42px, 6vw, 76px); }
.quote-panel blockquote { margin: 0; max-width: 900px; font-family: Georgia, serif; font-size: clamp(32px, 4.7vw, 62px); line-height: 1.13; letter-spacing: -.025em; }
.quote-panel p { margin: 28px 0 0; color: rgba(255,255,255,.5); line-height: 1.7; }

.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 90px; align-items: start; }
.about-statement { padding: 38px; background: var(--stone); border-left: 3px solid var(--copper); }
.about-statement strong { display: block; margin-bottom: 13px; font-family: Georgia, serif; font-weight: 500; font-size: 34px; line-height: 1.15; }
.about-statement p { margin: 0; color: var(--muted); line-height: 1.7; }
.body-copy p + p { margin-top: 20px; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.value-card { padding: 30px; min-height: 240px; border: 1px solid var(--line); background: white; }
.value-card span { color: var(--copper); font-size: 10px; font-weight: 800; letter-spacing: .17em; }
.value-card h3 { margin: 48px 0 12px; font-size: 21px; }
.value-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.contact-copy h2 { margin-bottom: 24px; }
.contact-copy > p { color: var(--muted); line-height: 1.75; }
.contact-facts { margin-top: 38px; border-top: 1px solid var(--line); }
.contact-facts div { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-facts small { display: block; color: var(--copper); text-transform: uppercase; letter-spacing: .14em; font-weight: 800; margin-bottom: 5px; }
.contact-facts span { color: var(--ink); }
.contact-form-wrap { background: white; border: 1px solid var(--line); padding: 38px; box-shadow: 0 20px 60px rgba(20,24,27,.07); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #d7d5d0;
  background: #fbfaf7;
  color: var(--ink);
  border-radius: 0;
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(183,120,77,.10); }
.form-status { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.contact-form .button { grid-column: 1 / -1; justify-self: start; }
.contact-form .button[disabled] { opacity: .58; cursor: not-allowed; transform: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

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

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 920px); }
  .menu-toggle { display: block; position: relative; z-index: 102; }
  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 100px 32px 40px;
    background: #171a1d;
    transform: translateX(100%);
    transition: transform .28s ease;
  }
  .primary-nav.is-open { transform: none; }
  .primary-nav a { font-size: 25px; color: rgba(255,255,255,.82); }
  .primary-nav .nav-cta { margin-top: 10px; font-size: 13px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero-grid, .region-grid, .experience-grid, .about-grid, .contact-layout { grid-template-columns: 1fr; }
  .hero-grid { gap: 55px; }
  .hero-panel { max-width: 620px; }
  .split-heading { grid-template-columns: 1fr; gap: 22px; }
  .three-up { grid-template-columns: 1fr; }
  .capability-card { min-height: 260px; }
  .capability-card h3 { margin-top: 42px; }
  .method-track { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .method-track::before { display: none; }
  .experience-grid { gap: 35px; }
  .region-grid { gap: 45px; }
  .detail-grid { grid-template-columns: 1fr; gap: 35px; }
  .sticky-label { position: static; }
  .footer-grid { grid-template-columns: 1.3fr .7fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); }
  .nav-wrap { min-height: 72px; }
  .brand-type strong { font-size: 16px; }
  .brand-mark { width: 42px; }
  .hero { padding: 132px 0 72px; }
  .hero h1 { font-size: clamp(48px, 14vw, 70px); }
  .hero-lede { font-size: 16px; }
  .hero-panel { padding: 26px; }
  .button-row { display: grid; }
  .button-row .button { width: 100%; }
  .section { padding: 78px 0; }
  .section h2 { font-size: clamp(38px, 11vw, 52px); }
  .method-track { grid-template-columns: 1fr; gap: 44px; }
  .method-step { text-align: left; padding: 0; display: grid; grid-template-columns: 28px 18px 1fr; column-gap: 12px; }
  .method-step > span { grid-column: 1; grid-row: 1; align-self: center; }
  .method-node { grid-column: 2; grid-row: 1; margin: 0; align-self: center; }
  .method-step h3 { grid-column: 3; grid-row: 1; margin: 0; }
  .method-step p { grid-column: 3; grid-row: 2; margin-top: 10px; }
  .region-map { min-height: 330px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .page-hero { min-height: 460px; padding-bottom: 64px; }
  .page-hero h1 { font-size: clamp(52px, 14vw, 72px); }
  .service-item { grid-template-columns: 42px 1fr; gap: 12px; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .contact-form .button,
  .form-status { grid-column: auto; }
  .contact-form-wrap { padding: 26px; }
}
