:root {
  --font-inter: "Inter", system-ui, sans-serif;
  --font-sora: "Sora", sans-serif;
  --navy: #1d4368;
  --navy-deep: #152f4b;
  --navy-ink: #0f2337;
  --sea: #79b5a4;
  --sea-dark: #5a9a88;
  --sea-tint: #eaf4f1;
  --cream: #f7faf9;
  --white: #ffffff;
  --ink: #22303e;
  --ink-soft: #51616f;
  --gold: #f2b53c;
  --line: #e3ebe8;
  --radius: 16px;
  --shadow-sm: 0 2px 8px rgba(21, 47, 75, 0.08);
  --shadow-md: 0 10px 30px rgba(21, 47, 75, 0.12);
  --shadow-lg: 0 24px 60px rgba(21, 47, 75, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-inter), system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-sora), sans-serif;
  color: var(--navy-ink);
  line-height: 1.2;
}

img,
video,
iframe,
embed,
object {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sea-dark);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--sea);
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin: 14px 0 12px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

#start .section-head,
.reviews .section-head,
#faq .section-head,
.section-head-nowrap {
  max-width: none;
}

@media (min-width: 981px) {
  #start .section-head h2,
  .reviews .section-head h2,
  #faq .section-head h2,
  .section-head-nowrap h2 {
    white-space: nowrap;
  }
}

.center {
  text-align: center;
}

.center .section-head {
  margin-left: auto;
  margin-right: auto;
}

.center .eyebrow {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sora), sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  background: none;
}

.btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--sea);
  color: var(--navy-ink);
}

.btn-accent:hover {
  background: var(--sea-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

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

.btn-lg {
  padding: 18px 34px;
  font-size: 1.05rem;
}

.topbar {
  background: var(--navy-ink);
  color: #cfe0da;
  font-size: 0.85rem;
  padding: 8px 0;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.topbar .lic {
  opacity: 0.85;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  height: 64px;
  width: auto;
}

.logo-fallback {
  display: none;
  font-family: var(--font-sora), sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy);
  white-space: nowrap;
}

.logo-fallback span {
  color: var(--sea-dark);
}

.nav-links {
  display: flex;
  align-self: stretch;
  align-items: stretch;
  justify-content: flex-end;
  gap: 18px;
  list-style: none;
  flex: 1;
}

.nav-links > li {
  display: flex;
  align-items: center;
}

.nav-links > li.nav-links-cta {
  display: none;
}

.nav-links a,
.nav-links span {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  white-space: nowrap;
  cursor: default;
}

.nav-links a {
  cursor: pointer;
}

.nav-links a:hover {
  color: var(--sea-dark);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta .btn {
  font-size: 0.82rem;
  padding: 8px 16px;
}

.nav-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  line-height: 1.2;
}

.nav-phone small {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sea-dark);
  text-transform: uppercase;
}

.nav-phone strong {
  font-family: var(--font-sora), sans-serif;
  color: var(--navy);
  font-size: 0.85rem;
  white-space: nowrap;
}

@media (max-width: 1240px) {
  .nav-phone {
    display: none;
  }
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

.hero {
  background: linear-gradient(160deg, var(--navy-ink) 0%, var(--navy) 55%, #2a5c8a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 181, 164, 0.28), transparent 70%);
}

.hero::before {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -220px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 181, 164, 0.14), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 72px;
  position: relative;
  z-index: 1;
}

.hero-grid > * {
  min-width: 0;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  font-weight: 800;
  margin: 18px 0 20px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: normal;
  color: var(--sea);
  position: relative;
}

.hero p.lead {
  font-size: 1.15rem;
  color: #d7e3ef;
  max-width: 540px;
  margin-bottom: 32px;
}

.hero .eyebrow {
  color: var(--sea);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-hero-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-hero-ghost:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.trust-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #cfe0da;
}

.trust-item strong {
  color: #fff;
  font-family: var(--font-sora), sans-serif;
  font-size: 1.15rem;
  display: block;
  line-height: 1.1;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.hero-photo {
  position: relative;
  justify-self: center;
  width: min(360px, 100%);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.photo-card {
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
  position: relative;
}

.photo-card img,
.photo-card .hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
}

.photo-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(15, 35, 55, 0.85));
  color: #fff;
  padding: 34px 22px 14px;
}

.photo-name strong {
  font-family: var(--font-sora), sans-serif;
  font-size: 1.15rem;
  display: block;
}

.hero-quotes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-quotes-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 14px 16px 12px;
  color: var(--ink);
}

