@font-face {
	font-family: "Manrope";
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
	src: url("../fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Cormorant Garamond";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
}

:root {
	--ink: #0b0d10;
	--ink-soft: #11151b;
	--ink-raised: #171c23;
	--paper: #efede7;
	--paper-soft: #e6e2da;
	--paper-ink: #1a1c20;
	--ivory: #f3f0e9;
	--ivory-muted: #c4c0b8;
	--muted: #9ea4ac;
	--gold: #b78f52;
	--gold-light: #d6bd84;
	--gold-dark: #8f6a35;
	--line: rgba(243, 240, 233, 0.16);
	--line-strong: rgba(243, 240, 233, 0.32);
	--paper-line: rgba(26, 28, 32, 0.2);
	--error: #ef9d96;
	--success: #9bc9ad;
	--font-sans: "Manrope", "Segoe UI", Arial, sans-serif;
	--font-display: "Cormorant Garamond", Georgia, serif;
	--shell: min(1280px, calc(100vw - 80px));
	--header-height: 74px;
	--section-space: clamp(6.5rem, 9vw, 9rem);
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
	margin: 0;
	background: var(--ink);
	color: var(--ivory);
	font-family: var(--font-sans);
	font-size: 1rem;
	font-synthesis: none;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.menu-open {
	overflow: hidden;
}

::selection {
	background: var(--gold-light);
	color: var(--ink);
}

[hidden] {
	display: none !important;
}

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

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.28em;
}

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

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

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

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

h1,
h2,
h3 {
	margin-bottom: 0;
	font-family: var(--font-display);
	font-weight: 650;
	letter-spacing: -0.038em;
	line-height: 0.96;
}

h1 {
	font-size: clamp(3.7rem, 6vw, 6rem);
}

h2 {
	font-size: clamp(3.25rem, 5.4vw, 5.8rem);
}

h3 {
	font-size: clamp(1.65rem, 2.4vw, 2.45rem);
}

p {
	color: var(--ivory-muted);
}

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

.section {
	position: relative;
	padding-block: var(--section-space);
}

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

.section--paper h2,
.section--paper h3 {
	color: var(--paper-ink);
}

.section--paper p {
	color: #55524c;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 100;
	padding: 0.75rem 1rem;
	background: var(--ivory);
	color: var(--ink);
	font-size: 0.85rem;
	font-weight: 700;
	transform: translateY(-160%);
	transition: transform 180ms var(--ease);
}

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

.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 50;
	height: var(--header-height);
	background: linear-gradient(180deg, rgba(7, 8, 10, 0.78), rgba(7, 8, 10, 0));
	transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
	border-bottom: 1px solid var(--line);
	background: rgba(9, 11, 14, 0.9);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.brand {
	display: inline-flex;
	align-items: center;
	width: 92px;
	height: 44px;
}

.brand__logo {
	width: 92px;
	height: auto;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: clamp(1.2rem, 2.2vw, 2.3rem);
}

.primary-nav a {
	position: relative;
	color: rgba(243, 240, 233, 0.8);
	font-size: 0.76rem;
	font-weight: 650;
	letter-spacing: 0.035em;
	text-decoration: none;
	white-space: nowrap;
	transition: color 180ms ease;
}

.primary-nav a:not(.primary-nav__cta)::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 1px;
	background: var(--gold-light);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 220ms var(--ease);
}

.primary-nav a:hover,
.primary-nav a[aria-current="location"] {
	color: var(--ivory);
}

.primary-nav a:not(.primary-nav__cta):hover::after,
.primary-nav a[aria-current="location"]::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* Shape rule: structural panels and fields stay sharp. Action controls use pill edges. */
.primary-nav__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding-inline: 1.15rem;
	border: 1px solid rgba(214, 189, 132, 0.62);
	border-radius: 999px;
	color: var(--gold-light) !important;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.primary-nav__cta:hover {
	background: var(--gold-light);
	color: var(--ink) !important;
}

.primary-nav__cta:active,
.button:active {
	transform: translateY(1px);
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 0.8rem;
	border: 0;
	background: transparent;
	color: var(--ivory);
	cursor: pointer;
}

.menu-toggle__label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.menu-toggle__icon {
	position: relative;
	display: block;
	width: 24px;
	height: 14px;
}

.menu-toggle__icon span {
	position: absolute;
	right: 0;
	left: 0;
	height: 1px;
	background: currentColor;
	transition: transform 200ms ease, top 200ms ease;
}

