html, body {
  background-color: #1E1E1E;
  background-image: linear-gradient(to bottom, #090909 0, transparent 700px);
}
html:has(.popup-checkbox:checked), body:has(.popup-checkbox:checked) {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  color: white;
  font-size: 20px;
  font-family: "Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  text-rendering: optimizeLegibility;
  appearance: none;
  border: 0;
  outline: none;
  box-sizing: border-box;
  transition: opacity 0.25s, background-color 0.25s, color 0.25s, transform 0.25s;
}
@media (max-width: 800px) {
  * {
    font-size: 16px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Baskerville", serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  line-height: 1.1;
  margin-block-end: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.4;
  opacity: 0.7;
  letter-spacing: 0.1px;
}
p:has(+ p) {
  margin-block-end: 0.75rem !important;
}
p * {
  color: inherit;
  font-size: inherit;
}
p strong {
  font-weight: 500;
  color: inherit;
  font-size: inherit;
}
p:last-of-type {
  margin-block-end: 0;
}

img {
  width: 100%;
}

section {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 1rem;
}
section h3 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
}

#navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
#navigation img {
  width: 280px;
  max-width: 40vw;
}
#navigation nav {
  display: flex;
  gap: 2rem;
}
#navigation nav a {
  font-size: 0.7rem;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Baskerville", serif;
  letter-spacing: 0.15rem;
}
@media (max-width: 630px) {
  #navigation nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
  }
}

main {
  min-height: calc(100dvh - 167px - 217px);
}

footer div#legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #D9D9D9;
  height: 2.5rem;
  padding: 0 1.5rem;
}
@media (min-width: 1270px) {
  footer div#legal {
    padding: 0 calc((100vw - 1270px + 3rem) / 2);
  }
}
footer div#legal span {
  color: black;
  font-size: 0.8rem;
}
footer div#legal nav {
  display: flex;
  gap: 1rem;
}
footer div#legal nav a {
  color: black;
  font-size: 0.8rem;
  font-style: italic;
}

header#index-header {
  width: 100%;
  max-width: 1270px;
  padding: 0 1rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header#index-header nav {
  display: flex;
  margin: 2rem auto;
  gap: 3rem;
}
header#index-header nav a {
  font-size: 0.7rem;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Baskerville", serif;
  letter-spacing: 0.15rem;
}
header#index-header h1 {
  display: none;
}
header#index-header img {
  width: 280px;
  margin: 6rem auto;
}

section#index-hero {
  align-items: center;
  gap: 1rem;
  margin-bottom: 6rem;
  padding: 0 1rem;
}
section#index-hero h2 {
  font-weight: 100;
  font-size: 2.4rem;
  text-align: center;
  max-width: 800px;
}
section#index-hero p {
  text-align: center;
  max-width: 800px;
}

section#index-expertise {
  align-items: center;
  gap: 1rem;
  padding: 3rem 1rem;
}
section#index-expertise #index-expertise-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.5rem;
}
section#index-expertise #index-expertise-list .index-expertise-list-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  aspect-ratio: 3/4;
  width: 100%;
  padding: 0.75rem;
  cursor: pointer;
  overflow: hidden;
}
section#index-expertise #index-expertise-list .index-expertise-list-item > img:first-child, section#index-expertise #index-expertise-list .index-expertise-list-item > div {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
section#index-expertise #index-expertise-list .index-expertise-list-item > div {
  height: 150%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 75%, rgba(0, 0, 0, 0.75) 100%);
}
section#index-expertise #index-expertise-list .index-expertise-list-item h4 {
  font-size: 1.5rem;
  margin-block-end: 0;
  z-index: 1;
  padding-bottom: 0.25rem;
}
section#index-expertise #index-expertise-list .index-expertise-list-item img:last-child {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  line-height: 1;
  background: none;
  z-index: 1;
}
section#index-expertise #index-expertise-list .index-expertise-list-item:hover > div {
  transform: translateY(-20%);
}
section#index-expertise #index-expertise-list .index-expertise-list-item:hover img:last-child {
  background: rgba(255, 255, 255, 0.25);
}
@media (max-width: 910px) {
  section#index-expertise #index-expertise-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

section#index-offerings {
  padding: 3rem 1rem;
}
section#index-offerings h3 {
  padding: 0 0.5rem;
}
section#index-offerings #index-offering-list {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
}
section#index-offerings #index-offering-list .index-offering-list-item {
  padding: 1.5rem 0.4rem;
  border-bottom: 1px solid #fff1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