.hero-quotes-viewport {
  display: grid;
}

.hero-quote {
  grid-area: 1 / 1;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}

.hero-quote.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-quote p {
  margin: 0 0 8px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink);
}

.hero-quote cite {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.hero-quote .stars {
  font-size: 0.75rem;
  letter-spacing: 1px;
  line-height: 1;
}

.hero-quotes-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.hero-quotes-dot {
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.hero-quotes-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.hero-quotes-dot.is-active::after {
  background: #fff;
}

.hero-quotes-dot:focus-visible {
  outline: 2px solid var(--sea);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-quote {
    transition: none;
  }
}

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

.proofbar .wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 24px;
  align-items: start;
  padding: 20px 24px;
}

.proofbar .wrap:has(> :nth-child(3):last-child) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.proof-item strong {
  color: var(--navy-ink);
  font-family: var(--font-sora), sans-serif;
}

.proof-ico {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--sea-tint);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-ico .icon,
.proof-ico svg {
  width: 20px;
  height: 20px;
  display: block;
}

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

.path-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.path-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--sea);
}

.path-num {
  font-family: var(--font-sora), sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--sea-dark);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.path-card h3 {
  font-size: 1.25rem;
}

.path-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex: 1;
}

.path-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--font-sora), sans-serif;
  font-size: 0.95rem;
}

.path-link:hover {
  color: var(--sea-dark);
}

.programs {
  background: linear-gradient(180deg, var(--cream), #fff);
}

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

.prog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: all 0.2s ease;
}

.prog-card:hover {
  border-color: var(--sea);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.prog-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sea-tint);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.prog-ico .icon,
.prog-ico svg {
  width: 22px;
  height: 22px;
  display: block;
}

.prog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.prog-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.prog-card.ask {
  background: var(--navy);
  border-color: var(--navy);
}

.prog-card.ask h3 {
  color: #fff;
}

.prog-card.ask p {
  color: #c9d8e6;
}

.prog-card.ask .path-link {
  color: #fff;
  display: inline-block;
  padding-top: 16px;
}

.prog-card.ask .path-link:hover {
  color: #fff;
}

.meet-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.meet-photo {
  position: relative;
}

.meet-photo .frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  height: 480px;
}

.meet-photo img,
.meet-photo .meet-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
}

.meet-badge {
  position: absolute;
  right: -20px;
  bottom: -20px;
  background: var(--sea);
  color: var(--navy-ink);
  border-radius: 16px;
  padding: 18px 22px;
  font-family: var(--font-sora), sans-serif;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  line-height: 1.3;
}

.meet-badge small {
  display: block;
  font-weight: 600;
  font-size: 0.75rem;
  opacity: 0.8;
}

.meet-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 14px 0 18px;
}

.meet-copy p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.meet-head {
  margin-bottom: 36px;
}

.meet-head h2 em {
  font-style: normal;
  color: var(--sea);
}

.meet-points {
  list-style: none;
  margin: 22px 0 30px;
  display: grid;
  gap: 14px;
}

.meet-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sea-tint);
  color: var(--sea-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 2px;
}

.meet-points strong {
  color: var(--navy-ink);
}

.steps {
  background: var(--navy-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.steps::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -260px;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(121, 181, 164, 0.16), transparent 70%);
}

.steps .section-head h2,
.steps h3 {
  color: #fff;
}

.steps .section-head p {
  color: #b9cfd8;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.step-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.step-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  background: #c5ced4;
}

.step-card .step-img,
.step-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.step-copy {
  padding: 28px 24px 22px;
}

.step-n {
  font-family: var(--font-sora), sans-serif;
  font-size: 1.35em;
  font-weight: 800;
  color: var(--sea);
  line-height: 1;
  margin-right: 10px;
}

.step-card h3 {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.step-card p {
  color: #c2d3dc;
  font-size: 0.95rem;
}

.steps-cta {
  text-align: center;
  margin-top: 44px;
  position: relative;
  z-index: 1;
}

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

.calc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px;
  box-shadow: var(--shadow-md);
}

.calc-row {
  margin-bottom: 22px;
}

