:root {
  --black: #0b0b0b;
  --ink: #171717;
  --muted: #606060;
  --line: rgba(12, 12, 12, 0.12);
  --white: #ffffff;
  --paper: #f7f4ef;
  --orange: #ff8c00;
  --green: #2a7a2a;
  --blue: #8bd2ee;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --max: 1180px;
  --display: "Arial Black", Impact, Inter, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #101010;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 30;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 14px max(24px, calc((100vw - 1240px) / 2));
  color: var(--white);
  background: rgba(8, 8, 8, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(9, 9, 9, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand-word {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(25px, 2.1vw, 34px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.brand-word span {
  color: var(--orange);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  flex: 1 1 auto;
}

.site-nav a {
  position: relative;
  min-height: 40px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 800;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--orange);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid currentColor;
  transition: color 220ms ease, transform 220ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  color: var(--white);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 900;
}

.nav-toggle:focus,
.nav-toggle:focus-visible {
  outline: 0;
}

.hamburger-lines {
  display: grid;
  gap: 4px;
}

.hamburger-lines i {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--orange);
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle[aria-expanded="true"] .hamburger-lines i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-lines i:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-lines i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.scroll-top {
  position: fixed;
  right: clamp(14px, 2.4vw, 28px);
  bottom: clamp(14px, 2.4vw, 28px);
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--black);
  background: var(--orange);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, color 180ms ease;
}

.scroll-top span {
  display: block;
  font-size: 26px;
  font-weight: 950;
  line-height: 1;
  transform: translateY(-1px);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  color: var(--white);
  background: var(--green);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px max(24px, calc((100vw - var(--max)) / 2)) 34px;
  color: var(--white);
  background: var(--black);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.68) 44%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.12) 54%);
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0.96;
}

.hero-img {
  object-fit: cover;
}

.hero-img-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center;
}

.hero-img-side.top,
.hero-img-side.bottom {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  width: min(360px, 25vw);
  height: min(240px, 24vh);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  z-index: 1;
}

.hero-img-side.top {
  top: 150px;
}

.hero-img-side.bottom {
  bottom: 150px;
}

.hero-copy,
.hero-proof {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 860px;
  padding-bottom: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1,
h2 {
  font-family: var(--display);
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(52px, 8.2vw, 112px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 68px);
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
}

.hero-lede {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 850;
}

.btn.primary {
  background: var(--orange);
  color: var(--black);
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.contact .btn.secondary {
  border-color: rgba(0, 0, 0, 0.18);
  color: var(--black);
  background: var(--white);
}

.btn:hover {
  transform: translateY(-1px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  width: 100%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof div {
  min-height: 94px;
  padding: 18px;
  background: rgba(12, 12, 12, 0.68);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 4px;
  font-size: 18px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

section {
  padding: 96px max(24px, calc((100vw - var(--max)) / 2));
}

main > section:nth-of-type(odd):not(.hero):not(.contact):not(.contact-hero):not(.contact-workspace):not(.map-section):not(.page-hero) {
  background: var(--paper);
}

.band {
  background: var(--white);
}

.system-band {
  background: #121212;
  color: var(--white);
}

.system-band h2,
.system-band h3 {
  color: var(--white);
}

.system-band p {
  color: rgba(255, 255, 255, 0.7);
}

.section-grid,
.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 84px);
}

.intro-copy {
  color: var(--muted);
  font-size: 19px;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.section-heading.left {
  margin-inline: 0;
  text-align: left;
}

.route-map {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.route-copy p {
  max-width: 620px;
  font-size: 18px;
}

.route-links {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.route-links a {
  display: grid;
  grid-template-columns: minmax(150px, 0.4fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 18px 20px;
  background: #0c0c0c;
}

.route-links strong {
  color: var(--orange);
  font-size: 15px;
  text-transform: uppercase;
}

.route-links span {
  color: rgba(255, 255, 255, 0.78);
}

.proof-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1220px;
  margin: 0 auto;
}

.proof-item {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.proof-item.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 520px;
}

.proof-item.wide {
  grid-column: span 1;
}

.proof-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 600ms ease, opacity 600ms ease;
}

.proof-item:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.proof-item div {
  position: absolute;
  inset: auto 0 0;
  padding: 96px 24px 24px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}

.proof-item span,
.division-card span,
.timeline span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-item h3 {
  max-width: 440px;
  margin-bottom: 0;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.capability-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
  border-top: 5px solid var(--orange);
}

.cap-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--black);
  color: var(--orange);
  font-weight: 900;
}

.capability-grid p,
.division-card p,
.timeline p,
.contact p,
.feature-copy p {
  color: var(--muted);
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 70px);
  min-height: 760px;
  padding-top: 0;
  padding-bottom: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 140, 0, 0.9), rgba(255, 177, 68, 0.72)),
    #ff970f;
}