section#index-offerings #index-offering-list .index-offering-list-item h4 {
  font-size: 2rem;
}
section#index-offerings #index-offering-list .index-offering-list-item ul {
  opacity: 0.7;
  padding-left: 1.1rem;
}
section#index-offerings #index-offering-list .index-offering-list-item ul li {
  margin: 0.25rem 0;
}

section#index-insights {
  padding: 3rem 1rem;
}
section#index-insights h3 {
  padding: 0 0.5rem;
}
section#index-insights h3 a {
  font-size: 0.8rem;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
  margin-left: 0.5rem;
}
section#index-insights #index-insights-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  border: 1px solid #303030;
  background: #303030;
}
section#index-insights #index-insights-inner #index-insights-recent {
  background: #1E1E1E;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  position: relative;
}
section#index-insights #index-insights-inner #index-insights-recent > span {
  text-transform: uppercase;
  font-size: 0.6rem;
  letter-spacing: 0.5px;
  opacity: 0.5;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
section#index-insights #index-insights-inner #index-insights-recent > span img {
  width: auto;
  height: 20px;
  aspect-ratio: 1;
  object-fit: contain;
  display: inline;
  border-radius: 4px;
  margin-right: 0.25rem;
}
section#index-insights #index-insights-inner #index-insights-recent h4 {
  width: 100%;
  font-size: 1.8rem;
  padding-bottom: 1rem;
}
section#index-insights #index-insights-inner #index-insights-recent div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section#index-insights #index-insights-inner #index-insights-recent div span {
  font-style: italic;
  font-size: 0.8rem;
  opacity: 0.7;
}
section#index-insights #index-insights-inner #index-insights-recent div span {
  text-decoration: none;
  font-style: italic;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
section#index-insights #index-insights-inner #index-insights-recent div span img {
  height: 7px;
}
section#index-insights #index-insights-inner #index-insights-recent:hover {
  background: radial-gradient(ellipse farthest-side at bottom center, rgba(255, 255, 255, 0.05) 0%, #1E1E1E 100%);
}
section#index-insights #index-insights-inner #index-insights-recent:hover h4 {
  text-decoration: underline;
}
section#index-insights #index-insights-inner #index-insights-subscribe {
  padding: 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
section#index-insights #index-insights-inner #index-insights-subscribe h4 {
  font-size: 1.2rem;
}
section#index-insights #index-insights-inner #index-insights-subscribe p {
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
section#index-insights #index-insights-inner #index-insights-subscribe form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr min-content;
  align-items: flex-end;
  margin-top: auto;
  margin-bottom: 1rem;
}
section#index-insights #index-insights-inner #index-insights-subscribe form input {
  width: 100%;
  height: 2.5rem;
}
section#index-insights #index-insights-inner #index-insights-subscribe form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
section#index-insights #index-insights-inner #index-insights-subscribe form label span {
  font-size: 0.7rem;
}
section#index-insights #index-insights-inner #index-insights-subscribe form label input {
  background: #fff1;
  padding: 0 0.75rem;
}
section#index-insights #index-insights-inner #index-insights-subscribe form input[type=submit] {
  color: black;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 0.7rem;
  padding: 0 0.75rem;
}
@media (max-width: 920px) {
  section#index-insights #index-insights-inner {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr min-content;
  }
  section#index-insights #index-insights-inner #index-insights-subscribe {
    padding: 1.5rem;
  }
}

#popup-container {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background-color: #0008;
  backdrop-filter: blur(10px);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}
#popup-container:has(input:checked) {
  pointer-events: initial;
  opacity: 1;
}
#popup-container input[type=checkbox] {
  display: none;
}
#popup-container .popup {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100vw - 40px);
  height: calc(100dvh - 40px);
  max-width: 1000px;
  max-height: 600px;
  border-radius: 1rem;
  z-index: 2;
  transform: translate(-50%, calc(-50% + 10px));
  opacity: 0;
  transition-delay: 0.25s;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  background-color: #1E1E1E;
  pointer-events: none;
}
#popup-container .popup label {
  position: absolute;
  top: 0;
  right: 0;
  width: 2rem;
  height: 2rem;
  background-color: white;
  color: black;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.8rem;
  border-radius: 50%;
  transform: translate(5px, -5px);
  cursor: pointer;
  z-index: 3;
}
#popup-container .popup label:hover {
  background-color: black;
  color: white;
}
#popup-container .popup .popup-image {
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: block;
  overflow: hidden;
  border-radius: 1rem 0 0 1rem;
  position: relative;
}
#popup-container .popup .popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
#popup-container .popup .popup-image:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, transparent 0, #1e1e1e 95%);
  z-index: 1;
}
#popup-container .popup .popup-content {
  display: grid;
  justify-content: center;
  overflow-y: auto;
  padding: 0 3rem 3rem;
  position: relative;
}
#popup-container .popup .popup-content:before {
  display: block;
  content: "";
  width: 100%;
  height: 3rem;
  position: sticky;
  top: 0;
  background-image: linear-gradient(to bottom, #1e1e1e 0, transparent 95%);
  z-index: 1;
}
#popup-container .popup .popup-content .popup-content-inner {
  width: 100%;
  max-width: 700px;
  height: auto;
  align-self: center;
}
@media (max-width: 850px) {
  #popup-container .popup {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1.25fr;
  }
  #popup-container .popup .popup-image {
    border-radius: 1rem 1rem 0 0;
  }
  #popup-container .popup .popup-image:after {
    background-image: linear-gradient(to bottom, transparent 0, #1e1e1e 95%);
  }
}
#popup-container input:checked + .popup {
  opacity: 1;
  transform: translate(-50%, -50%);
  pointer-events: initial;
}