.calc-row label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-ink);
  margin-bottom: 8px;
  font-family: var(--font-sora), sans-serif;
}

.calc-row output {
  color: var(--sea-dark);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--sea-dark);
  height: 6px;
  cursor: pointer;
}

.calc-result {
  background: var(--sea-tint);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  margin-top: 8px;
}

.calc-result .amount {
  font-family: var(--font-sora), sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
}

.calc-result small {
  color: var(--ink-soft);
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
}

.calc-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 14px 0 16px;
}

.calc-copy p {
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.calc-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.reviews {
  background: linear-gradient(180deg, #fff, var(--cream));
  padding-top: 40px;
}

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

.rev-grid-2 {
  grid-template-columns: 1fr 1fr;
}

.rev-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.rev-card p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  flex: 1;
}

.rev-who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rev-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sora), sans-serif;
  font-weight: 700;
}

.rev-who strong {
  display: block;
  font-family: var(--font-sora), sans-serif;
  font-size: 0.92rem;
  color: var(--navy-ink);
}

.rev-who small {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.rev-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gbadge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 22px;
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
  color: inherit;
  text-decoration: none;
}

a.gbadge:hover {
  border-color: var(--sea);
}

.gbadge b {
  font-family: var(--font-sora), sans-serif;
  font-size: 1.2rem;
  color: var(--navy-ink);
}

.rev-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.faq-list > :last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-sora), sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q .ico {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--sea-tint);
  color: var(--sea-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.25s;
}

.faq-item.open .ico {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.contact {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -200px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 181, 164, 0.22), transparent 70%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-grid > * {
  min-width: 0;
}

.contact-lead {
  padding-top: 48px;
  padding-bottom: 72px;
}

.contact-lead .contact-grid {
  grid-template-columns: 1.05fr 1fr;
  grid-template-areas:
    "form intro"
    "form alt";
  align-items: start;
}

.contact-lead .contact-intro {
  grid-area: intro;
}

.contact-lead .form-card {
  grid-area: form;
}

.contact-lead .contact-alt {
  grid-area: alt;
  margin-top: 8px;
}

.contact-lead .crumb {
  margin-bottom: 22px;
}

.contact h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin: 14px 0 18px;
}

.contact .eyebrow {
  color: var(--sea);
}

.contact p.big {
  color: #d7e3ef;
  font-size: 1.08rem;
  margin-bottom: 28px;
}

.contact-alt {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.alt-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.alt-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--sea-tint);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.alt-ico .icon,
.alt-ico svg {
  width: 22px;
  height: 22px;
  display: block;
}

.contact .alt-ico {
  background: rgba(255, 255, 255, 0.1);
  color: var(--sea);
}

.alt-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-sora), sans-serif;
}

.alt-item small {
  display: block;
  color: #a9c0d4;
  font-size: 0.8rem;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.contact-light {
  background: #fff;
  color: var(--ink);
}

.contact-light::after {
  display: none;
}

.contact-light h2 {
  color: var(--navy-ink);
}

.contact-light .eyebrow {
  color: var(--sea-dark);
}

.contact-light p.big {
  color: var(--ink-soft);
}

.contact-light .alt-ico {
  background: var(--sea-tint);
  color: var(--navy);
}

.contact-light .alt-item a {
  color: var(--navy);
}

.contact-light .alt-item small {
  color: var(--ink-soft);
}

.form-shell {
  background: var(--navy);
  border-radius: 28px;
  padding: 12px;
}

.contact-light .form-card {
  box-shadow: none;
  border-radius: 20px;
}

.form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.form-card .sub {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.f-row {
  margin-bottom: 16px;
}

.f-row label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--navy-ink);
}

.f-row input,
.f-row textarea,
.f-row select {
  width: 100%;
  max-width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-inter), sans-serif;
  font-size: 1rem;
  transition: border-color 0.15s;
  background: #fbfdfc;
}

.f-row input:focus,
.f-row textarea:focus,
.f-row select:focus {
  outline: none;
  border-color: var(--sea-dark);
}

.f-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin: 18px 0 20px;
  line-height: 1.5;
}

.consent input {
  margin-top: 3px;
}

.form-card .btn {
  width: 100%;
}

.form-error {
  background: #fde8e8;
  color: #9b1c1c;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.form-success {
  text-align: center;
  padding: 40px 10px;
}

