@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

input, button, textarea, select {
  font: inherit;
}

ul[class], ol[class] {
  list-style: none;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #26302A;
  background: #F7F8F4;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: #2E3A2C;
  text-wrap: balance;
}

p {
  margin-block: 0 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: #2E3A2C;
  text-decoration-color: rgba(143, 175, 124, 0.7);
  text-underline-offset: 3px;
  transition: color 0.25s ease;
}
a:hover {
  color: #74856A;
}

strong {
  font-weight: 600;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: #2E3A2C;
  color: #FFFFFF;
  border-radius: 0 0 8px 8px;
}
.skip-link:focus {
  top: 0;
  color: #FFFFFF;
}

:focus-visible {
  outline: 2px solid #8FAF7C;
  outline-offset: 2px;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #74856A;
  margin-bottom: 0.5rem;
}

.topbar {
  display: none;
  position: fixed;
  inset: 0 0 auto 0;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.25rem;
  background: #2E3A2C;
  z-index: 50;
}
.topbar__brand img {
  height: 34px;
  width: auto;
}
.topbar__toggle {
  display: grid;
  gap: 5px;
  padding: 0.75rem 0.5rem;
  background: none;
  border: 0;
  cursor: pointer;
}
.topbar__toggle-bar {
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.topbar__toggle[aria-expanded=true] .topbar__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.topbar__toggle[aria-expanded=true] .topbar__toggle-bar:nth-child(2) {
  opacity: 0;
}
.topbar__toggle[aria-expanded=true] .topbar__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 1023px) {
  .topbar {
    display: flex;
  }
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 280px;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  background: #2E3A2C;
  color: rgba(255, 255, 255, 0.85);
  z-index: 40;
}
.sidebar__brand {
  text-decoration: none;
  margin-bottom: 3rem;
}
.sidebar__brand img {
  width: 100%;
  height: auto;
}
.sidebar__baseline {
  display: block;
  margin-top: 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  text-align: center;
}
.sidebar__nav {
  flex: 1;
}
.sidebar__nav ul {
  display: grid;
  gap: 0.25rem;
  list-style: none;
}
.sidebar__link {
  display: block;
  padding: 0.65rem 0.9rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-right: 2px solid transparent;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.sidebar__link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
}
.sidebar__link.is-active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.09);
  border-right-color: #8FAF7C;
}
.sidebar__contact {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
.sidebar__contact a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.sidebar__contact a:hover {
  color: #FFFFFF;
}
.sidebar__contact p {
  margin: 0.6rem 0 0;
}
@media (max-width: 1023px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding-top: calc(64px + 1.5rem);
    width: min(320px, 85vw);
    box-shadow: none;
  }
  .sidebar.is-open {
    transform: translateX(0);
    box-shadow: 0 10px 40px rgba(38, 48, 42, 0.1);
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(38, 48, 42, 0.5);
  z-index: 35;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.is-visible {
  opacity: 1;
}
@media (min-width: 1024px) {
  .nav-overlay {
    display: none !important;
  }
}

.main {
  margin-left: 280px;
  min-height: 100vh;
}
@media (max-width: 1023px) {
  .main {
    margin-left: 0;
    padding-top: 64px;
  }
}

.section {
  padding: 5rem 2.5rem;
}
.section--tinted {
  background: #E7EDE2;
}
.section__inner {
  max-width: 1200px;
  margin-inline: auto;
}
.section__inner--narrow {
  max-width: 760px;
}
.section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .section {
    padding: 3.5rem 1.5rem;
  }
}

.footer {
  margin-left: 280px;
  background: #2E3A2C;
  color: rgba(255, 255, 255, 0.75);
}
.footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.footer a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
.footer__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 4rem 2.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
}
.footer__brand img {
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
}
.footer__brand p {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.footer__title {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}
.footer__nav ul {
  display: grid;
  gap: 0.4rem;
}
.footer__legal {
  max-width: 1200px;
  margin-inline: auto;
  padding: 1.5rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.footer__legal p {
  margin: 0;
}
@media (max-width: 1023px) {
  .footer {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem 2rem;
  }
  .footer__legal {
    padding-inline: 1.5rem;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(46, 58, 44, 0.95) 0%, rgba(46, 58, 44, 0) 70%);
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  padding: 4rem 2.5rem;
  color: #FFFFFF;
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}
.hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: #8FAF7C;
  vertical-align: middle;
  margin-right: 0.75rem;
}
.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  line-height: 3rem;
}
.hero__lead {
  max-width: 34rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero--full {
  min-height: 100vh;
  min-height: 100svh;
}
@media (max-width: 1023px) {
  .hero--full {
    min-height: calc(100svh - 64px);
  }
}
.hero--band {
  min-height: 46vh;
}
.hero--band .hero__content {
  padding-block: 3rem;
}
@media (max-width: 767px) {
  .hero__content {
    padding: 2.5rem 1.5rem;
  }
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-align: center;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--primary {
  background: #8FAF7C;
  color: #2E3A2C;
}
.btn--primary:hover {
  background: rgb(159.2426540284, 186.6018957346, 142.9981042654);
  color: #2E3A2C;
}
.btn--ghost {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--ghost:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.about__actions .btn--ghost {
  color: #2E3A2C;
  border-color: rgba(46, 58, 44, 0.4);
}
.about__actions .btn--ghost:hover {
  color: #2E3A2C;
  border-color: #2E3A2C;
  background: rgba(46, 58, 44, 0.05);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 767px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(38, 48, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(38, 48, 42, 0.1);
}
.card__icon {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.25rem;
  color: #8FAF7C;
}
.card__icon svg {
  width: 100%;
  height: 100%;
}
.card__title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.card p {
  flex: 1;
  color: #5C6B58;
}
.card__link {
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}
.card__link::after {
  content: " →";
  transition: margin 0.25s ease;
}
.card__link:hover::after {
  margin-left: 0.3rem;
}

.form {
  display: grid;
  gap: 1.4rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
@media (max-width: 559px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}
.form__field {
  display: grid;
  gap: 0.45rem;
}
.form__field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #2E3A2C;
}
.form__field input, .form__field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #FFFFFF;
  border: 1px solid rgba(116, 133, 106, 0.45);
  border-radius: 8px;
  color: #26302A;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form__field input:focus, .form__field textarea:focus {
  outline: none;
  border-color: #8FAF7C;
  box-shadow: 0 0 0 3px rgba(143, 175, 124, 0.25);
}
.form__field textarea {
  resize: vertical;
  min-height: 140px;
}
.form__field.has-error input, .form__field.has-error textarea {
  border-color: #B4452F;
}
.form__error {
  font-size: 0.82rem;
  color: #B4452F;
  margin: 0;
}
.form__optional {
  font-weight: 400;
  color: #5C6B58;
}
.form__rgpd {
  font-size: 0.82rem;
  color: #5C6B58;
}
.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: #2E3A2C;
  cursor: pointer;
}
.form__checkbox input {
  width: auto;
  margin-top: 0.2rem;
  accent-color: #8FAF7C;
}
.form__field--checkbox.has-error .form__checkbox {
  color: #B4452F;
}
.form__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form .btn {
  justify-self: start;
}

.form-alert {
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.form-alert p {
  margin: 0;
}
.form-alert--success {
  background: rgba(62, 107, 58, 0.1);
  border: 1px solid rgba(62, 107, 58, 0.35);
  color: #3E6B3A;
}
.form-alert--error {
  background: rgba(180, 69, 47, 0.08);
  border: 1px solid rgba(180, 69, 47, 0.35);
  color: #B4452F;
}

.intro .section__title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}
.intro p {
  color: #5C6B58;
  font-size: 1.05rem;
}

.cta-band {
  background: #2E3A2C;
  text-align: center;
}
.cta-band__title {
  color: #FFFFFF;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  margin-bottom: 0.75rem;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 42%) 1fr;
}
.about__media {
  position: relative;
}
.about__media picture {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
}
@media (max-width: 1023px) {
  .about__media picture {
    top: 64px;
    height: calc(100svh - 64px);
  }
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__content {
  padding: 5rem 4rem;
  max-width: 46rem;
}
.about__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
}
.about__baseline {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #74856A;
  margin: 0.75rem 0 2rem;
}
.about__lead {
  font-size: 1.15rem;
  color: #5C6B58;
}
.about__subtitle {
  font-size: 1.45rem;
  margin: 3rem 0 1.25rem;
}
.about__domains {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 559px) {
  .about__domains {
    grid-template-columns: 1fr;
  }
}
.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .about {
    grid-template-columns: 1fr;
  }
  .about__media picture {
    position: static;
    height: auto;
    max-height: 60vh;
  }
  .about__content {
    padding: 3rem 1.5rem;
  }
}

.domain {
  padding: 1.5rem;
  background: #E7EDE2;
  border-radius: 14px;
}
.domain__title {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #74856A;
  margin-bottom: 0.6rem;
}
.domain p {
  margin: 0;
  font-size: 0.95rem;
}

.degrees {
  display: grid;
  gap: 1rem;
}

.degree {
  padding: 1.1rem 1.4rem;
  background: #FFFFFF;
  border-left: 3px solid #8FAF7C;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 12px rgba(38, 48, 42, 0.05);
}
.degree strong {
  display: block;
  color: #2E3A2C;
}
.degree span {
  font-size: 0.88rem;
  color: #5C6B58;
  font-style: italic;
}

.anchors {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: rgba(247, 248, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(116, 133, 106, 0.2);
}
.anchors a {
  padding: 0.45rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: #2E3A2C;
  border: 1px solid rgba(116, 133, 106, 0.4);
  border-radius: 999px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.anchors a:hover {
  background: #E7EDE2;
  border-color: #8FAF7C;
}
@media (max-width: 1023px) {
  .anchors {
    top: 64px;
  }
}

.presta {
  scroll-margin-top: 5rem;
}
.presta__heading {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  margin-left: -5.5rem;
}
.presta__heading-text {
  display: flow-root;
}
.presta__heading-text .section__title {
  margin-bottom: 0;
}
.presta__icon {
  flex-shrink: 0;
  width: 4rem;
  color: #8FAF7C;
}
.presta__icon svg {
  width: 100%;
  height: 100%;
}
.presta__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #74856A;
  margin-bottom: 0.5rem;
}
.presta__sub {
  margin-top: -0.75rem;
  margin-bottom: 1.5rem;
  color: #5C6B58;
}
.presta__highlight {
  margin: 2rem 0;
  padding: 1.6rem 2rem;
  background: rgba(143, 175, 124, 0.14);
  border-left: 3px solid #8FAF7C;
  border-radius: 0 14px 14px 0;
}
.presta__highlight p {
  margin: 0;
  font-weight: 500;
}
.presta__highlight--facts {
  background: #FFFFFF;
  border: 1px solid rgba(116, 133, 106, 0.3);
  border-left: 3px solid #8FAF7C;
}
.presta__highlight--facts dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0;
}
@media (max-width: 559px) {
  .presta__highlight--facts dl {
    grid-template-columns: 1fr;
  }
}
.presta__highlight--facts dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #74856A;
  margin-bottom: 0.3rem;
}
.presta__highlight--facts dd {
  margin: 0;
  font-size: 0.95rem;
}
.presta__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1em;
  display: grid;
  gap: 0.6rem;
}
.presta__list li {
  padding-left: 1.5rem;
  position: relative;
}
.presta__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #8FAF7C;
}
.presta__cta-line {
  margin-top: 2rem;
  font-weight: 500;
}
.presta__resource {
  font-size: 0.92rem;
  color: #5C6B58;
}
.presta__resource span {
  color: #8FAF7C;
  margin-right: 0.35rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.4fr;
  gap: 4rem;
}
@media (max-width: 767px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.contact__item {
  margin-bottom: 1.75rem;
}
.contact__item h3 {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #74856A;
  margin-bottom: 0.4rem;
}
.contact__item p {
  margin: 0;
}
.contact__map-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.legal h2 {
  font-size: 1.3rem;
  margin: 2.5rem 0 0.75rem;
}

/*# sourceMappingURL=main.css.map */
