:root {
  --pine: #1f3d33;
  --pine-dark: #132e27;
  --ink: #102239;
  --ice: #e6eaed;
  --off-white: #f7f6f3;
  --white: #ffffff;
  --red: #b14a3a;
  --red-dark: #963b2e;
  --muted: #607069;
  --line: rgba(31, 61, 51, 0.16);
  --serif: "Montserrat", Arial, sans-serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

svg {
  display: block;
}

.shell {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 132px 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 2px;
}

.skip-link:focus {
  top: 16px;
}

.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;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--pine);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #9eb6ac;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 em,
h2 em,
.brand-quote em {
  font-weight: 300;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 4.5vw, 4.25rem);
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid rgba(16, 34, 57, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo-frame {
  position: relative;
  display: block;
  width: 220px;
  height: 62px;
  overflow: hidden;
  background: var(--white);
  border-radius: 2px;
}

.brand-logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
  margin-right: 44px;
}

.desktop-nav a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.nav-actions {
  gap: 28px;
}

.language-switch {
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 600;
}

.lang-btn {
  padding: 5px 0;
  color: rgba(16, 34, 57, 0.48);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.lang-btn.active {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 56px;
  padding: 0 25px;
  color: var(--white);
  background: var(--pine);
  border: 0;
  border-radius: 1px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.5;
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--off-white);
  border: 1px solid rgba(16, 34, 57, 0.16);
  font-size: 0.76rem;
}

.button-small:hover {
  background: var(--white);
}

.button-red {
  background: var(--red);
}

.button-red:hover {
  background: var(--red-dark);
}

.button-dark {
  background: var(--ink);
}

.button-dark:hover {
  background: #071829;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 192px 0 35px;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to right, black, transparent 60%);
}

.hero-art,
.hero-glow,
.hero-arc {
  position: absolute;
  pointer-events: none;
}

.hero-art {
  inset: 0;
}

.hero-glow {
  right: -100px;
  bottom: -230px;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(44, 99, 77, 0.5), rgba(16, 34, 57, 0) 67%);
}

.hero-arc {
  border: 1px solid rgba(151, 187, 170, 0.14);
  border-radius: 50%;
}

.hero-arc-one {
  right: -150px;
  bottom: -340px;
  width: 980px;
  height: 980px;
}

.hero-arc-two {
  right: -19px;
  bottom: -230px;
  width: 710px;
  height: 710px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  min-height: 510px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  margin-bottom: 34px;
  font-size: clamp(4rem, 5.7vw, 5.6rem);
  line-height: 0.96;
}

.hero h1 em {
  color: #b0c5ba;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 38px;
  color: #cbd4d8;
  font-size: 1.07rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 7px 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 600;
  transition: gap 180ms ease;
}

.text-link:hover {
  gap: 20px;
}

.text-link-light {
  color: #d6dedb;
}

.hero-signature {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 25px;
  width: min(34vw, 430px);
  aspect-ratio: 1;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.18);
}

.hero-signature img,
.brand-icon-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-signature img {
  opacity: 0.28;
}

.hero-footer {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 32px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #8799a2;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-footer-line {
  width: 70px;
  height: 1px;
  background: rgba(255, 255, 255, 0.23);
}

.intro {
  background: var(--off-white);
}

.section-heading,
.approach-top {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 10%;
  align-items: end;
}

.section-heading > p,
.approach-top > p {
  margin-bottom: 7px;
  color: var(--muted);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 78px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 500px;
  padding: 38px 36px 40px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:last-child {
  border-right: 0;
}

.service-card-featured {
  background: #f0efeb;
}

.service-number,
.process-number {
  color: #8b9691;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 58px 0 31px;
  color: var(--pine);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.service-icon svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.4;
}

.service-card h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.2;
}