.feature-image {
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: center;
}

.feature-copy {
  align-self: center;
  max-width: 560px;
  padding-block: 96px;
}

.feature-copy h2 {
  color: var(--ink);
}

.feature-copy .eyebrow {
  color: rgba(12, 12, 12, 0.72);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 12px 14px;
  border-left: 4px solid var(--black);
  background: rgba(255, 255, 255, 0.88);
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.division-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fbfaf7;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.division-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.division-card.featured {
  border-color: rgba(255, 140, 0, 0.45);
}

.division-media {
  aspect-ratio: 1.25;
  background: var(--black);
}

.division-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.division-card > span,
.division-card h3,
.division-card p,
.division-card a {
  margin-left: 22px;
  margin-right: 22px;
}

.division-card > span {
  margin-top: 22px;
}

.division-card a {
  margin-top: auto;
  margin-bottom: 22px;
  color: var(--green);
  font-weight: 900;
}

.ecosystem-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: rgba(12, 12, 12, 0.14);
  border: 1px solid var(--line);
}

.ecosystem-strip a {
  min-height: 112px;
  padding: 20px;
  background: #111;
  color: var(--white);
}

.ecosystem-strip strong,
.ecosystem-strip span {
  display: block;
}

.ecosystem-strip strong {
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 20px;
}

.ecosystem-strip span {
  color: rgba(255, 255, 255, 0.72);
}

.chapter-nav {
  position: sticky;
  top: 80px;
  z-index: 10;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(11, 11, 11, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid var(--line);
}

.chapter-toggle {
  display: none;
}

.chapter-links {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
}

.chapter-links a {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.chapter-links a[aria-current="page"] {
  background: var(--orange);
}

.page-hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px max(24px, calc((100vw - var(--max)) / 2)) 56px;
  color: var(--white);
  background: var(--black);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.28)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.08));
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-copy {
  width: min(100%, 900px);
  padding-bottom: 0;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(46px, 7.4vw, 104px);
  overflow-wrap: anywhere;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.page-intro p {
  color: var(--muted);
  font-size: 19px;
}

.page-sequence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.page-sequence a {
  min-height: 120px;
  padding: 18px;
  background: #fbfaf7;
}

.page-sequence strong,
.page-sequence span {
  display: block;
}

.page-sequence strong {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 13px;
  text-transform: uppercase;
}

.page-sequence span {
  color: var(--muted);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
  border-top: 5px solid var(--green);
}

.service-list h3 {
  color: var(--black);
}

.service-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.division-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.directory-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.directory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.directory-card div {
  padding: 24px;
}

.directory-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.directory-card p {
  color: var(--muted);
}

.directory-card a {
  color: var(--green);
  font-weight: 900;
}

.story-heading {
  max-width: 900px;
  margin-bottom: 48px;
}

.story-heading p:not(.eyebrow) {
  max-width: 710px;
  color: var(--muted);
  font-size: 18px;
}

.journey-timeline {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 1040px;
  margin: 0 auto;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(var(--orange), var(--green));
  transform: translateX(-50%);
}

.journey-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  min-height: 170px;
  padding: 10px 0 32px;
}

.journey-timeline article::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  width: 16px;
  height: 16px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px var(--line);
  transform: translateX(-50%);
  z-index: 1;
}

.journey-timeline article:nth-child(even)::before {
  background: var(--green);
}

.journey-timeline time {
  color: var(--black);
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
}

.journey-timeline article:nth-child(odd) time {
  text-align: right;
}

.journey-timeline article:nth-child(even) time {
  grid-column: 2;
  grid-row: 1;
}

.journey-timeline article:nth-child(even) div {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.journey-timeline div {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f6f1e9;
}

.journey-timeline h3 {
  margin-bottom: 8px;
}

.journey-timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.media-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  gap: 0;
  padding: 0;
  background: var(--black);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.media-row::-webkit-scrollbar {
  display: none;
}

.media-row img {
  width: 100%;
  height: clamp(280px, 32vw, 460px);
  object-fit: cover;
  border-radius: 0;
  filter: saturate(1.05) contrast(1.04);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
  gap: 12px;
  min-height: 78vh;
  padding-top: clamp(120px, 14vw, 170px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.48)),
    url("../images/contact_us.png") center / cover;
}

.contact-hero-copy {
  display: grid;
  align-content: end;
  gap: 22px;
  max-width: 980px;
}

.contact-hero-copy h1 {
  max-width: 980px;
}

