@import url('https://fonts.googleapis.com/css2?family=Satoshi:wght@400;500;700&display=swap');

:root {
  --container-width: 880px;
  --gutter: 158px;
  --column-width: 360px;
  --bg-base: #d6d8db;
  --bg-neutral: #d6d8db;
  --bg-dark: #120f08;
  --bg-accent: rgb(30, 0, 255);
  --text-dark: #120f08;
  --text-light: #fbf9f5;
}

@supports (color: color(display-p3 0 0 0)) {
  :root {
    --bg-accent: color(display-p3 0.1176 0 1);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: rgb(30, 0, 255);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body.legal-page {
  background: var(--bg-neutral);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(100%, var(--container-width));
  margin: 0 auto;
  padding: 0;
}

.container--edge {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero .container {
  padding: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 40px 0 0;
  z-index: 100;
  background: transparent;
  color: #fbf9f5;
  transition: background 0.4s ease;
}

.header__label,
.header__contact {
  color: #fbf9f5;
}

.header--inverse {
  color: #fbf9f5;
}

.header--inverse .header__label,
.header--inverse .header__contact {
  color: #fbf9f5;
}

.header--light {
  position: static;
  padding: 40px 0 32px;
  background: transparent;
  color: var(--text-dark);
}

.header--light .header__inner {
  padding: 0 40px;
}

body.legal-page .header {
  color: var(--text-dark) !important;
}

body.legal-page .header__label,
body.legal-page .header__contact {
  color: var(--text-dark) !important;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}

.header__label {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.24px;
  text-decoration: none;
  color: #fbf9f5;
  transition: opacity 0.2s ease;
  margin: 0;
}

.header__label--back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header__back-arrow {
  font-size: 20px;
  line-height: 1;
}

.header__label:hover {
  opacity: 0.7;
}

.header__contact {
  font-size: 20px;
  font-weight: 400;
  color: #fbf9f5;
  text-decoration: none;
  transition: opacity 0.2s ease;
  margin: 0;
}

.header__contact:hover {
  opacity: 0.7;
}

.snap-section,
footer.snap-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.snap-section + .snap-section {
  margin-top: -1px;
}

.hero {
  position: relative;
  background: rgb(30, 0, 255);
  padding: 0;
  display: flex;
  align-items: center;
  color: #fbf9f5;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 32px;
}

.hero__headline {
  font-size: 106px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -2px;
  margin: 0;
  max-width: var(--container-width);
  color: #fbf9f5;
}

.hero__subline {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  color: #fbf9f5;
}

.hero__scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  animation: scroll-bounce 1.6s infinite alternate;
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
  color: #fbf9f5;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}

@keyframes scroll-bounce {
  from {
    opacity: 0.5;
    transform: translate(-50%, 0);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 10px);
  }
}

.snap-section:not(.hero):not(.image-block):not(.footer) {
  padding: 140px 0;
}

.section__header {
  margin-bottom: 56px;
}

.section__eyebrow {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.24px;
  text-transform: none;
}

.section__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.96px;
  margin: 0;
}

.section__body {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.24px;
  margin: 0;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, var(--column-width)));
  gap: var(--gutter);
}

.two-col__item {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.services {
  background: #d6d8db;
}

.approach {
  background: var(--bg-dark);
  color: var(--text-light);
}

.approach__title {
  color: inherit;
  max-width: 720px;
  margin-bottom: 48px;
}

.approach__body {
  color: inherit;
  max-width: 360px;
}

.image-block {
  padding: 0;
  align-items: stretch;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #d6d8db;
}

.image-block--top {
  background: #120f08;
}

.image-block--bottom {
  background: #0f0e11;
}

.image-block .container--edge {
  width: 100%;
  margin: 0;
}

.image-block__figure {
  margin: 0;
  width: 100%;
  height: 100%;
}

.image-block__figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.companies {
  background: #d6d8db;
}

.companies--practice {
  background: #c8c8c8;
}

.companies__list {
  max-width: var(--container-width);
  line-height: 1.2;
  color: #120f08;
}

.fade {
  overflow: hidden;
}

.fade-target {
  transition: opacity 0.9s ease 0.2s, transform 0.9s ease 0.2s;
}

/* Initial state: hide fade elements */
.fade .fade-target {
  opacity: 0;
  transform: translateY(40px);
}

.js .fade.fade-ready.visible .fade-target {
  opacity: 1;
  transform: translateY(0);
}

.hero.visible .hero__scroll {
  opacity: 1;
}

.background {
  background: #d6d8db;
}

.background__copy {
  max-width: var(--container-width);
  line-height: 1.2;
}

.quote {
  background: #120f08;
  color: #fbf9f5;
  text-align: left;
}

.quote__mark {
  width: auto;
  display: block;
  margin-bottom: 32px;
  height: 64px; /* Desktop default */
}

.quote__text {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.96px;
  margin: 0 0 32px;
  color: #fbf9f5;
  font-style: normal;
  text-align: left;
  padding: 0;
}

.quote__attribution {
  text-align: left;
  font-size: 24px;
  margin: 0;
  color: #fbf9f5;
}

.advisory {
  background: rgb(30, 0, 255);
  color: #fbf9f5;
}

.advisory .section__eyebrow {
  color: #fbf9f5;
}

.advisory__title {
  color: #fbf9f5;
  margin-bottom: 48px;
}

.advisory .section__header {
  margin-top: 0;
  margin-bottom: 0;
}

.advisory .section__eyebrow {
  color: #fbf9f5;
}

.advisory__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #fbf9f5;
  padding-top: 0;
}