.form-success h3 {
  margin: 10px 0 6px;
}

.form-success p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

footer.site {
  background: var(--navy-ink);
  color: #a9c0d4;
  padding: 64px 0 32px;
  font-size: 0.9rem;
}

.nav-links a.is-active {
  color: var(--sea-dark);
  font-weight: 600;
}

.nav-links .has-sub {
  position: relative;
}

.nav-links .has-sub > a {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
}

.nav-caret {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
}

.nav-links .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 13px);
  left: 0;
  min-width: 240px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 16px 36px rgba(21, 47, 75, 0.12);
  z-index: 80;
}

.nav-links .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

.nav-links .has-sub:hover > a,
.nav-links .has-sub:focus-within > a {
  color: var(--sea-dark);
}

.nav-links .has-sub:hover .sub-menu,
.nav-links .has-sub:focus-within .sub-menu {
  display: block;
}

.nav-links .sub-menu a {
  display: block;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy-ink);
  white-space: nowrap;
  border-radius: 8px;
}

.nav-links .sub-menu a:hover,
.nav-links .sub-menu a:focus {
  background: var(--sea-tint);
  color: var(--navy);
}

.nmls-note {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin: 0 0 24px;
}

.staff-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.staff-photo {
  border-radius: 18px;
  overflow: hidden;
  height: 320px;
}

.staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.staff-copy h2 {
  font-size: 2rem;
  margin: 8px 0 14px;
}

.staff-copy > p {
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.staff-meta {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.staff-meta a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.page-hero {
  background: linear-gradient(160deg, var(--navy-ink) 0%, var(--navy) 55%, #2a5c8a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 56px 0 72px;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 181, 164, 0.28), transparent 70%);
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero-split .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: center;
}

.page-hero-review {
  width: 100%;
  max-width: 420px;
  justify-self: end;
  box-shadow: var(--shadow-lg);
}

.page-hero-review p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
}

.page-hero-photo {
  position: relative;
  justify-self: end;
  width: min(360px, 100%);
}

.page-hero-photo .frame,
.page-hero-photo .meet-img {
  height: 420px;
}

.page-hero-photo-cover {
  width: min(460px, 100%);
}

.page-hero-photo-cover .frame,
.page-hero-photo-cover .meet-img {
  height: 340px;
}

.page-hero-photo-cover .meet-img {
  object-position: center;
}

.page-hero-has-photo h1 {
  max-width: none;
}

.meet-copy-wide .meet-points {
  grid-template-columns: 1fr 1fr;
}

.page-hero .eyebrow {
  color: var(--sea);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 16px 0 18px;
  letter-spacing: -0.01em;
  max-width: none;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--sea);
}

.page-hero .lead {
  font-size: 1.12rem;
  color: #d7e3ef;
  max-width: none;
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #cfe0da;
  margin-bottom: 22px;
}

.crumb a {
  color: var(--sea);
  text-decoration: none;
}

.crumb a:hover {
  color: #fff;
}

.crumb-sep {
  opacity: 0.5;
}

.state-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.state-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.state-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--sea);
}

.state-card h3 {
  font-size: 1.55rem;
}

.state-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  flex: 1;
}

.chip-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 8px;
}

.chip-list li {
  background: var(--sea-tint);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-grid > :last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.why-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}

.why-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

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

.nowrap {
  white-space: nowrap;
}

.cta-band {
  background: var(--navy);
  color: #fff;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 181, 164, 0.22), transparent 70%);
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 300px);
  gap: 40px;
  align-items: center;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  margin: 12px 0 14px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.cta-band h2 .nowrap {
  white-space: nowrap;
}

.cta-band .eyebrow {
  color: var(--sea);
}

.cta-band p {
  color: #d7e3ef;
  font-size: 1.05rem;
}

.cta-band-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.cta-band-actions .btn {
  width: 100%;
  justify-content: center;
  white-space: nowrap;
}

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

.county-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

a.county-card {
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

a.county-card:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 20px rgba(22, 58, 102, 0.08);
  transform: translateY(-1px);
}

.county-card h3 {
  font-size: 1.08rem;
}

.county-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  flex: 1;
}

.county-card.ask {
  background: var(--navy);
  border-color: var(--navy);
}

.county-card.ask h3 {
  color: #fff;
}

