:root {
  --ivory: #f4f0e8;
  --parchment: #e9e2d7;
  --stone: #d8d0c3;
  --ink: #20252b;
  --charcoal: #33383d;
  --brass: #9a805a;
  --brass-text: #6f5c3e;
  --brass-soft: #b6a180;
  --taupe: #5f584f;
  --white: #fcfbf8;
  --line: rgba(32, 37, 43, 0.14);
  --line-strong: rgba(32, 37, 43, 0.22);
  --white-line: rgba(252, 251, 248, 0.16);
  --container: min(91vw, 1280px);
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Manrope", Arial, Helvetica, sans-serif;
  --header-h: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
body.site-locked { overflow: hidden; }

body.site-locked .site-header,
body.site-locked main,
body.site-locked .site-footer,
body.site-locked .skip-link {
  visibility: hidden;
  pointer-events: none;
}

html.access-granted body.site-locked {
  overflow: auto;
}

html.access-granted body.site-locked .site-header,
html.access-granted body.site-locked main,
html.access-granted body.site-locked .site-footer,
html.access-granted body.site-locked .skip-link {
  visibility: visible;
  pointer-events: auto;
}

html.access-granted .access-gate {
  display: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

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

:focus-visible {
  outline: 1px solid var(--brass);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 1rem;
  top: 1rem;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  transition: transform 0.2s ease;
}

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

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

.section-light {
  position: relative;
  background: var(--ivory);
  color: var(--ink);
}

.section-parchment {
  position: relative;
  background: var(--parchment);
  color: var(--ink);
}

.section-stone {
  position: relative;
  background: var(--stone);
  color: var(--ink);
}

.section-ink {
  position: relative;
  background: var(--ink);
  color: var(--white);
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  color: var(--ink);
  background: rgba(244, 240, 232, 0.72);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, height 0.35s var(--ease), transform 0.35s var(--ease);
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(244, 240, 232, 0.96);
  border-color: var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 132px;
  max-width: 36vw;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  gap: clamp(1.5rem, 2.4vw, 2.8rem);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.desktop-nav a {
  position: relative;
  padding: 0.35rem 0;
  color: var(--charcoal);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

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

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
}

.header-cta span {
  color: var(--brass);
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease);
}

.header-cta:hover span { transform: translate(2px, -2px); }

.menu-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: inherit;
  position: relative;
  z-index: 1002;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 8px;
  width: 26px;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}

.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 24px; }

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

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  background: var(--ivory);
  color: var(--ink);
  padding: 120px 5vw 50px;
  transition: opacity 0.35s ease, visibility 0.35s;
}

.mobile-menu.is-open {
  z-index: 999;
  visibility: visible;
  opacity: 1;
}

.mobile-menu nav { border-top: 1px solid var(--line); }

.mobile-menu nav a {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.85rem, 7vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.mobile-menu nav span {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-text);
}

.mobile-menu > p {
  position: absolute;
  bottom: 2.25rem;
  margin: 0;
  font-size: 0.78rem;
  color: var(--charcoal);
}

body.menu-open .site-header {
  color: var(--ink);
  background: var(--ivory);
  border-color: var(--line);
  height: var(--header-h);
  transform: none;
}

/* Type */

.eyebrow,
.section-index {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.section-ink .eyebrow,
.section-ink .section-index {
  color: var(--brass-soft);
}

.section-index--ink { color: var(--charcoal); }

.hero .eyebrow { color: var(--brass-text); }

.display {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: inherit;
}

.display em {
  font-weight: inherit;
  font-style: italic;
}

.display--hero {
  font-size: clamp(2.55rem, 5.4vw, 4.6rem);
  font-weight: 500;
  max-width: 11.5ch;
  line-height: 1.12;
}

.display--xl {
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  max-width: 16ch;
}

.display--lg {
  font-size: clamp(2.3rem, 3.8vw, 3.6rem);
  max-width: 16ch;
}

.section-lede {
  margin: 1.6rem 0 0;
  color: var(--charcoal);
  max-width: 36rem;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.75;
}

.accent-rule {
  width: 48px;
  height: 1px;
  background: var(--brass);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.58s var(--ease), transform 0.58s var(--ease);
  transition-delay: calc(var(--delay, 0) * 70ms);
}

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

.reveal[data-delay="1"] { --delay: 1; }
.reveal[data-delay="2"] { --delay: 2; }
.reveal[data-delay="3"] { --delay: 3; }

/* Buttons */

.button {
  min-height: 46px;
  padding: 0 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--charcoal);
}

