:root {
  --ink: #17130f;
  --ink-2: #211c17;
  --paper: #f4f0e8;
  --paper-2: #ebe4d8;
  --white: #fff;
  --bronze: #8f6b3d;
  --bronze-light: #b08b58;
  --muted: #746b61;
  --line: rgba(23, 19, 15, 0.18);
  --line-light: rgba(255, 255, 255, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shell: min(1440px, calc(100vw - 96px));
  --header-h: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

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

body.nav-open,
body.is-loading {
  overflow: hidden;
}

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

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--paper);
  transform: translateY(-160%);
}

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

.preloader {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  color: var(--paper);
  background: var(--ink);
  place-items: center;
  transition:
    clip-path 1.05s var(--ease) 0.2s,
    visibility 0s linear 1.25s;
  clip-path: inset(0 0 0 0);
}

.is-ready .preloader {
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
}

.preloader__brand {
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 0;
  transform: translateY(12px);
  animation: preloader-brand 0.7s var(--ease) forwards 0.05s;
}

.preloader__brand img {
  width: 52px;
  mix-blend-mode: screen;
}

.preloader__brand span {
  color: var(--bronze-light);
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.preloader__line {
  position: absolute;
  bottom: 14vh;
  width: min(300px, 65vw);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.preloader__line i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--bronze-light);
  transform: translateX(-100%);
  animation: preloader-line 0.9s var(--ease) forwards;
}