.service-card p {
  min-height: 82px;
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-card li {
  display: flex;
  gap: 10px;
  color: #40524b;
  font-size: 0.76rem;
}

.service-card li::before {
  content: "—";
  color: var(--red);
}

.industries {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--pine-dark);
}

.industries::after {
  content: "M";
  position: absolute;
  right: -6vw;
  bottom: -29vw;
  color: rgba(255,255,255,.025);
  font-family: var(--serif);
  font-size: 57vw;
  line-height: 1;
}

.industries-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  gap: 11%;
}

.industries h2 {
  margin-bottom: 38px;
}

.industries h2 em {
  color: #a8c2b6;
}

.industries-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin-bottom: 35px;
  color: #b7c6c0;
  line-height: 1.8;
}

.industry-list {
  border-top: 1px solid rgba(255,255,255,.19);
}

.industry-row {
  display: grid;
  grid-template-columns: 55px 1fr auto;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid rgba(255,255,255,.19);
  transition: padding 180ms ease, background 180ms ease;
}

.industry-row:hover {
  padding: 0 18px;
  background: rgba(255,255,255,.035);
}

.industry-index {
  color: #7e9a8d;
  font-size: 0.66rem;
}

.industry-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.industry-arrow {
  color: #9bb2a8;
  font-size: 1.1rem;
}

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

.approach-top {
  margin-bottom: 84px;
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8%;
}

.process-line {
  position: absolute;
  top: 7px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
}

.process-step {
  position: relative;
  padding-top: 38px;
}

.process-dot {
  position: absolute;
  z-index: 2;
  top: 2px;
  left: 0;
  width: 11px;
  height: 11px;
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--red);
}

.process-step h3 {
  margin: 24px 0 12px;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
}

.process-step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.brand-quote {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 44px;
  margin: 105px 0 0;
  padding: 64px 6.5%;
  color: var(--white);
  background: var(--ink);
}

.brand-icon-frame {
  position: relative;
  display: block;
  width: 75px;
  height: 75px;
  overflow: hidden;
  background: var(--white);
  border-radius: 50%;
}

.brand-quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.55rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.brand-quote em {
  color: #a9c0b5;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--ice);
}

.contact-decoration {
  position: absolute;
  top: -320px;
  right: -360px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(31,61,51,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(31,61,51,.025), 0 0 0 180px rgba(31,61,51,.018);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  gap: 11%;
}

.contact h2 {
  margin-bottom: 30px;
}

.contact h2 em {
  color: var(--pine);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 470px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 41px;
  padding-top: 25px;
  border-top: 1px solid rgba(31, 61, 51, 0.15);
}

.availability-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  background: #458c6c;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(69,140,108,.12);
}

.contact-note strong,
.contact-note span {
  display: block;
}

.contact-note strong {
  font-size: 0.85rem;
}

.contact-note span {
  color: var(--muted);
  font-size: 0.76rem;
}

.contact-form {
  padding: 48px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(16,34,57,.07);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field {
  position: relative;
  margin-bottom: 25px;
}

.field-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #2c3d4d;
  font-size: 0.72rem;
  font-weight: 600;
}

.field label span {
  color: #8a949a;
  font-weight: 400;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #cfd5d8;
  border-radius: 0;
  outline: 0;
  transition: border-color 180ms ease;
}

.field textarea {
  min-height: 105px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa2a7;
  font-size: 0.82rem;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--pine);
}

.field.invalid input,
.field.invalid textarea {
  border-color: var(--red);
}

.field-error {
  display: none;
  position: absolute;
  right: 0;
  bottom: -20px;
  color: var(--red);
  font-size: 0.67rem;
}

.field.invalid .field-error {
  display: block;
}