.menu-toggle__icon span:first-child {
	top: 3px;
}

.menu-toggle__icon span:last-child {
	top: 10px;
}

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

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:last-child {
	top: 7px;
	transform: rotate(-45deg);
}

.eyebrow {
	margin-bottom: 1.25rem;
	color: var(--gold-light);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.eyebrow--dark {
	color: var(--gold-dark) !important;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.78rem 1.35rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.76rem;
	font-weight: 750;
	letter-spacing: 0.035em;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button--primary {
	background: var(--gold-light);
	color: #13110d;
}

.button--primary:hover {
	background: var(--ivory);
	border-color: var(--ivory);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	width: fit-content;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.025em;
	text-decoration: none;
}

.text-link::after {
	width: 28px;
	height: 1px;
	background: currentColor;
	content: "";
	transition: width 180ms var(--ease);
}

.text-link:hover::after {
	width: 42px;
}

.text-link--light {
	color: var(--ivory);
}

.text-link--dark {
	color: var(--paper-ink);
}

.hero {
	padding-block: calc(var(--header-height) + 20px) 2.25rem;
	background: var(--ink);
}

.hero__stage {
	position: relative;
	isolation: isolate;
	min-height: clamp(580px, calc(100dvh - 210px), 800px);
	overflow: hidden;
	background: #14171b;
}

.hero__stage::before,
.hero__stage::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	content: "";
}

.hero__stage::before {
	background: linear-gradient(90deg, rgba(7, 9, 11, 0.98) 0%, rgba(7, 9, 11, 0.88) 31%, rgba(7, 9, 11, 0.34) 60%, rgba(7, 9, 11, 0.04) 100%);
}

.hero__stage::after {
	background: linear-gradient(180deg, rgba(8, 9, 11, 0.1) 55%, rgba(8, 9, 11, 0.72) 100%);
}

.hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero__content {
	position: absolute;
	top: calc(50% - clamp(1.5rem, 2.5vw, 2.5rem));
	left: clamp(2rem, 6.2vw, 5.5rem);
	z-index: 2;
	width: min(720px, 60%);
	transform: none;
}

@media (min-width: 901px) {
	.hero__content {
		top: calc(50% - clamp(3rem, 4.5vw, 4.5rem));
	}
}

.hero h1 {
	max-width: none;
	color: var(--gold-light);
	white-space: nowrap;
}

.hero__content > p:not(.eyebrow) {
	max-width: 48ch;
	margin: 1.6rem 0 2rem;
	color: rgba(243, 240, 233, 0.78);
	font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.hero__actions {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.hero__domains {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	min-height: 96px;
}

.hero__domains span {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.4rem 1rem;
	border-right: 1px solid rgba(11, 13, 16, 0.2);
	background: var(--gold);
	color: #17130d;
	font-family: var(--font-display);
	font-size: clamp(1.05rem, 1.5vw, 1.35rem);
	font-weight: 650;
	line-height: 1.05;
	text-align: center;
}

.hero__domains span:first-child {
	background: #15181c;
	color: var(--gold-light);
}

.hero__domains span:last-child {
	border-right: 0;
}

@media (min-width: 901px) and (hover: hover) and (pointer: fine) {
	.hero__domains > span {
		position: relative;
		transition:
			background-color 320ms var(--ease),
			box-shadow 320ms var(--ease),
			color 320ms var(--ease),
			transform 320ms var(--ease);
	}

	.hero__domains > span:hover {
		z-index: 1;
		background: #1c2127;
		box-shadow: 0 14px 28px rgba(5, 7, 10, 0.24), inset 0 2px 0 rgba(214, 189, 132, 0.74);
		color: var(--gold-light);
		transform: translateY(-6px);
	}

	.hero__domains > span:first-child:hover {
		background: var(--gold);
		box-shadow: 0 14px 28px rgba(5, 7, 10, 0.24), inset 0 2px 0 rgba(23, 19, 13, 0.2);
		color: #17130d;
	}
}

@media (min-width: 901px) and (hover: hover) and (pointer: fine) and (prefers-reduced-motion: reduce) {
	.hero__domains > span {
		transition: none;
	}

	.hero__domains > span:hover {
		transform: none;
	}
}

.firm__editorial {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.66fr);
	gap: clamp(4rem, 9vw, 9rem);
	align-items: center;
}

.firm__intro {
	padding-left: 0;
}

.firm__intro h2 {
	max-width: none;
	color: var(--paper-ink);
}

.firm-title > span {
	display: block;
	white-space: nowrap;
}

.firm__intro > p {
	max-width: 51ch;
	margin: 2rem 0 2.25rem;
	font-size: 1.02rem;
}

.firm__media {
	position: relative;
	margin: 0;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--paper-soft);
}

.firm__media::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.28);
	box-shadow: inset 0 0 0 10px rgba(183, 143, 82, 0.08);
	content: "";
	pointer-events: none;
}

