:root {
  --navy: #17324D;
  --teal: #3C8D8D;
  --slate: #415A77;
  --gray: #D8D8D8;
  --off-white: #F8F8F6;
  --white: #FFFFFF;
  --ink: #1D2730;
  --shadow: 0 18px 50px rgba(23, 50, 77, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: "Source Sans 3", "Source Sans Pro", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.15;
  margin: 0;
}

h1 {
  color: var(--white);
  font-size: clamp(2.35rem, 6vw, 4.8rem);
  max-width: 930px;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  max-width: 820px;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
}

.container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px;
  width: 100%;
}

.site-header {
  background: rgba(248, 248, 246, 0.96);
  border-bottom: 1px solid rgba(216, 216, 216, 0.7);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  min-height: 86px;
  padding: 14px 24px;
  position: relative;
}

.nav-logo img {
  height: 54px;
  object-fit: contain;
  width: auto;
}

.nav-menu {
  align-items: center;
  display: flex;
  gap: 28px;
}

.nav-menu a {
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 700;
}

.nav-menu a:hover,
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--teal);
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.nav-toggle span {
  background: var(--navy);
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 25px;
}

.btn {
  align-items: center;
  background: var(--teal);
  border: 2px solid var(--teal);
  color: var(--white);
  display: inline-flex;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn:hover {
  background: #317575;
  border-color: #317575;
  transform: translateY(-1px);
}

.btn-small {
  min-height: 46px;
  padding: 10px 18px;
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.hero {
  background: var(--navy);
  color: var(--white);
}

.hero-inner {
  min-height: calc(100vh - 86px);
  padding-bottom: 88px;
  padding-top: 110px;
}

.eyebrow {
  color: var(--teal);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-navy .eyebrow,
.hero .eyebrow {
  color: #A7D0D0;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  margin-top: 24px;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.story-video-section {
  background: var(--navy);
  color: var(--white);
  padding: 86px 0;
}

.story-video-inner {
  max-width: 848px;
  text-align: center;
}

.story-video-inner h2 {
  color: var(--white);
  margin: 0 auto;
}

.video-frame {
  aspect-ratio: 16 / 9;
  margin-top: 34px;
  width: 100%;
}

.video-frame video {
  background: #0C1C2B;
  display: block;
  height: 100%;
  object-fit: cover;
}

.story-video-location {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  margin-top: 18px;
  text-align: center;
}

.section {
  padding: 92px 0;
}

.section-light {
  background: var(--white);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-navy p {
  color: rgba(255, 255, 255, 0.82);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2 + p {
  margin-top: 14px;
}

.section-intro {
  color: #44515C;
  font-size: 1.2rem;
  margin-top: 18px;
  max-width: 820px;
}

.three-column,
.steps,
.trust-list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.trust-list article {
  background: var(--off-white);
  border: 1px solid var(--gray);
  padding: 30px;
}

.feature-card {
  min-height: 315px;
}

.feature-card h3,
.trust-list h3 {
  margin-bottom: 14px;
}

.feature-card p,
.trust-list p {
  color: #44515C;
}

.icon {
  align-items: center;
  background: rgba(60, 141, 141, 0.12);
  color: var(--teal);
  display: flex;
  height: 58px;
  justify-content: center;
  margin-bottom: 24px;
  width: 58px;
}

.icon svg {
  fill: none;
  height: 31px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 31px;
}

.steps {
  counter-reset: steps;
}

.step {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 30px;
}

.step span {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #A7D0D0;
  display: flex;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  margin-bottom: 24px;
  width: 42px;
}

.step p {
  margin-top: 12px;
}

.text-link {
  color: var(--teal);
  display: inline-flex;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  margin-top: 32px;
}

.light-link {
  color: #A7D0D0;
}

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

.situation-card {
  background: var(--white);
  border: 1px solid var(--gray);
  box-shadow: var(--shadow);
  min-height: 185px;
  padding: 28px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.situation-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.situation-card span {
  background: var(--teal);
  display: block;
  height: 5px;
  margin-bottom: 28px;
  width: 54px;
}

.trust-list article {
  min-height: 225px;
}

.process-grid,
.resolution-grid {
  display: grid;
  gap: 22px;
}

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

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

.process-card,
.resolution-card {
  border: 1px solid var(--gray);
  padding: 28px;
}

.process-card {
  background: var(--off-white);
  min-height: 385px;
}

.process-card span {
  align-items: center;
  background: rgba(60, 141, 141, 0.12);
  color: var(--teal);
  display: flex;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  margin-bottom: 22px;
  width: 44px;
}

.process-card h3,
.resolution-card h3 {
  margin-bottom: 12px;
}

.process-card p,
.resolution-card p {
  color: #44515C;
}

.resolution-card {
  background: var(--white);
  box-shadow: var(--shadow);
  min-height: 245px;
}

.resolution-card::before {
  background: var(--teal);
  content: "";
  display: block;
  height: 4px;
  margin-bottom: 22px;
  width: 48px;
}

.not-list {
  display: grid;
  gap: 16px;
  max-width: 900px;
}

.not-list p {
  border-left: 4px solid var(--teal);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
  padding-left: 20px;
}

.situation-section {
  padding: 78px 0;
}

.situation-layout {
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
}

.situation-content {
  color: #44515C;
  font-size: 1.12rem;
}

.situation-content h3 {
  font-size: 1rem;
  margin-top: 28px;
}

.check-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.check-list li {
  border-left: 4px solid var(--teal);
  padding-left: 16px;
}

.note {
  color: #5A6670;
  font-size: 1rem;
  font-style: italic;
  margin-top: 18px;
}

.callout-layout {
  align-items: center;
  display: flex;
  gap: 36px;
  justify-content: space-between;
}

.callout-layout p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
  margin-top: 16px;
  max-width: 760px;
}

.callout-layout .text-link {
  flex: 0 0 auto;
  margin-top: 0;
}

.founder-layout {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
}

.founder-copy p:not(.eyebrow) {
  color: #44515C;
  margin-top: 18px;
}

.founder-copy h2 {
  margin-bottom: 8px;
}

.attribution {
  color: var(--navy) !important;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
}

.photo-placeholder {
  align-items: center;
  aspect-ratio: 4 / 5;
  background: #E7E7E2;
  border: 1px solid var(--gray);
  color: var(--slate);
  display: flex;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  justify-content: center;
  min-height: 420px;
  padding: 28px;
  text-align: center;
}

.founder-photo {
  min-height: 420px;
  object-fit: cover;
}

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

.value-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 245px;
  padding: 28px;
}

.value-card h3 {
  margin-bottom: 14px;
}

.value-card p {
  color: rgba(255, 255, 255, 0.82);
}

.position-list p {
  color: #44515C;
}

.service-area {
  max-width: 850px;
}

.service-area p:not(.eyebrow) {
  color: #44515C;
  font-size: 1.2rem;
  margin-top: 18px;
}

.professional-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(6, 1fr);
}

.professional-card {
  background: var(--off-white);
  border: 1px solid var(--gray);
  min-height: 255px;
  padding: 28px;
}

.professional-card:nth-child(1),
.professional-card:nth-child(2),
.professional-card:nth-child(3) {
  grid-column: span 2;
}

.professional-card:nth-child(4),
.professional-card:nth-child(5) {
  grid-column: span 3;
}

.professional-card h3 {
  margin-bottom: 12px;
}

.professional-card p {
  color: #44515C;
}

.referral-steps {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}

.commitment-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.commitment-list p {
  background: var(--off-white);
  border-left: 4px solid var(--teal);
  color: #44515C;
  font-size: 1.12rem;
  padding: 18px 20px;
}

.contact-options {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}

.contact-option {
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 30px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.contact-option:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.contact-icon {
  align-items: center;
  background: rgba(60, 141, 141, 0.12);
  color: var(--teal);
  display: flex;
  height: 56px;
  justify-content: center;
  margin-bottom: 22px;
  width: 56px;
}

.contact-icon svg {
  fill: none;
  height: 28px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 28px;
}

.contact-option strong {
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-option span:last-child {
  color: #44515C;
  margin-top: 6px;
}

.disclaimer-bar {
  background: #D9B65D;
  color: #172331;
  font-weight: 700;
  padding: 24px 0;
}

.disclaimer-bar p {
  max-width: 1120px;
}

.article-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(6, 1fr);
}

.article-card {
  background: var(--off-white);
  border: 1px solid var(--gray);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  min-height: 360px;
  padding: 30px;
}

.article-card:nth-child(4),
.article-card:nth-child(5) {
  grid-column: span 3;
}

.category-tag {
  color: var(--teal);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.article-card h3 {
  margin-bottom: 14px;
}

.article-card p:not(.category-tag) {
  color: #44515C;
}

.article-card .text-link {
  margin-top: auto;
  padding-top: 28px;
}

.resource-callout {
  align-items: center;
  display: flex;
  gap: 36px;
  justify-content: space-between;
}

.resource-callout p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
  margin-top: 16px;
  max-width: 760px;
}

.resource-callout .btn {
  flex: 0 0 auto;
}

.bottom-cta {
  padding: 80px 0;
}

.cta-inner {
  align-items: center;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.cta-inner p:not(.eyebrow) {
  font-size: 1.25rem;
  margin-top: 16px;
}

.cta-actions {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
}

.cta-actions a:not(.btn) {
  color: var(--white);
  font-weight: 700;
}

.site-footer {
  background: #102337;
  color: rgba(255, 255, 255, 0.78);
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
}

.footer-brand img {
  background: var(--white);
  height: auto;
  margin-bottom: 20px;
  max-width: 220px;
  padding: 12px;
}

.footer-brand p:first-of-type {
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.disclaimer {
  font-size: 0.92rem;
  margin-top: 18px;
  max-width: 450px;
}

.footer-contact,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact h2,
.footer-links h2 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.footer-contact a,
.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
  margin-top: 40px;
  padding-top: 24px;
}

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 88px 0;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.7rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.25rem;
  margin-top: 18px;
  max-width: 760px;
}

.content-panel {
  background: var(--white);
  border: 1px solid var(--gray);
  padding: 38px;
}

.content-panel p + p {
  margin-top: 16px;
}

.legal-content {
  margin: 0 auto;
  max-width: 800px;
}

.legal-content section + section {
  border-top: 1px solid var(--gray);
  margin-top: 42px;
  padding-top: 42px;
}

.legal-content h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 26px 0 10px;
}

.legal-content p,
.legal-content li,
.legal-content address {
  color: #44515C;
}

.legal-content p + p,
.legal-content ul + p,
.legal-content address {
  margin-top: 14px;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 24px;
}

.legal-content li + li {
  margin-top: 7px;
}

.legal-content address {
  font-style: normal;
}

.legal-content a,
.situation-content a,
p.section-intro a,
.resolution-card a {
  color: var(--teal);
  font-weight: 700;
}

.legal-content a:hover,
.situation-content a:hover,
p.section-intro a:hover,
.resolution-card a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-section {
  background: var(--off-white);
  padding-top: 0;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray);
  margin: 0 auto;
  max-width: 900px;
  padding: 38px;
}

.contact-form {
  display: grid;
  gap: 22px;
}

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

.form-field,
.checkbox-field {
  display: grid;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--navy);
  font-weight: 600;
}

.form-field label span,
.checkbox-field strong {
  color: #B42318;
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--gray);
  border-radius: 4px;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  padding: 12px;
  width: 100%;
}

