@font-face {
  font-family: "Oswald";
  src: url("/assets/fonts/oswald-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 200 700;
}

@font-face {
  font-family: "Varela Round";
  src: url("/assets/fonts/varela-round-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --navy: #113456;
  --navy-deep: #071d32;
  --navy-soft: #214d74;
  --blue-gray: #dee6f0;
  --mist: #f4f7fa;
  --white: #ffffff;
  --ink: #102131;
  --muted: #5d6e7e;
  --line: rgba(17, 52, 86, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 28px 80px rgba(7, 29, 50, 0.16);
  --shadow-soft: 0 18px 45px rgba(7, 29, 50, 0.1);
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "Varela Round", Arial, sans-serif;
  --gutter: clamp(20px, 5vw, 64px);
  --section: clamp(92px, 10vw, 148px);
  --header-height: 94px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  object-fit: cover;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(33, 77, 116, 0.48);
  outline-offset: 4px;
}

::selection {
  background: var(--navy);
  color: var(--white);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 12px 16px;
  background: var(--navy);
  color: var(--white);
  transform: translateY(-150%);
}

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

.container {
  width: min(100%, 1408px);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section);
}

.section-tight {
  padding-block: clamp(72px, 8vw, 112px);
}

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

.band-blue-gray {
  background: var(--blue-gray);
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.band-navy .eyebrow,
.band-deep .eyebrow,
.image-cta .eyebrow,
.page-hero.has-image .eyebrow {
  color: var(--blue-gray);
}

h1,
h2,
h3,
.display-title,
.section-title,
.page-title {
  margin-top: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.display-title {
  max-width: 1040px;
  margin-bottom: 30px;
  font-size: clamp(62px, 8.5vw, 128px);
  line-height: 0.88;
}

.display-title .outline,
.page-title .outline,
.section-title .outline {
  display: block;
  margin-top: 0.34em;
  padding-bottom: 0.06em;
  color: transparent;
  -webkit-text-stroke: 2px var(--navy);
}

.section-title {
  max-width: 940px;
  margin-bottom: 28px;
  font-size: clamp(46px, 5.8vw, 82px);
  line-height: 0.94;
}

.section-title .outline {
  -webkit-text-stroke-width: 1.5px;
}

.band-navy .section-title .outline,
.band-deep .section-title .outline,
.image-cta .section-title .outline,
.page-hero.has-image .page-title .outline {
  -webkit-text-stroke-color: var(--blue-gray);
}

.section-lead,
.page-lead {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.75;
}

.band-navy .section-lead,
.band-deep .section-lead,
.page-hero.has-image .page-lead {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: clamp(36px, 7vw, 100px);
  margin-bottom: clamp(52px, 7vw, 92px);
}

.section-heading .section-title {
  margin-bottom: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transition: background 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 36px rgba(7, 29, 50, 0.09);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(230px, 100%);
  height: 72px;
}

.brand img {
  width: 100%;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  justify-self: center;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 38px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  padding-block: 12px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--navy);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 220ms ease, background 220ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before { transform: translateY(-7px); }
.nav-toggle-lines::after { transform: translateY(7px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after { transform: rotate(-45deg); }

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 58px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.button {
  position: relative;
  overflow: hidden;
  padding: 16px 20px 16px 24px;
  border: 1px solid var(--navy);
  border-radius: 2px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(17, 52, 86, 0.18);
  transition: color 240ms ease, background 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.button::before {
  position: absolute;
  inset: -100% auto -100% -45%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  content: "";
  transform: skewX(-18deg) translateX(-240%);
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(17, 52, 86, 0.24);
}

.button:hover::before {
  transform: skewX(-18deg) translateX(620%);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.button-ghost {
  border-color: rgba(17, 52, 86, 0.3);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  box-shadow: none;
}

.button-arrow {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 16px;
  transition: transform 240ms ease;
}

.button:hover .button-arrow,
.text-link:hover .button-arrow {
  transform: translate(2px, -2px);
}

.text-link {
  position: relative;
  min-height: 44px;
  justify-content: flex-start;
  padding: 0 0 4px;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - var(--header-height) - 80px));
  overflow: hidden;
  display: grid;
  align-items: end;
  background: var(--blue-gray);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.93) 34%, rgba(255, 255, 255, 0.44) 56%, rgba(255, 255, 255, 0.04) 84%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.58) 0%, transparent 38%);
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-position: center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(104px, 12vw, 168px) clamp(80px, 9vw, 122px);
}

.hero-copy {
  max-width: 1010px;
}

.hero-lead {
  max-width: 720px;
  margin: 0;
  color: #415464;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.hero-status {
  position: absolute;
  right: var(--gutter);
  bottom: 30px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(7, 29, 50, 0.84);
  color: var(--white);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue-gray);
  box-shadow: 0 0 0 6px rgba(222, 230, 240, 0.12);
}

.proof-rail {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
}

.proof-item {
  min-height: 132px;
  padding: 28px 30px;
  border-left: 1px solid var(--line);
}

.proof-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-item small,
.project-meta,
.card-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-soft);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.proof-item strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 27px);
  letter-spacing: 0;
  line-height: 1.12;
  text-transform: uppercase;
}