.contact-hero-copy p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 25px);
}

.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--white);
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.contact-quick-links a:hover,
.contact-quick-links a:focus-visible {
  color: var(--black);
  background: var(--orange);
  border-color: var(--orange);
}

.office-card {
  align-self: end;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--black);
  background: var(--orange);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.office-card h2 {
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.94;
}

.office-card p {
  color: rgba(17, 17, 17, 0.78);
  font-size: 18px;
}

.office-card .btn.primary {
  width: max-content;
  background: var(--black);
  color: var(--white);
}

.contact-workspace {
  display: block;
  color: var(--black);
  background: #f3eee7;
}

.contact-panel,
.contact-details,
.enquiry-form,
.social-card {
  padding: clamp(26px, 5vw, 56px);
  border-radius: var(--radius);
}

.contact-panel {
  background: rgba(255, 247, 235, 0.74);
}

.contact-panel h2 {
  max-width: 760px;
}

.contact-panel p,
.contact-details p {
  color: rgba(17, 17, 17, 0.76);
  font-size: 18px;
}

.enquiry-form {
  display: grid;
  align-content: start;
  gap: 16px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.contact-form {
  max-width: 1040px;
  margin: 0 auto;
  border-top: 6px solid var(--orange);
}

.form-heading {
  display: grid;
  gap: 10px;
  max-width: 800px;
  margin-bottom: 8px;
}

.form-heading h2 {
  font-size: clamp(34px, 5vw, 78px);
  line-height: 0.94;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: rgba(17, 17, 17, 0.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 0;
  padding: 13px 12px;
  color: var(--black);
  background: #fff8ef;
  font: inherit;
  font-size: 15px;
}

.enquiry-form textarea {
  resize: vertical;
  min-height: 130px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-status {
  min-height: 1.4em;
  font-weight: 800;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: #9b1c1c;
}

.form-status.is-pending {
  color: var(--orange);
}

.form-response {
  min-height: 100vh;
  padding: 12vw 8vw;
  background: var(--paper);
}

.form-response h1 {
  max-width: 860px;
  margin: 0 0 24px;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.form-response p {
  max-width: 680px;
  font-size: 1.2rem;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: 3px solid rgba(42, 122, 42, 0.22);
  border-color: var(--green);
}

.enquiry-form .contact-actions {
  margin-top: 4px;
}

.contact-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
  margin-top: 6px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.contact-social span {
  margin-right: 8px;
  color: rgba(17, 17, 17, 0.56);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--black);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 50%;
  background: #fff8ef;
}

.contact-social a:hover,
.contact-social a:focus-visible {
  color: var(--white);
  border-color: var(--black);
  background: var(--black);
}

.contact-details {
  background: var(--black);
  color: var(--white);
}

.contact-details p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-details dl {
  display: grid;
  gap: 18px;
  margin: 26px 0 0;
}

.contact-details dt {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 4px 0 0;
}

.contact-side {
  display: grid;
  gap: 12px;
  align-content: start;
}

.social-card {
  color: var(--black);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.36), transparent 28%),
    var(--orange);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.14);
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 12px;
  padding-top: 12px;
  background: var(--black);
}

.map-section.contact-map {
  display: block;
  padding: 0;
}

.map-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 56px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 140, 0, 0.28), transparent 32%),
    #171717;
}

.contact-map .map-copy {
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 140, 0, 0.28), transparent 30%),
    var(--black);
}

.contact-map .map-copy p {
  max-width: 640px;
}

.map-copy h2 {
  font-size: clamp(42px, 6vw, 92px);
  line-height: 0.92;
}

.map-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.map-frame {
  min-height: clamp(360px, 46vw, 620px);
  background: #1f1f1f;
}

.contact-map .map-frame {
  width: 100%;
  min-height: clamp(420px, 54vw, 720px);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 46vw, 620px);
  border: 0;
  filter: grayscale(0.2) contrast(1.04) saturate(0.92);
}

.contact-map .map-frame iframe {
  min-height: clamp(420px, 54vw, 720px);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(150px, 0.55fr) minmax(240px, 0.95fr) minmax(130px, 0.45fr);
  align-items: start;
  gap: clamp(22px, 4vw, 52px);
  padding: 42px max(24px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-main p {
  max-width: 420px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.footer-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-word {
  font-size: 26px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: var(--white);
  font-weight: 850;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--orange);
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.62);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--black);
  border-color: var(--orange);
  background: var(--orange);
}

