:root {
  color-scheme: dark;
  --ink:#f0eee6;
  --muted:#b8b7ae;
  --night:#090b09;
  --paper:#e9e6dc;
  --line:#eee8d72b;
  --serif:"Cormorant Garamond",Baskerville,Georgia,serif;
  --sans:"Manrope","Helvetica Neue",sans-serif;
  --gutter:clamp(24px,4vw,76px);
  --ease:cubic-bezier(.19,1,.22,1);
}
* {
  box-sizing: border-box;
}
[hidden] { display: none !important; }
.ui-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}
html,
body {
  background: var(--night);
}
body {
  margin: 0;
  color: var(--ink);
  font: 13px var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
}
h1,
h2,
p,
figure,
blockquote {
  margin: 0;
}
a:focus-visible,
button:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 8px;
}
::selection {
  background: var(--paper);
  color: var(--night);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  transform: translateY(-200%);
  padding: 14px;
  background: var(--paper);
  color: var(--night);
  z-index: 30;
}
.skip-link:focus {
  transform: none;
}
.site-shell {
  height: 100svh;
  height: 100dvh;
  min-height: 0;
  position: relative;
  isolation: isolate;
  transition: opacity 1s ease;
}
.is-entering .site-shell {
  opacity: 0;
}
.site-header {
  height: 118px;
  padding: max(28px, env(safe-area-inset-top)) max(var(--gutter), env(safe-area-inset-right)) 28px max(var(--gutter), env(safe-area-inset-left));
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
.menu-toggle,
.close-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  min-height: 44px;
}
.menu-toggle {
  border-bottom: 1px solid #f0eee66b;
}
.menu-symbol {
  width: 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.menu-symbol i {
  height: 1px;
  background: currentColor;
  width: 22px;
  transition: transform .4s;
}
.menu-symbol i:last-child {
  width: 14px;
  align-self: flex-end;
}
.menu-toggle:hover .menu-symbol i:last-child {
  transform: translateX(-8px);
}
#main-content {
  position: absolute;
  inset: 120px var(--gutter) 152px;
  outline: none;
}
.chapter {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #ffffff35 transparent;
}
.chapter--family {
  overflow: visible;
}
.wordmark {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font: 500 17px/.98 var(--serif);
  text-transform: uppercase;
  letter-spacing: .22em;
}
.wordmark span {
  font-size: 13px;
  letter-spacing: .39em;
}
.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid #f0eee655;
  border-radius: 2px;
  font: 400 22px/1.15 var(--serif);
  color: var(--ink);
  transition: background .35s, border-color .35s;
}
.action-button:hover {
  background: #f0eee609;
  border-color: #f0eee6a0;
}
.action-button .button-arrow {
  display: inline-flex;
  font: 18px var(--sans);
  transition: transform .35s;
}
.action-button:hover .button-arrow {
  transform: translate(2px, -2px);
}
.family-charter {
  position: absolute;
  bottom: 18px;
  white-space: nowrap;
}
.chapter-navigation {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: calc(70px + env(safe-area-inset-bottom));
  transition: opacity 1s ease .15s, transform 1s var(--ease) .15s;
}
.is-entering .chapter-navigation {
  opacity: 0;
  transform: translateY(14px);
}
.chapter-rail {
  display: flex;
  gap: 30px;
}
.chapter-rail a {
  position: relative;
  flex: 1;
  border-top: 1px solid var(--line);
  padding: 17px 0 8px;
  font-size: 12px;
  transition: opacity .7s ease, transform .9s var(--ease);
}
.chapter-rail a:nth-child(1) {
  transition-delay: .2s;
}
.chapter-rail a:nth-child(2) {
  transition-delay: .3s;
}
.chapter-rail a:nth-child(3) {
  transition-delay: .4s;
}
.is-entering .chapter-rail a {
  opacity: 0;
  transform: translateY(8px);
}
.chapter-rail a:before {
  content: "";
  height: 1px;
  background: var(--ink);
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--ease);
}
.chapter-rail a:hover:before,
.chapter-rail a[aria-current]:before {
  transform: scaleX(1);
}
.site-footer {
  position: absolute;
  bottom: calc(18px + env(safe-area-inset-bottom));
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}
#replay-opening {
  font-size: 20px;
  width: 44px;
  height: 44px;
  opacity: .7;
}
.chapter-arrows {
  display: flex;
  margin-left: auto;
  gap: 24px;
  font-size: 21px;
}
.chapter-arrows a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.chapter-arrows a:hover {
  color: #fff;
}
.reveal {
  animation: reveal-up 1.2s var(--ease) both;
  animation-delay: .18s;
}
.is-entering .reveal {
  animation-play-state: paused;
}
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.opening {
  position: fixed;
  inset: 0;
  z-index: 50;
  transition: opacity .6s ease, visibility .6s;
}
.opening.is-finished {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.crest-home {
  position: fixed;
  z-index: 4;
  left: 50%;
  top: 52px;
  width: min(64vw, 440px);
  height: min(46svh, 400px);
  transform: translate(-50%, -50%) scale(.16);
  transition: top 1s var(--ease), transform 1s var(--ease);
}
body[data-chapter=family] .crest-home,
body.is-entering .crest-home {
  top: 42svh;
  transform: translate(-50%, -50%);
}
.opening-crest {
  width: 100%;
  height: 100%;
  position: relative;
  isolation: isolate;
}
.crest-fallback {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .8;
}
.opening-crest[data-renderer=pending] .crest-fallback {
  opacity: 0;
}
.is-entering .opening-crest[data-renderer=fallback] .crest-fallback {
  animation: crest-arrival 2.8s var(--ease) both;
}
.opening-crest canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.opening-crest.is-rendered .crest-fallback {
  opacity: 0;
  animation: none;
}
.opening-baseline {
  position: absolute;
  bottom: 38px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #d5d3c5;
  letter-spacing: .05em;
}
.opening-baseline button {
  min-height: 40px;
  display: flex;
  gap: 28px;
  align-items: center;
}
@keyframes crest-arrival {
  0% {
    opacity: 0;
    transform: perspective(1000px) rotateY(-70deg) scale(.65);
    filter: blur(8px);
  }
  65% {
    opacity: .8;
    filter: blur(0);
  }
  100% {
    transform: perspective(1000px) rotateY(0) scale(1);
  }
}
.menu,
.charter-reader {
  position: fixed;
  inset: 0;
  margin: 0;
  width: 100%;
  max-width: none;
  height: 100svh;
  height: 100dvh;
  max-height: none;
  padding: 0 var(--gutter);
  background: var(--paper);
  color: #292923;
  border: 0;
  overflow: auto;
}
.menu {
  min-height: 560px;
  clip-path: inset(0);
}
.menu::backdrop,
.charter-reader::backdrop {
  background: #080a08b0;
}
.menu[open] {
  animation: menu-in .85s var(--ease) both;
}
.menu.is-closing {
  animation: menu-out .55s var(--ease) both;
}
.menu-header {
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-brand img,
.reader-toolbar img {
  display: block;
  filter: brightness(.2);
  opacity: .8;
}
.close-menu span {
  font: 32px var(--sans);
  font-weight: 400;
}
.menu-body {
  min-height: calc(100% - 190px);
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: center;
  padding: 24px 4% 45px;
}
.menu-aside img {
  width: 170px;
  height: auto;
  filter: brightness(.2);
  opacity: .62;
}
.menu-links {
  display: flex;
  flex-direction: column;
}
.menu-links a {
  display: flex;
  align-items: baseline;
  gap: 24px;
  border-bottom: 1px solid #28291f29;
  padding: 21px 0;
  font: 400 clamp(34px, 4.6vw, 76px)/1.1 var(--serif);
  letter-spacing: -.035em;
  transition: padding .5s var(--ease), color .3s;
}
.menu-links a > span {
  min-width: 0;
}
.menu-links a:hover {
  padding-left: 14px;
  color: #6d573b;
}
.menu-links i {
  font: 24px var(--sans);
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0;
  transform: translate(-10px, 10px);
  transition: .4s;
}
.menu-links a:hover i,
.menu-links a:focus-visible i {
  opacity: 1;
  transform: none;
}
.menu-links a[aria-current] > span {
  font-style: italic;
}
.menu-footer {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid #28291f29;
  font-size: 11px;
}
.menu-footer a { display: inline-flex; align-items: center; gap: 16px; min-height: 44px; }
@keyframes menu-in {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0);
  }
}
@keyframes menu-out {
  from {
    clip-path: inset(0);
  }
  to {
    clip-path: inset(0 0 100% 0);
  }
}
.chapter--projects {
  align-items: flex-start;
  padding-right: 16px;
}
.work-list {
  width: min(1100px, 100%);
  padding: 12px 0 40px;
}
.work-tabs {
  display: flex;
  gap: clamp(20px, 4vw, 44px);
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--night);
  border-bottom: 1px solid var(--line);
}
.work-tabs button {
  min-height: 52px;
  padding: 12px 0;
  color: var(--muted);
  font-size: 13px;
  border-bottom: 1px solid transparent;
}
.work-tabs button[aria-selected=true] { color: var(--ink); border-bottom-color: currentColor; }
.work-tabs button:focus-visible { outline-offset: -4px; }
[role=tabpanel]:focus-visible { outline: 1px solid var(--line); outline-offset: -1px; }
.work-group-title { padding: 30px 0 0; font: 400 13px var(--sans); color: var(--muted); }
.work-mark { display: grid; place-items: center; min-width: 0; }
.work-mark img { display: block; width: 160px; height: 150px; object-fit: contain; }
.work-mark--wolf img { width: 116px; height: 128px; filter: invert(1); opacity: .82; }
.work-mark--apg img { width: min(240px, 100%); height: 76px; object-fit: contain; opacity: .9; }
.work-mark--new-bible-belt img { width: 200px; height: 200px; object-fit: contain; }
.family-members { padding-top: 28px; }
.member-link { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 110px; padding: 24px 0; border-bottom: 1px solid var(--line); font: 400 clamp(30px, 4vw, 52px)/1.1 var(--serif); }
.member-link > span:first-child { min-width: 0; }
.member-link .ui-icon { transition: transform .3s ease; }
.member-link:hover .ui-icon { transform: translate(3px, -3px); }
.work-entry {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, .7fr) minmax(0, 1.3fr);
  column-gap: 6%;
  row-gap: 36px;
  align-items: center;
  min-height: 240px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.work-entry h2 {
  font: 400 clamp(34px, 4.5vw, 62px)/1.08 var(--serif);
  letter-spacing: -.035em;
  max-width: 640px;
}
.work-entry h2 a {
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.work-entry-heading { min-width: 0; }
.work-entry h2 a > span[aria-hidden] { flex-shrink: 0; }
.work-entry h2 a > span[aria-hidden] {
  font: 25px var(--sans);
  opacity: .65;
  transition: transform .4s;
}
.work-entry h2 a:hover > span[aria-hidden] {
  transform: translate(3px, -3px);
}
.work-discipline {
  font-size: 12px;
  margin-top: 23px;
  color: var(--muted);
}
.work-description {
  font-size: 12px;
  line-height: 1.85;
  max-width: 30ch;
  color: var(--muted);
}
.work-empty {
  padding: 48px 0 30px;
}
.work-empty h2 {
  font: 400 40px/1.1 var(--serif);
  letter-spacing: -.025em;
}
.work-empty p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
}
.chapter--careers {
  align-items: flex-start;
}
.careers-board {
  width: min(940px, 100%);
  padding: 28px 0 60px;
}
.careers-header {
  padding: 15px 0 32px;
  border-bottom: 1px solid var(--line);
}
.careers-title {
  font: 400 clamp(28px, 3vw, 40px)/1.15 var(--serif);
  letter-spacing: -.02em;
}
.opportunities {
  padding-top: 34px;
}
.opportunities > h2 {
  font: 400 12px var(--sans);
  color: var(--muted);
}
.open-roles {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  min-height: 120px;
}
.open-roles li {
  border-bottom: 1px solid var(--line);
}
.role-listing {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 28px;
  padding: 25px 0;
}
.role-title {
  font: 400 30px/1.15 var(--serif);
}
.role-meta {
  font-size: 11px;
  color: var(--muted);
  grid-column: 1;
}
.role-arrow {
  grid-column: 2;
  grid-row: 1;
  font-size: 20px;
}
.role-listing:hover .role-title {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.charter-reader {
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: #29292350 var(--paper);
}
.charter-reader[open] {
  animation: reader-in .65s var(--ease) both;
}
.reader-toolbar {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  padding: 22px var(--gutter);
  background: var(--paper);
  border-bottom: 1px solid #2929231c;
}
.charter-paper {
  max-width: 650px;
  margin: 58px auto 120px;
  padding: 0 28px;
}
.charter-paper > h1 {
  font: 400 clamp(46px, 5.5vw, 76px)/1.04 var(--serif);
  letter-spacing: -.035em;
  margin-bottom: 50px;
}
.charter-paper section + section {
  margin-top: 42px;
}
.charter-paper section h2 {
  font: 500 30px/1.2 var(--serif);
  margin-bottom: 20px;
}
.charter-paper section p {
  font: 400 22px/1.6 var(--serif);
}
.charter-paper section p + p {
  margin-top: 22px;
}
.document-status {
  font-size: 12px;
  color: #6d6c63;
}
.charter-inscription {
  border-top: 1px solid #2929232c;
  margin-top: 70px;
  padding-top: 36px;
}
.charter-inscription blockquote {
  font: italic 400 32px/1.3 var(--serif);
  max-width: 390px;
}
.charter-inscription figcaption {
  font-size: 10px;
  margin-top: 23px;
  color: #6d6c63;
}
@keyframes reader-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.noscript-note {
  position: fixed;
  z-index: 60;
  background: var(--night);
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
}
.noscript-note a,
.noscript-note p {
  font: 14px var(--sans);
}
@media (min-width: 1700px) {
  .site-header {
    height: 145px;
  }
  #main-content {
    inset: 145px var(--gutter) 180px;
  }
  .chapter-navigation {
    bottom: 90px;
  }
  .site-footer {
    bottom: 35px;
  }
  .work-entry {
    min-height: 420px;
  }
  .family-charter {
    bottom: 28px;
  }
}
@media (max-width: 760px) {
  :root {
    --gutter:24px;
  }
  .wordmark {
    font-size: 15px;
  }
  .wordmark span {
    font-size: 11px;
  }
  .site-header {
    height: 100px;
    padding-top: 23px;
    align-items: flex-start;
  }
  .menu-toggle {
    gap: 16px;
    font-size: 10px;
    min-height: 44px;
  }
  .menu-symbol {
    width: 18px;
  }
  .menu-symbol i {
    width: 18px;
  }
  .menu-symbol i:last-child {
    width: 12px;
  }
  #main-content {
    inset: 105px var(--gutter) 145px;
  }
  .family-charter {
    bottom: 14px;
  }
  .chapter-navigation {
    bottom: calc(65px + env(safe-area-inset-bottom));
  }
  .chapter-rail {
    gap: 18px;
  }
  .chapter-rail a {
    flex: unset;
    font-size: 11px;
    white-space: nowrap;
  }
  .chapter-rail a:nth-child(2) {
    flex: 1;
    text-align: center;
  }
  .chapter-rail a:last-child {
    text-align: right;
  }
  .site-footer {
    bottom: calc(8px + env(safe-area-inset-bottom));
  }
  .chapter-arrows {
    gap: 22px;
  }
  .crest-home {
    width: min(78vw, 380px);
    height: min(80vw, 46svh, 395px);
    top: 44px;
  }
  .opening-baseline {
    bottom: 25px;
    font-size: 8px;
  }
  .menu {
    min-height: 0;
  }
  .menu-header {
    height: 100px;
  }
  .menu-brand img {
    width: 42px;
    height: auto;
  }
  .menu-body {
    grid-template-columns: 1fr;
    padding: 24px 0 45px;
    min-height: calc(100% - 165px);
  }
  .menu-aside {
    display: none;
  }
  .menu-links a {
    font-size: clamp(36px, 10vw, 68px);
    padding: 25px 0;
  }
  .menu-links i {
    opacity: .45;
    font-size: 20px;
  }
  .menu-footer {
    height: 65px;
  }
  .chapter--projects {
    padding-right: 9px;
  }
  .work-list {
    padding-top: 0;
  }
  .work-entry {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 22px;
    min-height: 190px;
    padding: 28px 0;
  }
  .work-entry h2 {
    font-size: clamp(27px, 6.3vw, 42px);
  }
  .work-entry h2 a { gap: 12px; }
  .work-mark--apg img { height: 35px; }
  .work-mark--wolf img { width: 72px; height: 80px; }
  .work-mark--new-bible-belt img { width: 120px; height: 120px; }
  .work-tabs { gap: 22px; }
  .work-tabs button { font-size: 12px; }
  .work-entry h2 a > span[aria-hidden] {
    font-size: 23px;
  }
  .work-discipline {
    font-size: 11px;
    margin-top: 16px;
  }
  .work-description {
    font-size: 12px;
    max-width: 31ch;
  }
  .work-empty {
    padding-top: 34px;
  }
  .work-empty h2 {
    font-size: 34px;
  }
  .reader-toolbar {
    min-height: 94px;
    padding-block: 19px;
  }
  .reader-toolbar img {
    width: 36px;
    height: auto;
  }
  .charter-paper {
    margin: 40px auto 80px;
    padding: 0 26px;
  }
  .charter-paper > h1 {
    font-size: 48px;
    margin-bottom: 36px;
  }
  .charter-paper section p {
    font-size: 21px;
  }
  .charter-inscription {
    margin-top: 48px;
  }
  .charter-inscription blockquote {
    font-size: 30px;
  }
}
@media (max-width: 370px) {
  :root {
    --gutter:18px;
  }
  .chapter-rail {
    gap: 12px;
  }
  .chapter-rail a {
    font-size: 10px;
  }
}
@media (max-height: 590px) {
  body {
    overflow: hidden;
  }
  .site-shell {
    min-height: 0;
  }
  .site-header { height: 76px; padding-block: 16px; align-items: center; }
  #main-content { inset: 82px var(--gutter) 120px; }
  .chapter-navigation { bottom: calc(54px + env(safe-area-inset-bottom)); }
  .site-footer { bottom: env(safe-area-inset-bottom); }
  .crest-home { top: 38px; height: 34dvh; }
  body[data-chapter=family] .crest-home, body.is-entering .crest-home { top: 36dvh; }
  .family-charter { min-height: 44px; font-size: 20px; }
  .menu {
    height: 100%;
    min-height: 100%;
  }
  .menu-links a {
    font-size: 34px;
    padding: 10px 0;
  }
  .menu-header { height: 76px; }
  .menu-footer { height: 54px; }
  .menu-body {
    min-height: calc(100% - 130px);
    padding: 0 0 10px;
  }
  .opening-baseline {
    bottom: 15px;
  }
  .family-charter {
    bottom: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: .01ms !important;
    animation-delay: 0ms !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
  .opening {
    display: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  body[data-chapter=family]:not(.is-entering):not(:has(dialog[open])) .opening-crest:not(.is-rendered) .crest-fallback {
    animation: fallback-shimmer 15s ease-in-out infinite;
  }
}
@keyframes fallback-shimmer {
  0%, 66%, 94%, 100% {
    opacity: .8;
  }
  80% {
    opacity: .88;
  }
}

.crest-response {
  width: 100%;
  height: 100%;
  transition: transform .65s var(--ease);
}
@media (prefers-reduced-motion: no-preference) {
  body[data-chapter=family]:not(.is-entering):not(:has(dialog[open])) .opening-crest {
    animation: crest-idle 9s ease-in-out infinite;
  }
  .crest-home:focus-visible .crest-response { transform: scale(1.015); }
  .crest-home:active .crest-response { transform: scale(.975); transition-duration: .16s; }
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .crest-home:hover .crest-response { transform: perspective(1000px) rotateY(5deg) rotateX(-2deg) scale(1.018); }
  .crest-home:active .crest-response { transform: perspective(1000px) rotateY(2deg) scale(.975); transition-duration: .16s; }
}
@keyframes crest-idle {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-2px) rotate(.2deg); }
}