@keyframes preloader-brand {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes preloader-line {
  to { transform: translateX(0); }
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition:
    height 0.35s var(--ease),
    background 0.35s ease,
    transform 0.45s var(--ease);
}

.site-header.is-sticky {
  position: fixed;
  height: 74px;
  background: rgba(17, 16, 15, 0.92);
  backdrop-filter: blur(16px);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.header__inner {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 40px;
  height: 48px;
  object-fit: cover;
  mix-blend-mode: screen;
}

.brand > span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.brand small {
  margin-top: 6px;
  color: var(--bronze-light);
  font-size: 5.8px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.primary-nav {
  display: flex;
  height: 100%;
  align-items: center;
  gap: clamp(17px, 1.7vw, 30px);
}

.primary-nav > a,
.nav-group__trigger {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

.primary-nav > a::after,
.nav-group__trigger::after {
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  height: 1px;
  background: var(--bronze-light);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.site-header:not(.is-sticky) .primary-nav > a::after,
.site-header:not(.is-sticky) .nav-group__trigger::after {
  bottom: 31px;
}

.primary-nav > a:hover::after,
.nav-group:hover .nav-group__trigger::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-group {
  position: relative;
  height: 100%;
}

.nav-group__trigger {
  gap: 7px;
}

.nav-group__trigger > span:last-child {
  color: var(--bronze-light);
  font-size: 12px;
  font-weight: 300;
  transition: transform 0.3s var(--ease);
}

.nav-group:hover .nav-group__trigger > span:last-child {
  transform: rotate(45deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: -24px;
  display: grid;
  width: 300px;
  max-height: calc(100vh - 110px);
  padding: 18px 24px;
  overflow-y: auto;
  visibility: hidden;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s var(--ease);
}

.nav-dropdown a {
  padding: 7px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 16px;
}

.nav-dropdown a:last-child {
  border-bottom: 0;
}

.nav-dropdown a:hover {
  color: var(--bronze);
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.language-toggle {
  display: flex;
  gap: 5px;
  padding: 0;
  color: rgba(255, 255, 255, 0.34);
  background: none;
  border: 0;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.language-toggle i {
  font-style: normal;
}

.language-toggle .is-active {
  color: var(--bronze-light);
}

.language-toggle--mobile {
  display: none;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 11px 2px 11px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-contact i {
  color: var(--bronze-light);
  font-size: 13px;
  font-style: normal;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--paper);
  transition: transform 0.3s var(--ease);
}

.hero {
  position: relative;
  min-height: 850px;
  height: 100svh;
  color: var(--paper);
  background: var(--ink);
}

.hero__grid {
  display: grid;
  height: calc(100% - 58px);
  grid-template-columns: 54% 46%;
}

.hero__copy {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--header-h) + 12vh) 6vw 34px max(48px, calc((100vw - min(1440px, calc(100vw - 96px))) / 2));
}

.hero__copy-inner {
  margin-block: auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label > span:first-child {
  color: var(--bronze);
}

.section-label > span:first-child::after {
  display: inline-block;
  width: 32px;
  height: 1px;
  margin-left: 13px;
  vertical-align: middle;
  background: currentColor;
  content: "";
}

.hero__label {
  color: rgba(255, 255, 255, 0.42);
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.89;
}

h1 {
  max-width: 840px;
  font-size: clamp(70px, 7.1vw, 112px);
}

h2 {
  font-size: clamp(56px, 5.5vw, 88px);
}

h1 em,
h2 em {
  color: var(--bronze-light);
  font-weight: 400;
}

.line-reveal > span {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

.line-reveal > span {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1s ease,
    transform 1.05s var(--ease);
}

.line-reveal > span:nth-child(2) {
  transition-delay: 0.09s;
}

.line-reveal.is-visible > span {
  opacity: 1;
  transform: translateY(0);
}

.hero__intro {
  display: grid;
  max-width: 660px;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
  margin-top: 52px;
  padding-top: 27px;
  border-top: 1px solid var(--line-light);
}

.hero__intro p {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  min-width: 220px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.hero-cta i {
  color: var(--bronze-light);
  font-size: 13px;
  font-style: normal;
  transition: transform 0.4s var(--ease);
}

.hero-cta:hover i {
  transform: translate(3px, 3px);
}

.hero__foot {
  display: flex;
  max-width: 660px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.36);
  font-size: 7px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__foot a {
  color: var(--bronze-light);
}

.hero__media {
  position: relative;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: 45% center;
  filter: contrast(1.08);
  transform: translateY(var(--parallax, 0px)) scale(1.04);
  will-change: transform;
}

.hero__media-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 15, 0.55), transparent 36%),
    linear-gradient(0deg, rgba(17, 16, 15, 0.5), transparent 48%);
}

.hero__media figcaption {
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.55);
  font-size: 7px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__media figcaption small {
  color: rgba(255, 255, 255, 0.26);
  font-size: inherit;
}

.hero__practice-bar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 58px;
  overflow: hidden;
  color: var(--ink);
  background: var(--bronze-light);
}

.hero__practice-bar div {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 6vw, 90px);
}

.hero__practice-bar span {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.hero__practice-bar i {
  font-size: 8px;
  font-style: normal;
}

.section {
  padding-block: 150px;
}

.vision {
  background: var(--paper);
}

.vision__heading {
  display: grid;
  grid-template-columns: 24% 1fr;
  align-items: start;
  margin-bottom: 95px;
}

.line-reveal--dark em {
  color: var(--bronze);
}

.vision__grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: end;
  gap: 9vw;
}

.image-reveal {
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.25s var(--ease);
}

.image-reveal.is-visible,
.is-ready .hero__media {
  clip-path: inset(0 0 0 0);
}

.vision__media {
  position: relative;
  height: 690px;
  margin: 0;
}

.vision__media img,
.team__media img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  transform: translateY(var(--parallax, 0px)) scale(1.02);
  will-change: transform;
}

.vision__media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 17px 19px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(17, 16, 15, 0.75);
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.vision__media figcaption small {
  color: rgba(255, 255, 255, 0.36);
  font-size: inherit;
}

.vision__statement {
  padding-bottom: 4px;
}

.vision__lead {
  max-width: 720px;
  margin-bottom: 56px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.33;
}

.dropcap {
  float: left;
  margin: -0.17em 8px -0.1em 0;
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 3.1em;
  line-height: 1;
}

.vision__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.vision__columns p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.underlined-link {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 60px;
  margin-top: 45px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.underlined-link i {
  color: var(--bronze);
  font-size: 13px;
  font-style: normal;
  transition: transform 0.3s var(--ease);
}

.underlined-link:hover i {
  transform: translate(3px, 3px);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 100px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principles p {
  display: flex;
  min-height: 130px;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 25px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles span {
  color: var(--bronze);
  font-size: 8px;
}

.principles strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.section--ink {
  color: var(--paper);
  background: var(--ink-2);
}

.expertise {
  position: relative;
  overflow: hidden;
}

.section-label--light {
  color: rgba(255, 255, 255, 0.43);
}

.expertise__top {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.45fr);
  align-items: start;
  gap: 80px;
  margin-bottom: 90px;
}

.expertise__top > p:last-child {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.expertise-list {
  position: relative;
  border-top: 1px solid var(--line-light);
}

.expertise-item {
  border-bottom: 1px solid var(--line-light);
}

.expertise-item__trigger {
  display: grid;
  width: 100%;
  grid-template-columns: 7% minmax(300px, 1fr) minmax(180px, 0.35fr) 44px;
  align-items: center;
  padding: 32px 0;
  color: inherit;
  background: none;
  border: 0;
  text-align: left;
}

.expertise-item__no {
  color: var(--bronze-light);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.expertise-item__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.1vw, 64px);
  line-height: 1;
  transition: color 0.3s ease, transform 0.5s var(--ease);
}

.expertise-item__meta {
  color: rgba(255, 255, 255, 0.36);
  font-size: 7px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.expertise-item__icon {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.expertise-item__icon::before,
.expertise-item__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--bronze-light);
  content: "";
  transition: transform 0.35s var(--ease);
  transform: translate(-50%, -50%);
}

.expertise-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.expertise-item.is-open .expertise-item__icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.expertise-item:hover .expertise-item__title,
.expertise-item.is-open .expertise-item__title {
  color: var(--bronze-light);
  transform: translateX(4px);
}

.expertise-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s var(--ease);
}

.expertise-item__panel > div {
  display: grid;
  grid-template-columns: 7% 1fr 0.8fr 44px;
  padding: 0 0 44px;
}

.expertise-item__panel p {
  grid-column: 2;
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.expertise-item__panel ul {
  grid-column: 3;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  letter-spacing: 0.07em;
  line-height: 2;
  text-transform: uppercase;
}

.expertise-item__panel a {
  grid-column: 2;
  width: max-content;
  margin-top: 28px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--bronze-light);
  color: var(--bronze-light);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team {
  background: var(--paper-2);
}

.team__intro {
  display: grid;
  grid-template-columns: 1fr minmax(330px, 0.37fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 95px;
}

.team__intro > p {
  max-width: 430px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
}

.team__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(560px, 1.38fr);
  align-items: start;
  gap: 7vw;
}

.team__media {
  position: relative;
  height: 690px;
  margin: 0;
}

.team__media img {
  object-position: 72% center;
}

.team__media-note {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 25px;
  color: var(--paper);
  background: linear-gradient(transparent, rgba(17, 16, 15, 0.85));
}

.team__media-note > span {
  font-family: var(--serif);
  font-size: 50px;
}

.team__media-note small {
  margin-bottom: 10px;
  font-size: 7px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.team-copy {
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.team-copy__lead {
  max-width: 820px;
  margin-bottom: 52px;
  font-family: var(--serif);
  font-size: clamp(31px, 3.4vw, 50px);
  line-height: 1.12;
}

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

.team-card {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-card span {
  color: var(--bronze);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.team-card strong {
  display: block;
  margin: 30px 0 17px;
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 33px);
  font-weight: 400;
  line-height: 1.02;
}

.team-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.insights {
  background: var(--paper);
}

.insights__heading {
  display: grid;
  grid-template-columns: 28% 1fr;
  margin-bottom: 90px;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-item {
  position: relative;
  display: grid;
  min-height: 210px;
  grid-template-columns: 24% 1fr 60px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: color 0.4s ease;
}

.news-item::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(143, 107, 61, 0.08);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.55s var(--ease);
}

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

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

.news-item__meta {
  display: flex;
  gap: 32px;
  color: var(--bronze);
  font-size: 7px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.news-item__meta time {
  color: var(--muted);
}

.news-item h3 {
  max-width: 870px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 45px);
  font-weight: 400;
  line-height: 1.1;
}

.news-item__arrow {
  font-size: 19px;
  transition: transform 0.35s var(--ease);
}

.news-item:hover .news-item__arrow {
  transform: translate(5px, -5px);
}

.news-item--article {
  min-height: 320px;
  grid-template-columns: 24% minmax(0, 1fr) 54px;
  align-items: start;
  padding: 44px 0;
}

.news-item__body {
  max-width: 900px;
}

.news-item__excerpt {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.news-item__points {
  display: grid;
  gap: 11px;
  max-width: 790px;
  margin: 30px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: #655d53;
  font-size: 10px;
  letter-spacing: 0.04em;
  line-height: 1.65;
  list-style: none;
  text-transform: uppercase;
}

.news-item__points li {
  position: relative;
  padding-left: 18px;
}

.news-item__points li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--bronze);
  content: "";
  transform: rotate(45deg);
}

.news-item--article .news-item__arrow {
  display: grid;
  width: 44px;
  height: 44px;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
}

.insights__note {
  display: flex;
  justify-content: flex-end;
  padding: 28px 0 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insights__note span {
  max-width: 450px;
}

.faq {
  background: var(--paper-2);
}

.faq__heading {
  display: grid;
  grid-template-columns: 28% 1fr;
  margin-bottom: 90px;
}

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

.faq-item {
  min-height: 270px;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.16);
  transition: background 0.35s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.34);
}

.faq-item h3 {
  max-width: 520px;
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(29px, 2.8vw, 43px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.faq-item p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.contact__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: start;
  gap: 9vw;
}

.contact__intro {
  max-width: 470px;
  margin: 50px 0 60px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 14px;
}

.contact__direct {
  display: grid;
  max-width: 680px;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
}

.contact__direct > * {
  display: flex;
  flex-direction: column;
}

.contact__direct small {
  margin-bottom: 8px;
  color: var(--bronze-light);
  font-size: 7px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact__direct span {
  font-family: var(--serif);
  font-size: 20px;
}

.contact-form {
  padding: 42px;
  color: var(--ink);
  background: var(--paper);
}

.contact-form__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 55px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--bronze);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-form > label:not(.contact-form__consent) {
  display: grid;
  gap: 5px;
  margin-bottom: 27px;
}

.contact-form label > span {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  padding: 9px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #aca69d;
  border-radius: 0;
  outline: 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--bronze);
}

.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 28px;
  color: var(--muted);
  font-size: 8px;
}

.contact-form__consent input {
  margin: 2px 0 0;
  accent-color: var(--bronze);
}

.contact-form__consent span {
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.form-submit {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 21px;
  color: var(--paper);
  background: var(--ink);
  border: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.form-submit:hover {
  background: var(--bronze);
}

.form-submit i {
  color: var(--bronze-light);
  font-size: 14px;
  font-style: normal;
}

.form-status {
  min-height: 18px;
  margin: 12px 0 0;
  color: #62735a;
  font-size: 9px;
  text-align: center;
}

.footer {
  color: rgba(255, 255, 255, 0.5);
  background: #0b0a09;
}

.footer__top {
  display: grid;
  min-height: 170px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
}

.brand--footer img {
  width: 45px;
}

.footer__top > p {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
}

.footer__top-link {
  display: grid;
  width: 42px;
  height: 42px;
  justify-self: end;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  place-items: center;
}

.footer__bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.25);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom div {
  display: flex;
  gap: 25px;
}

.mobile-contact {
  display: none;
}

.utility-page {
  min-height: 100vh;
  color: var(--paper);
  background:
    radial-gradient(circle at 16% 16%, rgba(176, 139, 88, 0.13), transparent 34%),
    linear-gradient(135deg, #120f0d 0%, #211c17 100%);
}

.utility-shell {
  display: grid;
  width: min(1180px, calc(100vw - 72px));
  min-height: 100vh;
  margin-inline: auto;
  padding-block: 42px;
  grid-template-rows: auto 1fr;
  gap: 54px;
}

.utility-brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 13px;
}

.utility-brand img {
  width: 42px;
  height: 50px;
  object-fit: cover;
  mix-blend-mode: screen;
}

.utility-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.utility-brand strong {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.utility-brand small {
  margin-top: 7px;
  color: var(--bronze-light);
  font-size: 6px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.utility-card {
  position: relative;
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(244, 240, 232, 0.035);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.26);
  animation: utility-enter 0.9s var(--ease) both;
}

.utility-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 84px);
}

.utility-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.utility-label span:first-child {
  color: var(--bronze-light);
}

.utility-label i {
  width: 46px;
  height: 1px;
  background: currentColor;
}

.utility-copy h1,
.legal-document h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 7.4vw, 104px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.utility-copy > p:not(.utility-label) {
  max-width: 570px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}

.utility-secondary {
  color: rgba(255, 255, 255, 0.38) !important;
  font-size: 12px !important;
}

.utility-actions,
.legal-document__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 48px;
}

.utility-button,
.utility-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 48px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-button {
  min-width: 178px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--bronze-light);
}

.utility-link {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.utility-media {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.utility-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 15, 0.28), transparent 48%),
    linear-gradient(0deg, rgba(17, 16, 15, 0.6), transparent 55%);
  content: "";
}

.utility-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.9);
  transform: scale(1.04);
}