.advisory__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 0;
  border-bottom: 1px solid #fbf9f5;
}

.advisory__item:last-child {
  border-bottom: none;
}

.advisory__item-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.advisory__item-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.96px;
  color: #fbf9f5;
}

.advisory__item-duration {
  font-size: 24px;
  font-weight: 400;
  color: #fbf9f5;
}

.advisory__item-description {
  font-size: 24px;
  line-height: 1.45;
  margin: 0;
  color: #fbf9f5;
}

.connect {
  background: #120f08;
  color: #fbf9f5;
}

.connect .section__eyebrow {
  color: #fbf9f5;
}

.connect__intro {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -2px;
  margin: 0 0 48px;
  color: #fbf9f5;
}

.connect__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.connect__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 0;
  border-bottom: 1px solid #fbf9f5;
}

.connect__item:last-child {
  border-bottom: none;
}

.connect__label {
  font-size: 24px;
  font-weight: 700;
  color: #fbf9f5;
  flex-shrink: 0;
}

.connect__value {
  font-size: 24px;
  color: #fbf9f5;
  text-decoration: none;
  transition: opacity 0.2s ease;
  text-align: right;
}

.connect__value:hover {
  opacity: 0.7;
}

.principles {
  background: #c8c8c8;
  color: #0f0e11;
}

.principles .section__eyebrow {
  color: #0f0e11;
}

.principles__intro {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
  margin: 0 0 128px;
  color: #0f0e11;
}

.principles__list {
  display: flex;
  flex-direction: column;
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.principles__item {
  padding: 32px 0;
  border-bottom: 1px solid #0f0e11;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.principles__item:first-child {
  border-top: none;
}

.principles__item:last-child {
  border-bottom: none;
}

.principles__item-main {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.96px;
  color: #0f0e11;
}

.principles__item-sub {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.45;
  color: #0f0e11;
}

.footer {
  background: rgb(30, 0, 255);
  padding: 120px 0;
  width: 100%;
  color: #fbf9f5;
}

.legal-page .footer {
  margin-top: 0;
}
.legal {
  background: var(--bg-neutral);
  align-items: flex-start;
  color: #120f08;
}

.legal__container {
  max-width: 880px;
  width: 100%;
}

.legal__title {
  font-size: 64px;
  font-weight: 500;
  margin: 0 0 24px;
  color: #120f08;
}

.legal__subtitle {
  font-size: 24px;
  margin: 0 0 48px;
  font-weight: 400;
  color: #120f08;
}

.legal__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 20px;
  line-height: 1.6;
  color: #120f08;
}

.legal__content h2 {
  font-size: 28px;
  margin: 32px 0 8px;
  font-weight: 400;
  color: #120f08;
}

.legal__content a {
  color: #120f08;
  text-decoration: underline;
}

.legal__content p {
  margin: 0;
}

.legal__contact-block {
  padding-bottom: 200px;
}

