:root {
  --ink: #292522;
  --deep: #151311;
  --green: #211e1b;
  --lime: #e86f32;
  --cream: #f2ede7;
  --paper: #fcfaf7;
  --muted: #756d66;
  --line: rgba(41, 37, 34, 0.16);
  --max: 1240px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: clip;
}
body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}
.container {
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
}
.section {
  padding: 120px 0;
}
.label,
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 600;
}
.label {
  margin-bottom: 32px;
}
.accent {
  color: var(--lime);
}
h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.04;
}
h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 500;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--lime);
  padding: 12px 18px;
  z-index: 2000;
}
.skip-link:focus {
  top: 20px;
}
header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  background: rgba(21, 19, 17, 0.72);
  color: #fff;
  backdrop-filter: blur(10px);
  isolation: isolate;
  transition: 0.3s;
}
header.scrolled {
  background: rgba(21, 19, 17, 0.97);
  box-shadow: 0 1px rgba(255, 255, 255, 0.13);
}
.utility {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.utility .container {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.65);
}
.nav-wrap {
  position: relative;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}
.brand img {
  display: block;
  width: auto;
  height: 58px;
  object-fit: contain;
}
nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.86rem;
}
nav a {
  position: relative;
}
nav a:not(.nav-cta):after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--lime);
  transition: 0.25s;
}
nav a:hover:after {
  width: 100%;
}
nav a.active:not(.nav-cta):after {
  width: 100%;
}
.nav-cta {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 34px;
  color: var(--lime);
}
#nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
}
#nav-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: #fff;
  margin: 7px auto;
}
.hero {
  min-height: 900px;
  height: 100vh;
  max-height: 1050px;
  padding-top: 112px;
  background: var(--deep);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, #000, transparent 85%);
}
.orbit {
  --orbit-angle: 0deg;
  --orbit-radius: 325px;
  --orbit-scale: 1;
  position: absolute;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(232, 111, 50, 0.34);
  border-radius: 50%;
  right: -10%;
  top: 17%;
  box-shadow:
    0 0 0 110px rgba(232, 111, 50, 0.035),
    0 0 0 220px rgba(232, 111, 50, 0.022);
}
.orbit-dot {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--lime);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(var(--orbit-angle))
    translateY(calc(-1 * var(--orbit-radius)))
    rotate(calc(-1 * var(--orbit-angle))) scale(var(--orbit-scale));
  box-shadow:
    0 0 0 6px rgba(232, 111, 50, 0.12),
    0 0 24px 6px rgba(232, 111, 50, 0.58);
  will-change: transform;
}
.orbit-stage {
  position: absolute;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  background: rgba(21, 19, 17, 0.62);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  transition:
    color 0.3s,
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.3s;
}
.orbit-stage.is-active {
  border-color: rgba(232, 111, 50, 0.62);
  background: rgba(232, 111, 50, 0.12);
  color: var(--lime);
  box-shadow: 0 0 22px rgba(232, 111, 50, 0.16);
}
.orbit-stage-record {
  top: 0;
  left: 50%;
  transform: translate(-50%, -175%);
}
.orbit-stage-understand {
  top: 25%;
  left: 7%;
  transform: translate(-105%, -50%);
}
.orbit-stage-plan {
  top: 75%;
  left: 7%;
  transform: translate(-105%, -50%);
}
.orbit-stage-grow {
  top: 100%;
  left: 50%;
  transform: translate(-50%, 75%);
}
.grid-bg,
.orbit,
.hero-inner > div,
.promise,
.trust,
.art i {
  will-change: transform;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.34fr;
  gap: 100px;
  align-items: end;
  padding-bottom: 70px;
}
.kicker {
  color: rgba(255, 255, 255, 0.67);
  margin-bottom: 34px;
}
.hero h1 {
  font-size: clamp(4.2rem, 8.1vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  will-change: clip-path, transform;
}
.hero h1 em {
  font-style: normal;
  color: var(--lime);
}
.lead {
  font-size: 1.14rem;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.7);
  margin: 38px 0;
  line-height: 1.7;
}
.actions {
  display: flex;
  align-items: center;
  gap: 35px;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  cursor: pointer;
  background: var(--lime);
  color: var(--deep);
  padding: 16px 20px;
  min-width: 210px;
  font: 600 0.87rem "DM Sans";
  transition: 0.25s;
}
.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.underlink,
.dark-link {
  border-bottom: 1px solid;
  padding-bottom: 5px;
  font-size: 0.87rem;
  font-weight: 600;
}
.promise {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 18px;
  margin-bottom: 25px;
}
.promise small {
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.promise p {
  font: 500 1.4rem/1.45 "Manrope";
  letter-spacing: -0.03em;
  margin: 25px 0 35px;
}
.promise i {
  display: block;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--lime) 42%,
    rgba(255, 255, 255, 0.14) 42%
  );
}
.trust {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.scroll-cue {
  position: absolute;
  bottom: 86px;
  left: 50%;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue i {
  position: relative;
  width: 1px;
  height: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}
.scroll-cue i::after {
  position: absolute;
  inset: -100% 0 0;
  background: var(--lime);
  content: "";
  animation: scroll-cue 1.8s ease-in-out infinite;
}
@keyframes scroll-cue {
  to {
    transform: translateY(200%);
  }
}
.intro {
  position: sticky !important;
  top: 0;
  z-index: 1 !important;
  background: var(--cream);
  margin-top: -24px;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -28px 70px rgba(14, 13, 12, 0.24);
}
main > section:not(.hero) {
  position: relative;
  z-index: 2;
}
.insights {
  position: sticky !important;
  top: 0;
  z-index: 3 !important;
  background: var(--paper);
}
.split {
  display: grid;
  grid-template-columns: 0.32fr 1fr;
}
.split h2 span {
  color: #8b8178;
}
.body-copy {
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 700px;
  margin: 40px 0;
}
.audience {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -14px 0 38px;
}
.audience span {
  padding: 9px 13px;
  border: 1px solid rgba(41, 37, 34, 0.16);
  border-radius: 100px;
  color: var(--muted);
  font-size: 0.76rem;
}
.services {
  position: relative;
  z-index: 2 !important;
  overflow: clip;
  margin-top: -24px;
  border-radius: 28px 28px 0 0;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 -28px 70px rgba(14, 13, 12, 0.22);
}
.services .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) 1fr;
  gap: 100px;
  align-items: start;
}
.journey-orbit-track {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: clip;
  pointer-events: none;
}
.journey-orbit {
  --journey-angle: -90deg;
  --journey-radius: 325px;
  position: sticky;
  top: 17vh;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(232, 111, 50, 0.34);
  border-radius: 50%;
  opacity: 1;
  box-shadow:
    0 0 0 110px rgba(232, 111, 50, 0.035),
    0 0 0 220px rgba(232, 111, 50, 0.022);
  pointer-events: none;
  will-change: transform, opacity;
}
.has-gsap .journey-orbit {
  opacity: 0;
}
.journey-orbit-plan {
  margin-right: -10%;
  margin-left: auto;
}
.journey-orbit-grow {
  --journey-angle: -120deg;
  margin-right: -10%;
  margin-left: auto;
}
.journey-orbit-grow .orbit-stage-grow {
  transform: translate(-50%, -155%);
}
.journey-orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow:
    0 0 0 6px rgba(232, 111, 50, 0.12),
    0 0 24px 6px rgba(232, 111, 50, 0.58);
  transform: translate(-50%, -50%) rotate(var(--journey-angle))
    translateY(calc(-1 * var(--journey-radius)))
    rotate(calc(-1 * var(--journey-angle)));
}
.section-head {
  position: sticky;
  top: 145px;
  margin: 0;
}
.section-head > p {
  max-width: 470px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.04rem;
}
.service-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  max-width: 330px;
  margin-top: 46px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.65rem;
}
.service-progress i {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}
.service-progress b {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
}
.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.service {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 34px;
  align-items: center;
  min-height: 390px;
  padding: 58px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    opacity 0.35s,
    background 0.35s,
    padding 0.35s;
}
.service.is-active {
  background: linear-gradient(90deg, rgba(232, 111, 50, 0.08), transparent 72%);
}
.service.is-active small {
  text-shadow: 0 0 22px rgba(232, 111, 50, 0.72);
}
.service.is-active .service-detail li {
  border-color: rgba(232, 111, 50, 0.38);
}
.service small {
  color: var(--lime);
}
.service > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.service h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  font-weight: 500;
}
.service-detail p {
  color: rgba(255, 255, 255, 0.57);
}
.service-detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  list-style: none;
}
.service-detail li {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.67rem;
  letter-spacing: 0.02em;
}
.service-arrow {
  color: var(--lime);
  font-size: 1.25rem;
  transition: 0.25s;
}
.service:hover {
  background: rgba(255, 255, 255, 0.025);
}
.service:hover .service-arrow {
  transform: translate(4px, -4px);
}
@media (min-width: 901px) {
  .has-gsap:not(.reduce-motion) .service {
    opacity: 0.32;
  }
  .has-gsap:not(.reduce-motion) .service.is-active {
    opacity: 1;
  }
}
.industries {
  background: var(--paper);
  padding-bottom: 190px;
}
.industry-layout {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 110px;
}
.sticky {
  position: sticky;
  top: 160px;
  align-self: start;
}
.sticky p {
  font-size: 1.06rem;
  max-width: 500px;
  margin-top: 34px;
  color: var(--muted);
}
.sectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sectors > div {
  position: relative;
  min-height: 260px;
  padding: 32px;
  background: var(--cream);
  border: 1px solid rgba(41, 37, 34, 0.07);
  border-top-color: rgba(232, 111, 50, 0.38);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 0.35s,
    background 0.35s;
}
.sectors small {
  position: absolute;
  top: 12px;
  right: 22px;
  color: rgba(232, 111, 50, 0.16);
  font:
    600 4.7rem/1 "Manrope",
    sans-serif;
  letter-spacing: -0.08em;
}
.principles small {
  color: var(--muted);
}
.sectors h3 {
  position: relative;
  max-width: 230px;
  margin-top: 72px;
  font-size: 1.35rem;
  font-weight: 500;
}
.sectors p {
  position: relative;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.sectors > div > span {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-top: auto;
  color: var(--lime);
  font-size: 1rem;
  transition: transform 0.3s;
}
.sectors > div:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(41, 37, 34, 0.12);
  border-color: rgba(232, 111, 50, 0.45);
}
.sectors > div:hover > span {
  transform: translate(4px, -4px);
}
.difference {
  background: var(--cream);
  z-index: 3 !important;
  margin-top: -76px;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -24px 65px rgba(41, 37, 34, 0.12);
}
.difference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.quote {
  background: var(--green);
  color: #fff;
  padding: 70px;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote blockquote {
  font: 500 clamp(2.1rem, 3.7vw, 4rem) / 1.12 "Manrope";
  letter-spacing: -0.05em;
}
.quote blockquote span {
  display: block;
}
.principles {
  background: #fff;
  padding: 35px 70px;
}
.principles article {
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}
.principles article:last-child {
  border: 0;
}
.principles h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 14px 0;
}
.principles p {
  color: var(--muted);
}
.insight-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 65px;
}
.insight-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.7fr;
  gap: 28px;
}
.feature {
  background: var(--cream);
  display: grid;
  grid-template-columns: 0.75fr 1fr;
}
.art {
  background: var(--green);
  color: var(--lime);
  min-height: 430px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.art small {
  letter-spacing: 0.2em;
}
.art i {
  width: 250px;
  height: 250px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  transform: translate(50px, 80px);
  box-shadow:
    0 0 0 42px rgba(232, 111, 50, 0.1),
    0 0 0 84px rgba(232, 111, 50, 0.05);
}
.feature-copy {
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-copy small,
.cards small {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.feature-copy h3 {
  font-size: 2rem;
  font-weight: 500;
  margin: 25px 0;
}
.feature-copy p {
  color: var(--muted);
}
.feature-copy a {
  margin-top: auto;
  border-bottom: 1px solid;
  font-size: 0.84rem;
  font-weight: 600;
}
.cards {
  display: grid;
  gap: 28px;
}
.cards article {
  border: 1px solid var(--line);
  padding: 35px;
  display: flex;
  flex-direction: column;
}
.cards h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 26px 0;
}
.cards a {
  font-size: 0.82rem;
  margin-top: auto;
}
.contact {
  position: relative;
  overflow: visible;
  background: var(--deep);
  color: #fff;
  z-index: 4 !important;
  margin-top: -24px;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -24px 65px rgba(14, 13, 12, 0.2);
}
.contact .journey-orbit-track {
  overflow: visible;
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 110px;
}
.contact h2 {
  color: var(--lime);
}
.contact-lead {
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin: 35px 0 65px;
  font-size: 1.1rem;
}
.meta {
  display: flex;
  gap: 70px;
}
.meta small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 7px;
}
form {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-top-color: rgba(232, 111, 50, 0.72);
  background: linear-gradient(145deg, #292522 0%, #211e1b 100%);
  color: #fff;
  padding: 48px;
  display: grid;
  gap: 26px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}
form::before {
  position: absolute;
  top: 0;
  right: -80px;
  width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime));
  content: "";
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
form label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.67rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: transparent;
  color: #fff;
  padding: 10px 0 12px;
  margin-top: 5px;
  outline: none;
  text-transform: none;
  letter-spacing: 0;
  font: 400 0.95rem "DM Sans";
}
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}
select option {
  background: var(--ink);
  color: #fff;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  box-shadow: 0 0 0 1000px #25211e inset;
}
textarea {
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--lime);
}
#form-status {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.48);
}
footer {
  position: relative;
  z-index: 3;
  background: linear-gradient(
    180deg,
    rgba(14, 13, 12, 0.8) 0,
    rgba(14, 13, 12, 0.94) 150px,
    #0e0d0c 280px
  );
  color: #fff;
  padding: 70px 0 30px;
  backdrop-filter: blur(2px);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 70px;
}
.footer-top > p {
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.43);
}
.footer-bottom div {
  display: flex;
  gap: 28px;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.75, 0.25, 1),
    transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.hero .reveal {
  opacity: 1;
  transform: none;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .section {
    padding: 85px 0;
  }
  .insights {
    position: relative !important;
    top: auto;
    bottom: auto;
  }
  .contact {
    margin-top: -52px;
  }
  .container {
    width: min(var(--max), calc(100% - 34px));
  }
  .utility {
    display: none;
  }
  .nav-wrap {
    height: 72px;
  }
  #nav-toggle {
    display: block;
  }
  nav {
    position: fixed;
    inset: 72px 0 auto;
    background: var(--deep);
    padding: 35px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    transform: translateY(-140%);
    transition: 0.35s;
  }
  nav.open {
    transform: none;
  }
  .nav-cta {
    border: 0;
    padding: 0;
  }
  .hero {
    height: auto;
    min-height: 820px;
    padding-top: 0;
    contain: paint;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 190px;
  }
  .promise {
    display: none;
  }
  .hero h1 {
    font-size: clamp(3.6rem, 15vw, 6rem);
  }
  .orbit {
    --orbit-radius: 195px;
    width: 390px;
    height: 390px;
    right: -165px;
    top: 110px;
    opacity: 0.82;
  }
  .orbit-dot {
    width: 17px;
    height: 17px;
    box-shadow:
      0 0 0 7px rgba(232, 111, 50, 0.18),
      0 0 28px 8px rgba(232, 111, 50, 0.72);
  }
  .orbit-stage {
    padding: 6px 8px;
    font-size: 0.5rem;
  }
  .orbit-stage-understand,
  .orbit-stage-plan {
    transform: translate(-82%, -50%);
  }
  .scroll-cue {
    display: none;
  }
  .journey-orbit {
    --journey-radius: 195px;
    top: 110px;
    width: 390px;
    height: 390px;
  }
  .journey-orbit-dot {
    width: 17px;
    height: 17px;
    box-shadow:
      0 0 0 7px rgba(232, 111, 50, 0.18),
      0 0 28px 8px rgba(232, 111, 50, 0.72);
  }
  .journey-orbit-plan {
    margin-right: -165px;
  }
  .journey-orbit-grow {
    margin-right: -165px;
  }
  .trust {
    overflow: auto;
    justify-content: flex-start;
    gap: 40px;
    white-space: nowrap;
  }
  .split,
  .industry-layout,
  .difference-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .section-head {
    position: static;
    margin-bottom: 64px;
  }
  .services .container {
    display: block;
  }
  .service {
    min-height: 0;
  }
  .service-progress {
    max-width: none;
  }
  .section-head .service-progress {
    display: none;
  }
  .service > div {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sticky {
    position: static;
  }
  .quote {
    min-height: 460px;
    padding: 45px;
  }
  .principles {
    padding: 20px 40px;
  }
  .insight-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    gap: 60px;
  }
}
@media (max-width: 600px) {
  .brand img {
    height: 50px;
  }
  .hero-inner {
    padding-bottom: 45px;
  }
  .lead {
    font-size: 1rem;
  }
  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
  .orbit {
    opacity: 0.9;
  }
  .service {
    grid-template-columns: 42px 1fr 22px;
    padding: 28px 0;
  }
  .service p {
    font-size: 0.9rem;
  }
  .sectors {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .sectors > div {
    min-height: 220px;
    padding: 26px;
  }
  .sectors h3 {
    max-width: 75%;
    margin-top: 56px;
    font-size: 1.4rem;
  }
  .sectors small {
    top: 10px;
    right: 20px;
    font-size: 4rem;
  }
  .sectors p {
    max-width: 90%;
    margin-top: 14px;
  }
  .quote {
    min-height: 400px;
    padding: 34px;
  }
  .principles {
    padding: 15px 30px;
  }
  .feature {
    grid-template-columns: 1fr;
  }
  .art {
    min-height: 260px;
  }
  .feature-copy {
    padding: 34px;
    min-height: 390px;
  }
  .insight-head,
  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
  form {
    padding: 30px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .meta {
    flex-direction: column;
    gap: 35px;
  }
  .footer-top > p {
    text-align: left;
  }
  .footer-bottom div {
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scroll-cue i::after {
    animation: none;
  }
  .journey-orbit {
    opacity: 1;
  }
}