.split-story {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
}

.split-story.reverse {
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
}

.split-story.reverse .story-media {
  order: 2;
}

.story-media {
  position: relative;
  min-height: clamp(500px, 56vw, 720px);
  overflow: hidden;
  border-radius: 4px;
  background: var(--blue-gray);
  box-shadow: var(--shadow);
}

.story-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.story-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  content: "";
  pointer-events: none;
}

.story-copy .section-title {
  margin-bottom: 28px;
}

.story-copy p:not(.eyebrow) {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.band-navy .story-copy p:not(.eyebrow),
.band-deep .story-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.story-copy .text-link {
  margin-top: 14px;
}

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

.focus-card,
.principle {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.focus-card::before,
.principle::before,
.project-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(420px circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(33, 77, 116, 0.12), transparent 64%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.focus-card:hover,
.principle:hover {
  z-index: 1;
  border-color: rgba(17, 52, 86, 0.28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.focus-card:hover::before,
.principle:hover::before,
.project-card:hover::before {
  opacity: 1;
}

.card-number {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: clamp(70px, 8vw, 110px);
  color: var(--navy-soft);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.focus-card h3,
.principle h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.02;
}

.focus-card p,
.principle p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.projects-showcase {
  position: relative;
  overflow: hidden;
}

.projects-showcase::after,
.image-cta::after {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -18%;
  width: 11%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  content: "";
  pointer-events: none;
  transform: rotate(14deg) translateX(-180%);
}

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

.project-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 300ms ease, border-color 300ms ease;
}

.project-card:hover {
  z-index: 1;
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-6px);
}

.project-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.project-card-media img {
  width: 100%;
  height: 100%;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-card-media img {
  transform: scale(1.035);
}

.project-card-body {
  position: relative;
  z-index: 1;
  min-height: 240px;
  padding: 30px;
}

.project-card .project-meta {
  color: var(--blue-gray);
}

.project-card h3 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.04;
}

.project-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.section-footer-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 44px;
}

.band-navy .text-link,
.band-deep .text-link {
  color: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 64px;
  border-top: 1px solid var(--line-light);
}

.step {
  position: relative;
  min-height: 340px;
  padding: 34px 32px 38px;
  border-left: 1px solid var(--line-light);
}

.step:first-child {
  padding-left: 0;
  border-left: 0;
}

.step-number {
  display: block;
  margin-bottom: 94px;
  color: var(--blue-gray);
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
  line-height: 1;
  opacity: 0.36;
  transition: opacity 500ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.step h3 {
  margin: 0 0 16px;
  font-size: 27px;
  line-height: 1.05;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.step.is-visible .step-number {
  opacity: 0.72;
  transform: translateY(-8px);
}

.page-hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: grid;
  align-items: end;
  background: var(--blue-gray);
}

.page-hero.has-image {
  min-height: min(720px, 78svh);
  background: var(--navy-deep);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero.has-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 29, 50, 0.96) 0%, rgba(7, 29, 50, 0.78) 47%, rgba(7, 29, 50, 0.12) 100%);
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(112px, 12vw, 164px) clamp(76px, 8vw, 110px);
}

.page-hero.has-image .page-hero-inner {
  color: var(--white);
}

.page-title {
  max-width: 1120px;
  margin-bottom: 32px;
  font-size: clamp(60px, 8vw, 116px);
  line-height: 0.9;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 10vw, 150px);
}

.intro-grid h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.96;
}

.intro-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.project-list {
  border-top: 1px solid var(--line);
}

.project-row {
  display: grid;
  grid-template-columns: 110px minmax(320px, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding-block: clamp(54px, 6vw, 82px);
  border-bottom: 1px solid var(--line);
}

.project-index {
  align-self: start;
  color: var(--navy-soft);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.project-row-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--blue-gray);
}

.project-row-media img {
  width: 100%;
  height: 100%;
}

