:root {
  --bg: #fbfaf7;
  --ink: #262b31;
  --ink2: #4c5258;
  --ink3: #71767c;
  --line: #e7e4dc;
  --link: #3d5468;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--link);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--link);
  outline-offset: 3px;
}

header.site {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 48px 22px;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--ink3);
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

nav.main {
  display: flex;
  align-items: baseline;
  gap: 28px;
}

nav.main a {
  color: var(--ink2);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

nav.main a:hover,
nav.main a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

nav.main a:last-child {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
}

nav.main a:last-child:hover {
  background: #fff;
  text-decoration: none;
}

.hamb {
  display: none;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: none;
  color: var(--ink);
  font-size: 15px;
  cursor: pointer;
}

.mnav {
  display: none;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.mnav a {
  padding: 14px 24px;
  border-top: 1px solid var(--line);
  color: var(--ink2);
  font-size: 15px;
  text-decoration: none;
}

.mnav a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mnav.open {
  display: flex;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: center;
  gap: 56px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 72px 48px 60px;
}

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

.hero h1 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.22;
}

.hero p.sub {
  margin-bottom: 24px;
  color: var(--ink2);
  font-size: 16px;
  line-height: 1.7;
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid var(--link);
  border-radius: 3px;
  background: var(--link);
  color: #fff;
  font-size: 13.5px;
  line-height: 1.2;
  text-decoration: none;
}

.cta:hover {
  border-color: var(--ink);
  background: var(--ink);
}

.cta-secondary {
  background: transparent;
  color: var(--link);
}

.cta-secondary:hover {
  border-color: var(--link);
  background: #fff;
  color: var(--ink);
}

.cta-note {
  margin-top: 12px;
  color: var(--ink3);
  font-size: 12.5px;
  line-height: 1.55;
}

section.body {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 48px;
}

h1.sec,
h2.sec {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
}

h2.sub {
  margin: 32px 0 8px;
  font-family: var(--serif);
  font-size: 18.5px;
  font-weight: 500;
}

section.body p,
.twocol p {
  margin-bottom: 18px;
  color: var(--ink2);
  font-size: 16px;
  line-height: 1.8;
}

section.body.fit-section {
  padding-top: 12px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.fees-heading {
  margin-top: 0;
}

section.body.fit-section p:last-child {
  margin-bottom: 0;
}

.endnote {
  max-width: 1000px;
  margin: 0 auto;
  padding: 36px 48px 44px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.endnote p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
}

.endnote .small {
  margin-top: 8px;
  color: var(--ink3);
  font-family: var(--sans);
  font-size: 13.5px;
}

footer.site {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 36px 48px;
  border-top: 1px solid var(--line);
}

footer.site .col {
  color: var(--ink2);
  font-size: 13px;
  line-height: 1.9;
}

footer.site b {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 14.5px;
  font-weight: 500;
}

footer.site a {
  text-decoration: none;
}

footer.site a:hover {
  text-decoration: underline;
}

.twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 48px;
}

.twocol img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
}

.office {
  padding-top: 0;
}

.office figcaption {
  color: var(--ink3);
  font-size: 14px;
  line-height: 1.7;
}

.training-copy p:last-child {
  margin-top: 18px;
}

.fee-list {
  margin: 4px 0 18px;
}

.feerow {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--ink2);
  font-size: 15px;
}

.feerow:last-of-type {
  border-bottom: 1px solid var(--line);
}

.feerow .amt {
  color: var(--ink);
  font-family: var(--serif);
  white-space: nowrap;
}

.legal-note {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--ink3) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

.empty-page {
  min-height: 38vh;
}

@media (max-width: 1000px) {
  header.site {
    align-items: center;
    padding: 16px 22px;
  }

  nav.main {
    display: none;
  }

  .hamb {
    display: block;
  }
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    padding: 40px 22px 44px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero img {
    order: -1;
    width: min(100%, 320px);
    max-width: 320px;
    margin: 0 auto;
  }

  .hero picture {
    min-width: 0;
  }

  section.body {
    padding: 44px 22px;
  }

  section.body.fit-section {
    padding-top: 0;
    padding-bottom: 44px;
  }

  .twocol {
    grid-template-columns: 1fr;
    padding: 44px 22px;
  }

  .office {
    padding-top: 0;
  }

  .endnote {
    padding: 32px 22px 36px;
  }

  footer.site {
    flex-direction: column;
    padding: 32px 22px;
  }

  .feerow {
    align-items: baseline;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
