:root {
  --navy: #142942;
  --blue: #2d5e8e;
  --teal: #35747d;
  --sage: #738d72;
  --gold: #b99543;
  --light: #f4f7f9;
  --mid: #dfe7eb;
  --text: #2d343c;
  --muted: #65717d;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.55;
  background: var(--white);
}
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--mid);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  width: 245px;
  max-width: 100%;
  display: block;
}
.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}
.nav a { color: var(--navy); }

.hero {
  padding: 76px 0 64px;
  background:
    linear-gradient(110deg, rgba(20,41,66,.96), rgba(53,116,125,.86)),
    radial-gradient(circle at top right, rgba(185,149,67,.5), transparent 35%);
  color: var(--white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
}
h1, h2, h3 { line-height: 1.15; margin-top: 0; }
h1 {
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--navy);
  margin-bottom: 18px;
}
h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}
.lead {
  font-size: 20px;
  max-width: 760px;
  color: rgba(255,255,255,.92);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  border: 2px solid transparent;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-secondary { background: var(--white); color: var(--navy); }
.btn-outline { border-color: rgba(255,255,255,.65); color: var(--white); }
.microcopy {
  color: rgba(255,255,255,.82);
  font-size: 14px;
}
.hero-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  min-height: 430px;
}
.hero-image-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}
.hero-image-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  background: rgba(255,255,255,.94);
  color: var(--navy);
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.hero-image-caption strong {
  display: block;
  font-size: 18px;
}
.hero-image-caption span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.section { padding: 74px 0; }
.light { background: var(--light); }
.narrow { max-width: 850px; text-align: center; }
.intro p {
  font-size: 20px;
  color: var(--muted);
}
.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}
.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card, .service, .step, .contact-card, .form, .quote-box, .video-placeholder, .resource-card {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 12px 36px rgba(20,41,66,.07);
}
.card { border-top: 7px solid var(--teal); }

.service-grid, .resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.resource-grid {
  grid-template-columns: repeat(4, 1fr);
}
.service span {
  display: inline-flex;
  height: 34px;
  width: 34px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 16px;
}
.resource-card {
  border-top: 7px solid var(--gold);
}
.text-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 800;
  color: var(--teal);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 42px;
  align-items: center;
}
.inline-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(20,41,66,.16);
  display: block;
}
.image-split {
  grid-template-columns: .95fr 1fr;
}

.quote-box {
  background: var(--navy);
  color: var(--white);
  border: none;
}
.quote-box p {
  font-size: 30px;
  line-height: 1.2;
  margin: 0;
  font-weight: 800;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step strong {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 16px;
}
.video-placeholder {
  min-height: 250px;
  background: linear-gradient(135deg, rgba(20,41,66,.96), rgba(53,116,125,.86));
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.video-placeholder p {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 6px;
}
.video-placeholder small { color: rgba(255,255,255,.78); }

.contact-section {
  background: var(--navy);
  color: var(--white);
}
.contact-section h2,
.contact-section h3 { color: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
}
.contact-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  box-shadow: none;
}
.contact-card a { color: var(--white); }

.form {
  background: var(--white);
  color: var(--text);
}
.form h3 { color: var(--navy); }
label {
  display: block;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 14px;
  color: var(--navy);
}
input, textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--mid);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
}
textarea { resize: vertical; }
button {
  appearance: none;
  border: none;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  padding: 14px 20px;
  cursor: pointer;
  font-size: 15px;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 0;
}
.site-footer {
  background: #0f2135;
  color: rgba(255,255,255,.78);
  padding: 25px 0;
  font-size: 14px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.site-footer a { color: var(--white); }

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  padding: 40px 20px;
}
.thank-you-card {
  max-width: 680px;
  background: var(--white);
  padding: 45px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
}
.thank-you-card img {
  width: 260px;
  max-width: 100%;
  margin-bottom: 25px;
}
.thank-you-card h1 {
  color: var(--navy);
  font-size: 42px;
}

@media (max-width: 1050px) {
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .hero-grid,
  .split-grid,
  .contact-grid,
  .cards.three,
  .service-grid,
  .steps,
  .resource-grid,
  .image-split {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 48px; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  .brand img { width: 210px; }
  .btn { width: 100%; }
  .section { padding: 54px 0; }
  .hero-image-card img { height: 330px; }
}


.resource-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}

@media (max-width: 900px) {
  .resource-grid.two {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

.small-resource-link {
  margin-top: 8px;
  font-size: 12px;
}
.small-resource-link a {
  color: var(--muted);
  font-weight: 700;
}


.video-player-card {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 18px 50px rgba(20,41,66,.14);
}

.video-player-card video {
  width: 100%;
  display: block;
  border-radius: 16px;
  background: #000;
}
