:root {
  color-scheme: dark;
  --paper: #c8ccce;
  --paper-strong: #e3e5e6;
  --muted: rgba(205, 209, 211, 0.68);
  --text-soft: rgba(205, 209, 211, 0.7);
  --text-subtle: rgba(205, 209, 211, 0.62);
  --text-faint: rgba(205, 209, 211, 0.56);
  --line: rgba(205, 209, 211, 0.26);
  --line-soft: rgba(205, 209, 211, 0.13);
  --surface: #07101a;
  --header-x: clamp(24px, 2.5vw, 40px);
  --content-x: clamp(25px, 4.12vw, 66px);
  --font-sans: "Helvetica Neue", "Nimbus Sans L", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #03080e;
  color: var(--paper);
  font-family: var(--font-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

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

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

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  transform: translateY(-160%);
  transition: transform 180ms ease-out;
}

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

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

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  height: 100svh;
  overflow: hidden;
  background-image: url("70CC8D17-4290-46F1-8828-A393934DE820.PNG");
  background-size: cover;
  background-position: center center;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 10, 18, 0.36) 0%, rgba(2, 9, 16, 0.18) 40%, rgba(0, 4, 8, 0.08) 70%, rgba(0, 3, 7, 0.27) 100%),
    linear-gradient(180deg, rgba(0, 4, 9, 0.14) 0%, transparent 55%, rgba(0, 4, 9, 0.18) 100%);
}

.hero-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 97px;
  margin: 0 var(--header-x);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: flex-start;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: column;
  padding-top: 27px;
}

.brand__name {
  font-size: clamp(24px, 1.88vw, 30px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 400;
}

.brand__descriptor {
  margin-top: 9px;
  font-size: 8.5px;
  line-height: 1;
  letter-spacing: 0.38em;
  color: var(--text-subtle);
  font-weight: 400;
}

.desktop-nav {
  position: absolute;
  top: 0;
  left: 25.9%;
  right: 23.4%;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  white-space: nowrap;
  font-size: clamp(13px, 0.94vw, 15px);
  line-height: 1;
  color: var(--text-soft);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease-out;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] {
  color: var(--paper-strong);
}

.language-switch {
  display: flex;
  align-items: center;
  color: var(--text-faint);
}

.language-switch a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-subtle);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.14em;
  font-weight: 400;
  transition: color 180ms ease-out;
}

.language-switch a:hover,
.language-switch a:focus-visible,
.language-switch a[aria-current="page"] {
  color: var(--paper-strong);
  outline: none;
}

.language-switch a:focus-visible {
  box-shadow: inset 0 -1px var(--paper-strong);
}

.language-switch--desktop {
  position: absolute;
  top: 0;
  right: 0;
}

.text-link {
  position: relative;
  min-height: 44px;
  padding: 0 0 9px;
  border: 0;
  border-bottom: 1px solid var(--text-faint);
  background: transparent;
  display: inline-flex;
  align-items: flex-end;
  gap: 13px;
  font-size: 17px;
  font-weight: 300;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease-out, border-color 180ms ease-out;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--paper-strong);
  border-color: var(--paper-strong);
  outline: none;
}

.arrow {
  position: relative;
  display: inline-block;
  width: 23px;
  height: 11px;
  flex: 0 0 auto;
  margin-bottom: 3px;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  right: 0;
}

.arrow::before {
  top: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
}

