@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(assets/fonts/dm-sans.woff2) format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(assets/fonts/manrope.woff2) format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

:root {
  --green: #064a36;
  --deep: #073e30;
  --lime: #d6ee99;
  --ink: #142e27;
  --muted: #64726b;
  --paper: #fcfcf8;
  --line: #dce3db;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "DM Sans", sans-serif;
  --heading: "Manrope", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.13;
  font-weight: 600;
}
em {
  font-family: var(--serif);
  font-weight: 400;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #b88119;
  outline-offset: 6px;
}
.container {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.announcement {
  background: var(--green);
  color: white;
  text-align: center;
  padding: 9px 20px;
  font-size: 12px;
  letter-spacing: 0.07em;
}
.announcement span {
  opacity: 0.78;
  margin-left: 7px;
}
.site-header {
  background: rgba(252, 252, 248, 0.97);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #e8eae3;
}
.header-inner {
  min-height: 101px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  border-radius: 50%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.brand > span {
  font-family: var(--heading);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1.2;
  color: var(--green);
}
.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink);
  margin-top: 5px;
}
.header-inner nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 14px;
  font-weight: 500;
}
.header-inner nav > a:not(.button):hover {
  color: #21774b;
}
.button {
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 17px 24px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--green);
  border-radius: 5px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #0c6045;
  transform: translateY(-2px);
}
.button span {
  font-size: 22px;
  line-height: 1;
}
.button-small {
  padding: 12px 18px;
  gap: 24px;
}
.menu-toggle {
  display: none;
}
.hero {
  padding: 62px 0 70px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.6;
  color: var(--green);
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}
.short-line {
  height: 1px;
  width: 29px;
  background: var(--green);
}
h1 {
  font-family: var(--heading);
  font-size: clamp(40px, 4.4vw, 62px);
  letter-spacing: -0.055em;
  line-height: 1.16;
  margin: 23px 0 22px;
  font-weight: 650;
}
h1 em {
  color: var(--green);
  letter-spacing: -0.047em;
  font-size: 1.06em;
  white-space: normal;
}
.hero-description {
  font-size: 16px;
  max-width: 405px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 29px;
}
.hero-footnote {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
}
.compass {
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  color: #6c8e49;
}
.hero-footnote p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}
.hero-footnote strong {
  font-weight: 500;
  color: var(--ink);
}
.hero-visual {
  position: relative;
  padding: 0 18px 30px 0;
  min-width: 0;
}
.photo-frame {
  height: 516px;
  background: var(--green);
  position: relative;
  border-radius: 140px 8px 8px 8px;
  overflow: hidden;
}
.photo-frame:after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(0, 30, 19, 0.65));
}
.photo-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}
.photo-label {
  position: absolute;
  bottom: 31px;
  left: 27px;
  z-index: 1;
  font-size: 10px;
  letter-spacing: 0.17em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 11px;
}
.photo-label > span {
  font-size: 23px;
}
.journey-card {
  position: absolute;
  right: -9px;
  bottom: 0;
  background: var(--lime);
  border-radius: 6px;
  padding: 24px 29px;
  display: flex;
  align-items: center;
  gap: 21px;
  z-index: 2;
  box-shadow: 0 8px 24px #0e382010;
}
.journey-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #4e704780;
  border-radius: 50%;
  font-size: 27px;
}
.journey-card small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.journey-card p {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.15;
  margin-top: 6px;
}
.vertical-note {
  position: absolute;
  right: -16px;
  top: 45px;
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.focus-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f2f5ed;
}
.focus-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 25px;
}
.focus-inner p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}
.focus-inner strong {
  font-weight: 500;
  color: var(--ink);
}
.focus-inner > span {
  font-family: var(--heading);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.025em;
}
.focus-inner > span:before {
  content: "✳";
  color: #66874e;
  margin-right: 17px;
  font-size: 17px;
}
.section {
  padding-block: 93px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 37px;
}
h2 {
  font-family: var(--heading);
  font-size: clamp(34px, 3.2vw, 44px);
  letter-spacing: -0.045em;
  line-height: 1.2;
  margin-top: 15px;
}
h2 em {
  letter-spacing: -0.03em;
  color: var(--green);
}
.section-heading > p {
  max-width: 345px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 3px;
}
.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.option-card {
  padding: 32px 35px 29px;
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.medical-card {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.education-card {
  background: #eff3e8;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 29px;
}
.line-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #87a091;
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
}
.card-number {
  font-size: 10px;
  letter-spacing: 0.12em;
  opacity: 0.7;
}
.option-card h3 {
  font-family: var(--heading);
  font-size: 25px;
  letter-spacing: -0.035em;
  margin-bottom: 17px;
  position: relative;
  z-index: 1;
}
.option-card > p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 400px;
  color: var(--muted);
}
.medical-card > p {
  color: #d1e0d9;
}
.option-card ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 29px;
  font-size: 13px;
  position: relative;
  z-index: 1;
}
.option-card li {
  margin: 8px 0;
}
.option-card li:before {
  content: "✓";
  margin-right: 10px;
  color: #517c48;
}
.medical-card li:before {
  color: var(--lime);
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #a5b6a4;
  padding-bottom: 7px;
  position: relative;
  z-index: 1;
}
.text-link:hover {
  border-bottom-color: currentColor;
}
.text-link span {
  font-size: 21px;
  line-height: 1;
}
.medical-card .text-link {
  color: var(--lime);
  border-color: #87a477;
}
.card-watermark {
  font-size: 210px;
  line-height: 0.9;
  position: absolute;
  right: -4px;
  bottom: -21px;
  opacity: 0.045;
  font-family: var(--heading);
  pointer-events: none;
}
.section-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 19px;
  max-width: 900px;
}
.approach-section {
  background: #f0f3ed;
  padding: 76px 0;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 94px;
  align-items: center;
}
.approach-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  max-width: 360px;
  margin: 24px 0;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps li {
  display: flex;
  gap: 24px;
  padding: 27px 0;
  border-bottom: 1px solid #d3dccf;
}
.steps li:first-child {
  padding-top: 0;
}
.steps li:last-child {
  border: 0;
  padding-bottom: 0;
}
.step-number {
  font-family: var(--serif);
  color: #738765;
  font-size: 31px;
  line-height: 1.15;
}
.steps h3 {
  font-family: var(--heading);
  font-size: 19px;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.steps p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.28fr;
  gap: 72px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 23px 0;
  font-size: 14px;
  font-weight: 500;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s;
}
details[open] summary > span {
  transform: rotate(45deg);
}
details > p {
  color: var(--muted);
  font-size: 14px;
  padding: 0 28px 23px 0;
}
.contact-section {
  background: var(--green);
  color: #fff;
  border-radius: 10px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 50px;
}
.contact-section .eyebrow {
  color: var(--lime);
  font-size: 10px;
}
.contact-section h2 {
  font-size: 42px;
}
.contact-section h2 em {
  color: var(--lime);
}
.contact-main > p:not(.eyebrow) {
  color: #d5e2da;
  font-size: 14px;
  margin-top: 20px;
}
.contact-pending {
  font-size: 12px;
  color: #e0eadf;
  margin-top: 22px;
  border-top: 1px solid #42715e;
  padding-top: 17px;
  display: inline-block;
}
.contact-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.contact-links .button {
  background: var(--lime);
  color: var(--green);
  border-color: var(--lime);
}
.contact-address {
  font-size: 14px;
  margin-top: 16px;
  color: #e0eadf;
}
.conversation-card {
  background: #ffffff09;
  border: 1px solid #628775;
  border-radius: 6px;
  padding: 30px;
}
.conversation-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin-top: 12px;
}
.conversation-card ol {
  list-style: none;
  padding: 0;
  margin: 21px 0 0;
  font-size: 13px;
}
.conversation-card li {
  padding: 10px 0;
  border-bottom: 1px solid #456e5d;
  display: flex;
  gap: 12px;
}
.conversation-card li:last-child {
  border: 0;
  padding-bottom: 0;
}
.conversation-card li span {
  color: #b1c8ad;
  font-size: 11px;
  padding-top: 1px;
}
.footer {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 30px 36px;
}
.footer-brand > span {
  font-size: 17px;
}
.footer-brand small {
  font-size: 8px;
}
.footer > p {
  font-size: 12px;
  color: var(--muted);
}
.footer > small {
  font-size: 11px;
  color: var(--muted);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--lime);
  color: var(--ink);
  padding: 10px 20px;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