.utility-page--document {
  color: var(--ink);
  background: var(--paper);
}

.utility-shell--document {
  width: min(980px, calc(100vw - 72px));
  gap: 70px;
}

.utility-page--document .utility-brand {
  color: var(--ink);
}

.utility-page--document .utility-brand img {
  mix-blend-mode: multiply;
}

.legal-document {
  padding: clamp(34px, 6vw, 78px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.24);
  animation: utility-enter 0.9s var(--ease) both;
}

.legal-document .utility-label {
  color: var(--muted);
}

.legal-document h1 {
  color: var(--ink);
}

.legal-document__lead {
  max-width: 740px;
  margin: 30px 0 56px;
  color: var(--muted);
  font-size: 16px;
}

.legal-document h2 {
  margin: 36px 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.legal-document p:not(.utility-label):not(.legal-document__lead) {
  max-width: 760px;
  margin-bottom: 0;
  color: #5e564d;
  font-size: 14px;
}

.legal-document a:not(.utility-button):not(.utility-link) {
  color: var(--bronze);
  border-bottom: 1px solid rgba(143, 107, 61, 0.38);
}

.legal-document__actions {
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.legal-document .utility-link {
  color: var(--ink);
  border-color: var(--line);
}

.article-shell {
  width: min(1120px, calc(100vw - 72px));
}

.article-document {
  padding-inline: clamp(34px, 7vw, 110px);
}

.article-header {
  margin-bottom: 62px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-breadcrumb a {
  color: var(--bronze);
  border-bottom: 1px solid rgba(143, 107, 61, 0.28);
}

.article-document h1 {
  max-width: 930px;
  font-size: clamp(54px, 6.6vw, 92px);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.article-meta span {
  padding: 8px 12px;
  color: var(--bronze);
  border: 1px solid rgba(143, 107, 61, 0.24);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-body {
  max-width: 820px;
}

.article-body p {
  margin: 0 0 24px;
  color: #50483f;
  font-size: 16px;
  line-height: 1.82;
}

.article-body h2 {
  max-width: 780px;
  margin: 68px 0 22px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.article-body ul {
  display: grid;
  gap: 13px;
  margin: 30px 0 34px;
  padding: 30px 0 30px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #50483f;
  font-size: 15px;
  line-height: 1.7;
}

.article-body li::marker {
  color: var(--bronze);
}

.article-footer {
  margin-top: 72px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.article-footer > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

@keyframes utility-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s ease,
    transform 0.9s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .brand > span {
    display: none;
  }

  .primary-nav {
    gap: 19px;
  }

  .header__actions {
    gap: 16px;
  }

  .hero__copy {
    padding-left: 28px;
  }

  .team__layout {
    gap: 5vw;
  }

  .team-copy__grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    min-height: 0;
  }
}

@media (max-width: 960px) {
  :root {
    --header-h: 76px;
  }

  .site-header,
  .site-header.is-sticky {
    position: fixed;
    height: var(--header-h);
    background: rgba(17, 16, 15, 0.95);
  }

  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .brand > span {
    display: flex;
  }

  .header__actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-open .menu-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-open .menu-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: -1;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    display: block;
    width: min(480px, 100%);
    height: auto;
    padding: 35px 36px 100px;
    overflow-y: auto;
    visibility: hidden;
    background: var(--ink);
    opacity: 0;
    transform: translateX(100%);
    transition: 0.5s var(--ease);
  }

  .nav-open .primary-nav {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .primary-nav > a,
  .nav-group,
  .nav-group__trigger {
    height: auto;
  }

  .primary-nav > a,
  .nav-group__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--serif);
    font-size: 27px;
    letter-spacing: 0;
  }

  .primary-nav > a::after,
  .nav-group__trigger::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    display: none;
    width: auto;
    padding: 10px 0 17px 18px;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .nav-group.is-open .nav-dropdown {
    display: grid;
  }

  .nav-dropdown a {
    color: rgba(255, 255, 255, 0.55);
    border-color: var(--line-light);
  }

  .language-toggle--mobile {
    display: flex;
    margin-top: 30px;
    font-size: 11px;
  }

  .hero {
    height: auto;
    min-height: 0;
  }

  .hero__grid {
    height: auto;
    grid-template-columns: 1fr;
  }

  .hero__copy {
    min-height: 760px;
    padding: 145px 28px 36px;
  }

  .hero__media {
    height: 72vw;
    min-height: 520px;
  }

  .hero__practice-bar {
    position: relative;
  }

  .vision__heading,
  .insights__heading,
  .faq__heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .vision__grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6vw;
  }

  .vision__media {
    height: 600px;
  }

  .team__intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team__layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .team__media {
    max-width: 620px;
    height: 560px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .contact-form {
    max-width: 680px;
  }

  .utility-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .utility-media {
    height: 380px;
    order: -1;
  }
}

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

  body {
    padding-bottom: 58px;
  }

  .brand img {
    width: 34px;
    height: 43px;
  }

  .brand strong {
    font-size: 10px;
  }

  .brand small {
    font-size: 5px;
  }

  .hero__copy {
    min-height: 735px;
    padding: 132px 18px 32px;
  }

  .section-label {
    margin-bottom: 26px;
  }

  h1 {
    font-size: clamp(61px, 20vw, 84px);
  }

  h2 {
    font-size: clamp(50px, 15.2vw, 70px);
    line-height: 0.93;
  }

  .hero__intro {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 38px;
  }

  .hero__intro p {
    font-size: 13px;
  }

  .hero-cta {
    width: 100%;
    min-width: 0;
  }

  .hero__media {
    height: 120vw;
    min-height: 480px;
  }

  .hero__media figcaption {
    right: 18px;
    left: 18px;
  }

  .hero__media figcaption small {
    display: none;
  }

  .hero__practice-bar div {
    gap: 22px;
  }

  .hero__practice-bar span {
    font-size: 18px;
  }

  .section {
    padding-block: 95px;
  }

  .vision__heading,
  .team__intro,
  .insights__heading,
  .faq__heading {
    margin-bottom: 58px;
  }

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

  .vision__media {
    height: 560px;
  }

  .vision__lead {
    margin-bottom: 40px;
    font-size: 27px;
  }

  .vision__columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .principles {
    grid-template-columns: 1fr;
    margin-top: 65px;
  }

  .principles p {
    min-height: 100px;
  }

  .expertise__top {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 60px;
  }

  .expertise-item__trigger {
    grid-template-columns: 38px 1fr 40px;
    padding: 27px 0;
  }

  .expertise-item__title {
    font-size: 37px;
    line-height: 1.02;
  }

  .expertise-item__meta {
    display: none;
  }

  .expertise-item__icon {
    width: 36px;
    height: 36px;
  }

  .expertise-item__panel > div {
    display: block;
    padding: 0 0 34px 38px;
  }

  .expertise-item__panel p {
    margin-bottom: 20px;
  }

  .expertise-item__panel a {
    display: inline-block;
  }

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

  .team__media {
    height: 520px;
  }

  .team-copy {
    padding-top: 32px;
  }

  .team-copy__lead {
    margin-bottom: 36px;
    font-size: 29px;
  }

  .team-card {
    padding: 26px 22px;
  }

  .news-item {
    min-height: 185px;
    grid-template-columns: 1fr 45px;
    padding-block: 25px;
  }

  .news-item__meta {
    grid-column: 1;
    margin-bottom: 28px;
  }

  .news-item h3 {
    grid-column: 1;
    font-size: 28px;
  }

  .news-item__arrow {
    grid-row: 1 / span 2;
    grid-column: 2;
    justify-self: end;
  }

  .news-item--article {
    min-height: 0;
    grid-template-columns: 1fr 45px;
    padding-block: 34px;
  }

  .news-item__body {
    grid-column: 1;
  }

  .news-item__excerpt {
    margin-top: 20px;
    font-size: 13px;
  }

  .news-item__points {
    gap: 10px;
    margin-top: 24px;
    padding-top: 21px;
    font-size: 9px;
    letter-spacing: 0.03em;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-item {
    min-height: 0;
    padding: 30px 22px;
  }

  .faq-item h3 {
    margin-bottom: 20px;
    font-size: 28px;
  }

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

  .contact-form {
    padding: 32px 20px;
  }

  .footer__top {
    grid-template-columns: 1fr auto;
    min-height: 150px;
  }

  .footer__top > p {
    display: none;
  }

  .brand--footer > span {
    display: flex;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    padding-block: 24px;
  }

  .mobile-contact {
    position: fixed;
    z-index: 110;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    height: 58px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    color: var(--ink);
    background: var(--bronze-light);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .utility-shell,
  .utility-shell--document {
    width: min(100vw - 36px, 100%);
    padding-block: 24px;
    gap: 34px;
  }

  .utility-brand img {
    width: 34px;
    height: 43px;
  }

  .utility-brand strong {
    font-size: 10px;
  }

  .utility-brand small {
    font-size: 5px;
  }

  .utility-copy,
  .legal-document {
    padding: 30px 22px;
  }

  .utility-copy h1,
  .legal-document h1 {
    font-size: clamp(46px, 17vw, 68px);
  }

  .utility-copy > p:not(.utility-label) {
    font-size: 13px;
  }

  .utility-actions,
  .legal-document__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .utility-button,
  .utility-link {
    width: 100%;
  }

  .utility-media {
    height: 300px;
  }

  .legal-document__lead {
    margin-bottom: 42px;
    font-size: 14px;
  }

  .legal-document p:not(.utility-label):not(.legal-document__lead) {
    font-size: 13px;
  }
}

@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;
  }

  [data-reveal],
  .line-reveal > span {
    opacity: 1;
    transform: none;
  }
}