.text-link span { transition: transform 0.25s var(--ease); }
.text-link:hover span { transform: translate(2px, -2px); }

/* Hero */

.hero {
  padding: calc(var(--header-h) + 5.5rem) 0 5.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.45fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.hero-intro {
  max-width: 38rem;
  margin: 1.75rem 0 0;
  color: var(--charcoal);
  font-size: clamp(1.02rem, 1.25vw, 1.15rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.hero-aside {
  padding-bottom: 0.35rem;
}

.hero-aside__rule {
  width: 40px;
  height: 1px;
  background: var(--brass);
  margin-bottom: 1.4rem;
}

.hero-aside > p {
  margin: 0;
  color: var(--charcoal);
  max-width: 18rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-weight: 400;
  line-height: 1.45;
}

/* Perspective */

.perspective {
  min-height: 0;
  padding: 8rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.perspective-image {
  position: absolute;
  inset: 0 0 0 48%;
}

.perspective-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.45;
}

.perspective-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--ink) 0%,
    var(--ink) 48%,
    rgba(32, 37, 43, 0.88) 62%,
    rgba(32, 37, 43, 0.55) 100%
  );
}

.perspective-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 4.5fr;
  gap: 2.5rem;
  align-items: start;
}

.perspective-copy .display { max-width: 14ch; }

.perspective-copy .accent-rule { margin: 2.25rem 0; }

.perspective-text {
  max-width: 34rem;
  color: rgba(252, 251, 248, 0.78);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.75;
}

.perspective-text p { margin: 0 0 1.15rem; }

.perspective-text .accent-copy {
  margin-top: 1.75rem;
  margin-bottom: 0;
  color: var(--white);
  font-weight: 500;
}

/* Services */

.services {
  padding: 8.5rem 0 7.5rem;
}

.services .display--xl {
  max-width: 18ch;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 4.5fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 4rem;
}

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

.service-item {
  display: grid;
  grid-template-columns: 72px minmax(200px, 1.15fr) minmax(260px, 1fr) 32px;
  gap: 1.25rem;
  align-items: start;
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  outline: none;
  transition: background 0.25s ease;
}

.service-item:hover,
.service-item:focus-visible {
  background: rgba(154, 128, 90, 0.05);
}

.service-item.is-active {
  background: transparent;
}

.service-item.is-active .service-number,
.service-item.is-active h3 {
  color: var(--ink);
}

.service-number {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--brass);
  padding-top: 0.35rem;
}

.service-title-wrap h3 {
  margin: 0 0 0.55rem;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 2.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.service-title-wrap p {
  margin: 0;
  color: var(--charcoal);
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-detail {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.45s var(--ease), opacity 0.3s ease;
}

.service-detail > ul {
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--charcoal);
  font-size: 0.88rem;
  line-height: 1.85;
}

.service-detail li::before {
  content: "—";
  color: var(--brass);
  margin-right: 0.7rem;
}

.service-item.is-active .service-detail {
  grid-template-rows: 1fr;
  opacity: 1;
}

.service-toggle {
  justify-self: end;
  width: 24px;
  height: 24px;
  position: relative;
  margin-top: 0.45rem;
}

.service-toggle::before,
.service-toggle::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 16px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

.service-toggle::after { transform: rotate(90deg); }
.service-item.is-active .service-toggle::after { transform: rotate(0); }

/* Clients */

.clients { padding: 8rem 0 4rem; }

.clients-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.clients-intro .section-index { margin-bottom: 2rem; }

.clients-intro .display { max-width: 14ch; }

.clients-intro > p:not(.section-index) {
  max-width: 28rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin: 1.6rem 0;
}

.clients-intro .accent-rule { margin-top: 0.5rem; }

.client-types {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line-strong);
}

.client-type {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.client-type__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  color: var(--ink);
}

.client-type__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.client-type > span {
  display: block;
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.client-type h3 {
  margin: 0.75rem 0 0.55rem;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 500;
}

.client-type p {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.9rem;
  line-height: 1.65;
}

.sector-line {
  margin-top: 4.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sector-line i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--stone);
  flex: 0 0 auto;
}

/* Advantage */

.advantage { padding: 8.5rem 0 7.5rem; }

.section-head--advantage { margin-bottom: 3.5rem; }
.section-head--advantage .display { max-width: 16ch; }

