:root {
  /* Brand green from Ambassadors logo / known ad identity */
  --green: #206830;
  --green-deep: #154822;
  --green-mid: #2f7a3f;
  --green-soft: #e8f3ea;
  --green-wash: #f3f9f4;
  /* Warm neutrals (ad feel) */
  --cream: #f7f4ee;
  --sand: #ebe4d6;
  --line: #d8d0c2;
  --ink: #1c2430;
  --muted: #4f5a52;
  --white: #ffffff;
  /* Muted orange accent (prior brand aesthetic) for CTAs */
  --gold: #c9783a;
  --gold-soft: #f7ebe0;
  --orange: #c9783a;
  --orange-soft: #f7ebe0;
  /* Aliases so existing class names keep working */
  --navy: var(--green);
  --navy-deep: var(--green-deep);
  --navy-soft: var(--green-mid);
  --teal: var(--green-mid);
  --teal-dark: var(--green);
  --teal-light: var(--green-soft);
  --shadow: 0 16px 40px rgba(21, 72, 34, 0.12);
  --radius: 18px;
  --max: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 20px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--teal-dark);
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}

.skip:focus {
  left: 8px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--green-deep);
  color: #e8f3ea;
  font-size: 15px;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.topbar a {
  color: #fff;
  text-decoration: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 238, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-family: inherit;
  font-weight: 700;
  font-size: 20px;
  border: 2px solid var(--orange);
}

.about-portrait {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  max-height: 520px;
  box-shadow: var(--shadow);
}

nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 18px;
}

nav a[aria-current="page"],
nav a:hover {
  color: var(--teal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 17px;
  font-family: inherit;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--orange);
  color: #fff;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-wide {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
  color: var(--navy);
}

.hero {
  background: var(--green-deep);
  color: #fff;
  min-height: auto;
  display: grid;
  align-items: center;
}

.hero-inner {
  padding: 72px 0 64px;
  max-width: 720px;
}

.hl-form-wrap {
  width: 100%;
  min-height: 641px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.hl-form-wrap iframe {
  width: 100%;
  min-height: 641px;
  border: 0;
  display: block;
}

.hl-form-apply {
  min-height: 980px;
}

.hl-form-apply iframe {
  min-height: 980px;
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--orange);
  margin-bottom: 12px;
}

h1,
h2,
h3,
.serif {
  font-family: "Source Sans 3", system-ui, sans-serif;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin: 0 0 18px;
  font-weight: 700;
}

h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 0 0 16px;
  color: var(--navy);
}

h3 {
  font-size: 24px;
  margin: 0 0 10px;
  color: var(--navy);
}

.lede {
  font-size: 22px;
  line-height: 1.65;
  color: #eef6ef;
  margin: 0 0 28px;
}

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

.trustbar {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.trustbar .wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 22px 0;
}

.trustbar p {
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.trustbar span {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 15px;
  margin-top: 4px;
}

section {
  padding: 80px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 36px;
}

.muted {
  color: var(--muted);
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(21, 72, 34, 0.06);
}

.card h3 {
  font-size: 22px;
}

.card a.more {
  font-weight: 700;
  text-decoration: none;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-light);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 20px;
}

.band {
  background: var(--cream);
}

.navy-band {
  background: var(--navy);
  color: #fff;
}

.navy-band h2,
.navy-band h3 {
  color: #fff;
}

.navy-band .muted {
  color: #d4e8d8;
}

.check-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: #e8f3ea;
  line-height: 1.45;
}

.check-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.split img,
.frame {
  border-radius: 24px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 64px;
  margin-bottom: 22px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.quote {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px;
}

.cite {
  font-size: 15px;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 14px;
}

label {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 17px;
  background: #fff;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 15px;
  color: var(--muted);
}

.success {
  display: none;
  background: var(--teal-light);
  border: 1px solid #b7d9d7;
  padding: 14px;
  border-radius: 12px;
}

footer {
  background: var(--green-deep);
  color: #d4e8d8;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer h3 {
  color: #fff;
  font-size: 19px;
  font-family: "Source Sans 3", system-ui, sans-serif;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li {
  margin: 8px 0;
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 28px;
  padding-top: 16px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 64px 0 48px;
}

.page-hero h1 {
  margin-bottom: 10px;
}

.page-hero p {
  max-width: 680px;
  color: #d5dee8;
  margin: 0;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.4;
}

.faq details p {
  margin: 12px 0 4px;
  font-size: 17px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.badge {
  background: var(--orange-soft);
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 700;
}

.map {
  border: 0;
  width: 100%;
  min-height: 320px;
  border-radius: 18px;
}

.mobile-call {
  display: none;
}

@media (max-width: 900px) {
  .logo img {
    height: 44px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .header-cta {
    display: none;
  }

  .trustbar .wrap,
  .grid-2,
  .grid-3,
  .grid-4,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background: var(--green-deep);
  }

  .mobile-call {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    text-align: center;
    box-shadow: var(--shadow);
  }
}
