:root {
  --ink:#173b35;
  --soft:#42645e;
  --forest:#244c43;
  --dark:#173a33;
  --sage:#a9be9d;
  --pale:#e8efe3;
  --cream:#f8f4eb;
  --paper:#fffdf8;
  --clay:#d98261;
  --gold:#e5b654;
  --line:rgba(23,59,53,.16);
  --shadow:0 1.5rem 4rem rgba(30,64,54,.13);
  --radius:1.5rem;
  --max:76rem;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Avenir Next",
    Avenir,
    "Segoe UI",
    system-ui,
    sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
a {
  color: inherit;
}
button {
  font: inherit;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  color: #fff;
  background: var(--forest);
  border-radius: .5rem;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  min-height: 5.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .45rem max(1.1rem, calc((100vw - var(--max))/2));
  background: #f8f7f2;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 .35rem 1rem rgba(23, 59, 53, .06);
}
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  line-height: 1.15;
}
.brand-copy strong {
  display: block;
  color: var(--forest);
  font-size: 1rem;
  letter-spacing: .045em;
  white-space: nowrap;
  text-transform: uppercase;
}
.brand-copy small {
  display: block;
  max-width: 10.5rem;
  margin-top: .18rem;
  color: var(--forest);
  font-size: .64rem;
  line-height: 1.3;
}
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
}
.brand-mark i {
  position: absolute;
  width: .6rem;
  height: 1.65rem;
  border-radius: 100%;
  background: var(--forest);
  transform: rotate(-35deg) translateY(-.35rem);
}
.brand-mark i:nth-child(2) {
  background: var(--sage);
  transform: rotate(35deg) translateY(-.35rem);
}
.brand-mark i:nth-child(3) {
  width: .45rem;
  height: 1.35rem;
  background: var(--clay);
  transform: translateY(.35rem);
}
nav {
  display: none;
}
.hero {
  position: relative;
  min-height: 42rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--cream);
}
.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img {
  object-fit: cover;
  object-position: 66% center;
}
.hero-shade {
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(19, 50, 43, .06) 15%,
      rgba(16, 43, 37, .86) 78%,
      rgba(16, 43, 37, .96));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem 3rem;
  color: #fff;
}
.eyebrow {
  margin: 0 0 .85rem;
  color: #4c6f66;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero .eyebrow,
.eyebrow-light {
  color: #e7ca84;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-weight: 500;
  line-height: 1.08;
}
h1 {
  max-width: none;
  margin-bottom: 1.25rem;
  font-size: clamp(1.8rem, 8.7vw, 2.35rem);
  letter-spacing: -.045em;
}
.hero .eyebrow,
h1 > span,
h1 em {
  white-space: nowrap;
}
h1 > span,
h1 em {
  display: block;
}
h1 em {
  color: #f2d48f;
  font-weight: 400;
}
h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.1rem, 9vw, 3.4rem);
  letter-spacing: -.035em;
}
h3 {
  margin-bottom: .6rem;
  font-size: 1.45rem;
}
.hero-copy {
  max-width: 34rem;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, .9);
  font-size: 1.05rem;
}
.hero-copy p {
  margin: 0;
}
.hero-copy p + p {
  margin-top: .8rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.25rem;
  padding: .85rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}
