:root {
  --ink: #10151c;
  --navy: #12233b;
  --navy-deep: #0a1626;
  --slate: #3d4b5c;
  --paper: #f5f3ec;
  --panel: #ffffff;
  --border: #e2ded1;
  --gold: #c99a3f;
  --gold-soft: #e6c988;
  --max-w: 1080px;
}

* {
  box-sizing: border-box;
}

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

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

a {
  color: inherit;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

header.site-nav {
  background: var(--navy-deep);
  color: var(--paper);
}

.nav-row {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  color: var(--paper);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 1rem;
}

.brand span {
  color: var(--gold-soft);
}

.nav-row a.pill {
  border: 1px solid rgba(245, 243, 236, 0.35);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--paper);
}

.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--paper);
  padding: 70px 20px 64px;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold-soft);
  border: 1px solid rgba(230, 201, 136, 0.4);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin: 0 0 14px;
  font-weight: 800;
  max-width: 16ch;
}

.hero p.lead {
  max-width: 52ch;
  color: #cbd3de;
  font-size: 1.08rem;
  margin: 0 0 30px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-outline {
  border: 2px solid rgba(245, 243, 236, 0.5);
  color: var(--paper);
}

section {
  padding: 60px 0;
}

.section-head {
  max-width: 620px;
  margin: 0 0 34px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--navy);
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 8px 0 8px;
}

.section-head p {
  color: var(--slate);
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card .tag {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--slate);
}

.featured {
  background: linear-gradient(135deg, #6e2018, #2a0e0c);
  color: var(--paper);
  border: none;
}

.featured .tag {
  color: var(--gold-soft);
}

.featured p {
  color: #e7d8c8;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.split img {
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.alt {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.partners-row img {
  height: 44px;
  width: auto;
}

footer.site-footer {
  background: var(--navy-deep);
  color: #9fb0c4;
  padding: 34px 0;
  text-align: center;
  font-size: 0.85rem;
}

footer.site-footer a {
  color: var(--gold-soft);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 780px) {
  .split {
    grid-template-columns: 1fr;
  }
}