.county-card.ask p {
  color: #c9d8e6;
}

.county-card.ask .path-link {
  color: var(--sea);
}

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

.process-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.process-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.process-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.page-hero .hero-ctas {
  margin-top: 28px;
  margin-bottom: 0;
}

.prog-card-link,
.why-card-link {
  text-decoration: none;
  color: inherit;
}

.why-card-link {
  align-items: flex-start;
}

.calc-breakdown {
  list-style: none;
  margin: 16px 0 10px;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.calc-breakdown li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.calc-breakdown strong {
  color: var(--navy-ink);
  flex-shrink: 0;
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.prose-wide {
  max-width: none;
  margin: 0;
}

.prose h2,
.prose h3,
.prose h4 {
  margin: 1.6em 0 0.5em;
  color: var(--navy);
}

.prose p,
.prose ul,
.prose ol {
  margin: 0 0 1.1em;
}

.prose ul,
.prose ol {
  padding-left: 1.2em;
}

.prose a {
  color: var(--sea-dark);
}

.prose img,
.post-hero-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 0 0 28px;
}

.prose iframe,
.prose video,
.prose embed {
  max-width: 100%;
}

.prose table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-img,
.blog-card-img-fallback {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: linear-gradient(160deg, var(--navy), var(--sea-dark));
}

.blog-card-body {
  padding: 20px 22px 24px;
}

.blog-card time {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.blog-card h2 {
  font-size: 1.15rem;
  margin: 8px 0 10px;
  color: var(--navy);
}

.blog-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.blog-pagination {
  margin-top: 40px;
}

.blog-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-family: var(--font-sora), sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
}

.blog-pagination .page-numbers a:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.blog-pagination .page-numbers .current {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.blog-pagination .page-numbers .dots {
  border: 0;
  background: transparent;
  min-width: 24px;
  padding: 0;
  color: var(--ink-soft);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
  max-width: none;
}

.foot-grid h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.foot-grid ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.foot-nav {
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
}

.foot-grid a {
  color: #a9c0d4;
  text-decoration: none;
}

.foot-grid a:hover {
  color: var(--sea);
}

.foot-brand img {
  height: 104px;
  width: auto;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 8px;
}

.foot-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.foot-social a {
  color: var(--sea);
  text-decoration: none;
  font-size: 0.9rem;
}

.foot-social a:hover {
  color: #fff;
}

.foot-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

.foot-legal a {
  color: var(--sea);
  text-decoration: none;
}

.foot-legal a:hover {
  color: #fff;
}

.eho {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eho img {
  height: 34px;
  width: auto;
}

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px 14px;
  gap: 10px;
  box-shadow: 0 -6px 24px rgba(21, 47, 75, 0.12);
}

.mobile-cta .btn {
  flex: 1;
  padding: 13px 10px;
  font-size: 0.9rem;
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 12px;
  }

  .nav-links a,
  .nav-links span {
    font-size: 0.82rem;
  }

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

  .prog-grid > :last-child:nth-child(odd),
  .prog-grid-3 > :last-child:nth-child(odd),
  .county-grid > :last-child:nth-child(odd),
  .blog-grid-3 > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1100px) {
  .nav-phone {
    display: none;
  }

  .nav-cta .btn-primary {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 12px 8px 88px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    gap: 2px;
    z-index: 60;
    max-height: min(78vh, 640px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-links span {
    display: block;
    padding: 14px 12px;
    font-size: 1.05rem;
  }

  .nav-links > li {
    display: block;
  }

  .nav-links .has-sub {
    border-bottom: 1px solid var(--line);
  }

  .nav-links .has-sub > a {
    display: block;
    align-self: auto;
    padding: 14px 12px;
  }

  .nav-links .nav-caret {
    display: none;
  }

  .nav-links .sub-menu {
    display: block;
    position: static;
    left: auto;
    top: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 10px 18px;
    min-width: 0;
    background: transparent;
  }

  .nav-links .sub-menu::before {
    display: none;
  }

  .nav-links .sub-menu a {
    padding: 10px 12px;
    font-size: 0.98rem;
    color: var(--ink-soft);
    white-space: normal;
  }

  .nav-links > li.nav-links-cta {
    display: flex;
    margin-top: 10px;
    padding: 0 12px;
  }

  .nav-links-cta + .nav-links-cta {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .nav-links .nav-links-cta a.btn {
    width: 100%;
    padding: 14px 20px;
    font-weight: 600;
    white-space: nowrap;
  }

  .nav-links .nav-links-cta a.btn-primary {
    color: #fff;
  }

  .nav-links .nav-links-cta a.btn-ghost {
    color: var(--navy);
  }

  .nav-links .nav-links-cta a.btn-primary:hover {
    color: #fff;
  }

  .nav-links .nav-links-cta a.btn-ghost:hover {
    color: #fff;
  }

  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 66px;
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-band-actions {
    max-width: 360px;
  }
}

@media (max-width: 980px) {
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo img {
    height: 62px;
  }

  .topbar .wrap {
    justify-content: center;
    text-align: center;
  }

  .topbar-nmls {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 48px;
    padding-bottom: 56px;
    gap: 36px;
  }

  .hero-photo {
    justify-self: center;
    width: min(340px, 100%);
  }

  .photo-card,
  .photo-card img,
  .photo-card .hero-img {
    height: 360px;
  }

  .paths,
  .steps-grid,
  .rev-grid,
  .faq-list,
  .state-grid,
  .why-grid,
  .cta-band-inner,
  .process-grid,
  .meet-grid,
  .calc-grid,
  .contact-grid,
  .contact-lead .contact-grid,
  .blog-grid,
  .blog-grid-3,
  .staff-card {
    grid-template-columns: 1fr;
  }

  .prog-grid,
  .prog-grid-3,
  .county-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-lead {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .contact-lead .contact-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "form"
      "alt";
    gap: 28px;
  }

  .contact-lead .contact-alt {
    margin-top: 0;
  }

  .form-card,
  .calc-card {
    padding: 24px;
  }

  .f-2col {
    grid-template-columns: 1fr;
  }

  .cta-band-actions {
    justify-content: flex-start;
  }

  .cta-band-actions .btn,
  .hero-ctas .btn,
  .page-hero .hero-ctas .btn,
  .calc-actions .btn,
  .rev-cta .btn {
    width: 100%;
  }

  .hero-ctas,
  .page-hero .hero-ctas,
  .calc-actions,
  .cta-band-actions,
  .rev-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero {
    padding: 36px 0 48px;
  }

  .page-hero h1 {
    max-width: none;
  }

  .page-hero-split .wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-hero-review {
    justify-self: stretch;
    max-width: none;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .foot-nav {
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
  }

  .staff-card {
    padding: 20px;
  }

  .staff-photo {
    height: 280px;
  }

  .section {
    padding: 56px 0;
  }

  .reviews {
    padding-top: 28px;
  }

  .meet-badge {
    right: 12px;
    bottom: 12px;
  }

  .meet-photo .frame,
  .meet-photo img,
  .meet-photo .meet-img {
    height: 360px;
  }

  .page-hero-photo {
    justify-self: stretch;
    width: 100%;
  }

  .page-hero-photo-cover .frame,
  .page-hero-photo-cover .meet-img {
    height: 240px;
  }

  .proofbar .wrap {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 16px 12px;
    padding: 16px 24px;
  }

  .proofbar .wrap:has(> :nth-child(3):last-child) {
    grid-template-columns: 1fr 1fr;
  }

  .proofbar .wrap > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .proof-item {
    align-items: flex-start;
    font-size: 0.82rem;
  }

  .prose .alignleft,
  .prose .alignright {
    float: none;
    display: block;
    margin: 0 0 1em;
    width: 100% !important;
  }
}

@media (max-width: 560px) {
  .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo img {
    height: 62px;
  }

  .prog-grid,
  .prog-grid-3,
  .county-grid,
  .foot-grid,
  .blog-grid,
  .blog-grid-3 {
    grid-template-columns: 1fr;
  }

  .foot-nav {
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }

  .f-2col {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card img,
  .photo-card .hero-img {
    height: 300px;
  }

  .form-card,
  .calc-card,
  .path-card,
  .rev-card {
    padding: 20px;
  }

  .section {
    padding: 48px 0;
  }

  .page-hero {
    padding: 28px 0 40px;
  }

  .calc-result .amount {
    font-size: 1.7rem;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }

  .faq-q {
    padding: 16px 18px;
    font-size: 0.98rem;
  }
}