.firm__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.72) contrast(1.04);
}

.firm__principles {
	display: grid;
	grid-template-columns: 1.15fr 0.95fr 1fr;
	gap: clamp(2rem, 5vw, 5rem);
	margin-top: clamp(4rem, 7vw, 7rem);
	padding-top: 2.1rem;
	border-top: 1px solid var(--paper-line);
}

.firm__principles strong {
	display: block;
	margin-bottom: 0.85rem;
	color: var(--paper-ink);
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 650;
	line-height: 1.05;
}

.firm__principle-detail {
	display: grid;
	grid-template-columns: 2.125rem minmax(0, 1fr);
	gap: 1rem;
	align-items: start;
}

.firm__principle-icon {
	display: block;
	width: 2.125rem;
	height: 2.125rem;
	margin-top: 0.05rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.firm__principle-icon--perspective {
	background-image: url("../icons/binoculars-light.svg");
}

.firm__principle-icon--decision {
	background-image: url("../icons/signpost-light.svg");
}

.firm__principle-icon--long-term {
	background-image: url("../icons/tree-light.svg");
}

.firm__principle-detail p {
	max-width: 34ch;
	margin-bottom: 0;
	font-size: 0.82rem;
	line-height: 1.65;
}

.expertise {
	isolation: isolate;
	overflow: hidden;
	background: var(--ink-soft);
}

.expertise::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(8, 10, 13, 0.96) 0%, rgba(8, 10, 13, 0.86) 43%, rgba(8, 10, 13, 0.74) 100%);
	content: "";
}

.expertise__backdrop {
	position: absolute;
	inset: 0;
	z-index: -2;
	margin: 0;
}

.expertise__backdrop img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.75) contrast(1.1);
}

.expertise__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
	gap: clamp(4rem, 8vw, 8rem);
	align-items: start;
}

.expertise__intro h2 {
	max-width: 8.5ch;
	color: var(--gold-light);
}

.expertise__intro > p {
	max-width: 41ch;
	margin: 1.8rem 0 2.2rem;
	color: rgba(243, 240, 233, 0.72);
}

.expertise-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: clamp(1.5rem, 4vw, 4rem);
}

.expertise-item {
	padding: 1.25rem 0 1.45rem;
	border-top: 1px solid rgba(214, 189, 132, 0.38);
}

.expertise-item:first-child,
.expertise-item:nth-child(4) {
	grid-column: 1 / -1;
}

.expertise-item:nth-child(4) .expertise-trigger > span:first-child {
	white-space: nowrap;
}

.expertise-item h3 {
	margin: 0;
	font-family: var(--font-sans);
}

.expertise-trigger {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 24px;
	gap: 1rem;
	align-items: start;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ivory);
	font-size: 0.93rem;
	font-weight: 650;
	line-height: 1.4;
	text-align: left;
	cursor: pointer;
	transition: color 180ms ease;
}

.expertise-trigger:hover,
.expertise-trigger[aria-expanded="true"] {
	color: var(--gold-light);
}

.expertise-trigger__icon {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
	margin-top: 1px;
}

.expertise-trigger__icon::before,
.expertise-trigger__icon::after {
	position: absolute;
	top: 9px;
	left: 4px;
	width: 12px;
	height: 1px;
	background: currentColor;
	content: "";
	transition: transform 180ms ease;
}

.expertise-trigger__icon::after {
	transform: rotate(90deg);
}

.expertise-trigger[aria-expanded="true"] .expertise-trigger__icon::after {
	transform: rotate(0);
}

.expertise-panel p {
	max-width: 49ch;
	margin: 0.9rem 2.5rem 0 0;
	color: rgba(243, 240, 233, 0.62);
	font-size: 0.82rem;
	line-height: 1.65;
}

.partners {
	overflow: hidden;
}

