:root {
  color-scheme: light;
  --ink: #071526;
  --navy: #0b2442;
  --blue: #123c69;
  --steel: #5d6d7e;
  --muted: #6f7885;
  --line: #d9dedf;
  --paper: #f8f7f2;
  --white: #ffffff;
  --gold: #b8873f;
  --gold-dark: #8d642d;
  --green: #335c45;
  --red: #a33e32;
  --shadow: 0 20px 45px rgba(7, 21, 38, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
}

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

a {
  color: inherit;
}

p {
  margin: 0;
  color: #394656;
  font-size: 1.03rem;
  line-height: 1.72;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: 4.35rem;
  line-height: 0.98;
}

h2 {
  font-size: 2.55rem;
  line-height: 1.08;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 10px 5vw;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 21, 38, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 240px;
  text-decoration: none;
}

.brand img {
  width: 200px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
}

.nav a {
  position: relative;
  text-decoration: none;
}

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

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

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

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

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 21, 38, 0.93), rgba(7, 21, 38, 0.72) 42%, rgba(7, 21, 38, 0.18)),
    linear-gradient(0deg, rgba(7, 21, 38, 0.6), rgba(7, 21, 38, 0.08) 48%);
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 86px 5vw 54px;
}

.hero h1,
.hero .hero-copy {
  color: var(--white);
}

.hero-copy {
  max-width: 680px;
  margin-top: 26px;
  font-size: 1.22rem;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
}

.button.primary:hover {
  background: #c99648;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

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

.metric {
  min-height: 150px;
  padding: 34px 5vw;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.metric:first-child {
  border-left: 0;
}

.metric strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.65rem;
  font-weight: 500;
  line-height: 1;
}

.metric span {
  display: block;
  max-width: 230px;
  margin-top: 10px;
  color: #d9e0e5;
  line-height: 1.5;
}

.section,
.split-section,
.feature-band,
.spotlight,
.page-hero,
.timeline-section,
.image-led,
.form-section,
.contact-layout,
.notice,
.partner-strip {
  padding-right: 5vw;
  padding-left: 5vw;
}

.section {
  padding-top: 92px;
  padding-bottom: 96px;
}

.section.alt {
  background: #f0eee6;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 64px;
  padding-top: 90px;
  padding-bottom: 92px;
  background: var(--white);
}

.section-copy {
  display: grid;
  gap: 24px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 54px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
  background: #eef2ef;
}

.feature-band.reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  background: var(--white);
}

.feature-band.reverse .image-panel {
  order: 2;
}

.feature-copy {
  display: grid;
  gap: 22px;
}