header#page-header {
  max-width: 1270px;
  padding: 1.5rem 1rem;
  margin: 0 auto;
}
header#page-header h1 {
  font-size: 3.4rem;
  padding: 0 0.5rem;
}

section#advisors {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
section#advisors .advisor {
  border-top: 1px solid #fff1;
  display: grid;
  grid-template-columns: min(330px, 33vw) 1fr;
  align-items: flex-start;
  position: relative;
}
section#advisors .advisor .advisor-portrait {
  height: min-content;
  position: relative;
}
section#advisors .advisor .advisor-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}
section#advisors .advisor .advisor-portrait:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #111d 90%, #1E1E1E 100%);
  z-index: 1;
}
section#advisors .advisor .advisor-bio {
  width: 100%;
  padding: 3rem;
}
section#advisors .advisor .advisor-bio > * {
  display: flex;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
section#advisors .advisor .advisor-bio div {
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
section#advisors .advisor .advisor-bio div h2 {
  font-size: 1.6rem;
  margin-block-end: 0;
}
section#advisors .advisor .advisor-bio div img {
  width: 24px;
  align-self: center;
}
@media (max-width: 720px) {
  section#advisors .advisor {
    grid-template-columns: 1fr;
  }
  section#advisors .advisor .advisor-bio {
    padding: 1.5rem 0.4rem;
  }
}

section#advisors-experts {
  padding: 1.5rem 1rem;
}
section#advisors-experts h2 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  padding: 0 0.4rem;
}
section#advisors-experts > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
}
section#advisors-experts > div > div {
  display: flex;
  flex-direction: column;
  padding: 1rem 0.4rem;
  border-bottom: 1px solid #fff1;
}
section#advisors-experts > div > div span {
  line-height: 1.4;
}
section#advisors-experts > div > div span:nth-child(1) {
  margin-bottom: 0.2rem;
  font-weight: 600;
}
section#advisors-experts > div > div span:nth-child(2) {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 1rem;
}
section#advisors-experts > div > div span:nth-child(3) {
  font-size: 0.7rem;
  opacity: 0.7;
  font-style: italic;
  margin-top: auto;
}
section#advisors-experts > div > div div {
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
}
section#advisors-experts > div > div div img {
  width: 1rem;
}
@media (max-width: 800px) {
  section#advisors-experts > div {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  section#advisors-experts > div {
    grid-template-columns: repeat(2, 1fr);
  }
}

#insights-tags {
  display: none;
  max-width: 1270px;
  padding: 1.5rem;
  margin: 0 auto;
}

#insights-type {
  display: none;
  max-width: 1270px;
  padding: 1.5rem;
  margin: 0 auto;
}