@media (min-width: 769px) {
  :root {
    --container-width: 960px;
    --column-width: 450px;
    --gutter: 60px;
  }

  .header__label {
    font-size: 32px;
  }

  .header__contact {
    font-size: 32px;
  }

  .approach__title {
    max-width: 960px;
  }

  .approach__body {
    max-width: 450px;
  }

  .section__eyebrow {
    font-size: 24px;
  }

  .two-col__item {
    gap: 32px;
  }

  .two-col__item .section__title {
    margin-bottom: 0;
  }

  .section__title {
    font-size: 64px;
  }

  .companies__list {
    font-size: 64px;
    line-height: 1.2;
    letter-spacing: -2%;
  }

  .principles__item {
    display: grid;
    grid-template-columns: var(--column-width) var(--column-width);
    gap: var(--gutter);
    align-items: flex-start;
    padding: 32px 0;
  }

  .principles__intro {
    font-size: 64px;
    line-height: 1.2;
    letter-spacing: -2%;
    font-weight: 500;
  }

  .principles__item-main {
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: -2%;
    font-weight: 700;
  }

  .principles__item-sub {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0;
    font-weight: 400;
  }

  .quote__mark {
    height: 64px;
    margin-bottom: 32px;
  }

  .quote__text {
    font-size: 96px;
    margin-bottom: 32px;
  }

  .quote__attribution {
    font-size: 24px;
  }

  .advisory__title {
    font-size: 64px;
    line-height: 1.2;
    letter-spacing: -2%;
    margin-bottom: 128px !important;
  }

  .advisory .section__header {
    margin-top: 0 !important;
    margin-bottom: 32px !important;
  }

  .advisory__item {
    display: grid;
    grid-template-columns: var(--column-width) var(--column-width);
    gap: var(--gutter);
    align-items: flex-start;
  }

  .advisory__item-header {
    flex-shrink: 0;
    gap: 4px;
  }

  .advisory__item-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .advisory__item-duration {
    font-size: 32px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .advisory__item-description {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .connect__intro {
    font-size: 64px;
    line-height: 1.2;
    letter-spacing: -2%;
    margin-bottom: 128px;
  }

  .connect__label,
  .connect__value {
    font-size: 24px;
  }

  .section__header {
    margin-bottom: 32px;
  }

  .section__title {
    margin-bottom: 32px;
  }

  .section__body {
    margin-bottom: 32px;
  }

  .principles__list {
    padding-top: 0;
  }

  .footer__top {
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .footer__divider {
    margin: 32px 0 96px 0;
  }

  .legal {
    padding-top: 200px;
  }
}

@media (min-width: 1729px) {
  :root {
    --container-width: 1600px;
    --column-width: 700px;
    --gutter: 200px;
  }

  .section__eyebrow {
    font-size: 32px;
  }

  .hero__scroll {
    font-size: 56px;
  }

  .hero__headline {
    font-size: 190px;
    line-height: 1.04;
    letter-spacing: -2px;
  }

  .hero__subline {
    font-size: 40px;
  }

  .section__title {
    font-size: 128px;
  }

  .two-col__item .section__title {
    font-size: 64px;
  }

  .two-col__item .section__body {
    font-size: 40px;
  }

  .approach__title {
    font-size: 120px;
    max-width: 1600px;
  }

  .approach__body {
    font-size: 40px;
    max-width: 700px;
  }

  .companies__list {
    font-size: 96px;
    line-height: 1.2;
    letter-spacing: -2%;
  }

  .principles__item {
    display: grid;
    grid-template-columns: var(--column-width) var(--column-width);
    gap: var(--gutter);
    align-items: flex-start;
    padding: 32px 0;
  }

  .principles__intro {
    font-size: 96px;
    line-height: 1.2;
    letter-spacing: -2%;
  }

  .principles__item-main {
    font-size: 40px;
    line-height: 1.4;
    letter-spacing: 0;
    font-weight: 700;
  }

  .principles__item-sub {
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0;
    font-weight: 400;
  }

  .quote__mark {
    height: 96px;
    margin-bottom: 32px;
  }

  .quote__text {
    font-size: 124px;
    margin-bottom: 32px;
  }

  .quote__attribution {
    font-size: 40px;
  }

  .advisory__title {
    font-size: 96px;
    line-height: 1.2;
    letter-spacing: -2%;
  }


  .advisory__title {
    margin-bottom: 128px !important;
  }

  .advisory .section__header {
    margin-top: 0 !important;
    margin-bottom: 32px !important;
  }

  .advisory__item {
    display: grid;
    grid-template-columns: var(--column-width) var(--column-width);
    gap: var(--gutter);
    align-items: flex-start;
  }

  .advisory__item-header {
    flex-shrink: 0;
    gap: 4px;
  }

  .advisory__item-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .advisory__item-duration {
    font-size: 40px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .advisory__item-description {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .connect__intro {
    font-size: 96px;
    line-height: 1.2;
    letter-spacing: -2%;
  }

  .connect__label,
  .connect__value {
    font-size: 40px;
  }

  .background__copy {
    font-size: 96px;
  }

  .footer__top {
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0;
  }
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: #fbf9f5;
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer__links a {
  color: #fbf9f5;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer__links a:hover {
  opacity: 0.7;
}

.footer__divider {
  height: 1px;
  background: #fbf9f5;
}

.footer__logo {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto 0 auto;
  padding-top: 0;
  text-align: left;
  color: #fbf9f5;
}

.footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1280px) {
  .hero {
    min-height: 100vh;
  }
}

@media (max-width: 1024px) {
  .header {
    padding: 40px 0 0;
  }

  .container {
    padding: 0 32px;
  }

  :root {
    --gutter: 48px;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
    gap: 72px;
  }

  .two-col__item {
    gap: 16px;
  }

  .two-col__item .section__title {
    margin-bottom: 0;
  }

  .hero__headline {
    font-size: 64px;
    line-height: 1.04;
    letter-spacing: -2px;
  }

  .section__title {
    font-size: 40px;
  }

  .header--light {
    padding: 40px 0 24px;
  }

  .header--light .header__inner {
    padding: 0 40px;
  }

  .legal__title {
    font-size: 48px;
  }

  .legal__content {
    font-size: 18px;
  }

}

@media (max-width: 768px) {
  .header {
    padding: 20px 0 0;
  }

  .header__inner {
    padding: 0 20px;
  }

  .header--light {
    padding: 20px 0 0;
  }

  .header--light .header__inner {
    padding: 0 20px;
  }

  .container {
    padding: 0 20px;
  }

  .hero .container {
    padding: 0 20px;
  }

  .header__label,
  .header__contact {
    margin: 0;
  }

  .image-block .container--edge {
    padding: 0;
  }

  .snap-section,
  footer.snap-section {
    min-height: auto;
    align-items: flex-start;
  }

  .snap-section + .snap-section {
    margin-top: 0;
  }

  .hero__headline {
    font-size: 64px;
    line-height: 1.04;
    letter-spacing: -2px;
    max-width: 100%;
  }

  .hero__subline,
  .section__eyebrow,
  .section__body {
    font-size: 20px;
  }

  .section__title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0%;
    font-weight: 500;
  }

  .principles__item {
    padding: 24px 0;
  }

  .section__header {
    margin-bottom: 24px;
  }

  .section__title {
    margin-bottom: 32px;
  }

  .section__body {
    margin-bottom: 32px;
  }

  .principles__list {
    padding-top: 0;
  }

  .principles__intro {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0%;
    margin-bottom: 64px;
  }

  .principles__item-main {
    font-size: 24px;
    font-weight: 700;
  }

  .principles__item-sub {
    font-size: 20px;
    font-weight: 400;
  }

  .quote__mark {
    height: 32px;
    margin-bottom: 32px;
  }

  .quote__text {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .quote__attribution {
    font-size: 20px;
  }

  .advisory__title {
    margin-bottom: 96px !important;
    line-height: 1.2;
    letter-spacing: 0%;
    font-weight: 500;
  }
  
  .advisory .section__header {
    margin-bottom: 32px;
  }


  .advisory__item-title {
    font-size: 24px;
    font-weight: 700;
  }

  .advisory__item-duration {
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
  }

  .advisory__item-description {
    font-size: 20px;
  }

  .connect__intro {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0%;
    font-weight: 500;
  }

  .connect__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .connect__label {
    font-size: 20px;
    flex-shrink: 0;
  }

  .connect__value {
    font-size: 20px;
    text-decoration: none;
    text-align: right;
  }

  .footer {
    padding: 96px 0;
  }

  .footer__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .footer__copy-full {
    display: none;
  }

  .footer__divider {
    margin: 24px 0 32px 0;
  }

  .hero {
    /* Height set by JavaScript using window.innerHeight */
    padding-top: 0;
    padding-bottom: 0;
    align-items: center;
    overflow: hidden;
  }

  .hero__content {
    gap: 24px;
  }

  .image-block__figure {
    height: 50vh;
  }

  .image-block {
    width: 100%;
    margin-left: 0;
    padding: 0;
  }

  .image-block--top .image-block__figure img {
    object-position: calc(50% + 40px) center;
  }

  .image-block--bottom {
    width: 100%;
    margin-left: 0;
  }

  .image-block--bottom .image-block__figure img {
    object-position: center;
  }

  .image-block .container--edge {
    width: 100%;
    margin: 0;
  }

  .legal.hero {
    padding-top: 140px;
    padding-bottom: 120px;
    height: auto;
    min-height: auto;
  }

  .legal__title {
    font-size: 40px;
  }

  .legal__content {
    font-size: 18px;
    gap: 20px;
  }

  .legal__contact-block {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}

@media (max-width: 480px) {

  .two-col__item {
    gap: 16px;
  }

  .two-col__item .section__title {
    margin-bottom: 0;
  }

  .hero {
    /* Height set by JavaScript using window.innerHeight */
    overflow: hidden;
  }

  .hero__headline {
    font-size: 64px;
    line-height: 1.04;
    letter-spacing: -2px;
  }

  .header--light .header__inner {
    padding: 0 20px;
  }

  .legal__title {
    font-size: 32px;
  }

  .legal__content {
    font-size: 16px;
  }

  .legal__contact-block {
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .principles__item {
    font-size: 26px;
  }

  .section__header {
    margin-bottom: 32px;
  }

  .section__title {
    margin-bottom: 32px;
  }

  .section__body {
    margin-bottom: 32px;
  }

  .principles__list {
    padding-top: 0;
  }

}