.project-row-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.98;
}

.project-row-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.project-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-facts li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--navy-soft);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.check-list {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 20px 0 20px 38px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  top: 22px;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  content: "\2713";
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
}

.image-cta {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: var(--white);
}

.image-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.image-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 29, 50, 0.96) 0%, rgba(7, 29, 50, 0.76) 52%, rgba(7, 29, 50, 0.2) 100%);
}

.image-cta-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(100px, 12vw, 156px);
}

.image-cta .section-title {
  max-width: 920px;
}

.image-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(52px, 9vw, 130px);
}

.contact-intro h2 {
  margin: 0 0 24px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.96;
}

.contact-intro > p {
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 18px;
}

.contact-detail {
  padding-block: 22px;
  border-top: 1px solid var(--line);
}

.contact-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-detail small {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-soft);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail span {
  font-size: 17px;
}

.contact-form {
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--mist);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 52, 86, 0.24);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(17, 52, 86, 0.08);
  outline: 0;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.privacy-copy {
  max-width: 850px;
}

.privacy-copy h2 {
  margin: 54px 0 16px;
  font-size: 34px;
}

.privacy-copy p,
.privacy-copy li {
  color: var(--muted);
  font-size: 17px;
}

.site-footer {
  background: var(--navy-deep);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) repeat(2, minmax(180px, 0.55fr));
  gap: clamp(44px, 8vw, 110px);
  padding-block: clamp(72px, 8vw, 110px);
}

.footer-brand img {
  width: 260px;
  max-height: 136px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 470px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.footer-column h2 {
  margin: 0 0 22px;
  color: var(--blue-gray);
  font-size: 15px;
  letter-spacing: 0.1em;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li + li {
  margin-top: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.footer-disclaimer {
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.7;
}

.footer-disclaimer p {
  max-width: 1120px;
  margin: 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--navy-soft);
  transform: scaleX(0);
  transform-origin: left;
}

.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(34px);
  transition:
    opacity 820ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 820ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--motion-index, 0) * 85ms);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.story-media.reveal,
.project-row-media.reveal {
  clip-path: inset(0 100% 0 0);
  filter: none;
  transform: none;
  transition: clip-path 1050ms cubic-bezier(0.16, 1, 0.3, 1);
}

.story-media.reveal.is-visible,
.project-row-media.reveal.is-visible {
  clip-path: inset(0);
}

.motion-highlight {
  position: relative;
}

.motion-highlight::after {
  position: absolute;
  right: 0;
  bottom: 0.03em;
  left: 0;
  height: 0.06em;
  background: var(--blue-gray);
  content: "";
  opacity: 0.8;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1) 160ms;
}

.motion-highlight.is-highlighted::after {
  transform: scaleX(1);
}