.arrow::after {
  top: 1px;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.header-cta {
  position: absolute;
  top: 49px;
  right: 0;
  min-height: 40px;
  padding-bottom: 12px;
  font-size: clamp(14px, 1vw, 16px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero-copy {
  position: absolute;
  z-index: 3;
  top: clamp(124px, 16.1vh, 145px);
  left: var(--content-x);
  width: min(670px, 57vw);
}

.eyebrow {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: clamp(14px, 1.02vw, 16.5px);
  line-height: 1.28;
  color: var(--text-soft);
}

h1 {
  margin: 24px 0 17px;
  font-size: clamp(42px, 3.32vw, 53px);
  line-height: 1.115;
  letter-spacing: -0.026em;
  font-weight: 300;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.hero-description {
  margin: 0;
  font-size: clamp(14px, 1.03vw, 16.5px);
  line-height: 1.54;
  color: var(--text-soft);
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 46px;
}

.profile-card {
  position: absolute;
  z-index: 3;
  top: clamp(148px, 18.85vh, 170px);
  right: var(--header-x);
  width: 207px;
  color: var(--text-soft);
}

.profile-card p {
  margin: 0;
}

.profile-card__index {
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.15;
}

.profile-card__details {
  padding: 18px 0 16px;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 22px;
  font-size: 16px;
  line-height: 1.35;
}

.profile-card__diagram {
  margin-top: 20px;
  width: 214px;
}

.profile-card__diagram svg {
  display: block;
  width: 100%;
  overflow: visible;
}

.diagram-box,
.diagram-labels {
  fill: none;
  stroke: rgba(244, 245, 245, 0.28);
  stroke-width: 0.65;
}

.diagram-box circle {
  fill: rgba(244, 245, 245, 0.08);
}

.diagram-labels text {
  fill: var(--text-subtle);
  stroke: none;
  font-family: var(--font-sans);
  font-size: 7.2px;
  font-weight: 300;
}

.stats {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 146px;
  border-top: 1px solid rgba(244, 245, 245, 0.13);
  background: rgba(2, 8, 14, 0.62);
  backdrop-filter: blur(3px);
}

.stats__inner {
  height: 100%;
  padding: 23px 0 0 81px;
  display: grid;
  grid-template-columns: 236px 335px 280px minmax(310px, 1fr);
}

.stat {
  position: relative;
  min-width: 0;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 91px;
  background: var(--line);
}

.stat--two {
  padding-left: 77px;
}

.stat--three {
  padding-left: 60px;
}

.stat--four {
  padding-left: 65px;
}

.stat p {
  margin: 0;
}

.stat__value {
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 300;
}

.stat--four .stat__value {
  font-size: 25px;
}

.stat__label {
  margin-top: 7px !important;
  font-size: 14px;
  line-height: 1.54;
  color: var(--text-subtle);
}

.about {
  position: relative;
  isolation: isolate;
  min-height: 800px;
  height: 100svh;
  overflow: hidden;
  background-color: #06111b;
  background-image:
    linear-gradient(90deg, rgba(3, 13, 22, 0.9) 0%, rgba(3, 12, 20, 0.74) 38%, rgba(2, 8, 14, 0.42) 68%, rgba(2, 7, 12, 0.8) 100%),
    url("70CC8D17-4290-46F1-8828-A393934DE820.PNG");
  background-position: center;
  background-size: cover;
  scroll-margin-top: 0;
}

.about::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 13, 22, 0.28) 0%, transparent 46%, transparent 76%, rgba(0, 4, 8, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 4, 8, 0.12), transparent 70%, rgba(0, 4, 8, 0.34));
}

.about__portrait {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 11.7%;
  bottom: 0;
  left: 46.8%;
  overflow: hidden;
  background: #02070b;
}

.about__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #06111b 0%, rgba(6, 17, 27, 0.18) 15%, transparent 31%, transparent 75%, rgba(2, 7, 11, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 38%, rgba(0, 0, 0, 0.1));
  pointer-events: none;
}

.about__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: contrast(1.08) brightness(0.84);
}

.about__content {
  position: relative;
  z-index: 3;
  width: min(615px, 43vw);
  padding-top: clamp(72px, 10.8vh, 98px);
  margin-left: clamp(48px, 5.13vw, 82px);
}

.about__eyebrow {
  position: relative;
  width: 420px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(184, 137, 109, 0.34);
  color: #bd8d70;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.16em;
  font-weight: 400;
}

.about__eyebrow::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 29px;
  width: 34px;
  height: 1px;
  background: #bd8d70;
}

.about__title {
  margin: 29px 0 22px;
  font-size: clamp(66px, 6vw, 96px);
  line-height: 0.99;
  letter-spacing: -0.035em;
  font-weight: 300;
}

.about__title span {
  display: block;
}

.about__role {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  color: var(--text-subtle);
}

.about__description {
  margin: 27px 0 0;
  font-size: 17.5px;
  line-height: 1.46;
  color: var(--text-soft);
}

.about-stats {
  width: 612px;
  margin-top: 28px;
  border-top: 1px solid rgba(189, 141, 112, 0.52);
  display: grid;
  grid-template-columns: 150px 240px 1fr;
}

