:root {
  --ink: #102b3a;
  --ink-deep: #071c28;
  --navy: #0b2332;
  --blue: #1f647b;
  --sky: #d9ebed;
  --mist: #f3f6f4;
  --paper: #fcfcf9;
  --sand: #e8e0d2;
  --line: rgba(16, 43, 58, .16);
  --light-line: rgba(255, 255, 255, .28);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }

button, input, textarea { font: inherit; }

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

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.shell {
  width: min(100% - 64px, 1240px);
  margin-inline: auto;
}

.section-pad { padding: 148px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow.light { color: #d5edee; }

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

h1, h2, .display-quote {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
}

h1 {
  max-width: 780px;
  margin: 18px 0 26px;
  color: #fff;
  font-size: clamp(3.8rem, 7.5vw, 7.45rem);
  line-height: .95;
}

.hero-title-mobile { display: none; }

h2 {
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 4.75vw, 5rem);
  line-height: .99;
}

h2 em { color: var(--blue); }

h3 {
  margin-bottom: 13px;
  font-size: 1.1rem;
  letter-spacing: -.01em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .105em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border .2s ease, transform .2s ease;
}

.button span { font-size: 1.35em; line-height: 0; }
.button:hover { transform: translateY(-2px); }

.button-light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button-light:hover {
  border-color: var(--sky);
  background: var(--sky);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  border-color: var(--blue);
  background: var(--blue);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  position: fixed;
  background: rgba(7, 28, 40, .96);
  box-shadow: 0 2px 15px rgba(0, 0, 0, .12);
}

.header-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  line-height: 1;
  text-decoration: none;
}

.brand-mark { width: 35px; height: 35px; fill: currentColor; }
.brand-mark circle { fill: var(--sky); }

.brand-copy { display: grid; gap: 4px; }
.brand-copy strong { font-size: 12px; letter-spacing: .095em; }
.brand-copy small { font-size: 8px; font-weight: 650; letter-spacing: .22em; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.9vw, 43px);
}

.primary-nav > a {
  position: relative;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .115em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: #fff;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.primary-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 39px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .62);
  transition: color .2s ease, background .2s ease;
}

.nav-cta:hover { background: #fff; color: var(--ink); }

.menu-toggle { display: none; }

.hero {
  position: relative;
  display: flex;
  min-height: 790px;
  height: min(100svh, 980px);
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-image, .hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  background: url("../../assets/team-work.jpg") center 46% / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(6, 23, 33, .88) 0%, rgba(7, 28, 40, .58) 44%, rgba(7, 28, 40, .18) 100%);
}

.hero-content { position: relative; z-index: 1; padding-top: 52px; }