.fineprint {
  grid-column: 1 / -1;
  padding-top: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  text-align: right;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-header {
    padding-inline: 18px;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: none;
    width: 100vw;
    min-height: 100vh;
    padding: 112px clamp(24px, 8vw, 64px) 40px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    background:
      radial-gradient(circle at 16% 18%, rgba(255, 140, 0, 0.36), transparent 30%),
      linear-gradient(135deg, rgba(12, 12, 12, 0.98), rgba(24, 15, 2, 0.98));
    border: 0;
    border-radius: 0;
    box-shadow: none;
    z-index: 35;
  }

  .site-nav a {
    width: 100%;
    max-width: 680px;
    padding: 18px 0;
    color: var(--white);
    font-size: clamp(36px, 12vw, 88px);
    line-height: 0.95;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a[aria-current="page"] {
    color: var(--orange);
  }

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

  .nav-toggle {
    position: relative;
    z-index: 40;
  }

  body.nav-open {
    overflow: hidden;
  }

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

  .hero-img-side {
    display: none;
  }

  .hero-proof,
  .section-grid,
  .story-layout,
  .route-map,
  .feature-split,
  .contact,
  .contact-hero,
  .contact-workspace,
  .map-section {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: auto;
  }

  .office-card {
    align-self: stretch;
  }

  .capability-grid,
  .division-grid,
  .ecosystem-strip,
  .chapter-links,
  .service-list,
  .page-sequence,
  .division-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-intro {
    grid-template-columns: 1fr;
  }

  .directory-card {
    grid-template-columns: 1fr;
  }

  .directory-card img {
    height: 260px;
  }

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

  .proof-item,
  .proof-item.large,
  .proof-item.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 380px;
  }

  .journey-timeline::before {
    left: 12px;
  }

  .journey-timeline article,
  .journey-timeline article:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 38px;
  }

  .journey-timeline article::before {
    left: 12px;
  }

  .journey-timeline article:nth-child(odd) time,
  .journey-timeline article:nth-child(even) time,
  .journey-timeline article:nth-child(even) div {
    grid-column: auto;
    grid-row: auto;
    text-align: left;
  }

  .feature-image,
  .feature-image img {
    min-height: 460px;
  }

  .site-footer {
    grid-template-columns: minmax(240px, 1fr) minmax(180px, 0.75fr);
  }

  .footer-social {
    justify-content: flex-start;
  }

}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 12px;
  }

  .brand-word {
    font-size: 23px;
  }

  .nav-cta {
    display: none;
  }

  .hamburger-label {
    display: none;
  }

  .site-nav {
    right: 12px;
    width: calc(100vw - 24px);
  }

  .hero {
    min-height: 92vh;
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(42px, 16vw, 64px);
  }

  h2 {
    font-size: clamp(31px, 11vw, 45px);
  }

  section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .hero-proof,
  .capability-grid,
  .division-grid,
  .ecosystem-strip,
  .chapter-links,
  .service-list,
  .page-sequence,
  .division-directory,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .social-links a {
    flex: 1 1 46%;
  }

  .contact-workspace {
    padding-inline: 16px;
  }

  .contact-social a,
  .footer-social a {
    width: 42px;
    height: 42px;
  }

  .contact-hero {
    padding-top: 118px;
  }

  .contact-quick-links {
    display: grid;
  }

  .chapter-nav {
    position: sticky;
    top: 70px;
    z-index: 11;
    padding-inline: 12px;
    padding-block: 10px;
    background: rgba(11, 11, 11, 0.88);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
  }

  .chapter-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 58px;
    padding: 10px 14px;
    color: var(--white);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
  }

  .chapter-toggle::after {
    content: "+";
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    color: var(--black);
    border-radius: 50%;
    background: var(--orange);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
  }

  .chapter-nav.is-open .chapter-toggle::after {
    content: "-";
  }

  .chapter-toggle span,
  .chapter-toggle strong {
    display: block;
  }

  .chapter-toggle span {
    margin-bottom: 2px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .chapter-toggle strong {
    color: var(--white);
    font-size: 17px;
  }

  .chapter-links {
    display: none;
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
  }

  .chapter-nav.is-open .chapter-links {
    display: grid;
  }

  .chapter-links a {
    min-height: 50px;
    justify-items: start;
    padding-inline: 16px;
    border-bottom: 1px solid rgba(12, 12, 12, 0.08);
  }

  .route-links a {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 72vh;
    padding: 112px 18px 44px;
    align-items: end;
  }

  .page-hero .hero-copy {
    max-width: 100%;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 13.2vw, 56px);
    line-height: 0.96;
  }

  .page-hero .hero-lede {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.45;
  }

  .proof-wall {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item.large,
  .proof-item.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .feature-image,
  .feature-image img {
    min-height: 380px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .fineprint {
    width: 100%;
    text-align: left;
  }
}