.partners__header {
	margin-bottom: clamp(2.8rem, 5vw, 4.6rem);
}

.partners__header h2 {
	max-width: 14ch;
	color: var(--paper-ink);
	font-size: clamp(3.25rem, 5vw, 5.35rem);
	line-height: 0.94;
}

.partners__feature {
	display: grid;
	grid-template-columns: minmax(0, 1.48fr) minmax(340px, 0.62fr);
	align-items: stretch;
	border-top: 1px solid var(--paper-line);
	border-bottom: 1px solid var(--paper-line);
	background: var(--ink-soft);
}

.partners__media {
	position: relative;
	margin: 0;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: #26282b;
}

.partners__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(11, 13, 16, 0.08), rgba(11, 13, 16, 0.28));
	content: "";
}

.partners__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.82) contrast(1.08);
	transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.partners__profile {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	margin: 0;
	padding: clamp(3rem, 4.6vw, 4.5rem);
	background: var(--ink-soft);
	color: var(--ivory);
}

.partners__role {
	margin-bottom: 1.25rem;
	color: var(--gold-light) !important;
	font-size: 0.74rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.partners__profile h3 {
	max-width: none;
	color: var(--ivory);
	font-size: clamp(2.25rem, 3.2vw, 3.6rem);
	line-height: 0.92;
}

.partners__profile > p:not(.partners__role) {
	max-width: 34ch;
	margin: 1.7rem 0 2.15rem;
	color: rgba(243, 240, 233, 0.68);
	font-size: 0.86rem;
	line-height: 1.7;
}

.partners__profile .text-link {
	color: var(--gold-light);
}

@media (hover: hover) and (pointer: fine) {
	.partners__feature:hover .partners__media img {
		filter: grayscale(0.68) contrast(1.08);
		transform: scale(1.025);
	}
}

.experience {
	background: var(--ink);
}

.experience__grid {
	display: grid;
	gap: clamp(4rem, 7vw, 6.5rem);
	align-items: start;
}

.experience__intro {
	min-width: 0;
	max-width: 920px;
}

.experience__intro h2.experience__heading {
	width: 100%;
	max-width: 100%;
	color: var(--gold-light);
}

.experience__heading > span {
	display: block;
	white-space: nowrap;
}

.experience__intro p {
	max-width: 58ch;
	margin: 1.7rem 0 0;
	color: rgba(243, 240, 233, 0.66);
}

.experience-list {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	grid-template-rows: repeat(3, minmax(190px, auto));
	column-gap: clamp(2.5rem, 5vw, 5.5rem);
}

.experience-item {
	position: relative;
	display: grid;
	grid-column: 2;
	grid-template-columns: minmax(175px, 0.38fr) minmax(0, 1fr);
	grid-template-rows: auto auto;
	column-gap: clamp(1.75rem, 3vw, 3.25rem);
	align-content: center;
	padding: 2.4rem 0;
	border-top: 1px solid var(--line);
	background: transparent;
}

.experience-item:last-child {
	border-bottom: 1px solid var(--line);
}

.experience-item--featured {
	grid-row: 1 / 4;
	grid-column: 1;
	display: flex;
	flex-direction: column;
	min-height: 620px;
	padding: clamp(2.8rem, 4.8vw, 5rem);
	border: 0;
	background: var(--gold);
}

.experience-item__category {
	grid-row: 1 / 3;
	grid-column: 1;
	align-self: start;
	margin: 0;
	color: var(--gold-light);
	font-size: 0.7rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.experience-item h3 {
	grid-column: 2;
	max-width: 14ch;
	color: var(--ivory);
	font-size: clamp(2rem, 2.8vw, 2.8rem);
	transition: color 300ms var(--ease), transform 400ms var(--ease);
}

.experience-item__summary {
	display: block;
	grid-column: 2;
	max-width: 42ch;
	margin: 1.15rem 0 0;
	color: rgba(243, 240, 233, 0.58);
	font-size: 0.82rem;
	line-height: 1.65;
	transition: color 300ms var(--ease), transform 400ms var(--ease);
}

.experience-title--balanced > span,
.experience-summary--balanced > span {
	display: block;
	white-space: nowrap;
}

.experience-item h3.experience-title--balanced {
	max-width: none;
}

.experience-item__summary.experience-summary--balanced {
	max-width: none;
	letter-spacing: -0.012em;
}

.experience-item--featured .experience-item__category,
.experience-item--featured h3,
.experience-item--featured .experience-item__summary {
	color: #17130e;
}

.experience-item--featured .experience-item__category {
	margin-bottom: 0;
}

.experience-item--featured h3 {
	max-width: none;
	margin-top: auto;
	font-size: clamp(3.2rem, 4.45vw, 4.25rem);
	letter-spacing: -0.045em;
	line-height: 0.88;
}

.experience-item--featured .experience-item__summary {
	max-width: 46ch;
	margin-top: 1.7rem;
	font-size: 0.9rem;
}

.experience-summary--featured > span {
	display: block;
	white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
	.experience-item:not(.experience-item--featured):hover h3,
	.experience-item:not(.experience-item--featured):hover .experience-item__summary {
		transform: translateX(0.65rem);
	}

	.experience-item:not(.experience-item--featured):hover h3 {
		color: var(--gold-light);
	}

	.experience-item:not(.experience-item--featured):hover .experience-item__summary {
		color: rgba(243, 240, 233, 0.76);
	}
}

.contact {
	isolation: isolate;
	overflow: hidden;
	background: var(--ink-soft);
}

.contact::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(6, 8, 10, 0.94) 0%, rgba(6, 8, 10, 0.84) 45%, rgba(6, 8, 10, 0.7) 100%);
	content: "";
}