.image-panel {
  min-height: 420px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

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

.text-link {
  display: inline-block;
  width: fit-content;
  margin-top: 4px;
  border-bottom: 2px solid var(--gold);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.sector-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(7, 21, 38, 0.12);
  border-radius: 6px;
  background: var(--white);
}

.card-kicker,
.sector-card span {
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.spotlight {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 96px;
  background: var(--navy);
}

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

.spotlight-copy {
  display: grid;
  gap: 22px;
}

.spotlight-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.spotlight-list span {
  min-height: 76px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: #edf3f7;
  font-weight: 800;
}

.page-hero {
  display: grid;
  gap: 22px;
  padding-top: 108px;
  padding-bottom: 86px;
  background: var(--white);
}

.page-hero h1 {
  max-width: 1080px;
  color: var(--navy);
}

.page-hero p:not(.eyebrow) {
  max-width: 800px;
  font-size: 1.18rem;
}

.project-hero,
.invest-hero,
.contact-hero {
  background: #f2f5f4;
}

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

.state-grid article {
  min-height: 150px;
  padding: 26px;
  border-left: 4px solid var(--gold);
  background: var(--white);
}

.state-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.lane-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.lane-list div {
  padding: 28px 0;
  border-top: 1px solid rgba(7, 21, 38, 0.2);
}

.lane-list h3 {
  margin-bottom: 12px;
}

.timeline-section {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 54px;
  padding-top: 92px;
  padding-bottom: 96px;
  background: var(--white);
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: timeline;
}

.timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 26px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

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

.timeline strong {
  color: var(--gold-dark);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.timeline span {
  color: #394656;
  line-height: 1.6;
}

.partner-strip {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 42px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 76px;
  background: var(--navy);
}

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

.partner-strip img {
  justify-self: center;
  padding: 18px;
  border-radius: 6px;
  background: var(--white);
}

.image-led {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 54px;
  align-items: center;
  padding-top: 82px;
  padding-bottom: 82px;
  background: #eef2ef;
}

.image-led img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.image-led div {
  display: grid;
  gap: 22px;
}

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

.notice {
  display: grid;
  gap: 18px;
  padding-top: 56px;
  padding-bottom: 60px;
  background: #efe7d8;
}

.notice p {
  max-width: 960px;
}

.form-section,
.contact-layout {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 54px;
  align-items: start;
  padding-top: 84px;
  padding-bottom: 92px;
  background: var(--white);
}

.form-intro,
.contact-panel {
  display: grid;
  gap: 20px;
}

.contact-panel {
  padding: 32px;
  border-radius: 6px;
  background: #eef2ef;
}

.contact-routes {
  display: grid;
  gap: 12px;
}

.contact-routes a {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(7, 21, 38, 0.22);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.small-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(7, 21, 38, 0.12);
  border-radius: 6px;
  background: var(--paper);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd2d5;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.contact-form input,
.contact-form select {
  min-height: 46px;
  padding: 11px 12px;
}

.contact-form textarea {
  min-height: 170px;
  padding: 12px;
  resize: vertical;
}

.contact-form .full-span,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form button {
  justify-self: start;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  padding: 52px 5vw;
  background: #071526;
  color: var(--white);
}

.site-footer img {
  max-width: 190px;
  height: auto;
  border-radius: 2px;
  background: var(--white);
}

.site-footer p {
  margin-top: 14px;
  color: #d3dbe2;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 10px 28px;
}

.footer-links a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.disclaimer {
  justify-self: end;
  max-width: 420px;
  color: #c6d0d8;
  font-size: 0.86rem;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .site-header {
    align-items: flex-start;
  }

  .nav {
    gap: 16px;
  }

  .metrics,
  .card-grid.four,
  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-band,
  .feature-band.reverse,
  .image-led,
  .spotlight,
  .timeline-section,
  .form-section,
  .contact-layout,
  .partner-strip {
    grid-template-columns: 1fr;
  }

  .feature-band.reverse .image-panel {
    order: 0;
  }

  .partner-strip img {
    justify-self: start;
  }

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

  .disclaimer {
    justify-self: start;
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: 2.65rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 1.85rem;
  }

  p {
    font-size: 0.98rem;
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
    gap: 12px;
    min-height: 0;
    padding: 12px 18px 16px;
  }

  .brand {
    width: 100%;
  }

  .brand img {
    width: 166px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 10px 14px;
    font-size: 0.78rem;
  }

  .nav a::after {
    bottom: -4px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(7, 21, 38, 0.94), rgba(7, 21, 38, 0.75)),
      linear-gradient(0deg, rgba(7, 21, 38, 0.62), rgba(7, 21, 38, 0.12));
  }

  .hero-content {
    padding: 58px 20px 42px;
  }

  .hero-copy,
  .page-hero p:not(.eyebrow) {
    font-size: 1.03rem;
  }

  .section,
  .split-section,
  .feature-band,
  .spotlight,
  .page-hero,
  .timeline-section,
  .image-led,
  .form-section,
  .contact-layout,
  .notice,
  .partner-strip {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section,
  .split-section,
  .feature-band,
  .spotlight,
  .timeline-section,
  .image-led,
  .form-section,
  .contact-layout {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .page-hero {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .metrics,
  .card-grid.three,
  .card-grid.four,
  .state-grid,
  .lane-list,
  .sector-grid,
  .spotlight-list,
  .contact-form,
  .split-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 118px;
    padding: 28px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

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

  .metric strong {
    font-size: 2.1rem;
  }

  .image-panel,
  .image-led img {
    min-height: 280px;
  }

  .card,
  .sector-card {
    min-height: auto;
    padding: 24px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-panel,
  .contact-form {
    padding: 22px;
  }

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