:root {
  --navy: #101828;
  --navy-2: #1f2a44;
  --burgundy: #6f1d1b;
  --gold: #8a6f3d;
  --ivory: #ffffff;
  --paper: #ffffff;
  --soft: #f6f5f2;
  --ink: #202124;
  --muted: #5f6368;
  --line: rgba(32, 33, 36, 0.16);
  --shadow: 0 12px 32px rgba(16, 24, 40, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family:
    Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  padding: 14px clamp(18px, 4vw, 54px);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(20, 33, 61, 0.14);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(32, 33, 36, 0.74);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--navy);
}

.menu-button {
  display: none;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 0 14px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 76vh;
  overflow: hidden;
  background: var(--navy);
  color: white;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(0.72) grayscale(0.12);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 24, 40, 0.98), rgba(16, 24, 40, 0.82) 50%, rgba(16, 24, 40, 0.38)),
    linear-gradient(0deg, rgba(16, 24, 40, 0.88), transparent 58%);
}

.hero-content {
  position: relative;
  align-self: end;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 108px clamp(20px, 5vw, 56px) 74px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
}

h1 {
  max-width: 940px;
  color: white;
  font-size: clamp(42px, 6.3vw, 78px);
  font-weight: 600;
  font-family: "Times New Roman", Times, Georgia, serif;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 600;
  font-family: "Times New Roman", Times, Georgia, serif;
}

h3 {
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
}

.hero-copy {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(17px, 1.7vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 6px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 700;
}

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

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.identity-strip {
  display: grid;
  grid-template-columns: 0.78fr 1fr 1.22fr;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.identity-strip div {
  min-height: 128px;
  border-right: 1px solid var(--line);
  padding: 26px clamp(20px, 4vw, 42px);
}

.identity-strip div:last-child {
  border-right: 0;
}

.identity-strip span,
.identity-strip strong {
  display: block;
}

.identity-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.identity-strip strong {
  margin-top: 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

.section {
  border-bottom: 1px solid rgba(32, 33, 36, 0.08);
  padding: 88px clamp(20px, 5vw, 56px);
}

.split,
.data-section,
.focus-section,
.contact {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: start;
}

.split p,
.section-heading p,
.data-copy p,
.prose-block p,
.brand-card p,
.contact p {
  color: rgba(32, 33, 36, 0.72);
  font-size: 18px;
}

.prose-block {
  display: grid;
  gap: 18px;
}

.prose-block p {
  margin: 0;
}

.focus-section,
.technology-section {
  display: block;
}

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

.focus-grid article {
  min-height: 310px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 30px;
}

.focus-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.focus-grid p,
.approach-flow p {
  color: rgba(32, 33, 36, 0.68);
}

.technology-section {
  background: var(--soft);
  color: var(--ink);
}

.technology-section .section-heading,
.technology-section .approach-flow {
  width: min(1160px, 100%);
}

.technology-section h2,
.technology-section h3 {
  color: var(--navy);
}

.technology-section .eyebrow {
  color: var(--burgundy);
}

.technology-section .section-heading p,
.approach-flow p {
  color: rgba(32, 33, 36, 0.72);
}

.section-heading {
  width: min(880px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.approach-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1160px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.approach-flow article {
  min-height: 280px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 22px;
}

.approach-flow article::before {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 28px;
  background: var(--gold);
  content: "";
}

.approach-flow span {
  display: block;
  margin-bottom: 16px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.data-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.metric-board {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.metric-board div {
  display: grid;
  gap: 6px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 22px;
}

.metric-board span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.metric-board strong {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.36;
}

.brand-position {
  background: var(--soft);
}

.brand-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(26px, 5vw, 54px);
  align-items: center;
  width: min(980px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow);
}

.brand-card img {
  width: 150px;
  border-radius: 10px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 38px;
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy);
  font-weight: 600;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-card a {
  color: var(--navy-2);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 32px clamp(20px, 5vw, 56px);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span,
.site-footer a {
  color: rgba(32, 33, 36, 0.66);
}

.footer-links {
  display: grid;
  gap: 6px;
  text-align: right;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-nav {
  justify-content: flex-end;
}

.legal-hero {
  background: var(--soft);
  color: var(--ink);
  padding: 96px clamp(20px, 5vw, 56px) 70px;
}

.legal-hero h1,
.legal-hero p {
  width: min(980px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.legal-hero p:last-child {
  color: rgba(32, 33, 36, 0.72);
  font-size: 18px;
}

.legal-content {
  display: grid;
  gap: 34px;
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 90px;
}

.legal-content article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}

.legal-content article:last-child {
  border-bottom: 0;
}

.legal-content h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.legal-content p {
  color: rgba(32, 33, 36, 0.74);
  font-size: 17px;
}

.legal-content a {
  color: var(--navy-2);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1020px) {
  .focus-grid,
  .approach-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .approach-flow article {
    min-height: 220px;
  }
}

@media (max-width: 860px) {
  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    display: none;
    width: min(280px, calc(100vw - 36px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 6px;
    padding: 11px 12px;
  }

  .identity-strip,
  .split,
  .data-section,
  .focus-grid,
  .approach-flow,
  .contact {
    grid-template-columns: 1fr;
  }

  .identity-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .identity-strip div:last-child {
    border-bottom: 0;
  }
}

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

  .brand strong {
    max-width: 180px;
  }

  .hero {
    min-height: 740px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(20, 33, 61, 0.96), rgba(20, 33, 61, 0.68)),
      linear-gradient(0deg, rgba(20, 33, 61, 0.9), transparent 62%);
  }

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

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

  .focus-grid,
  .approach-flow,
  .brand-card {
    grid-template-columns: 1fr;
  }

  .brand-card img {
    width: 112px;
  }

  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

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

  .footer-links {
    text-align: left;
  }
}