.about-stat {
  position: relative;
  min-height: 110px;
  padding-top: 19px;
}

.about-stat:not(:first-child) {
  padding-left: 44px;
}

.about-stat:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(244, 245, 245, 0.22);
}

.about-stat p {
  margin: 0;
}

.about-stat__value {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.025em;
}

.about-stat--wide .about-stat__value {
  font-size: 21px;
  letter-spacing: -0.02em;
}

.about-stat__label {
  margin-top: 6px !important;
  font-size: 14px;
  line-height: 1.42;
  color: var(--text-subtle);
}

.about-profile {
  position: absolute;
  z-index: 4;
  top: clamp(66px, 9.6vh, 87px);
  right: clamp(42px, 4.63vw, 74px);
  width: 140px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.12em;
}

.about-profile p {
  margin: 0;
  padding: 0 0 15px;
  border-bottom: 1px solid rgba(244, 245, 245, 0.25);
}

.about-profile p + p {
  padding-top: 24px;
}

.content-section {
  position: relative;
  padding: 112px clamp(48px, 5.13vw, 82px) 124px;
  border-top: 1px solid var(--line-soft);
  background: #06111b;
  scroll-margin-top: 0;
}

.section-heading {
  max-width: 740px;
}

.section-heading--row {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(320px, 430px);
  align-items: end;
  gap: 80px;
}

.section-kicker {
  margin: 0 0 31px;
  color: #bd8d70;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.18em;
  font-weight: 400;
}

.section-heading h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(54px, 5.25vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 300;
}

