:root {
  --orange: #f15a00;
  --aqua: #8bd7dc;
  --beige: #cfc5b9;
  --text: #484545;
  --heading: #3d4c59;
  --paper: #ffffff;
  --field: #f4f4f4;
  --line: #ded8d2;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--field);
  color: var(--text);
  font-family: Lato, "Source Sans 3", Arial, sans-serif;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--orange); }

.site-header {
  background: var(--paper);
}

.logo-row {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark {
  color: #2b2b2b;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0;
}

.main-nav {
  background: var(--orange);
  color: #fff;
}

.nav-inner {
  max-width: 1110px;
  margin: 0 auto;
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 18px;
  overflow: visible;
}

.nav-inner > a,
.nav-group > a {
  display: block;
  padding: 15px 19px 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.utility-link {
  font-weight: 400 !important;
  text-transform: none !important;
}

.nav-spacer { flex: 1; }

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 0;
  min-width: 230px;
  display: none;
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .16);
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 11px 16px;
  color: var(--text);
  font-size: 13px;
  border-bottom: 1px solid #eee;
}

.home-intro {
  background: #fff;
  text-align: center;
  padding: 132px 24px 38px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #cfc1b7;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 14px auto 0;
  background: var(--orange);
}

h1, h2, h3 {
  color: var(--heading);
  font-weight: 300;
  line-height: 1.22;
}

h1 { margin: 0 0 26px; font-size: 46px; }
h2 { font-size: 25px; letter-spacing: .14em; text-transform: uppercase; }
h3 { font-size: 22px; }

.intro-copy {
  max-width: 895px;
  margin: 0 auto;
  font-size: 22px;
}

.down-mark {
  color: var(--orange);
  font-size: 35px;
  font-weight: 700;
}

.feature-grid {
  max-width: 948px;
  margin: 0 auto;
  padding: 86px 18px 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card,
.category-card,
.directory-card {
  position: relative;
  min-height: 218px;
  padding: 56px 18px 26px;
  background: #fff;
  border: 1px solid var(--line);
}

.feature-card h2 {
  color: #1d1d1d;
  font-size: 21px;
}

.card-icon {
  position: absolute;
  top: -54px;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translateX(-50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 31px;
}

.card-beige { border-color: var(--beige); }
.card-aqua { border-color: var(--aqua); }
.card-orange { border-color: var(--orange); }
.card-beige .card-icon { background: var(--beige); }
.card-aqua .card-icon { background: var(--aqua); }
.card-orange .card-icon { background: var(--orange); }

.outline-button {
  display: inline-block;
  margin-top: 14px;
  padding: 9px 20px;
  border: 1px solid currentColor;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.page-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 82px 24px;
}

.prose {
  max-width: 820px;
  margin: 0 auto;
  padding: 44px 56px;
  background: #fff;
}

.prose h1 {
  text-align: center;
}

.prose p,
.prose li {
  font-size: 18px;
}

.prose img {
  max-width: 100%;
  height: auto;
}

.profile-layout {
  border-top: 4px solid var(--aqua);
}

.meeting-layout {
  border-top: 4px solid var(--orange);
}

.static-layout {
  border-top: 4px solid var(--beige);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.listing-prose {
  max-width: 960px;
}

.directory-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.directory-grid .feature-card,
.category-card {
  min-height: 0;
  padding: 26px;
}

.category-card img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.category-card.horizontal {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
}

.category-card.minimal {
  border-color: var(--aqua);
  padding: 20px;
}

.toc-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  max-width: 820px;
  margin: 0 auto 20px;
  padding: 14px 18px;
  background: #fff;
  border-left: 3px solid var(--aqua);
  font-size: 14px;
}

.article-grid.has-toc {
  display: block;
}

.article-grid.has-toc .content-article {
  max-width: 900px;
}

.article-grid.has-toc .toc-side {
  display: none;
}

.article-grid.has-toc .mobile-toc {
  display: flex;
}

.hub-editorial {
  margin-bottom: 28px;
}

.toc-side .toc-panel {
  position: sticky;
  top: 16px;
  display: block;
}

.toc-side a {
  display: block;
  margin: 8px 0;
}

.mobile-toc { display: none; }

.breadcrumb {
  max-width: 820px;
  margin: 0 auto 18px;
  padding: 0;
  list-style: none;
  color: #8b817b;
  font-size: 13px;
}

.breadcrumb li {
  display: inline;
}

.breadcrumb li + li::before {
  content: "/";
  padding: 0 8px;
}

.table-wrap {
  overflow-x: auto;
}

.site-footer {
  background: #fff2eb;
  text-align: center;
}

.footer-image {
  min-height: 250px;
  background: linear-gradient(rgba(37, 79, 91, .2), rgba(37, 79, 91, .2)), url('/assets/images/img_e0ab237f2434.png') center / cover no-repeat;
}

.footer-links,
.footer-index {
  padding: 30px 16px 18px;
}

.footer-index {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 0;
}

.project-index,
.people-index {
  padding-bottom: 18px;
}

.footer-links a,
.footer-index a {
  display: inline-block;
  margin: 6px 10px;
  color: #776f6b;
  font-size: 12px;
}

.project-index a,
.people-index a {
  font-size: 11px;
}

.footer-social span {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin: 0 14px;
  background: #90877f;
}

.copyright {
  margin: 0;
  padding: 20px;
  color: #a0928a;
  font-size: 11px;
}

@media (max-width: 900px) {
  .nav-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-spacer { display: none; }
  .feature-grid,
  .directory-grid,
  .category-grid,
  .article-grid.has-toc {
    grid-template-columns: 1fr;
  }
  .toc-side { display: none; }
  .mobile-toc { display: flex; }
}

@media (max-width: 640px) {
  h1 { font-size: 36px; }
  .home-intro { padding-top: 84px; }
  .intro-copy { font-size: 18px; }
  .feature-grid { padding-top: 66px; gap: 78px; }
  .prose { padding: 32px 22px; }
  .nav-inner > a,
  .nav-group > a {
    padding: 12px 10px;
    font-size: 11px;
  }
}