.form-submit {
  width: 100%;
  margin-top: 10px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.turnstile-row {
  min-height: 65px;
  margin: 4px 0 14px;
}

.form-privacy {
  margin: 0 0 18px;
  color: #7a868d;
  font-size: 0.68rem;
  line-height: 1.5;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 -8px;
  color: var(--pine);
  font-size: 0.76rem;
  text-align: center;
}

.form-status.error {
  color: var(--red);
}

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

.site-footer {
  padding: 65px 0 24px;
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid rgba(16, 34, 57, 0.12);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding-bottom: 52px;
}

.brand-footer {
  justify-self: start;
}

.footer-main > p {
  margin: 0;
  color: rgba(16, 34, 57, 0.68);
  font-size: 0.75rem;
  text-align: center;
}

.back-to-top {
  display: inline-flex;
  justify-self: end;
  gap: 14px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(16, 34, 57, 0.35);
  font-size: 0.72rem;
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 23px;
  color: rgba(16, 34, 57, 0.58);
  border-top: 1px solid rgba(16, 34, 57, 0.12);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 240ms;
}

@media (max-width: 1000px) {
  .desktop-nav {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

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

  .hero-signature {
    right: -105px;
    width: 490px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    display: grid;
    grid-template-columns: 70px 1fr;
    min-height: auto;
    padding: 34px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .service-number {
    grid-column: 1 / -1;
  }

  .service-icon {
    grid-row: 2 / span 3;
    margin: 38px 0 0;
  }

  .service-card h3 {
    margin-top: 35px;
  }

  .service-card p {
    min-height: auto;
  }

  .industries-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .industries-copy,
  .contact-copy {
    max-width: 690px;
  }

  .contact-form {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 32px, 1200px);
  }

  .section {
    padding: 90px 0;
  }

  .nav-wrap {
    position: relative;
    z-index: 2;
    min-height: 78px;
  }

  .brand-logo-frame {
    width: 154px;
    height: 46px;
  }

  .desktop-cta {
    display: none;
  }

  .nav-actions {
    gap: 18px;
  }

  .menu-toggle {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    color: inherit;
    background: none;
    border: 0;
  }

  .menu-toggle span:not(.sr-only) {
    position: absolute;
    right: 0;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease, top 180ms ease;
  }

  .menu-toggle span:first-child {
    top: 10px;
  }

  .menu-toggle span:nth-child(2) {
    top: 19px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    top: 15px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    top: 15px;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 100px 32px 40px;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-menu a {
    font-family: var(--serif);
    font-size: 2.6rem;
    line-height: 1.15;
  }

  .hero {
    min-height: 740px;
    padding-top: 145px;
  }

  .hero-grid {
    min-height: 510px;
  }

  .hero h1 {
    margin-bottom: 28px;
    font-size: clamp(3.4rem, 15.5vw, 5.4rem);
    line-height: 0.93;
  }

  .hero-lead {
    max-width: 93%;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-signature {
    right: -135px;
    bottom: 20px;
    width: 370px;
  }

  .hero-signature img {
    opacity: 0.16;
  }

  .hero-footer {
    display: none;
  }

  .section-heading,
  .approach-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .services-grid {
    margin-top: 55px;
  }

  .service-card {
    display: block;
    padding: 30px 24px 36px;
  }

  .service-icon {
    margin: 34px 0 25px;
  }

  .service-card h3 {
    margin-top: 0;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .industry-row {
    grid-template-columns: 38px 1fr auto;
    min-height: 78px;
  }

  .industry-row h3 {
    font-size: 1.4rem;
  }

  .approach-top {
    margin-bottom: 62px;
  }

  .process {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-left: 24px;
  }

  .process-line {
    top: 0;
    bottom: 0;
    left: 5px;
    width: 1px;
    height: auto;
  }

  .process-step {
    padding-top: 0;
  }

  .process-dot {
    top: 4px;
    left: -24px;
  }

  .process-step h3 {
    margin-top: 14px;
  }

  .brand-quote {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 75px;
    padding: 42px 28px;
  }

  .brand-icon-frame {
    width: 50px;
    height: 50px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
    gap: 35px;
  }

  .footer-main > p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