@media (min-width: 1500px) {
  .hero {
    padding-block: 80px;
  }
  .photo-frame {
    height: 550px;
  }
  h1 {
    font-size: 64px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .header-inner nav {
    gap: 20px;
  }
  .brand > span {
    font-size: 18px;
  }
  .brand img {
    width: 52px;
    height: 52px;
  }
  .hero-grid {
    gap: 32px;
  }
  h1 {
    font-size: clamp(36px, 4.5vw, 49px);
  }
  .hero-visual {
    padding-right: 10px;
  }
  .photo-frame {
    height: 480px;
  }
  .journey-card {
    right: 0;
    padding: 21px;
  }
  .approach-grid {
    gap: 55px;
  }
  .contact-section {
    padding: 42px;
    gap: 35px;
  }
  .contact-section h2 {
    font-size: 38px;
  }
}
@media (max-width: 850px) {
  .header-inner {
    min-height: 86px;
  }
  .header-inner nav {
    gap: 17px;
  }
  .header-inner nav > .button {
    display: none;
  }
  .hero {
    padding-top: 44px;
  }
  .hero-grid {
    gap: 26px;
  }
  h1 {
    font-size: 37px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-copy > .button {
    gap: 15px;
    padding: 15px;
    font-size: 12px;
  }
  .hero-footnote {
    margin-top: 24px;
  }
  .photo-frame {
    height: 450px;
    border-top-left-radius: 105px;
  }
  .journey-card {
    padding: 17px;
    gap: 12px;
  }
  .journey-card p {
    font-size: 24px;
  }
  .vertical-note {
    right: -12px;
  }
  .focus-inner {
    gap: 18px;
  }
  .focus-inner > span {
    font-size: 13px;
  }
  .focus-inner > span:before {
    margin-right: 8px;
  }
  .section {
    padding-block: 65px;
  }
  .section-heading > p {
    max-width: 270px;
  }
  .option-card {
    padding: 26px;
  }
  .option-card h3 {
    font-size: 22px;
  }
  .approach-grid {
    gap: 40px;
  }
  .faq-section {
    gap: 36px;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .contact-section {
    padding: 34px;
    gap: 30px;
  }
  .contact-section h2 {
    font-size: 34px;
  }
  .conversation-card {
    padding: 22px;
  }
  .conversation-card h3 {
    font-size: 24px;
  }
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 90px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .announcement {
    font-size: 10px;
    letter-spacing: 0.025em;
    padding: 8px 12px;
  }
  .announcement span {
    margin-left: 3px;
  }
  .brand > span {
    font-size: 17px;
  }
  .brand small {
    font-size: 8px;
  }
  .brand img {
    height: 49px;
    width: 49px;
  }
  .header-inner {
    min-height: 80px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 4px;
    width: 43px;
    height: 43px;
    cursor: pointer;
  }
  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: var(--green);
  }
  .header-inner nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 18px 20px 25px;
    box-shadow: 0 10px 12px #073e3010;
    border-bottom: 1px solid var(--line);
    align-items: stretch;
    gap: 0;
    flex-direction: column;
  }
  .header-inner nav.is-open {
    display: flex;
  }
  .header-inner nav > a {
    padding: 12px 10px;
  }
  .header-inner nav > .button {
    display: flex;
    margin-top: 10px;
  }
  .hero {
    padding: 36px 0 43px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  h1 {
    font-size: clamp(35px, 9.1vw, 54px);
    margin-top: 20px;
    line-height: 1.14;
  }
  .hero-description {
    font-size: 15px;
    max-width: 430px;
    margin-bottom: 24px;
  }
  .hero-copy > .button {
    font-size: 14px;
    padding: 15px 20px;
    gap: 27px;
  }
  .hero-footnote {
    display: none;
  }
  .hero-visual {
    padding: 0 14px 24px 0;
  }
  .photo-frame {
    height: 390px;
    border-top-left-radius: 105px;
  }
  .journey-card {
    right: 0;
    padding: 20px 25px;
  }
  .journey-card p {
    font-size: 27px;
  }
  .photo-label {
    left: 20px;
    bottom: 33px;
    font-size: 9px;
    max-width: 110px;
    line-height: 1.6;
  }
  .vertical-note {
    right: -4px;
    top: 28px;
    font-size: 8px;
  }
  .focus-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding-block: 24px;
  }
  .focus-inner p {
    font-size: 11px;
  }
  .focus-inner > span {
    font-size: 12px;
  }
  .focus-inner > span:before {
    font-size: 14px;
  }
  .section {
    padding-block: 57px;
  }
  .section-heading {
    display: block;
    margin-bottom: 26px;
  }
  h2 {
    font-size: 34px;
  }
  .section-heading > p {
    max-width: 100%;
    margin-top: 20px;
  }
  .options-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .option-card {
    padding: 28px;
  }
  .option-card h3 {
    font-size: 25px;
  }
  .option-card p {
    font-size: 14px;
  }
  .option-card ul {
    font-size: 14px;
  }
  .section-note {
    font-size: 11px;
  }
  .approach-section {
    padding: 51px 0;
  }
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .approach-intro > p:not(.eyebrow) {
    max-width: 100%;
  }
  .steps li {
    padding: 22px 0;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  summary {
    font-size: 14px;
    padding-block: 20px;
  }
  .contact-section {
    width: calc(100% - 24px);
    padding: 33px 24px;
    grid-template-columns: 1fr;
    gap: 27px;
    border-radius: 7px;
    margin-bottom: 32px;
  }
  .contact-section .eyebrow {
    font-size: 9px;
  }
  .contact-section h2 {
    font-size: 37px;
  }
  .contact-main > p:not(.eyebrow) {
    font-size: 14px;
  }
  .conversation-card {
    padding: 23px;
  }
  .conversation-card h3 {
    font-size: 27px;
  }
  .footer {
    flex-wrap: wrap;
    gap: 22px;
    padding-block: 25px;
  }
  .footer > p {
    margin-left: auto;
    font-size: 10px;
  }
  .footer > small {
    width: 100%;
    border-top: 1px solid var(--line);
    padding-top: 18px;
  }
  .footer-brand > span {
    font-size: 14px;
  }
  .footer-brand img {
    height: 43px;
    width: 43px;
  }
  .footer-brand {
    gap: 8px;
  }
  .footer-brand small {
    font-size: 7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}

/* Reading text scales with the visitor’s browser font settings. */
.hero-description,
.section-heading > p,
.option-card > p,
.approach-intro > p:not(.eyebrow),
.steps p,
details > p,
.contact-main > p:not(.eyebrow) {
  font-size: 1rem;
}
summary,
.option-card ul {
  font-size: 0.9375rem;
}
.section-note,
.contact-pending {
  font-size: 0.875rem;
}