#insights-items {
  max-width: 1270px;
  padding: 1.5rem 1rem;
  margin: 0 auto;
}
#insights-items .insights-item {
  display: grid;
  grid-template-columns: min(200px, 21%) 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid #fff1;
  padding: 1.5rem 0.5rem;
}
#insights-items .insights-item a {
  margin-bottom: 0;
  grid-column: 2/3;
  grid-row: 2/3;
  text-decoration: none;
}
#insights-items .insights-item a h2 {
  font-size: 1.5rem;
}
#insights-items .insights-item .insights-item-date {
  grid-column: 1/2;
  grid-row: 2/4;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  margin-top: 0.6rem;
  text-indent: 2px;
  font-style: italic;
}
#insights-items .insights-item .insights-item-category {
  grid-column: 2/3;
  grid-row: 1/2;
  text-transform: uppercase;
  font-size: 0.6rem;
  letter-spacing: 0.5px;
  opacity: 0.5;
  display: flex;
  align-items: center;
  margin-bottom: -0.25rem;
}
#insights-items .insights-item .insights-item-category img {
  width: auto;
  height: 20px;
  aspect-ratio: 1;
  object-fit: contain;
  display: inline;
  border-radius: 4px;
  margin-right: 0.25rem;
}
#insights-items .insights-item .insights-item-tags {
  grid-column: 1/2;
  grid-row: 2/4;
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
#insights-items .insights-item .insights-item-tags .insights-item-tag {
  display: inline;
  width: max-content;
  font-size: 0.7rem;
  background-color: #fff1;
  border: 1px solid #fff1;
  border-radius: 3px;
  padding: 0.25rem;
  white-space: wrap;
  text-overflow: ellipsis;
  line-height: 1.3;
  margin-bottom: 2px;
  max-width: 100%;
}
#insights-items .insights-item p {
  grid-column: 2/3;
  grid-row: 3/4;
}
#insights-items .insights-item:hover {
  background: radial-gradient(ellipse farthest-side at bottom center, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}
#insights-items .insights-item:hover h2 {
  text-decoration: underline;
}

#insights-pages {
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.33rem;
}
#insights-pages a {
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border: 1px solid #fff1;
  text-align: center;
  text-decoration: none;
}
#insights-pages a.selected {
  background-color: #fff1;
}
#insights-pages a:hover {
  background-color: #fff1;
}

article {
  max-width: 900px;
  padding: 1.5rem;
  margin: 0 auto;
}
article header {
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
article header h1 {
  order: 2;
  font-size: 2rem;
}
article header #post-date {
  order: 3;
  width: min-content;
  white-space: nowrap;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  font-style: italic;
  margin-top: 4px;
}
article header #post-category {
  order: 1;
  display: block;
  width: 100%;
  text-transform: uppercase;
  font-size: 0.6rem;
  letter-spacing: 0.5px;
  opacity: 0.5;
}
article header #post-tags {
  order: 4;
  width: min-content;
}
article header #post-tags .post-tag {
  width: min-content;
  font-size: 0.7rem;
  background-color: #fff1;
  border: 1px solid #fff1;
  border-radius: 3px;
  padding: 0.25rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}
article #renderer {
  max-width: 900px;
}
article h2 {
  font-size: 1.5rem;
}
article strong {
  font-size: inherit;
  font-style: inherit;
  font-weight: 600;
}
article p {
  opacity: 0.8;
}
article a {
  opacity: 0.5;
}
article ul, article ol {
  padding-left: 1rem;
}
article ul li, article ol li {
  margin: 0.5rem 0;
  line-height: 1.4;
  opacity: 0.8;
}

section#contact-form {
  padding: 1.5rem 1rem;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
}
section#contact-form > div {
  padding: 1.5rem 0.4rem 1.5rem 0.4rem;
}
section#contact-form > div p {
  font-size: 1.2rem;
}
section#contact-form form {
  border: 1px solid #fff1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.5rem;
}
section#contact-form form label, section#contact-form form .radio-group {
  display: grid;
  grid-template-rows: min-content 1fr;
  gap: 0.5rem;
}
section#contact-form form label > span, section#contact-form form .radio-group > span {
  text-indent: 0.25rem;
}
section#contact-form form label input:not([type=radio]), section#contact-form form label textarea, section#contact-form form .radio-group input:not([type=radio]), section#contact-form form .radio-group textarea {
  height: 2.5rem;
  background: #ffffff05;
  border-radius: 0.33rem;
  border: 1px solid #fff1;
  padding: 0 0.75rem;
}
section#contact-form form label input:not([type=radio]), section#contact-form form label select, section#contact-form form .radio-group input:not([type=radio]), section#contact-form form .radio-group select {
  height: 2.5rem;
}
section#contact-form form label textarea, section#contact-form form .radio-group textarea {
  padding: 0.75rem;
  height: 6rem;
  resize: vertical;
}
section#contact-form form label div, section#contact-form form .radio-group div {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.5rem 0;
}
section#contact-form form label div label, section#contact-form form .radio-group div label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
section#contact-form form label div label input[type=radio], section#contact-form form .radio-group div label input[type=radio] {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  outline: #fff1 solid 1px;
  margin-left: 1px;
}
section#contact-form form label div label input[type=radio]:checked, section#contact-form form .radio-group div label input[type=radio]:checked {
  outline-color: white;
  border: 5px solid #1e1e1e;
  background-color: white;
}
section#contact-form form input[type=submit] {
  width: 100%;
  height: 3rem;
  border-radius: 0.5rem;
  color: black;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
}
@media (max-width: 790px) {
  section#contact-form {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

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