:root {
  --paper: #f2eee6;
  --paper-bright: #fbfaf6;
  --ink: #181917;
  --ink-soft: #282a27;
  --muted: #6b6962;
  --line: rgba(24, 25, 23, 0.18);
  --line-light: rgba(255, 255, 255, 0.18);
  --gold: #a07b45;
  --orange: #c9613d;
  --serif: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --page: min(1460px, calc(100vw - 80px));
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.search-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

::selection {
  background: var(--orange);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  font-size: 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  padding: 0 max(40px, calc((100vw - 1460px) / 2));
  display: grid;
  grid-template-columns: 186px 1fr 40px;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(242, 238, 230, 0.9);
  backdrop-filter: blur(20px) saturate(0.8);
  transition:
    height 400ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 400ms ease,
    box-shadow 400ms ease;
}

.site-header.is-compact {
  height: 72px;
  background: rgba(251, 250, 246, 0.94);
  box-shadow: 0 12px 40px rgba(24, 25, 23, 0.06);
}

.site-brand {
  width: 164px;
}

.site-brand img {
  width: 100%;
  height: auto;
}

.primary-navigation {
  justify-self: end;
  height: 100%;
}

.primary-menu {
  height: 100%;
  display: flex;
  gap: clamp(18px, 2.1vw, 36px);
  align-items: center;
  list-style: none;
}

.primary-menu > li {
  height: 100%;
  display: flex;
  align-items: center;
}

.primary-menu > li > a {
  position: relative;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.primary-menu > li > a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.primary-menu > li:hover > a::after,
.primary-menu > li:focus-within > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-menu > li > a span {
  display: inline-block;
  margin-left: 2px;
  color: var(--gold);
  transition: transform 300ms ease;
}

.has-mega-menu:hover > a span,
.has-mega-menu:focus-within > a span {
  transform: rotate(180deg);
}

.mega-menu {
  position: fixed;
  z-index: 90;
  inset: var(--header-height) 0 auto;
  padding: 42px max(40px, calc((100vw - 1460px) / 2)) 50px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.985);
  box-shadow: 0 28px 50px rgba(24, 25, 23, 0.08);
  transition:
    visibility 0s linear 260ms,
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.has-mega-menu:hover .mega-menu,
.has-mega-menu:focus-within .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.site-header.is-compact .mega-menu {
  top: 72px;
}

.mega-menu-inner {
  width: min(1460px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 56px);
}

.mega-menu section {
  padding-top: 16px;
  border-top: 1px solid var(--ink);
}

.mega-heading {
  min-height: 54px;
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.3;
}

.mega-menu ul {
  margin-top: 20px;
  list-style: none;
}

.mega-menu li + li {
  margin-top: 9px;
}

.mega-menu li a {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  transition: color 200ms ease;
}

.mega-menu li a:hover {
  color: var(--orange);
}

.header-search {
  width: 38px;
  height: 38px;
  padding: 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.header-search svg {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.4;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header-search:hover svg {
  transform: rotate(-8deg) scale(1.08);
}

.menu-toggle {
  display: none;
}

.search-overlay {
  position: fixed;
  z-index: 200;
  inset: 0;
  padding: 14vh max(40px, calc((100vw - 1100px) / 2));
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  background: rgba(24, 25, 23, 0.97);
  color: #fff;
  transition: visibility 0s linear 400ms, opacity 400ms ease;
}

.search-overlay.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.search-close {
  position: absolute;
  top: 34px;
  right: 40px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 200;
}

.search-overlay form {
  width: min(100%, 1000px);
}

.search-overlay label {
  display: block;
  margin-bottom: 32px;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 86px);
  letter-spacing: -0.04em;
}

.search-overlay form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.search-overlay input,
.search-overlay form button {
  padding: 18px 0;
  border: 0;
  color: #fff;
  background: transparent;
}

.search-overlay input {
  min-width: 0;
  outline: 0;
  font-size: 20px;
}

.search-overlay input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.search-overlay form button {
  padding-left: 30px;
  cursor: pointer;
  color: #d8ba80;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  min-height: max(820px, 100svh);
  position: relative;
  overflow: hidden;
  background: #d7cbbb;
}

.hero-source,
.hero-art,
.hero-canvas,
.hero-reading-field {
  position: absolute;
  inset: 0;
}

.hero-source {
  z-index: 0;
}

.hero-source img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.hero-art {
  z-index: 1;
  opacity: 0.72;
  mix-blend-mode: normal;
  background: url("assets/measured-tension.png") 54% center / cover no-repeat;
  transform: scale(1.025);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.hero-canvas {
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}

.hero-canvas.is-ready {
  opacity: 1;
}

.hero.has-generative-art .hero-art {
  opacity: 0;
}

.hero-reading-field {
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(248, 244, 236, 0.94) 0%,
      rgba(248, 244, 236, 0.84) 26%,
      rgba(248, 244, 236, 0.55) 45%,
      rgba(248, 244, 236, 0.12) 65%,
      rgba(20, 15, 22, 0.08) 100%
    ),
    linear-gradient(180deg, rgba(248, 244, 236, 0.15), transparent 62%, rgba(19, 15, 20, 0.15));
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: var(--page);
  min-height: max(820px, 100svh);
  margin: 0 auto;
  padding: clamp(152px, 17vh, 180px) 0 58px;
  display: flex;
  flex-direction: column;
}

.hero h1 {
  max-width: 830px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(68px, 6.7vw, 103px);
  font-weight: 400;
  letter-spacing: -0.053em;
  line-height: 0.98;
}

.hero-line {
  display: block;
  width: max-content;
  max-width: 100%;
}

.hero-line.on-art,
.hero-line.on-art + .hero-line {
  color: var(--ink);
  text-shadow: none;
}

.hero-line em {
  color: #9a573e;
  font-weight: 400;
}

.hero-support {
  width: min(720px, 64vw);
  margin-top: clamp(64px, 8vh, 84px);
  padding-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.hero-support h2 {
  max-width: 650px;
  margin: 0;
  color: #484842;
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.42;
}

.hero-search {
  width: min(100%, 560px);
  display: grid;
  grid-template-columns: 1fr auto;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.hero-search input,
.hero-search button {
  min-width: 0;
  padding: 18px 0;
  border: 0;
  outline: 0;
  background: transparent;
}

.hero-search input {
  color: var(--ink);
  padding-left: 33px;
  background: url("assets/search-dark.svg") left center / 20px 20px no-repeat;
  font-family: var(--serif);
  font-size: 18px;
}

.hero-search input::placeholder {
  color: var(--ink);
  opacity: 1;
}

.hero-search button {
  padding-left: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-search-icon,
.link-arrow {
  display: inline-block;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: square;
  stroke-linejoin: miter;
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-search-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.link-arrow {
  width: 17px;
  height: 17px;
  margin-left: 4px;
  vertical-align: -0.16em;
}

.hero-search button:hover .hero-search-icon,
.news-card:hover .link-arrow,
.section-link:hover .link-arrow,
.network-intro > a:hover .link-arrow {
  transform: translate(4px, -4px);
}

.news-stream {
  padding: 45px max(40px, calc((100vw - 1460px) / 2)) 140px;
  background: var(--paper);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.news-card {
  min-height: 750px;
  position: relative;
  padding: 30px 30px 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background-color 400ms ease,
    color 400ms ease;
}

.news-visual {
  height: 220px;
  margin: -30px -30px 28px;
  display: block;
  overflow: hidden;
  background: #d8d1c4;
}

.news-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.94);
  transform: scale(1.002);
  transition:
    filter 650ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card:hover .news-visual img {
  filter: saturate(0.95) contrast(1);
  transform: scale(1.055);
}

.news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition:
    opacity 450ms ease,
    transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card > * {
  position: relative;
  z-index: 1;
}

.news-card:hover {
  color: #f8f4ec;
}

.news-card:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.news-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid currentColor;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-meta time {
  color: var(--muted);
  font-weight: 600;
}

.news-card:hover .news-meta time,
.news-card:hover > p {
  color: rgba(255, 255, 255, 0.63);
}

.news-card h2 {
  margin: 30px 0 0;
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.news-card > p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
  transition: color 400ms ease;
}

.text-link {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link .link-arrow {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  margin-left: 18px;
  vertical-align: baseline;
}

.news-card:hover .text-link .link-arrow {
  color: #f5f0e7;
  transform: translate(4px, -4px);
}

.about-section,
.expertise-section,
.awards-section {
  padding: 140px max(40px, calc((100vw - 1460px) / 2));
}

.about-section {
  background: var(--paper-bright);
}

.section-heading {
  padding-bottom: 36px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  border-bottom: 1px solid var(--ink);
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading h2 span {
  color: var(--muted);
  font-size: 0.56em;
  letter-spacing: -0.02em;
}

.section-link {
  padding-bottom: 5px;
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-layout {
  padding-top: 72px;
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(56px, 7vw, 110px);
}

.about-rail {
  position: sticky;
  top: 140px;
  align-self: start;
  width: min(100%, 310px);
  height: max-content;
}

.about-mark {
  width: min(270px, 92%);
}

.about-mark img {
  width: 100%;
  height: auto;
  display: block;
}

.about-themes-wrap {
  min-height: 248px;
  position: relative;
  margin: 48px 0 0 12px;
}

.about-rail-track,
.about-rail-progress {
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  display: block;
  transform-origin: 50% 0;
}

.about-rail-track {
  background: rgba(23, 23, 20, 0.16);
}

.about-rail-progress {
  z-index: 1;
  background: var(--gold);
  transform: scaleY(0);
  will-change: transform;
}

.about-themes {
  position: relative;
  z-index: 2;
  min-height: 248px;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  list-style: none;
}

.about-theme {
  min-height: 38px;
  display: grid;
  grid-template-columns: 13px 1fr;
  gap: 20px;
  align-items: start;
  color: #979289;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
  transition: color 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-theme small {
  margin-bottom: 5px;
  display: block;
  color: #aaa49a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  transition: color 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-theme-node {
  width: 13px;
  height: 13px;
  position: relative;
  display: block;
  border: 1px solid rgba(23, 23, 20, 0.22);
  border-radius: 50%;
  background: var(--paper-bright);
  transition:
    border-color 450ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-theme-node::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold);
  transform: scale(0);
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-theme.is-reached .about-theme-node {
  border-color: rgba(160, 123, 69, 0.64);
}

.about-theme.is-reached .about-theme-node::after {
  transform: scale(0.52);
}

.about-theme.is-active {
  color: var(--ink);
}

.about-theme.is-active small {
  color: var(--gold);
}

.about-theme.is-active .about-theme-node {
  border-color: var(--gold);
  transform: scale(1.08);
}

.about-theme.is-active .about-theme-node::after {
  transform: scale(1);
}

.about-copy {
  max-width: 850px;
}

.about-copy p {
  margin: 0;
  color: #4e4e48;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.72;
}

.about-copy p:first-child {
  margin-left: clamp(-72px, -5vw, -48px);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.42;
}

.about-copy p + p {
  margin-top: 32px;
}

.about-copy p:last-child {
  padding-top: 29px;
  border-top: 1px solid var(--line);
  color: var(--gold);
  font-weight: 550;
}

.wisdom-demo {
  min-height: 820px;
  position: relative;
  overflow: hidden;
  padding: 70px max(40px, calc((100vw - 1460px) / 2)) 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #f8f3e9;
  background: #0d1424;
  isolation: isolate;
}

.wisdom-demo::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 10, 19, 0.38), transparent 28%, transparent 72%, rgba(7, 10, 19, 0.38)),
    radial-gradient(circle at center, transparent 35%, rgba(7, 10, 19, 0.18));
}

.wisdom-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.wisdom-background {
  z-index: 0;
}

.wisdom-physics {
  z-index: 2;
  pointer-events: none;
}

.wisdom-topline,
.quote-stage,
.another-maxim {
  position: relative;
  z-index: 3;
}

.wisdom-topline {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.section-label {
  margin: 0;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 1px;
  margin: 0 11px 3px 0;
  background: currentColor;
}

.section-label.light {
  color: #d6b981;
}

.wisdom-topline > span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.quote-stage {
  width: min(1120px, 90%);
  margin: 80px auto 50px;
  text-align: center;
}

.quote-stage blockquote {
  min-height: 2.12em;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 86px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
  text-wrap: balance;
  transition: opacity 220ms ease;
}

.quote-stage blockquote:not(:empty)::before {
  content: "“";
  color: #d6b981;
}

.quote-stage blockquote:not(:empty)::after {
  content: "”";
  color: #d6b981;
}

.wisdom-demo.physics-active .quote-stage blockquote,
.wisdom-demo.physics-active .quote-stage > p {
  opacity: 0;
}

.quote-stage > p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--serif);
  font-size: 21px;
  transition: opacity 220ms ease;
}

.quote-stage cite {
  display: block;
  margin-top: 38px;
  color: #d6b981;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.another-maxim {
  align-self: center;
  padding: 12px 0;
  display: flex;
  gap: 18px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.another-maxim i {
  color: #d6b981;
  font-size: 17px;
  font-style: normal;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.another-maxim:hover i {
  transform: rotate(-180deg);
}

.expertise-section {
  color: #f5f0e7;
  background: var(--ink);
}

.expertise-section .section-heading {
  border-color: rgba(255, 255, 255, 0.55);
}

.expertise-section .section-link {
  color: rgba(255, 255, 255, 0.68);
}

.expertise-list {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.expertise-group {
  position: relative;
  padding: 45px 0;
  display: grid;
  grid-template-columns: 80px minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 4vw, 70px);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  transition: background-color 450ms ease;
}

.expertise-group:first-child {
  border-top: 0;
}

.expertise-group::before {
  content: "";
  position: absolute;
  inset: 0 calc((100vw - min(1460px, 100vw - 80px)) / -2);
  z-index: 0;
  opacity: 0;
  background: rgba(255, 255, 255, 0.045);
  transition: opacity 350ms ease;
}

.expertise-group:hover::before {
  opacity: 1;
}

.expertise-group > * {
  position: relative;
  z-index: 1;
}

.group-number {
  padding-top: 6px;
  color: #c9aa70;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.expertise-group h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 37px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.expertise-group ul {
  columns: 2;
  column-gap: 45px;
  list-style: none;
}

.expertise-group li {
  margin: 0 0 13px;
  break-inside: avoid;
  color: rgba(255, 255, 255, 0.63);
  font-size: 12px;
  line-height: 1.45;
  transition: color 250ms ease, transform 250ms ease;
}

.expertise-group li:hover {
  color: #e4c98f;
  transform: translateX(4px);
}

.awards-section {
  background: var(--paper-bright);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.award-column {
  padding: 45px 38px 20px;
  border-right: 1px solid var(--line);
}

.award-logo {
  height: 115px;
  display: flex;
  align-items: center;
}

.award-logo img {
  max-width: 175px;
  max-height: 80px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.08);
}

.award-column:nth-child(2) .award-logo img {
  max-width: 108px;
}

.award-column ol {
  list-style: none;
}

.award-column li {
  min-height: 104px;
  padding: 21px 0;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.award-column li span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.award-column li p {
  margin: 0;
  color: #4e4e48;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.4;
}

.award-column .award-more {
  min-height: auto;
}

.network-section {
  padding: 125px max(40px, calc((100vw - 1460px) / 2)) 130px;
  color: #f6f1e7;
  background: var(--ink-soft);
}

.network-intro {
  padding-bottom: 38px;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.network-intro > a {
  display: flex;
  gap: 18px;
  align-items: center;
  color: #d8ba80;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.network-stats {
  padding-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.network-stat {
  min-height: 245px;
  position: relative;
  overflow: hidden;
  padding: 46px 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  isolation: isolate;
}

.network-stat + .network-stat {
  padding-left: 38px;
  border-left: 0;
}

.network-stat:nth-child(1) {
  background-image: url("assets/live-stat-cities.jpg");
}

.network-stat:nth-child(2) {
  background-image: url("assets/live-stat-partners.jpg");
}

.network-stat:nth-child(3) {
  background-image: url("assets/live-stat-lawyers.jpg");
}

.network-stat::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 14, 14, 0.08), rgba(12, 14, 14, 0.76)),
    linear-gradient(90deg, rgba(12, 14, 14, 0.36), transparent 72%);
}

.network-stat::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.network-stat strong {
  display: block;
  color: #e1c590;
  font-family: var(--serif);
  font-size: clamp(58px, 6vw, 92px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.network-stat span {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer {
  padding: 80px 0 28px;
  background: var(--paper);
}

.acknowledgement {
  width: var(--page);
  max-width: 1060px;
  margin: 0 auto 84px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: center;
}

.ack-mark {
  color: var(--gold);
}

.ack-mark svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 0.8;
}

.acknowledgement p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 39px);
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.35;
  text-align: center;
}

.global-team-banner {
  min-height: 230px;
  position: relative;
  margin-top: 80px;
  padding: 58px max(40px, calc((100vw - 1460px) / 2));
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: url("assets/footer-global-team.jpg") center 48% / cover no-repeat;
  isolation: isolate;
}

.global-team-banner::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(37, 30, 22, 0.32);
}

.global-team-banner h2 {
  max-width: 960px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(35px, 4.3vw, 66px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 3px 22px rgba(30, 22, 13, 0.26);
}

.footer-bottom {
  width: var(--page);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}

.holodata-credit {
  min-height: 34px;
  margin-left: auto;
  padding: 4px 1px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.holodata-credit:hover {
  color: var(--gold);
}

.holodata-credit__prefix {
  color: var(--muted);
  font-weight: 600;
}

.holodata-credit__mark {
  width: 52px;
  height: 26px;
  flex: 0 0 auto;
  filter: brightness(0);
  transform: rotate(-8deg);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.holodata-credit:hover .holodata-credit__mark {
  transform: rotate(-8deg) scale(1.07);
}

.holodata-credit__name {
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

@media (max-width: 1180px) {
  :root {
    --page: calc(100vw - 56px);
  }

  .site-header {
    padding-inline: 28px;
    grid-template-columns: 150px 1fr 38px;
    gap: 18px;
  }

  .site-brand {
    width: 144px;
  }

  .primary-menu {
    gap: 18px;
  }

  .primary-menu > li > a {
    font-size: 11px;
  }

  .hero-support {
    width: min(700px, 70vw);
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .news-stream,
  .about-section,
  .expertise-section,
  .awards-section,
  .network-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .news-card {
    min-height: 790px;
  }

  .expertise-group::before {
    inset-inline: -28px;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--line);
  }

  .award-column {
    padding-left: 0;
    padding-right: 0;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 35px;
    border-bottom: 1px solid var(--line);
  }

  .award-logo {
    align-items: flex-start;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 78px;
  }

  .site-header,
  .site-header.is-compact {
    height: var(--header-height);
    grid-template-columns: 1fr auto;
  }

  .site-brand {
    width: 148px;
  }

  .header-search {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 11px 7px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 27px;
    height: 1px;
    display: block;
    background: var(--ink);
    transition: transform 350ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    z-index: 95;
    inset: var(--header-height) 0 0;
    height: calc(100svh - var(--header-height));
    padding: 38px 28px 70px;
    visibility: hidden;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-14px);
    background: rgba(251, 250, 246, 0.99);
    transition:
      visibility 0s linear 350ms,
      opacity 280ms ease,
      transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .primary-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .primary-menu {
    height: auto;
    display: block;
  }

  .primary-menu > li {
    height: auto;
    display: block;
    border-bottom: 1px solid var(--line);
  }

  .primary-menu > li > a {
    padding: 17px 0;
    display: flex;
    justify-content: space-between;
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.02em;
  }

  .primary-menu > li > a::after {
    display: none;
  }

  .mega-menu,
  .site-header.is-compact .mega-menu {
    position: static;
    max-height: 0;
    padding: 0;
    visibility: visible;
    overflow: hidden;
    opacity: 1;
    transform: none;
    border: 0;
    box-shadow: none;
    background: transparent;
    transition: max-height 700ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .has-mega-menu:focus-within .mega-menu,
  .has-mega-menu:hover .mega-menu,
  .has-mega-menu.mobile-expanded .mega-menu {
    max-height: 2400px;
  }

  .mega-menu-inner {
    padding: 10px 0 34px;
    grid-template-columns: 1fr 1fr;
  }

  .mega-heading {
    min-height: auto;
    font-size: 16px;
  }

  .mega-menu li a {
    font-size: 12px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-art {
    inset: 0;
    height: auto;
    background-position: 58% center;
  }

  .hero-reading-field {
    background:
      linear-gradient(90deg, rgba(248, 244, 236, 0.94), rgba(248, 244, 236, 0.76) 42%, rgba(248, 244, 236, 0.25) 72%, rgba(20, 15, 22, 0.08)),
      linear-gradient(180deg, rgba(248, 244, 236, 0.12), transparent 65%, rgba(19, 15, 20, 0.16));
  }

  .hero-inner {
    min-height: 820px;
    padding-top: 138px;
  }

  .hero h1 {
    font-size: clamp(65px, 10.8vw, 92px);
  }

  .hero-support {
    width: min(680px, 80vw);
    margin-top: 62px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-support h2 {
    max-width: 620px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-card {
    min-height: 560px;
  }

  .network-stats {
    grid-template-columns: 1fr;
  }

  .network-stat strong {
    font-size: clamp(58px, 10vw, 82px);
  }

  .about-layout {
    grid-template-columns: minmax(190px, 0.45fr) minmax(0, 1.55fr);
    gap: 48px;
  }

  .about-mark {
    width: min(170px, 90%);
  }

  .about-themes-wrap {
    min-height: 220px;
    margin-top: 38px;
    margin-left: 4px;
  }

  .about-themes {
    min-height: 220px;
  }

  .about-theme {
    gap: 14px;
    font-size: 10px;
  }

  .about-copy p:first-child {
    margin-left: -34px;
  }

  .expertise-group {
    grid-template-columns: 55px 0.8fr 1.2fr;
  }

  .network-intro {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 680px) {
  :root {
    --page: calc(100vw - 36px);
  }

  .site-header,
  .site-header.is-compact {
    padding-inline: 18px;
  }

  .site-brand {
    width: 130px;
  }

  .primary-navigation {
    padding-inline: 18px;
  }

  .primary-menu > li > a {
    font-size: 27px;
  }

  .mega-menu-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 790px;
  }

  .hero-art {
    inset: 0;
    height: auto;
    opacity: 0.7;
    background-position: 65% center;
  }

  .hero-source img {
    object-position: 55% center;
  }

  .hero-reading-field {
    background:
      linear-gradient(180deg, rgba(248, 244, 236, 0.86), rgba(248, 244, 236, 0.72) 48%, rgba(248, 244, 236, 0.32) 72%, rgba(20, 15, 22, 0.1)),
      linear-gradient(90deg, rgba(248, 244, 236, 0.58), rgba(248, 244, 236, 0.12));
  }

  .hero-inner {
    min-height: 790px;
    padding-top: 126px;
    padding-bottom: 38px;
  }

  .hero h1 {
    font-size: clamp(50px, 14vw, 67px);
    line-height: 0.98;
  }

  .hero-support {
    width: 100%;
    margin-top: 62px;
    padding-top: 0;
    gap: 26px;
  }

  .hero-support h2 {
    font-size: 19px;
  }

  .hero-search button span {
    display: none;
  }

  .news-stream,
  .about-section,
  .expertise-section,
  .awards-section,
  .network-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .news-stream {
    padding-top: 25px;
    padding-bottom: 95px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    min-height: auto;
    padding: 26px 18px 30px;
    border-left: 0;
    border-right: 1px solid var(--line);
  }

  .news-visual {
    height: 230px;
    margin: -26px -18px 28px;
  }

  .news-card::before {
    inset-inline: 0;
  }

  .news-card h2 {
    font-size: 27px;
  }

  .news-card .text-link {
    margin-top: 35px;
  }

  .about-section,
  .expertise-section,
  .awards-section {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .section-heading {
    padding-bottom: 23px;
    align-items: flex-end;
  }

  .section-heading h2 {
    font-size: 47px;
  }

  .section-heading h2 span {
    margin-top: 8px;
    display: block;
    font-size: 18px;
  }

  .section-link {
    max-width: 118px;
    justify-content: flex-end;
    text-align: right;
  }

  .about-layout {
    padding-top: 45px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-rail {
    position: static;
    top: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
  }

  .about-mark {
    width: 126px;
  }

  .about-themes-wrap {
    min-height: 182px;
    margin: 0;
  }

  .about-themes {
    min-height: 182px;
  }

  .about-theme {
    min-height: 32px;
    gap: 12px;
    font-size: 10px;
  }

  .about-copy p {
    font-size: 16px;
  }

  .about-copy p:first-child {
    margin-left: 0;
    font-size: 27px;
  }

  .wisdom-demo {
    min-height: 720px;
    padding: 38px 18px 48px;
  }

  .wisdom-topline > span {
    display: none;
  }

  .quote-stage {
    width: 100%;
  }

  .quote-stage blockquote {
    min-height: 3.1em;
    font-size: clamp(38px, 12vw, 58px);
  }

  .quote-stage > p {
    font-size: 18px;
  }

  .expertise-group {
    padding: 34px 0;
    grid-template-columns: 38px 1fr;
    gap: 22px;
  }

  .expertise-group ul {
    grid-column: 2;
    columns: 1;
    margin-top: 5px;
  }

  .expertise-group::before {
    inset-inline: -18px;
  }

  .expertise-group h3 {
    font-size: 27px;
  }

  .award-column {
    padding: 35px 0 10px;
    display: block;
  }

  .award-logo {
    height: 95px;
  }

  .award-column li {
    grid-template-columns: 70px 1fr;
  }

  .network-section {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .network-intro {
    padding-bottom: 55px;
  }

  .network-intro h2 {
    font-size: 45px;
  }

  .network-stats {
    grid-template-columns: 1fr;
  }

  .network-stat,
  .network-stat + .network-stat {
    min-height: 240px;
    padding: 36px 28px;
    border-left: 0;
    border-bottom: 0;
  }

  .network-stat:last-child {
    border-bottom: 0;
  }

  .network-stat strong {
    font-size: 72px;
  }

  .site-footer {
    padding-top: 65px;
  }

  .acknowledgement {
    margin-bottom: 60px;
    grid-template-columns: 1fr;
  }

  .ack-mark {
    width: 58px;
    margin: 0 auto;
  }

  .acknowledgement p {
    font-size: 25px;
  }

  .global-team-banner {
    min-height: 285px;
    margin-top: 60px;
    padding: 44px 18px;
  }

  .global-team-banner h2 {
    font-size: 40px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px 22px;
  }

  .footer-legal {
    width: 100%;
    gap: 16px 22px;
  }

  .holodata-credit {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .wisdom-physics {
    display: none;
  }

  .about-rail-progress {
    transform: scaleY(1);
  }

  .about-theme {
    color: var(--ink);
  }

  .about-theme small {
    color: var(--gold);
  }

  .about-theme .about-theme-node {
    border-color: rgba(160, 123, 69, 0.64);
  }

  .about-theme .about-theme-node::after {
    transform: scale(0.72);
  }
}