.journey {
  position: relative;
  margin: 0 0 3.5rem;
  max-width: 42rem;
}

.journey-line {
  height: 1px;
  background: var(--line-strong);
  position: relative;
}

.journey-line::before,
.journey-line::after,
.journey-line span {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass);
}

.journey-line::before { left: 0; }
.journey-line span { left: 50%; }
.journey-line::after { right: 0; }

.journey-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.advantage-card {
  min-height: 240px;
  padding: 2rem 1.6rem;
  border-right: 1px solid var(--line);
}

.advantage-card:first-child { padding-left: 0; }
.advantage-card:last-child {
  border-right: 0;
  padding-right: 0;
}

.advantage-card > span {
  font-family: var(--serif);
  color: var(--brass);
  font-size: 1.15rem;
}

.advantage-card h3 {
  margin: 1.6rem 0 0.7rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.6vw, 1.65rem);
  font-weight: 500;
}

.advantage-card p {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Experience */

.experience { padding: 8.5rem 0 7rem; }

.section-head--experience { margin-bottom: 3.5rem; }

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

.case-card {
  min-height: 340px;
  padding: 1.9rem;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: background 0.25s ease;
}

.case-card:hover { background: rgba(252, 251, 248, 0.45); }

.case-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.case-card__top > span {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--brass);
}

.case-card__top small {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.case-card h3 {
  margin: auto 0 1.35rem;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.case-card p {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.92rem;
  line-height: 1.7;
}

.experience-note {
  margin: 2.75rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Engagements */

.engagements { padding: 8rem 0; }

.engagements-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 7vw, 7rem);
}

.engagements-copy .section-index { margin-bottom: 2rem; }
.engagements-copy .display { max-width: 14ch; }

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

.engagement {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.1rem;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
}

.engagement > span {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--brass);
  padding-top: 0.2rem;
}

.engagement h3 {
  margin: 0 0 0.45rem;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.7vw, 1.55rem);
  font-weight: 500;
}

.engagement p {
  margin: 0;
  color: var(--charcoal);
  max-width: 34rem;
  line-height: 1.65;
  font-size: 0.9rem;
}

/* Team */

.team { padding: 8.5rem 0 7.5rem; }

.team-head {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 3.5rem;
  align-items: end;
  margin-bottom: 4rem;
}

.team-head .section-index { margin-bottom: 2rem; }
.team-head .display { max-width: 14ch; }

.team-head > p {
  margin: 0 0 0.25rem;
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 0.98rem;
}

.team-roster {
  display: grid;
  gap: 3.5rem;
}

.person--featured {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.person--featured .person-image {
  aspect-ratio: 4 / 5;
  max-width: 520px;
}

.person--featured .person-meta {
  grid-template-columns: 48px 1fr;
  gap: 1.1rem;
  padding-top: 0;
  padding-bottom: 0.4rem;
}

.person--featured .person-meta > span {
  font-size: 1.15rem;
}

.person--featured .person-meta h3 {
  font-size: clamp(2rem, 3vw, 2.85rem);
  margin-bottom: 0.4rem;
}

.person--featured .person-meta p {
  font-size: 0.84rem;
}

.team-partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.team-partners .person-image {
  aspect-ratio: 4 / 5;
}

.person-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--stone);
}

.person-image::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(32, 37, 43, 0.08);
  pointer-events: none;
}

.person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35);
  transition: filter 0.45s ease;
}

.person--featured .person-image img { object-position: center 18%; }
.team-partners .person:first-child .person-image img { object-position: 48% center; }
.team-partners .person:last-child .person-image img { object-position: center; }

.person:hover .person-image img { filter: grayscale(0); }

.person-meta {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.85rem;
  padding-top: 1.15rem;
}

.person-meta > span {
  font-family: var(--serif);
  color: var(--brass);
  font-size: 0.95rem;
}

.person-meta h3 {
  margin: 0 0 0.25rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.7vw, 1.65rem);
  font-weight: 500;
}

