:root {
  --navy: #081d3a;
  --navy-2: #102f55;
  --red: #b22234;
  --red-2: #d52b36;
  --ink: #111827;
  --muted: #5d6674;
  --steel: #6b7280;
  --cream: #f5f3ef;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: rgba(8, 29, 58, 0.16);
  --shadow: 0 22px 60px rgba(8, 29, 58, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, Avenir, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(8, 29, 58, 0.1);
  backdrop-filter: blur(16px);
}

.brand-link img {
  width: 154px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a {
  position: relative;
  white-space: nowrap;
}

nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-action {
  color: var(--red);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
}

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

.hero-bg {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.86) 34%, rgba(255, 253, 248, 0.26) 66%, rgba(8, 29, 58, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 29, 58, 0.24), transparent 42%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  padding: clamp(150px, 18vw, 230px) 0 clamp(52px, 8vw, 92px);
  margin-left: clamp(20px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.02;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 20px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.3rem, 4.2vw, 4.7rem);
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: #203044;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 2px solid transparent;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 24px rgba(178, 34, 52, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #94192a;
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(8, 29, 58, 0.24);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--red);
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.mission-band,
.values,
.work-band,
.statement,
.partners,
.connect {
  padding: clamp(68px, 9vw, 116px) 0;
}

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

.mission-band h2,
.mission-band p {
  color: var(--white);
}

.mission-band .eyebrow {
  color: #f5b1b8;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: start;
}

.lead-stack {
  border-left: 3px solid var(--red-2);
  padding-left: clamp(22px, 4vw, 42px);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  font-weight: 650;
}

.lead-stack p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

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

.value-grid article,
.partner-grid article {
  min-height: 246px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(8, 29, 58, 0.08);
}

.value-grid article:nth-child(even) .icon-mark {
  color: var(--red);
}

.icon-mark {
  display: block;
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--navy);
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-mark::before,
.icon-mark::after {
  position: absolute;
  content: "";
}

.icon-people::before,
.icon-people::after {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 50%;
  top: 10px;
}

.icon-people::before {
  left: 9px;
}

.icon-people::after {
  right: 9px;
}

.icon-growth::before {
  left: 13px;
  bottom: 12px;
  width: 19px;
  height: 19px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(0deg);
}

.icon-growth::after {
  left: 13px;
  bottom: 14px;
  width: 24px;
  height: 3px;
  background: currentColor;
  transform: rotate(-35deg);
  transform-origin: left center;
}

.icon-collab::before {
  inset: 11px;
  border: 3px solid currentColor;
  transform: rotate(45deg);
}

.icon-impact::before {
  left: 50%;
  top: 8px;
  width: 3px;
  height: 32px;
  background: currentColor;
  transform: translateX(-50%);
}

.icon-impact::after {
  left: 8px;
  top: 50%;
  width: 32px;
  height: 3px;
  background: currentColor;
  transform: translateY(-50%);
}

.value-grid p,
.partner-grid p,
.process p,
.statement-copy p,
.connect p {
  color: var(--muted);
}

.work-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.work-bg,
.work-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.work-bg {
  object-fit: cover;
  object-position: center;
}

.work-shade {
  background: linear-gradient(90deg, rgba(8, 29, 58, 0.96) 0%, rgba(8, 29, 58, 0.88) 46%, rgba(8, 29, 58, 0.58) 100%);
}

.work-band .section-inner {
  position: relative;
}

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

.work-band .eyebrow {
  color: #ffbdc4;
}

.work-intro {
  max-width: 760px;
  margin-bottom: 42px;
}

.work-intro p:last-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  font-weight: 620;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.process div {
  min-height: 254px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.process span {
  display: block;
  margin-bottom: 40px;
  color: #ffbdc4;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.process p {
  color: rgba(255, 255, 255, 0.78);
}

.statement {
  background: var(--cream);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.quote-panel {
  padding: clamp(30px, 5vw, 56px);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.quote-panel p,
.quote-panel strong {
  display: block;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 1.03;
  text-transform: uppercase;
}

.quote-panel strong {
  color: var(--red-2);
}

.partner-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-grid article {
  min-height: 230px;
  border-top: 5px solid var(--red);
}

.connect {
  background: var(--navy);
}

.connect h2,
.connect p {
  color: var(--white);
}

.connect .eyebrow {
  color: #ffbdc4;
}

.connect-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 1fr);
  gap: clamp(36px, 8vw, 92px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(8, 29, 58, 0.2);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: #fafafa;
  font: inherit;
  letter-spacing: 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(178, 34, 52, 0.22);
  border-color: var(--red);
  background: var(--white);
}

footer {
  padding: 30px 0;
  background: #06152a;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-inner img {
  width: 132px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 10px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.9) 48%, rgba(8, 29, 58, 0.24) 100%);
  }

  .hero-content {
    width: min(720px, calc(100% - 40px));
    margin: 0 auto;
  }

  .two-column,
  .statement-grid,
  .connect-grid {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .process,
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    display: grid;
    gap: 12px;
    min-height: auto;
  }

  .brand-link img {
    width: 126px;
  }

  nav {
    justify-content: flex-start;
    gap: 12px 18px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: 820px;
  }

  .hero-bg {
    object-position: 63% center;
  }

  .hero-content {
    padding-top: 184px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.24rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .value-grid,
  .process,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .value-grid article,
  .partner-grid article,
  .process div {
    min-height: auto;
  }

  .lead-stack {
    padding-left: 20px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