.contact__backdrop {
	position: absolute;
	inset: 0;
	z-index: -2;
	margin: 0;
}

.contact__backdrop img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.38) contrast(1.04);
}

.contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1.08fr);
	gap: clamp(4rem, 8vw, 8rem);
	align-items: start;
}

.contact__intro {
	padding-top: 1.25rem;
}

.contact__intro h2 {
	max-width: 8.8ch;
	color: var(--gold-light);
}

.contact__intro > p {
	max-width: 41ch;
	margin: 1.7rem 0 2.4rem;
	color: rgba(243, 240, 233, 0.72);
}

.contact__direct {
	display: grid;
	gap: 0.35rem;
	padding-top: 1.4rem;
	border-top: 1px solid var(--line-strong);
}

.contact__direct span {
	color: var(--muted);
	font-size: 0.68rem;
	font-weight: 750;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.contact__direct a {
	width: fit-content;
	color: var(--ivory);
	font-size: 0.92rem;
	font-weight: 650;
}

.contact__form-wrap {
	padding: clamp(2rem, 4vw, 3.8rem);
	border: 1px solid rgba(214, 189, 132, 0.35);
	background: rgba(10, 12, 15, 0.86);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-form,
.form-row {
	display: grid;
	gap: 1.25rem;
}

.form-row--split {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
	display: grid;
	gap: 0.52rem;
}

.field label,
.consent {
	color: var(--ivory);
	font-size: 0.78rem;
	font-weight: 650;
}

.field label span {
	color: var(--muted);
	font-size: 0.7rem;
	font-weight: 500;
}

.field input,
.field select,
.field textarea {
	width: 100%;
	border: 1px solid rgba(243, 240, 233, 0.35);
	border-radius: 0;
	background-color: rgba(6, 8, 10, 0.46);
	color: var(--ivory);
	transition: border-color 180ms ease, background-color 180ms ease;
}

.field input,
.field select {
	height: 50px;
	padding: 0 0.88rem;
}

.field textarea {
	min-height: 142px;
	padding: 0.82rem 0.88rem;
	resize: vertical;
}

.field select {
	-webkit-appearance: none;
	appearance: none;
	padding-right: 3.5rem;
	background-image: linear-gradient(45deg, transparent 50%, var(--ivory) 50%), linear-gradient(135deg, var(--ivory) 50%, transparent 50%);
	background-position: calc(100% - 2rem) calc(50% - 1px), calc(100% - 1.67rem) calc(50% - 1px);
	background-repeat: no-repeat;
	background-size: 5px 5px, 5px 5px;
	color-scheme: dark;
}

.field select::-ms-expand {
	display: none;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
	border-color: rgba(243, 240, 233, 0.66);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: var(--gold-light);
	background-color: rgba(6, 8, 10, 0.72);
	outline: 2px solid transparent;
	box-shadow: 0 0 0 2px rgba(214, 189, 132, 0.22);
}

.field__help,
.form-disclaimer {
	margin: 0;
	color: #b2b5ba;
	font-size: 0.72rem;
	line-height: 1.55;
}

.consent {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	gap: 0.75rem;
	align-items: start;
	cursor: pointer;
}

.consent input {
	width: 16px;
	height: 16px;
	margin: 0.22rem 0 0;
	accent-color: var(--gold-light);
}

.consent span {
	color: #d0ccc5;
	font-size: 0.75rem;
	font-weight: 500;
}

.form-submit {
	justify-self: start;
	min-width: 142px;
}

.form-submit[aria-busy="true"] {
	cursor: wait;
	opacity: 0.74;
}

.form-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-notice {
	margin-bottom: 1.5rem;
	padding: 1rem 1.1rem;
	border-left: 3px solid currentColor;
	background: rgba(255, 255, 255, 0.05);
}

.form-notice--success {
	color: var(--success);
}

.form-notice--error {
	color: var(--error);
}

.form-notice strong {
	display: block;
	margin-bottom: 0.25rem;
}

.form-notice p {
	margin: 0;
	color: var(--ivory-muted);
	font-size: 0.8rem;
}

.site-footer {
	padding-block: clamp(3.5rem, 6vw, 5.5rem) 1.75rem;
	border-top: 1px solid var(--line);
	background: #080a0d;
}

.site-footer__directory {
	display: grid;
	grid-template-columns: minmax(150px, 0.7fr) minmax(210px, 0.95fr) minmax(250px, 1.3fr) minmax(200px, 0.85fr);
	gap: clamp(2.5rem, 5vw, 5.5rem);
	align-items: start;
}

.site-footer__directory > * {
	min-width: 0;
}

.site-footer__brand img {
	width: 104px;
	height: auto;
}

.site-footer__firm-name {
	max-width: 24ch;
	margin: 0.85rem 0 0;
	color: var(--ivory-muted);
	font-size: 0.72rem;
	letter-spacing: 0.03em;
}

.site-footer__contact-details {
	display: grid;
	align-content: start;
}

.site-footer__nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: clamp(1.5rem, 3vw, 3.5rem);
	align-content: start;
}

.site-footer__social {
	grid-column: 1 / -1;
	margin-top: 0.35rem;
}

.site-footer__label {
	margin: 0 0 0.9rem;
	color: var(--gold-light);
	font-size: 0.6rem;
	font-weight: 750;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.site-footer__nav a,
.site-footer__contact-details a,
.site-footer__office a,
.site-footer__legal a {
	color: var(--ivory-muted);
	font-size: 0.76rem;
	text-decoration: none;
}

.site-footer__nav a {
	display: block;
	width: fit-content;
	margin-top: 0.4rem;
	padding-block: 0.16rem;
	font-size: 0.82rem;
	transition: color 220ms var(--ease), transform 220ms var(--ease);
}

.site-footer__nav .site-footer__label {
	grid-column: 1 / -1;
}

.site-footer__nav a:hover {
	transform: translateX(0.28rem);
}

.site-footer__nav a:hover,
.site-footer__contact-details a:hover,
.site-footer__office a:hover,
.site-footer__legal a:hover {
	color: var(--gold-light);
}

.site-footer__email {
	display: table;
}

.site-footer__contact-details .site-footer__email {
	color: var(--ivory);
	font-size: clamp(1.05rem, 1.55vw, 1.35rem);
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.site-footer__office address {
	max-width: 54ch;
	margin: 0;
	color: var(--ivory-muted);
	font-size: 0.76rem;
	font-style: normal;
	line-height: 1.7;
}

.site-footer__phone-link {
	display: table;
	margin-top: 0.75rem;
	color: var(--ivory);
	font-size: 0.8rem;
	font-weight: 550;
	letter-spacing: -0.015em;
	text-decoration: none;
}

.site-footer__social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.site-footer__social-link {
	display: inline-grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid var(--line-strong);
	border-radius: 50%;
	color: var(--ivory-muted);
	transition: color 220ms var(--ease), background-color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.site-footer__social-link:hover {
	border-color: var(--gold-light);
	background: var(--gold-light);
	color: var(--ink);
	transform: translateY(-3px);
}

.site-footer__social-icon {
	display: block;
	width: 19px;
	height: 19px;
	background: currentColor;
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
}

.site-footer__social-icon--linkedin {
	mask-image: url("../icons/linkedin-logo-light.svg");
}

.site-footer__social-icon--instagram {
	mask-image: url("../icons/instagram-logo-light.svg");
}

.site-footer__social-icon--whatsapp {
	mask-image: url("../icons/whatsapp-logo-light.svg");
}

.site-footer__legal {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	margin-top: clamp(2.75rem, 5vw, 4.5rem);
	padding-top: 1.15rem;
	border-top: 1px solid var(--line);
}

.site-footer__legal p {
	margin: 0;
	color: #7f858d;
	font-size: 0.68rem;
}

.site-footer__legal div {
	display: flex;
	gap: 1.2rem;
}

.has-js [data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.has-js [data-reveal][data-reveal-delay="1"] {
	transition-delay: 90ms;
}

.has-js [data-reveal][data-reveal-delay="2"] {
	transition-delay: 170ms;
}

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

@media (max-width: 1100px) {
	:root {
		--shell: min(100% - 56px, 1120px);
	}

	.hero__stage {
		min-height: 620px;
	}

	.hero__content {
		width: min(680px, 62%);
	}

	.firm__editorial,
	.expertise__layout,
	.experience__grid {
		gap: 4rem;
	}

	.partners__profile {
		padding: 2.6rem;
	}

	.contact__grid {
		grid-template-columns: minmax(0, 0.7fr) minmax(480px, 1fr);
		gap: 3.5rem;
	}

	.site-footer__directory {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 3rem;
	}

}

@media (max-width: 900px) {
	:root {
		--header-height: 68px;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.primary-nav {
		position: fixed;
		top: var(--header-height);
		right: 0;
		left: 0;
		display: grid;
		align-content: start;
		gap: 0.4rem;
		width: 100%;
		height: calc(100dvh - var(--header-height));
		padding: 3rem 28px;
		background: rgba(9, 11, 14, 0.99);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: opacity 200ms ease, transform 220ms var(--ease), visibility 200ms ease;
	}

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

	.primary-nav a {
		padding-block: 0.62rem;
		color: var(--ivory);
		font-family: var(--font-display);
		font-size: clamp(1.9rem, 7vw, 3rem);
		font-weight: 650;
		letter-spacing: -0.025em;
		line-height: 1.05;
	}

	.primary-nav a:not(.primary-nav__cta)::after {
		display: none;
	}

	.primary-nav__cta {
		justify-content: center;
		width: fit-content;
		min-height: 48px;
		margin-top: 1.4rem;
		padding-inline: 1.2rem !important;
		font-family: var(--font-sans) !important;
		font-size: 0.78rem !important;
		letter-spacing: 0.035em !important;
	}

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

	.hero__domains span:nth-child(2) {
		border-right: 0;
	}

	.hero__domains span:nth-child(-n + 2) {
		border-bottom: 1px solid rgba(11, 13, 16, 0.2);
	}

	.firm__editorial {
		grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
		gap: 3rem;
	}

	.expertise__layout,
	.contact__grid {
		grid-template-columns: 1fr;
	}

	.expertise__intro h2,
	.contact__intro h2 {
		max-width: 10ch;
	}

	.contact__intro {
		max-width: 620px;
	}

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

	.experience-list {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.experience__intro h2 {
		max-width: 16ch;
	}

	.experience-item,
	.experience-item--featured {
		grid-row: auto;
		grid-column: auto;
	}

	.experience-item--featured {
		min-height: 500px;
	}

}

@media (max-width: 767px) {
	:root {
		--shell: calc(100% - 36px);
		--section-space: 5.4rem;
	}

	h1 {
		font-size: clamp(3.1rem, 15vw, 4.6rem);
	}

	h2 {
		font-size: clamp(2.8rem, 13vw, 4rem);
	}

	.hero {
		padding-top: var(--header-height);
	}

	.hero__shell {
		width: 100%;
	}

	.hero__stage {
		min-height: min(720px, calc(100dvh - 58px));
	}

	.hero__stage::before {
		background: linear-gradient(180deg, rgba(7, 9, 11, 0.12) 0%, rgba(7, 9, 11, 0.35) 42%, rgba(7, 9, 11, 0.98) 76%, rgba(7, 9, 11, 1) 100%);
	}

	.hero__image {
		object-position: 66% center;
	}

	.hero__content {
		top: auto;
		right: 18px;
		bottom: 3.25rem;
		left: 18px;
		width: auto;
		transform: none;
	}

	.hero h1 {
		font-size: clamp(2.6rem, 10.5vw, 3.2rem);
	}

	.hero__content > p:not(.eyebrow) {
		max-width: 42ch;
		margin-block: 1.25rem 1.5rem;
		font-size: 0.9rem;
	}

	.hero__actions {
		flex-wrap: wrap;
		gap: 1rem 1.3rem;
	}

	.hero__domains {
		min-height: 0;
	}

	.hero__domains span {
		min-height: 76px;
		padding: 1rem 0.7rem;
		font-size: 1rem;
	}

	.firm__editorial,
	.firm__principles,
	.partners__feature,
	.experience-list,
	.form-row--split {
		grid-template-columns: 1fr;
	}

	.firm__intro,
	.partners__header {
		padding-left: 0;
	}

	.firm__intro h2 {
		font-size: clamp(2.3rem, 11.5vw, 3rem);
	}

	.firm__media {
		width: 100%;
		aspect-ratio: 5 / 4;
	}

	.firm__media img {
		object-position: center 58%;
	}

	.firm__principles {
		gap: 1.8rem;
		margin-top: 3.5rem;
	}

	.firm__principles > div + div {
		padding-top: 1.8rem;
		border-top: 1px solid var(--paper-line);
	}

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

	.expertise-item:first-child,
	.expertise-item:nth-child(4) {
		grid-column: auto;
	}

	.expertise-item:nth-child(4) .expertise-trigger > span:first-child {
		white-space: normal;
	}

	.partners__header h2 {
		max-width: 13ch;
		font-size: clamp(2.9rem, 12.2vw, 3.25rem);
	}

	.partners__feature {
		background: transparent;
	}

	.partners__media {
		aspect-ratio: 4 / 3;
	}

	.partners__profile {
		min-height: 370px;
		padding: 3rem 2rem 2.6rem;
	}

	.experience__intro h2 {
		max-width: 100%;
	}

	.experience__intro h2.experience__heading {
		font-size: clamp(2.35rem, 12.4vw, 3.15rem);
	}

	.experience-item:not(.experience-item--featured) {
		display: block;
		min-height: 0;
		padding: 2.4rem 0;
	}

	.experience-item:not(.experience-item--featured) .experience-item__category {
		margin-bottom: 1.35rem;
	}

	.experience-item h3 {
		max-width: 14ch;
		font-size: clamp(2rem, 9.5vw, 2.55rem);
	}

	.experience-item__summary,
	.experience-item__summary.experience-summary--balanced {
		max-width: 46ch;
		margin-top: 1rem;
		font-size: 0.8rem;
	}

	.experience-item--featured {
		min-height: 420px;
		padding: 2.4rem 2rem 2.2rem;
	}

	.experience-item--featured h3 {
		max-width: none;
		font-size: clamp(2.45rem, 10.5vw, 2.85rem);
	}

	.experience-item--featured .experience-item__summary {
		font-size: 0.82rem;
	}

	.contact__form-wrap {
		padding: 1.6rem;
	}

	.site-footer {
		padding-top: 3.5rem;
	}

	.site-footer__directory {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.site-footer__nav {
		max-width: none;
	}

	.site-footer__legal {
		grid-template-columns: 1fr;
		gap: 0.9rem;
		margin-top: 3rem;
	}

	.site-footer__legal div {
		flex-wrap: wrap;
	}
}

@media (max-width: 480px) {
	.site-header__inner {
		width: calc(100% - 32px);
	}

	.brand,
	.brand__logo {
		width: 82px;
	}

	.menu-toggle__label {
		display: none;
	}

	.hero__stage {
		min-height: 690px;
	}

	.hero__content {
		bottom: 2.75rem;
	}

	.hero__actions .button {
		min-height: 44px;
		padding-inline: 1rem;
	}

	.experience-item:not(.experience-item--featured) {
		padding-block: 2rem;
	}

	.experience-item--featured {
		min-height: 390px;
		padding: 2.1rem 1.4rem 2rem;
	}

	.contact__form-wrap {
		margin-inline: -6px;
		padding: 1.35rem;
	}
}

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

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

	.has-js [data-reveal] {
		opacity: 1;
		transform: none;
	}
}

@media (prefers-reduced-transparency: reduce) {
	.site-header.is-scrolled,
	.contact__form-wrap {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.site-header.is-scrolled {
		background: #090b0e;
	}

	.contact__form-wrap {
		background: #0a0c0f;
	}
}