.section-heading > p:last-child,
.section-heading--row > p {
  margin: 28px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.section-heading--row > p {
  margin: 0 0 5px;
}

.practice-section {
  background:
    linear-gradient(105deg, rgba(6, 17, 27, 0.98), rgba(5, 14, 23, 0.93)),
    url("70CC8D17-4290-46F1-8828-A393934DE820.PNG") center / cover;
}

.practice-list {
  margin-top: 88px;
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.practice-item {
  position: relative;
  min-height: 330px;
  padding: 25px 28px 88px;
  border-top: 1px solid rgba(189, 141, 112, 0.62);
  transition: background-color 220ms ease-out;
}

.practice-item:not(:first-child) {
  border-left: 1px solid var(--line-soft);
}

.practice-item:hover {
  background: rgba(255, 255, 255, 0.025);
}

.practice-item__number,
.case-item__meta,
.article-card__meta {
  color: #bd8d70;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.16em;
}

.practice-item h3 {
  margin: 52px 0 20px;
  min-height: 72px;
  font-size: clamp(23px, 1.85vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 300;
}

.practice-item p {
  margin: 0;
  color: var(--text-subtle);
  font-size: 15px;
  line-height: 1.55;
}

.service-action {
  position: absolute;
  right: 25px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 180ms ease-out, background-color 180ms ease-out;
}

.service-action .arrow {
  margin: 0;
  transition: transform 180ms ease-out;
}

.service-action:hover,
.service-action:focus-visible {
  border-color: #bd8d70;
  background: rgba(189, 141, 112, 0.08);
  outline: none;
}

.service-action:hover .arrow,
.service-action:focus-visible .arrow {
  transform: translateX(3px);
}

.cases-section {
  background: #030a11;
}

.case-list {
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.case-item {
  position: relative;
  min-height: 390px;
  padding: 30px 34px 34px;
}

.case-item + .case-item {
  border-left: 1px solid var(--line-soft);
}

.case-item h3 {
  margin: 58px 0 28px;
  font-size: clamp(31px, 2.6vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 300;
}

.case-item > p:not(.case-item__meta) {
  max-width: 370px;
  margin: 0;
  color: var(--text-subtle);
  font-size: 15px;
  line-height: 1.6;
}

.case-item__status {
  position: absolute;
  bottom: 31px;
  left: 34px;
  color: var(--text-faint);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.analysis-section {
  background:
    radial-gradient(circle at 78% 28%, rgba(70, 48, 35, 0.18), transparent 26%),
    #07121c;
}

.article-grid {
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.article-card {
  position: relative;
  min-height: 350px;
  padding: 30px 34px;
  background: #07121c;
}

.analysis-section .article-card {
  padding-bottom: 96px;
}

.article-action {
  right: 32px;
  bottom: 30px;
  border-color: rgba(189, 141, 112, 0.5);
  color: #d7a789;
}

.article-card h3 {
  margin: 54px 0 22px;
  font-size: clamp(27px, 2.1vw, 34px);
  line-height: 1.13;
  letter-spacing: -0.03em;
  font-weight: 300;
}

.article-card > p:not(.article-card__meta) {
  margin: 0;
  color: var(--text-subtle);
  font-size: 15px;
  line-height: 1.58;
}

.analysis-note {
  max-width: 700px;
  margin: 22px 0 0 auto;
  color: var(--text-faint);
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(600px, 1.28fr);
  gap: 100px;
  background: #040b12;
}

.faq-heading {
  position: sticky;
  top: 48px;
  align-self: start;
}

.faq-list {
  border-top: 1px solid rgba(189, 141, 112, 0.6);
}

.faq-list details {
  border-bottom: 1px solid var(--line-soft);
}

.faq-list summary {
  position: relative;
  min-height: 92px;
  padding: 30px 64px 28px 58px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  list-style: none;
  font-size: clamp(19px, 1.45vw, 23px);
  line-height: 1.35;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 24px;
  right: 18px;
  color: #bd8d70;
  font-size: 32px;
  font-weight: 200;
  transition: transform 180ms ease-out;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list summary > span {
  position: absolute;
  top: 34px;
  left: 0;
  color: var(--text-faint);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.faq-list summary:focus-visible {
  outline: 1px solid #bd8d70;
  outline-offset: -1px;
}

.faq-list details > p {
  max-width: 720px;
  margin: -4px 0 0;
  padding: 0 64px 32px 58px;
  color: var(--text-subtle);
  font-size: 16px;
  line-height: 1.65;
}

.contact-section {
  position: relative;
  padding: 118px clamp(48px, 5.13vw, 82px) 105px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: minmax(400px, 0.9fr) minmax(540px, 1.1fr);
  gap: 120px;
  background:
    linear-gradient(100deg, rgba(2, 10, 17, 0.97), rgba(2, 8, 14, 0.87)),
    url("70CC8D17-4290-46F1-8828-A393934DE820.PNG") center / cover;
}

.contact-section__intro > p:not(.section-kicker) {
  max-width: 540px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.contact-meta {
  max-width: 540px;
  margin-top: 70px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-meta > * {
  margin: 0;
  min-height: 82px;
  padding: 22px 20px 18px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text-subtle);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.contact-meta > *:nth-child(even) {
  padding-left: 26px;
  border-left: 1px solid var(--line-soft);
}

.contact-meta__wide {
  grid-column: 1 / -1;
  min-height: 70px;
  border-left: 0 !important;
}

.contact-meta a {
  transition: color 180ms ease-out, background-color 180ms ease-out;
}

.contact-meta a:hover,
.contact-meta a:focus-visible {
  background: rgba(189, 141, 112, 0.05);
  color: var(--paper-strong);
  outline: none;
}

.contact-meta span {
  display: block;
  margin-bottom: 10px;
  color: #bd8d70;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.contact-form {
  align-self: end;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 34px;
  row-gap: 30px;
}

.contact-form label:not(.contact-consent) {
  display: grid;
  gap: 9px;
  color: var(--text-subtle);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  min-height: 49px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  resize: vertical;
  background: transparent;
  color: var(--paper);
  font-size: 18px;
}

.contact-form textarea {
  min-height: 92px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #bd8d70;
}

.contact-form__wide {
  grid-column: 1 / -1;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-faint);
  font-size: 12px;
  line-height: 1.45;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #bd8d70;
}

.contact-submit {
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(189, 141, 112, 0.72);
  background: rgba(189, 141, 112, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #d7a789;
  font-size: 17px;
  cursor: pointer;
  transition: color 180ms ease-out, border-color 180ms ease-out, background-color 180ms ease-out;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  border-color: #e2b296;
  background: rgba(189, 141, 112, 0.11);
  color: #f0c1a3;
  outline: none;
}

.contact-form__status {
  min-height: 22px;
  margin: -14px 0 0;
  color: #d7a789;
  font-size: 14px;
}

.site-footer {
  min-height: 126px;
  padding: 0 clamp(48px, 5.13vw, 82px);
  border-top: 1px solid var(--line-soft);
  background: #02070c;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.site-footer .brand {
  padding: 0;
}

.site-footer p {
  margin: 0;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.13em;
}

.footer-top {
  justify-self: end;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-subtle);
  font-size: 14px;
}

.footer-top:hover,
.footer-top:focus-visible {
  color: var(--paper-strong);
  outline: none;
}

.consultation-dialog {
  width: min(520px, calc(100vw - 32px));
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background: rgba(5, 13, 22, 0.97);
  color: var(--paper);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.consultation-dialog::backdrop {
  background: rgba(0, 4, 9, 0.74);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 32px;
  font-weight: 200;
  cursor: pointer;
}

.dialog-kicker {
  margin: 0 0 20px;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.consultation-dialog h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.08;
  font-weight: 300;
}

.consultation-dialog > p:not(.dialog-kicker) {
  color: var(--muted);
  line-height: 1.5;
}

.consultation-form {
  margin-top: 28px;
  display: grid;
  gap: 22px;
}

.consultation-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
}

.consultation-form input {
  width: 100%;
  height: 46px;
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--paper);
  font-size: 18px;
}

.consultation-form input:focus {
  border-color: var(--paper-strong);
}

.submit-button {
  min-height: 48px;
  margin-top: 4px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

/* Long-form legal analysis */
.article-page {
  background: #050d15;
}

.article-site-header {
  min-height: 96px;
  padding: 0 clamp(24px, 5.13vw, 82px);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(3, 9, 15, 0.96);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.article-site-header .brand {
  padding-top: 0;
}

.article-back {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  transition: color 180ms ease-out, border-color 180ms ease-out;
}

.article-back:hover,
.article-back:focus-visible {
  border-color: var(--paper-strong);
  color: var(--paper-strong);
  outline: none;
}

.article-back .arrow {
  margin: 0;
  transform: rotate(180deg);
}

.article-shell {
  min-height: 100svh;
  padding: clamp(72px, 8vw, 124px) clamp(24px, 5.13vw, 82px) 128px;
  background:
    radial-gradient(circle at 80% 8%, rgba(117, 75, 48, 0.16), transparent 30%),
    linear-gradient(180deg, #07121c, #040a10 72%);
}

.legal-article {
  width: min(920px, 100%);
  margin: 0 auto;
}

.article-kicker {
  margin: 0 0 28px;
  color: #bd8d70;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.legal-article h1 {
  margin: 0;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 0.98;
  white-space: normal;
}

.article-lead {
  max-width: 760px;
  margin: 38px 0 0;
  color: var(--text-soft);
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.55;
}

.article-meta {
  margin: 50px 0 0;
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 44px;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.article-body {
  margin-top: 26px;
}

.article-body section {
  padding: 48px 0;
  border-bottom: 1px solid var(--line-soft);
}

.article-body h2 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 300;
}

.article-body h3 {
  margin: 32px 0 14px;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 400;
}

.article-body p,
.article-body li {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.75;
}

.article-body p {
  margin: 0;
}

.article-body p + p {
  margin-top: 18px;
}

.article-body ul,
.article-body ol {
  margin: 20px 0 0;
  padding-left: 24px;
}

.article-body li + li {
  margin-top: 10px;
}

.article-callout {
  margin: 42px 0 0;
  padding: 28px 30px;
  border-left: 2px solid #bd8d70;
  background: rgba(189, 141, 112, 0.06);
}

.article-callout p {
  color: var(--paper);
}

.article-sources {
  padding-top: 46px;
}

.article-sources h2 {
  font-size: 24px;
}

.article-sources a {
  color: #d7a789;
  text-decoration: underline;
  text-decoration-color: rgba(215, 167, 137, 0.4);
  text-underline-offset: 4px;
}

.article-sources a:hover,
.article-sources a:focus-visible {
  color: #f0c1a3;
  outline: none;
}

.article-cta {
  margin-top: 52px;
  display: flex;
  justify-content: flex-start;
}

.article-cta a {
  width: min(100%, 360px);
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(189, 141, 112, 0.72);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: #d7a789;
  font-size: 17px;
  transition: color 180ms ease-out, border-color 180ms ease-out, background-color 180ms ease-out;
}

.article-cta a:hover,
.article-cta a:focus-visible {
  border-color: #e2b296;
  background: rgba(189, 141, 112, 0.1);
  color: #f0c1a3;
  outline: none;
}

.article-footer {
  min-height: 108px;
  padding: 28px clamp(24px, 5.13vw, 82px);
  border-top: 1px solid var(--line-soft);
  background: #02070c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.1em;
}

@media (max-width: 1260px) {
  .desktop-nav {
    left: 25%;
    right: 25%;
    gap: 13px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .profile-card {
    right: 30px;
  }

  .stats__inner {
    padding-left: 52px;
    grid-template-columns: 220px 285px 245px 1fr;
  }

  .stat--two,
  .stat--three,
  .stat--four {
    padding-left: 48px;
  }

  .about__portrait {
    right: 14%;
    left: 44%;
  }

  .about__content {
    width: 540px;
    margin-left: 52px;
  }

  .about__title {
    font-size: 78px;
  }

  .about__description {
    font-size: 15.5px;
  }

  .about-stats {
    width: 540px;
    grid-template-columns: 135px 205px 1fr;
  }

  .about-stat:not(:first-child) {
    padding-left: 32px;
  }

  .about-profile {
    right: 28px;
    width: 118px;
    font-size: 11px;
  }

  .section-heading--row {
    grid-template-columns: minmax(460px, 1fr) 380px;
    gap: 54px;
  }

  .practice-item,
  .case-item,
  .article-card {
    padding-right: 24px;
    padding-left: 24px;
  }

  .faq-section {
    grid-template-columns: minmax(300px, 0.65fr) minmax(520px, 1.35fr);
    gap: 60px;
  }

  .contact-section {
    gap: 60px;
  }
}

/* Keep both hero actions above the fixed statistics rail on short,
   wide desktop windows (for example 1600 × 800). */
@media (min-width: 1021px) and (max-height: 840px) {
  .hero-copy {
    top: 112px;
  }

  .eyebrow {
    font-size: 14px;
    line-height: 1.25;
  }

  h1 {
    margin-top: 18px;
    margin-bottom: 12px;
    font-size: 46px;
    line-height: 1.08;
  }

  .hero-description {
    font-size: 14.5px;
    line-height: 1.42;
  }

  .hero-actions {
    margin-top: 12px;
  }

  .profile-card {
    top: 132px;
  }

  .about__content {
    padding-top: 55px;
  }

  .about__title {
    margin-top: 18px;
    margin-bottom: 16px;
    font-size: 72px;
    line-height: 0.98;
  }

  .about__role {
    font-size: 18px;
  }

  .about__description {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.4;
  }

  .about-stats {
    margin-top: 20px;
  }

  .about-stat {
    min-height: 96px;
    padding-top: 15px;
  }

  .about-profile {
    top: 60px;
  }
}

@media (max-width: 1020px) {
  .hero {
    min-height: 800px;
  }

  .hero-video {
    object-position: 58% center;
  }

  .desktop-nav,
  .header-cta,
  .profile-card,
  .language-switch--desktop {
    display: none;
  }

  .site-header {
    height: 84px;
    align-items: flex-start;
  }

  .brand {
    padding-top: 23px;
  }

  .menu-toggle {
    position: absolute;
    top: 20px;
    right: -10px;
    width: 48px;
    height: 48px;
    padding: 0 10px;
    border: 0;
    background: transparent;
    display: grid;
    place-content: center;
    gap: 7px;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 27px;
    height: 1px;
    background: currentColor;
    transition: transform 200ms ease-out;
  }

  .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);
  }

  .mobile-nav {
    position: fixed;
    z-index: -1;
    inset: 0 calc(-1 * var(--header-x));
    padding: 126px 32px 40px;
    background: rgba(3, 10, 17, 0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 190ms ease-out, transform 190ms ease-out, visibility 190ms;
  }

  .mobile-nav.is-open {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 24px;
  }

  .mobile-nav .language-switch--mobile {
    width: 100%;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line-soft);
  }

  .mobile-nav .language-switch--mobile a {
    width: auto;
    min-width: 48px;
    min-height: 44px;
    padding: 0;
    border: 0;
    font-size: 13px;
  }

  .mobile-nav .text-link {
    margin-top: 20px;
  }

  .hero-copy {
    top: 126px;
    width: min(700px, calc(100vw - (2 * var(--content-x))));
  }

  h1 {
    font-size: clamp(38px, 6.4vw, 54px);
  }

  .stats__inner {
    padding-left: 42px;
    grid-template-columns: repeat(4, 1fr);
  }

  .stat--two,
  .stat--three,
  .stat--four {
    padding-left: 28px;
  }

  .stat__label {
    font-size: 12px;
  }

  .about {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: #06111b;
  }

  .about__portrait {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: clamp(520px, 70vw, 700px);
  }

  .about__portrait::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 50%, #06111b 100%),
      linear-gradient(90deg, rgba(6, 17, 27, 0.42), transparent 25%, transparent 75%, rgba(6, 17, 27, 0.42));
  }

  .about__portrait img {
    object-position: 50% 42%;
  }

  .about__content {
    width: auto;
    padding: 54px 42px 84px;
    margin: 0;
  }

  .about__eyebrow {
    width: min(420px, 100%);
  }

  .about__title {
    font-size: clamp(64px, 10vw, 82px);
  }

  .about__description {
    font-size: 16px;
  }

  .about-stats {
    width: 100%;
    grid-template-columns: 0.8fr 1.2fr 1fr;
  }

  .about-profile {
    top: 40px;
    right: 42px;
    width: 140px;
    font-size: 12px;
  }

  .content-section,
  .contact-section {
    padding: 88px 42px 96px;
  }

  .section-heading--row {
    display: block;
  }

  .section-heading--row > p {
    max-width: 620px;
    margin-top: 32px;
  }

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

  .practice-item:nth-child(3) {
    border-left: 0;
  }

  .practice-item:nth-child(n + 3) {
    border-top-color: var(--line-soft);
  }

  .case-list,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .case-item {
    min-height: 330px;
  }

  .case-item + .case-item {
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .article-card {
    min-height: 300px;
  }

  .faq-section {
    display: block;
  }

  .faq-heading {
    position: static;
    margin-bottom: 64px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 78px;
  }

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

  .site-footer {
    padding: 0 42px;
  }
}

@media (max-width: 680px) {
  .hero {
    height: auto;
    min-height: 100svh;
    overflow: hidden;
    background-position: 64% center;
  }

  .hero::before {
    position: absolute;
    background:
      linear-gradient(90deg, rgba(2, 8, 14, 0.9) 0%, rgba(2, 8, 14, 0.7) 56%, rgba(2, 8, 14, 0.3) 100%),
      linear-gradient(180deg, rgba(2, 8, 14, 0.38) 0%, rgba(2, 8, 14, 0.16) 52%, rgba(2, 8, 14, 0.88) 100%);
  }

  .hero-video {
    object-position: 64% center;
    filter: saturate(0.9) brightness(0.92);
  }

  .brand__name {
    font-size: 24px;
  }

  .brand__descriptor {
    font-size: 7px;
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    min-height: 0;
    padding: 42px 24px 52px;
  }

  .eyebrow {
    gap: 5px;
    font-size: 13px;
    line-height: 1.35;
  }

  h1 {
    margin: 27px 0 20px;
    font-size: clamp(25px, 7.8vw, 34px);
    line-height: 1.075;
    letter-spacing: -0.03em;
  }

  h1 span {
    white-space: nowrap;
  }

  .hero-description {
    max-width: 520px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-description br {
    display: none;
  }

  .hero-actions {
    width: min(100%, 330px);
    margin-top: 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions .text-link {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
  }

  .text-link {
    font-size: 16px;
  }

  .stats {
    position: relative;
    height: auto;
    min-height: 0;
    background: rgba(2, 8, 14, 0.75);
    backdrop-filter: blur(12px);
  }

  .stats__inner {
    padding: 20px 24px 28px;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .stat {
    min-height: 116px;
    padding: 18px 16px 14px !important;
    border-bottom: 1px solid var(--line-soft);
  }

  .stat:nth-child(odd) {
    padding-left: 0 !important;
    border-right: 1px solid var(--line-soft);
  }

  .stat:nth-child(even) {
    padding-right: 0 !important;
  }

  .stat::after {
    display: none;
  }

  .stat:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .stat__value,
  .stat--four .stat__value {
    font-size: 22px;
  }

  .stat__label {
    font-size: 11px;
  }

  .about__portrait {
    height: max(420px, 118vw);
    max-height: 560px;
  }

  .about__portrait img {
    object-position: 50% 42%;
  }

  .about-profile {
    top: 25px;
    right: 24px;
    width: 118px;
    padding: 12px;
    background: rgba(2, 7, 12, 0.5);
    font-size: 9px;
  }

  .about-profile p {
    padding-bottom: 10px;
  }

  .about-profile p + p {
    padding-top: 12px;
  }

  .about__content {
    padding: 42px 24px 68px;
  }

  .about__eyebrow {
    font-size: 11px;
  }

  .about__title {
    margin-top: 25px;
    font-size: clamp(51px, 16vw, 72px);
  }

  .about__role {
    font-size: 19px;
  }

  .about__description {
    font-size: 16px;
  }

  .about__description br {
    display: none;
  }

  .about-stats {
    margin-top: 32px;
    grid-template-columns: 1fr 1fr;
  }

  .about-stat {
    min-height: 120px;
    padding: 18px 14px !important;
  }

  .about-stat:first-child {
    padding-left: 0 !important;
  }

  .about-stat--wide {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line-soft);
  }

  .about-stat--wide::before {
    display: none;
  }

  .about-stat__value {
    font-size: 24px;
  }

  .content-section,
  .contact-section {
    padding: 72px 24px 80px;
  }

  .section-kicker {
    margin-bottom: 24px;
    font-size: 11px;
  }

  .section-heading h2,
  .contact-section h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .section-heading > p:last-child,
  .section-heading--row > p,
  .contact-section__intro > p:not(.section-kicker) {
    font-size: 16px;
  }

  .practice-list,
  .case-list,
  .article-grid {
    margin-top: 58px;
  }

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

  .practice-item {
    min-height: 300px;
    padding-bottom: 86px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .practice-item:not(:first-child) {
    border-top-color: var(--line-soft);
    border-left: 0;
  }

  .practice-item h3 {
    min-height: 0;
    margin-top: 42px;
    font-size: 28px;
  }

  .case-item {
    min-height: 360px;
    padding: 27px 20px 68px;
  }

  .case-item h3 {
    margin-top: 46px;
    font-size: 34px;
  }

  .case-item__status {
    left: 20px;
  }

  .article-card {
    min-height: 0;
    padding: 27px 20px 38px;
  }

  .article-card h3 {
    margin-top: 42px;
    font-size: 29px;
  }

  .analysis-note {
    text-align: left;
  }

  .faq-heading {
    margin-bottom: 48px;
  }

  .faq-list summary {
    min-height: 84px;
    padding: 26px 44px 24px 34px;
    gap: 0;
    font-size: 18px;
  }

  .faq-list summary > span {
    top: 31px;
    font-size: 9px;
  }

  .faq-list summary::after {
    right: 5px;
  }

  .faq-list details > p {
    padding: 0 20px 28px 34px;
    font-size: 15px;
  }

  .contact-meta {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .contact-meta > * {
    grid-column: auto;
    padding-left: 0;
    border-left: 0 !important;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form__wide {
    grid-column: auto;
  }

  .site-footer {
    min-height: 210px;
    padding: 35px 24px;
    grid-template-columns: 1fr auto;
    align-content: center;
    row-gap: 28px;
  }

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .consultation-dialog {
    padding: 34px 24px;
  }

  .article-site-header {
    min-height: 84px;
    gap: 16px;
  }

  .article-site-header .brand__name {
    font-size: clamp(16px, 4.8vw, 22px);
  }

  .article-site-header .brand__descriptor {
    display: none;
  }

  .article-back {
    font-size: 14px;
  }

  .article-shell {
    padding-top: 64px;
    padding-bottom: 86px;
  }

  .legal-article h1 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .article-lead {
    margin-top: 28px;
    font-size: 18px;
  }

  .article-meta {
    margin-top: 36px;
  }

  .article-body section {
    padding: 38px 0;
  }

  .article-body p,
  .article-body li {
    font-size: 16px;
    line-height: 1.68;
  }

  .article-callout {
    padding: 23px 20px;
  }

  .article-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

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