.form-field textarea {
  resize: vertical;
}

.contact-form.was-submitted input:required:invalid,
.contact-form.was-submitted select:required:invalid,
.contact-form.was-submitted textarea:required:invalid,
.contact-form.was-submitted .checkbox-field input:required:invalid {
  border-color: #B42318;
}

.checkbox-field {
  align-items: flex-start;
  color: #44515C;
  grid-template-columns: 20px 1fr;
  line-height: 1.45;
}

.checkbox-field input {
  height: 18px;
  margin: 4px 0 0;
  width: 18px;
}

.checkbox-field a {
  color: var(--teal);
  font-weight: 700;
}

.form-submit {
  width: 100%;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    background: var(--off-white);
    border: 1px solid var(--gray);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 18px;
    left: 24px;
    padding: 24px;
    position: absolute;
    right: 24px;
    top: calc(100% - 6px);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .three-column,
  .steps,
  .trust-list,
  .process-grid,
  .resolution-grid,
  .referral-steps,
  .value-grid,
  .situation-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .article-card,
  .article-card:nth-child(4),
  .article-card:nth-child(5) {
    grid-column: auto;
  }

  .professional-card:nth-child(1),
  .professional-card:nth-child(2),
  .professional-card:nth-child(3),
  .professional-card:nth-child(4),
  .professional-card:nth-child(5) {
    grid-column: auto;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .situation-layout {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .callout-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .resource-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .founder-layout {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .founder-photo {
    min-height: 300px;
    object-fit: cover;
    order: -1;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 17px;
  }

  .container,
  .nav {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav {
    min-height: 78px;
  }

  .nav-logo img {
    height: 46px;
  }

  .hero-inner {
    min-height: auto;
    padding-bottom: 72px;
    padding-top: 74px;
  }

  .hero-actions,
  .hero-actions .btn,
  .cta-actions,
  .cta-actions .btn {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .three-column,
  .steps,
  .trust-list,
  .process-grid,
  .resolution-grid,
  .referral-steps,
  .value-grid,
  .situation-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .professional-grid,
  .article-grid,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .trust-list article,
  .process-card,
  .resolution-card,
  .professional-card,
  .article-card,
  .value-card,
  .step,
  .content-panel {
    padding: 24px;
  }

  .feature-card,
  .trust-list article,
  .process-card,
  .resolution-card,
  .professional-card,
  .article-card,
  .value-card,
  .situation-card {
    min-height: auto;
  }

  .footer-brand img {
    max-width: 190px;
  }

  .photo-placeholder {
    min-height: 300px;
  }

  .contact-form-wrap {
    padding: 24px;
  }

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