.hero-intro {
  max-width: 520px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
  line-height: 1.58;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 39px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.hero-scroll span {
  width: 36px;
  height: 1px;
  background: currentColor;
}

.split-heading {
  display: grid;
  grid-template-columns: 25.6% 1fr;
  gap: 28px;
  margin-bottom: 86px;
}

.split-heading > div { max-width: 775px; }
.split-heading p:not(.eyebrow) { max-width: 515px; margin-bottom: 0; font-size: 17px; color: #49616b; }

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

.service-card {
  min-height: 305px;
  padding: 29px 33px 35px 0;
  border-right: 1px solid var(--line);
}

.service-card + .service-card { padding-left: 33px; }
.service-card:last-child { border-right: 0; }

.service-number {
  display: block;
  margin-bottom: 47px;
  color: #6e7d81;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .15em;
}

.service-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 25px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: square;
  stroke-width: 1.4;
}

.service-card p { max-width: 305px; margin-bottom: 0; color: #536a73; font-size: 14px; }

.image-statement {
  position: relative;
  display: grid;
  min-height: 680px;
  grid-template-columns: 1fr minmax(420px, 50%);
  overflow: hidden;
}

.statement-image {
  background: url("../../assets/workspace.jpg") center 50% / cover no-repeat;
}

.statement-copy {
  display: flex;
  padding: 8vw;
  background: var(--blue);
  color: #fff;
  flex-direction: column;
  justify-content: center;
}

.display-quote {
  max-width: 545px;
  margin: 23px 0 0;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 1.03;
}

.approach { background: var(--mist); }
.approach-heading { margin-bottom: 69px; }
.approach-heading h2 { margin: 17px 0 0; }

.approach-layout {
  display: grid;
  grid-template-columns: 47.5% 1fr;
  gap: clamp(48px, 9vw, 145px);
  align-items: center;
}

.approach-photo { height: 565px; overflow: hidden; }
.approach-photo img { width: 100%; height: 100%; object-fit: cover; }

.process-list { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 26px 0 25px; border-bottom: 1px solid var(--line); }
.process-list span { color: var(--blue); font-size: 10px; font-weight: 750; letter-spacing: .12em; }
.process-list h3 { margin: 0 0 7px; font-size: 19px; }
.process-list p { max-width: 435px; margin: 0; color: #536a73; font-size: 14px; }

.company {
  display: grid;
  min-height: 715px;
  grid-template-columns: 50% 50%;
  padding: 0;
  background: var(--navy);
  color: #fff;
}

.company-image { min-height: 590px; overflow: hidden; }
.company-image img { width: 100%; height: 100%; object-fit: cover; }

.company-copy {
  display: flex;
  max-width: 680px;
  padding: clamp(88px, 9vw, 144px) clamp(42px, 9vw, 135px);
  flex-direction: column;
  justify-content: center;
}

.company h2 { margin-top: 18px; color: #fff; }
.company h2 em { color: #a4dce0; }
.company-copy > p:not(.eyebrow) { max-width: 510px; color: #d6e0e2; font-size: 17px; }

.text-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span { font-size: 16px; }
.text-link.light { color: #fff; }

.compact-heading { max-width: 890px; margin-bottom: 67px; }
.compact-heading h2 { margin: 18px 0 0; }

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 53px;
}

.principle-grid article { padding-top: 22px; border-top: 1px solid var(--line); }
.principle-grid .dot { display: block; width: 8px; height: 8px; margin-bottom: 27px; background: var(--blue); border-radius: 50%; }
.principle-grid h3 { font-size: 19px; }
.principle-grid p { max-width: 320px; margin: 0; color: #536a73; font-size: 14px; }

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

.contact-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  overflow: hidden;
}

.contact-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--sand) 0%, rgba(232, 224, 210, 0) 36%);
  content: "";
}

.contact-image img { width: 100%; height: 100%; object-fit: cover; }

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(350px, .88fr) minmax(395px, 1.12fr);
  gap: clamp(70px, 10vw, 160px);
}

.contact-copy { max-width: 450px; }
.contact-copy h2 { margin: 18px 0 22px; }
.contact-copy > p:not(.eyebrow) { color: #536a73; }

.contact-details {
  display: grid;
  gap: 9px;
  margin-top: 41px;
  font-size: 13px;
  line-height: 1.55;
}

.contact-details a { width: max-content; font-weight: 680; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.contact-details address { margin-top: 9px; color: #536a73; font-style: normal; }

.contact-form {
  display: grid;
  gap: 22px;
  padding: 40px;
  background: rgba(255, 255, 255, .65);
  box-shadow: 0 12px 38px rgba(27, 39, 34, .07);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #4b626b;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 9px 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(16, 43, 58, .4);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: normal;
  line-height: 1.4;
  text-transform: none;
  transition: border .2s ease;
}

.contact-form textarea { resize: vertical; min-height: 94px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); }
.contact-form .button { width: 100%; margin-top: 2px; cursor: pointer; }

.form-note { margin: -4px 0 0; color: #5c6c6c; font-size: 11px; line-height: 1.55; }
.form-note a { text-underline-offset: 3px; }

.site-footer { padding: 47px 0 25px; background: var(--ink-deep); color: #fff; }
.footer-top, .footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-top { padding-bottom: 39px; border-bottom: 1px solid var(--light-line); }
.footer-brand .brand-mark { width: 32px; height: 32px; }
.back-top { display: inline-flex; gap: 10px; align-items: center; color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.back-top span { font-size: 15px; }
.footer-bottom { padding-top: 22px; color: #bec8ca; font-size: 10px; letter-spacing: .03em; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 22px; }
.footer-bottom a { color: #fff; text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Legal pages */
.legal-page { background: var(--mist); }
.legal-header { background: var(--ink-deep); }
.legal-header .header-inner { min-height: 78px; }
.legal-main { min-height: calc(100vh - 275px); padding: 137px 0 120px; }
.legal-wrap { width: min(100% - 64px, 850px); margin-inline: auto; }
.legal-kicker { margin-bottom: 18px; color: var(--blue); font-size: 11px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.legal-main h1 { margin: 0 0 16px; color: var(--ink); font-size: clamp(3.1rem, 6vw, 5.5rem); }
.legal-date { margin-bottom: 57px; color: #60747a; font-size: 13px; }
.legal-content { color: #405962; font-size: 15px; }
.legal-content h2 { margin: 47px 0 15px; color: var(--ink); font-family: var(--sans); font-size: 20px; font-weight: 720; letter-spacing: -.015em; line-height: 1.3; }
.legal-content p, .legal-content li { max-width: 760px; }
.legal-content ul { padding-left: 21px; }
.legal-content a { color: var(--blue); font-weight: 650; }

@media (max-width: 900px) {
  .section-pad { padding: 100px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 57px; }
  .image-statement { min-height: 560px; grid-template-columns: 1fr 45%; }
  .statement-copy { padding: 50px; }
  .approach-layout { grid-template-columns: 42% 1fr; gap: 50px; }
  .approach-photo { height: 480px; }
  .company-copy { padding: 82px 50px; }
  .company { min-height: 635px; }
  .company-image { min-height: 530px; }
  .contact-grid { gap: 48px; }
  .contact-form { padding: 31px; }
  .contact-image { width: 38%; opacity: .56; }
}

@media (max-width: 700px) {
  .shell { width: min(100% - 40px, 1240px); }
  .section-pad { padding: 80px 0; }
  h2 { font-size: clamp(2.65rem, 11vw, 4.2rem); }
  .header-inner { min-height: 73px; }
  .brand-mark { width: 30px; height: 30px; }
  .brand-copy strong { font-size: 10px; }
  .brand-copy small { font-size: 7px; }
  .menu-toggle {
    position: relative;
    z-index: 12;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 12px 8px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    place-content: center;
    gap: 6px;
  }
  .menu-toggle i { display: block; width: 25px; height: 1px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-3.5px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    z-index: 11;
    inset: 0;
    display: flex;
    padding: 108px 30px 45px;
    background: var(--ink-deep);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease;
  }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .primary-nav > a { font-size: 18px; letter-spacing: .045em; }
  .nav-cta { margin-top: 15px; min-height: 48px; padding: 0 17px; font-size: 11px !important; letter-spacing: .1em !important; }
  .hero { min-height: 680px; height: 100svh; }
  .hero-image { background-position: 58% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(6, 23, 33, .84), rgba(7, 28, 40, .45)); }
  .hero-content { padding-top: 35px; }
  h1 { margin: 16px 0 24px; font-size: clamp(3.1rem, 14vw, 4rem); }
  .hero-title-desktop { display: none; }
  .hero-title-mobile { display: inline; }
  .hero-intro { max-width: 380px; font-size: 15px; }
  .hero-scroll { display: none; }
  .service-grid, .principle-grid { grid-template-columns: 1fr; }
  .service-grid { border-bottom: 1px solid var(--line); }
  .service-card, .service-card + .service-card { min-height: 0; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .service-number { margin-bottom: 28px; }
  .image-statement { display: block; min-height: 0; }
  .statement-image { height: 385px; }
  .statement-copy { min-height: 380px; padding: 70px 20px; }
  .approach-heading { margin-bottom: 45px; }
  .approach-layout { grid-template-columns: 1fr; gap: 39px; }
  .approach-photo { height: 395px; }
  .company { display: flex; min-height: 0; flex-direction: column; }
  .company-image { min-height: 380px; height: 380px; }
  .company-copy { padding: 76px 20px; }
  .compact-heading { margin-bottom: 46px; }
  .principle-grid { gap: 0; }
  .principle-grid article { padding: 25px 0; }
  .principle-grid .dot { margin-bottom: 18px; }
  .contact-image { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-form { padding: 27px 21px; }
  .field-row { grid-template-columns: 1fr; gap: 22px; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-top { gap: 27px; }
  .footer-bottom { gap: 14px; }
  .legal-main { padding: 95px 0 80px; }
  .legal-wrap { width: min(100% - 40px, 850px); }
  .legal-date { margin-bottom: 42px; }
}

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