.motion-parallax {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.025);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .focus-card,
  .project-card,
  .principle {
    will-change: transform;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .hero-copy.is-visible > .eyebrow,
  .motion-ready .page-hero-inner.is-visible > .eyebrow {
    animation: hero-rise 720ms cubic-bezier(0.16, 1, 0.3, 1) 80ms both;
  }

  .motion-ready .hero-copy.is-visible > .display-title,
  .motion-ready .page-hero-inner.is-visible > .page-title {
    animation: hero-title-rise 900ms cubic-bezier(0.16, 1, 0.3, 1) 170ms both;
  }

  .motion-ready .hero-copy.is-visible > .hero-lead,
  .motion-ready .page-hero-inner.is-visible > .page-lead {
    animation: hero-rise 820ms cubic-bezier(0.16, 1, 0.3, 1) 290ms both;
  }

  .motion-ready .hero-copy.is-visible > .hero-actions {
    animation: hero-rise 820ms cubic-bezier(0.16, 1, 0.3, 1) 390ms both;
  }

  .hero-status .status-dot {
    animation: status-pulse 2.2s ease-in-out infinite;
  }

  .projects-showcase.is-in-view::after,
  .image-cta.is-in-view::after {
    animation: light-scan 1200ms ease-out 180ms both;
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes hero-title-rise {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(38px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(222, 230, 240, 0.12); }
  50% { box-shadow: 0 0 0 10px rgba(222, 230, 240, 0.03); }
}

@keyframes light-scan {
  from { transform: rotate(14deg) translateX(-180%); }
  to { transform: rotate(14deg) translateX(1200%); }
}

@media (min-width: 681px) and (max-height: 980px),
       (min-width: 681px) and (min-aspect-ratio: 16 / 9) {
  .hero,
  .page-hero,
  .page-hero.has-image {
    align-items: start;
  }

  .hero-inner,
  .page-hero-inner {
    padding-block: 50px 64px;
  }

  .display-title,
  .page-title {
    margin-bottom: 22px;
    font-size: clamp(60px, min(6vw, 11vh), 100px);
    line-height: 0.94;
  }

  .hero-actions {
    margin-top: 26px;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: minmax(175px, 220px) minmax(0, 1fr) auto;
    gap: 22px;
  }

  .site-nav ul {
    gap: 20px;
  }

  .header-action {
    display: none;
  }

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

  .proof-item:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .project-row {
    grid-template-columns: 70px minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 82px;
  }

  .header-inner {
    grid-template-columns: minmax(170px, 220px) auto;
  }

  .brand {
    height: 64px;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    width: 100%;
    height: calc(100svh - var(--header-height));
    justify-self: stretch;
    padding: 30px var(--gutter) 46px;
    background: rgba(255, 255, 255, 0.99);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav ul {
    display: grid;
    align-content: start;
    gap: 0;
  }

  .site-nav li {
    border-bottom: 1px solid var(--line);
  }

  .site-nav a {
    width: 100%;
    padding-block: 22px;
    font-size: 24px;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.94) 44%, rgba(255, 255, 255, 0.7) 76%, rgba(255, 255, 255, 0.34) 100%),
      linear-gradient(0deg, rgba(255, 255, 255, 0.82) 0%, transparent 68%);
  }

  .section-heading,
  .split-story,
  .split-story.reverse,
  .intro-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-story.reverse .story-media {
    order: 0;
  }

  .focus-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .focus-card,
  .principle {
    min-height: 300px;
  }

  .card-number {
    margin-bottom: 64px;
  }

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

  .project-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1.15fr);
  }

  .project-card-media {
    aspect-ratio: auto;
    min-height: 340px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .step:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .step:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }

  .project-row {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .project-row-media,
  .project-row-copy {
    grid-column: 2;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 20px;
    --section: 86px;
  }

  .display-title {
    font-size: clamp(52px, 14vw, 76px);
    line-height: 0.92;
  }

  .display-title .outline,
  .page-title .outline,
  .section-title .outline {
    -webkit-text-stroke-width: 1.3px;
  }

  .section-title {
    font-size: clamp(42px, 12vw, 58px);
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 48px;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .hero {
    min-height: max(690px, calc(100svh - var(--header-height) - 70px));
    align-items: end;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.93) 57%, rgba(255, 255, 255, 0.35) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.64), transparent);
  }

  .hero-inner {
    padding-block: 70px 34px;
  }

  .hero-actions,
  .form-actions {
    display: grid;
    width: 100%;
    gap: 14px;
  }

  .hero-status {
    display: none;
  }

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

  .proof-item,
  .proof-item:nth-child(3),
  .proof-item:nth-child(4) {
    min-height: 104px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-item:first-child {
    border-top: 0;
  }

  .story-media {
    min-height: 420px;
  }

  .project-card {
    display: block;
  }

  .project-card-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .project-card-body {
    min-height: 220px;
  }

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

  .step,
  .step:first-child,
  .step:nth-child(3),
  .step:nth-child(4) {
    min-height: 0;
    padding: 34px 0 38px;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .step:first-child {
    border-top: 0;
  }

  .step-number {
    margin-bottom: 34px;
  }

  .page-hero,
  .page-hero.has-image {
    min-height: 620px;
    align-items: end;
  }

  .page-hero-inner {
    padding-block: 118px 58px;
  }

  .page-title {
    font-size: clamp(52px, 14vw, 74px);
    line-height: 0.92;
  }

  .page-hero.has-image::after {
    background: linear-gradient(0deg, rgba(7, 29, 50, 0.96) 0%, rgba(7, 29, 50, 0.72) 72%, rgba(7, 29, 50, 0.32) 100%);
  }

  .intro-grid {
    gap: 30px;
  }

  .project-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .project-row-media,
  .project-row-copy {
    grid-column: auto;
  }

  .project-index {
    margin-bottom: 4px;
  }

  .image-cta {
    min-height: 640px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

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

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

  .reveal,
  .reveal.is-visible,
  .story-media.reveal,
  .story-media.reveal.is-visible,
  .project-row-media.reveal,
  .project-row-media.reveal.is-visible {
    opacity: 1;
    filter: none;
    clip-path: none;
    transform: none;
  }

  .scroll-progress {
    display: none;
  }

  .motion-parallax {
    transform: none !important;
  }
}