.person-meta p {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.team-note {
  margin: 4rem 0 0;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: none;
  color: var(--ink);
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.advisors {
  margin-top: 4rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: none;
}

.advisors__title {
  margin: 0 0 1.15rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.advisors__copy {
  margin: 0;
  max-width: none;
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.75;
}

/* Contact */

.contact {
  padding: 7.5rem 0;
  border-top: 1px solid transparent;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.contact-copy .section-index { margin-bottom: 2rem; }
.contact-copy .display { max-width: 12ch; }

.contact-copy > p:not(.section-index) {
  margin: 1.6rem 0 0;
  max-width: 28rem;
  color: rgba(252, 251, 248, 0.7);
  line-height: 1.7;
  font-size: 1rem;
}

.contact-action {
  padding: 1.5rem 0;
  border-block: 1px solid var(--white-line);
}

.contact-action > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.2;
  word-break: break-word;
}

.contact-action > a span {
  color: var(--brass-soft);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.contact-action > a:hover span { transform: translate(3px, -3px); }

/* Footer */

.site-footer {
  background: var(--ivory);
  color: var(--charcoal);
  padding: 3rem 0 2.4rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
}

.footer-brand {
  display: inline-flex;
  width: 132px;
  max-width: 40vw;
}

.footer-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.footer-nav a:hover { color: var(--ink); }

.footer-meta {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.footer-meta a:hover { color: var(--ink); }

/* Access gate */

.access-gate {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(2rem, 7vh, 4.5rem) clamp(1.5rem, 6vw, 5rem);
  background: var(--ivory);
  color: var(--ink);
  overflow: auto;
  transition: opacity 0.55s var(--ease), visibility 0.55s;
}

.access-gate.is-exit {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body:not(.site-locked) .access-gate {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.access-gate__motif {
  position: absolute;
  right: -8vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  border: 1px solid rgba(154, 128, 90, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.access-gate__motif::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(32, 37, 43, 0.08);
  border-radius: 50%;
}

.access-gate__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 0;
}

.access-gate__logo {
  display: block;
  width: min(168px, 48vw);
  height: auto;
  margin: 0 0 2.25rem;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  object-fit: contain;
}

.access-gate__label {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-text);
}

.access-gate__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}

.access-gate__desc {
  margin: 1rem 0 0;
  color: var(--charcoal);
  font-size: 0.98rem;
  line-height: 1.6;
}

.access-gate__form {
  margin-top: 2.35rem;
}

.access-gate__field-label {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
}

.access-gate__controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
}

.access-gate__input {
  width: 100%;
  min-height: 46px;
  padding: 0.55rem 0;
  border: 0;
  border-bottom: 1px solid var(--taupe);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0.08em;
  outline: none;
  transition: border-color 0.25s ease;
}

.access-gate__input:focus {
  border-bottom-color: var(--brass);
}

.access-gate__input.is-invalid {
  border-bottom-color: #8f4e44;
}

.access-gate__submit {
  color: var(--ivory);
  background: var(--ink);
  border-color: var(--ink);
  min-width: 6.5rem;
}

.access-gate__submit:hover,
.access-gate__submit:focus-visible {
  color: var(--ink);
  background: var(--brass);
  border-color: var(--brass);
}

.access-gate__error {
  margin: 0.9rem 0 0;
  min-height: 1.25rem;
  color: #8f4e44;
  font-size: 0.84rem;
}

.access-gate__error[hidden] { display: none; }

@media (max-width: 1100px) {
  .access-gate__motif {
    right: -18vw;
    opacity: 0.7;
  }
}

@media (max-width: 760px) {
  .access-gate {
    align-items: flex-start;
    padding-top: max(5.5rem, 12vh);
  }

  .access-gate__motif {
    width: 70vw;
    height: 70vw;
    top: 78%;
    right: -22vw;
    opacity: 0.4;
  }

  .access-gate__logo {
    width: min(148px, 56vw);
    margin-bottom: 1.85rem;
  }

  .access-gate__controls {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .access-gate__submit {
    width: 100%;
  }
}

/* Privacy */

.error-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.privacy-page {
  min-height: 100svh;
  padding: calc(var(--header-h) + 5rem) 0 7rem;
  background: var(--ivory);
  color: var(--ink);
}

.privacy-page .display { max-width: 14ch; }

.privacy-content {
  max-width: 640px;
  margin: 3.5rem 0 0 auto;
}

.privacy-content h2 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  margin-top: 2.4rem;
}

.privacy-content p,
.privacy-content li {
  color: var(--charcoal);
  line-height: 1.75;
}

.privacy-content a {
  color: var(--brass);
  border-bottom: 1px solid currentColor;
}

.privacy-back {
  display: inline-flex;
  margin-top: 2.75rem;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: none;
}

/* Responsive */

@media (max-width: 1100px) {
  :root { --container: min(92vw, 920px); }

  .desktop-nav,
  .header-cta { display: none; }

  .menu-toggle { display: block; }

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

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-aside { max-width: 28rem; }

  .perspective-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .perspective-grid .section-index,
  .section-head .section-index {
    margin-bottom: 1.25rem;
  }

  .service-item {
    grid-template-columns: 56px 1.15fr 1fr 28px;
  }

  .clients-grid,
  .engagements-grid {
    grid-template-columns: 1fr;
  }

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

  .advantage-card { border-bottom: 1px solid var(--line); }

  .advantage-card:nth-child(2) {
    border-right: 0;
    padding-right: 0;
  }

  .advantage-card:nth-child(3) { padding-left: 0; }

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

  .team-head > p { max-width: 36rem; }

  .person--featured {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
  }

  .person--featured .person-image {
    max-width: 420px;
  }

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

  .contact-action { max-width: 560px; }
}

@media (max-width: 760px) {
  :root {
    --header-h: 72px;
    --container: 90vw;
  }

  .site-header.is-scrolled { height: 64px; }

  .brand {
    width: 112px;
  }

  .display--hero {
    font-size: clamp(2.15rem, 8.4vw, 3rem);
    max-width: 11.5ch;
  }
  .display--xl { font-size: clamp(2.25rem, 9vw, 3.2rem); max-width: none; }
  .display--lg { font-size: clamp(2.05rem, 8vw, 2.9rem); max-width: none; }

  .hero { padding: calc(var(--header-h) + 3.5rem) 0 4.5rem; }

  .hero-intro { font-size: 0.98rem; }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.15rem;
    margin-top: 2rem;
  }

  .hero-aside { display: none; }

  .perspective {
    min-height: 0;
    padding: 6.5rem 0;
    align-items: flex-start;
  }

  .perspective-image {
    inset: 42% 0 0 18%;
    opacity: 0.7;
  }

  .perspective-overlay {
    background: linear-gradient(
      180deg,
      var(--ink) 0%,
      var(--ink) 48%,
      rgba(32, 37, 43, 0.92) 72%,
      rgba(32, 37, 43, 0.72) 100%
    );
  }

  .perspective-copy .accent-rule { margin: 1.75rem 0; }

  .perspective-text { font-size: 0.98rem; }

  .services,
  .advantage,
  .experience,
  .engagements,
  .team {
    padding: 6rem 0 5.5rem;
  }

  .section-head {
    margin-bottom: 2.75rem;
    gap: 0.85rem;
  }

  .service-item {
    grid-template-columns: 40px 1fr 28px;
    gap: 0.7rem;
    padding: 1.4rem 0;
  }

  .service-number { font-size: 1rem; }

  .service-title-wrap h3 { font-size: 1.85rem; }

  .service-title-wrap p { font-size: 0.88rem; }

  .service-detail { grid-column: 2 / -1; }

  .service-detail > ul {
    padding-top: 1rem;
    font-size: 0.84rem;
  }

  .service-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .clients { padding: 6rem 0 3rem; }

  .clients-grid { gap: 2.75rem; }

  .sector-line {
    margin-top: 3.25rem;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.35rem;
    scrollbar-width: none;
  }

  .sector-line::-webkit-scrollbar { display: none; }

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

  .advantage-card,
  .advantage-card:first-child,
  .advantage-card:nth-child(2),
  .advantage-card:nth-child(3),
  .advantage-card:last-child {
    min-height: 0;
    padding: 1.55rem 0;
    border-right: 0;
  }

  .advantage-card h3 { margin: 0.85rem 0 0.55rem; }

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

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

  .engagements-grid { gap: 2.75rem; }

  .team-head {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .team-roster { gap: 2.75rem; }

  .person--featured {
    padding-bottom: 2.25rem;
  }

  .person--featured .person-image,
  .team-partners .person-image {
    max-width: 100%;
    aspect-ratio: 4 / 4.6;
  }

  .team-partners {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .team-note {
    margin-top: 3rem;
    font-size: clamp(1.2rem, 5.5vw, 1.45rem);
  }

  .advisors { margin-top: 3rem; }

  .contact { padding: 5.5rem 0; }

  .contact-grid { gap: 3rem; }

  .contact-action > a {
    font-size: clamp(1.25rem, 5.5vw, 1.7rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-nav {
    gap: 1.1rem 1.4rem;
  }

  .footer-meta {
    justify-self: start;
    align-items: flex-start;
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