.button-primary {
  color: var(--dark);
  background: #f2d48f;
}
.button-light {
  color: var(--dark);
  background: #fff;
}
.button-call {
  color: #fff;
  background: var(--forest);
}
.text-link {
  padding: .55rem 0;
  font-weight: 700;
  text-underline-offset: .3rem;
}
.section {
  padding: 3rem 1.25rem;
}
.intro {
  background: var(--paper);
}
.intro-copy {
  color: var(--soft);
  font-size: 1.05rem;
}
.note {
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
  color: #61766f;
  font-size: .86rem;
}
.path {
  background: var(--pale);
}
.section-heading {
  max-width: 43rem;
  margin-bottom: 2.2rem;
}
.section-heading > p:last-child {
  color: var(--soft);
}
.path-grid {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.path-grid li {
  position: relative;
  min-height: 17rem;
  padding: 1.5rem;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(36, 76, 67, .08);
  border-radius: var(--radius);
}
.path-grid li:nth-child(2) {
  color: #fff;
  background: var(--forest);
}
.path-grid li p {
  color: var(--soft);
}
.path-grid li:nth-child(2) p {
  color: rgba(255, 255, 255, .76);
}
.step-number {
  color: #536f66;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.path-grid li:nth-child(2) .step-number {
  color: #d9bd7a;
}
.step-icon {
  display: grid;
  place-items: center;
  width: 4.4rem;
  height: 4.4rem;
  margin: 1.7rem 0;
  color: var(--forest);
  background: var(--pale);
  border-radius: 50%;
  font-size: 2.3rem;
}
.path-grid li:nth-child(2) .step-icon {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}
.step-icon-move {
  transform: rotate(-12deg);
}
.services {
  background: var(--cream);
}
.service-grid {
  display: grid;
  gap: 1rem;
}
.service-grid article {
  padding: 1.5rem;
  background: var(--paper);
  border: 1px solid rgba(36, 76, 67, .1);
  border-radius: var(--radius);
}
.service-grid article:target {
  outline: 3px solid rgba(229, 182, 84, .55);
  outline-offset: .2rem;
}
.service-grid h3 {
  margin: .25rem 0 .8rem;
  font-size: 1.55rem;
}
.service-grid h3 sup {
  font-size: .55em;
}
.service-grid article > p:not(.service-label) {
  margin-bottom: 0;
  color: var(--soft);
}
.service-grid article > p:not(.service-label) + p {
  margin-top: 1rem;
}
.service-label {
  margin: 0;
  color: #536f66;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}
.focus-list li {
  padding: .45rem .7rem;
  color: var(--forest);
  background: var(--pale);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
}
.for-whom {
  background: var(--paper);
}
.topic-grid {
  border-top: 1px solid var(--line);
}
.topic-grid article {
  display: block;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.topic-grid h3 {
  margin: 0 0 .6rem;
}
.topic-grid p {
  margin: 0;
  color: var(--soft);
}
.about {
  background: var(--cream);
}
.portrait-wrap {
  position: relative;
  max-width: 31rem;
  margin: 0 auto 3.5rem;
  padding: 1.1rem 1.1rem 4.3rem;
}
.portrait-wrap picture {
  position: relative;
  z-index: 1;
}
.portrait-wrap img {
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 45% 45% 2rem 2rem;
  box-shadow: var(--shadow);
}
.portrait-shape {
  position: absolute;
  inset: 0 0 2.5rem;
  border: 1px solid rgba(36, 76, 67, .25);
  border-radius: 48% 48% 2.5rem 2.5rem;
  transform: rotate(-4deg);
}
.portrait-label {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 1.4rem;
  padding: .9rem 1rem;
  color: #fff;
  background: var(--forest);
  border-radius: .8rem;
  box-shadow: var(--shadow);
  line-height: 1.3;
}
.portrait-label strong,
.portrait-label span {
  display: block;
}
.portrait-label strong {
  font-family: Georgia, serif;
}
.portrait-label span {
  margin-top: .25rem;
  color: #d9bd7a;
  font-size: .72rem;
}
.about-copy > p:not(.eyebrow) {
  color: var(--soft);
}
.qualifications {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}
.qualifications li {
  padding: .55rem .8rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 700;
}
.qualifications .qualification-expandable {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 1rem;
}
.qualification-expandable:has(details[open]) {
  flex-basis: 100%;
  max-width: 25rem;
}
.qualification-detail summary {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .8rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  list-style: none;
  cursor: pointer;
}
.qualification-detail summary::-webkit-details-marker {
  display: none;
}
.qualification-detail summary::after {
  content: "+";
  font-size: 1rem;
  line-height: 1;
}
.qualification-detail[open] summary::after {
  content: "\2212";
}
.qualification-detail p {
  margin: .55rem 0 0;
  padding: .8rem 1rem;
  color: var(--soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
  font-weight: 600;
}
.qualification-detail time {
  margin-right: .35rem;
  color: var(--forest);
  font-weight: 800;
}
.qualification-expandable.qualification-wide:has(details[open]) {
  max-width: 38rem;
}
.qualification-history {
  display: grid;
  gap: .7rem;
  margin: .55rem 0 0;
  padding: .9rem 1rem;
  color: var(--soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
  list-style: none;
}
.qualifications .qualification-history li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: .55rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: .82rem;
  font-weight: 600;
}
.qualifications .qualification-history li + li {
  padding-top: .7rem;
  border-top: 1px solid var(--line);
}
.qualification-history time {
  margin: 0;
}
.contact {
  color: #fff;
  background: var(--forest);
}
.contact-copy > p:last-child {
  max-width: 37rem;
  color: rgba(255, 255, 255, .72);
}
.contact-card {
  position: relative;
  margin-top: 2.5rem;
  padding: 1.5rem;
  color: var(--dark);
  background: #d9bd7a;
  border-radius: var(--radius);
}
.contact-actions {
  display: grid;
  gap: .75rem;
}
.contact-actions .button {
  width: 100%;
}
.contact-card p {
  font-family: Georgia, serif;
  font-size: 1.45rem;
}
.contact-card small {
  display: block;
  margin-top: 1rem;
  color: #244c43;
}
.contact-icon {
  position: absolute;
  right: 1.4rem;
  top: 1rem;
  font-size: 2rem;
}
footer {
  padding: 2.2rem 1.25rem;
  color: #d6e0db;
  background: #102e28;
}
.footer-brand strong,
.footer-brand span {
  display: block;
}
.footer-brand strong {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.2rem;
}
.footer-brand span {
  margin-top: .2rem;
  font-size: .78rem;
}
[aria-disabled=true] {
  cursor: not-allowed;
  opacity: .68;
}
details {
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}
summary {
  padding: 1rem 0;
  cursor: pointer;
  font-weight: 700;
}
.legal {
  padding: .5rem 0 1.5rem;
  color: #b5c7c0;
  font-size: .82rem;
}
.legal h2 {
  color: #fff;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.legal a {
  text-underline-offset: .2rem;
}
.copyright {
  margin: 1.4rem 0 0;
  color: #91aaa1;
  font-size: .75rem;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
  border-radius: .25rem;
}
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 .7rem 1.5rem rgba(11, 38, 31, .16);
}
.brand-symbol {
  width: 4.1rem;
  height: 4.1rem;
  flex: none;
  object-fit: contain;
}
.brand-copy {
  display: block;
}
.mobile-menu {
  position: relative;
  z-index: 20;
  border: 0;
}
.mobile-menu summary {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem .8rem;
  color: var(--forest);
  background: var(--pale);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}
.mobile-menu summary::-webkit-details-marker {
  display: none;
}
.mobile-menu summary i {
  display: flex;
  width: 1.25rem;
  height: .9rem;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu summary b {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .18s ease, opacity .18s ease;
}
.mobile-menu[open] summary b:first-child {
  transform: translateY(.4rem) rotate(45deg);
}
.mobile-menu[open] summary b:nth-child(2) {
  opacity: 0;
}
.mobile-menu[open] summary b:last-child {
  transform: translateY(-.4rem) rotate(-45deg);
}
.mobile-panel {
  position: absolute;
  right: 0;
  top: calc(100% + .65rem);
  display: grid;
  width: min(18rem, calc(100vw - 2rem));
  padding: .55rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}
.mobile-panel a {
  padding: .9rem 1rem;
  border-radius: .7rem;
  font-weight: 750;
  text-decoration: none;
}
.mobile-panel a:hover,
.mobile-panel a:focus-visible {
  background: var(--pale);
}
.mobile-menu summary {
  width: 3rem;
  height: 3rem;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
}
@media (min-width:48rem) {
  .site-header {
    min-height: 6.5rem;
    padding-inline: 2rem;
  }
  .brand-copy strong {
    font-size: 1.2rem;
  }
  .brand-copy small {
    max-width: none;
    font-size: .78rem;
  }
  nav {
    display: none;
    gap: 1.4rem;
    align-items: center;
  }
  nav a {
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
  }
  nav a:last-child {
    padding: .65rem 1rem;
    color: #fff;
    background: var(--forest);
    border-radius: 999px;
  }
  .hero {
    min-height: 43rem;
    align-items: center;
  }
  .hero-media img {
    object-position: 63% center;
  }
  .hero-shade {
    background:
      linear-gradient(
        90deg,
        rgba(248, 244, 235, .98),
        rgba(248, 244, 235, .86) 36%,
        rgba(248, 244, 235, .06) 68%);
  }
  .hero-content {
    padding: 5rem 2rem;
    color: var(--ink);
  }
  .hero .eyebrow {
    color: #4c6f66;
  }
  h1 {
    font-size: clamp(2.9rem, 5vw, 3.5rem);
  }
  h1 em {
    color: #f2d48f;
  }
  .hero-copy {
    color: var(--soft);
  }
  .button-primary {
    color: #fff;
    background: var(--forest);
  }
  .section {
    padding: 3rem 2rem;
  }
  .intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-grid article {
    padding: 1.8rem;
  }
  .path-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .path-grid li {
    padding: 1.7rem;
  }
  .topic-grid article {
    display: grid;
    grid-template-columns: 12rem 1fr;
    gap: 2rem;
    align-items: start;
  }
  .topic-grid h3 {
    grid-column: 1;
    margin: 0;
  }
  .topic-grid p {
    grid-column: 2;
  }
  .about {
    display: grid;
    grid-template-columns: minmax(18rem, .8fr) 1.2fr;
    gap: 4.5rem;
    align-items: center;
  }
  .portrait-wrap {
    margin: 0;
  }
  .contact {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 4rem;
    align-items: center;
  }
  .contact-card {
    margin: 0;
  }
  footer {
    padding: 3rem 2rem;
  }
  .legal {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  details[open] .legal {
    display: grid;
  }
  .brand-symbol {
    width: 5.5rem;
    height: 5.5rem;
  }
  .mobile-menu {
    display: block;
  }
}
@media (min-width:75rem) {
  nav {
    display: flex;
    gap: 1.1rem;
  }
  .mobile-menu {
    display: none;
  }
  .site-header {
    padding-inline: max(2rem, calc((100vw - var(--max))/2));
  }
  nav {
    gap: 2.2rem;
  }
  .hero-content {
    padding-inline: 0;
  }
  .section {
    padding: 3rem max(2rem, calc((100vw - var(--max))/2));
  }
  .hero {
    min-height: 47rem;
  }
  .hero-shade {
    background:
      linear-gradient(
        90deg,
        rgba(248, 244, 235, .99),
        rgba(248, 244, 235, .88) 34%,
        rgba(248, 244, 235, 0) 65%);
  }
  h1 {
    font-size: 4.2rem;
  }
  .path-grid li {
    min-height: 20rem;
    padding: 2rem;
  }
  .contact-card {
    padding: 2rem;
  }
  footer {
    padding-inline: max(2rem, calc((100vw - var(--max))/2));
  }
  .brand-symbol {
    width: 5.5rem;
    height: 5.5rem;
  }
  .brand-copy strong {
    font-size: 1.4rem;
  }
  .brand-copy small {
    font-size: .86rem;
  }
}
