:root {
  --navy: #092755;
  --deep: #06162f;
  --blue: #0d3d78;
  --aqua: #69e1df;
  --ink: #0b1c31;
  --mist: #edf4f8;
  --line: #d6e1e9;
  --max: 1220px;
  --gold: #f0b323;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font:
    16px/1.55 Arial,
    sans-serif;
  color: var(--ink);
  background: #fff;
}
.section h1,
.section h2,
.section h3,
.section h4,
.card h2,
.card h3,
.feature h2,
.feature h3 {
  color: var(--navy);
}
.section > .wrap > p,
.news-head p,
.feature p,
.card p,
.pad p {
  color: #1b3047;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: min(var(--max), calc(100% - 36px));
  margin: auto;
}
.utility {
  background: var(--deep);
  color: #fff;
  text-align: center;
  padding: 8px;
}
.utility a {
  color: var(--aqua);
  font-weight: 800;
}
.sitehead {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fffffff5;
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy);
  margin-right: auto;
}
.brand span {
  color: var(--blue);
}
.links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 800;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid var(--navy);
  border-radius: 5px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.btn.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
}
.btn.light {
  background: #fff;
  color: var(--navy);
}
.hero-small {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--deep), var(--blue));
  color: #fff;
}
.hero-small h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1;
  margin: 0.15em 0;
}
.hero-small p {
  font-size: 1.15rem;
  max-width: 760px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--aqua);
}
.section {
  padding: 68px 0;
}
.alt {
  background: var(--mist);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin: 0.2em 0 0.55em;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px #10213c0c;
  border-radius: 6px;
  overflow: hidden;
}
.card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #eef3f6;
}
.pad {
  padding: 20px;
}
.meta {
  color: #0b376d;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
}
.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.empty {
  padding: 28px;
  background: #fff;
  border: 1px dashed #9babb7;
  color: #34495f;
}
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.feature img {
  width: 100%;
  border-radius: 6px;
}
.footer {
  background: var(--deep);
  color: #f1f6fb;
  padding: 42px 0;
}
.footer a {
  color: var(--aqua);
}
@media (max-width: 900px) {
  .links {
    display: none;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .nav {
    min-height: 70px;
  }
  .brand {
    font-size: 1.1rem;
  }
  .hero-small {
    padding: 52px 0;
  }
  .section {
    padding: 52px 0;
  }
}
