:root {
    --ink: #07111b;
    --ink-soft: #0f2238;
    --navy: #061b3b;
    --paper: #e7e3dc;
    --paper-bright: #f8f6f1;
    --white: #ffffff;
    --muted: #8f9498;
    --line: rgba(255, 255, 255, .22);
    --dark-line: rgba(7, 17, 27, .22);
    --gold: #f7b329;
    --blue: #3767ff;
    --ice: #a9dcff;
    --header-h: 92px;
    --page-pad: clamp(22px, 4.5vw, 78px);
    --ease: cubic-bezier(.22, 1, .36, 1);
    --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-serif: Georgia, "Times New Roman", serif;
}

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

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

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

body.menu-open {
    overflow: hidden;
}

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

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

button {
    color: inherit;
    font: inherit;
}

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

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

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--ink);
    background: var(--gold);
    transform: translateY(-150%);
    transition: transform .2s ease;
}

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

.site-progress {
    position: fixed;
    z-index: 140;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    pointer-events: none;
}

.site-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--blue), var(--ice));
    transform: scaleX(0);
    transform-origin: left;
}

.site-header {
    position: fixed;
    z-index: 120;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto auto;
    align-items: center;
    gap: 30px;
    width: 100%;
    min-height: var(--header-h);
    padding: 10px var(--page-pad);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    transition: min-height .35s var(--ease), background .35s ease, backdrop-filter .35s ease;
}

.site-header.is-scrolled {
    min-height: 74px;
    background: rgba(7, 17, 27, .92);
    backdrop-filter: blur(18px);
}

.brand {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    width: fit-content;
}

.brand-mark {
    display: grid;
    flex: 0 0 54px;
    place-items: center;
    width: 54px;
    height: 54px;
    overflow: hidden;
    background: var(--paper-bright);
    border-radius: 50%;
}

.brand-mark img {
    width: 49px;
    height: 49px;
    object-fit: contain;
}

.brand-name {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.brand-name strong {
    display: block;
    font-size: 17px;
    letter-spacing: .18em;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 34px);
}

.main-navigation a {
    position: relative;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: .035em;
    white-space: nowrap;
}

.main-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s var(--ease);
}

.main-navigation a:hover::after,
.main-navigation a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 48px;
    padding: 0 20px;
    color: var(--ink);
    background: var(--gold);
    font-size: 13px;
    font-weight: 750;
    transition: color .25s ease, background .25s ease;
}

.header-contact:hover {
    color: var(--white);
    background: var(--blue);
}

.menu-toggle {
    display: none;
}

.section-pad {
    padding: clamp(90px, 10vw, 178px) var(--page-pad);
}

.eyebrow,
.section-kicker {
    margin: 0;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .17em;
    line-height: 1.35;
    text-transform: uppercase;
}

.section-kicker {
    display: grid;
    grid-template-columns: 54px auto 1fr;
    align-items: center;
    gap: 18px;
    margin-bottom: clamp(54px, 7vw, 105px);
}

.section-kicker::after {
    height: 1px;
    content: "";
    background: var(--dark-line);
}

.section-kicker span {
    color: #b36a00;
}

.section-kicker--light::after {
    background: var(--line);
}

.section-kicker--light span {
    color: var(--gold);
}

.hero {
    --hero-accent: var(--gold);
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
    color: var(--white);
    background: var(--ink);
}

.hero-visuals,
.hero-frame,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-frame {
    margin: 0;
    opacity: 0;
    clip-path: inset(0 0 0 8%);
    transform: scale(1.08);
    transition: opacity 1.1s ease, transform 7s linear;
}

.hero-frame::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(120deg, rgba(7, 17, 27, .15), color-mix(in srgb, var(--hero-accent) 26%, transparent));
    mix-blend-mode: color;
}

.hero-frame.is-active {
    opacity: .84;
    transform: scale(1);
}

.hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(7, 17, 27, .98) 0%, rgba(7, 17, 27, .83) 42%, rgba(7, 17, 27, .24) 76%, rgba(7, 17, 27, .45) 100%),
        linear-gradient(0deg, rgba(7, 17, 27, .92) 0%, transparent 42%);
}

.hero::after {
    position: absolute;
    z-index: 2;
    top: 0;
    left: var(--page-pad);
    width: 1px;
    height: 100%;
    content: "";
    background: rgba(255, 255, 255, .15);
}

.hero-monogram {
    position: absolute;
    z-index: 2;
    top: 47%;
    right: -2vw;
    color: transparent;
    border: 0;
    font-family: var(--font-serif);
    font-size: clamp(270px, 43vw, 740px);
    font-style: italic;
    line-height: .65;
    opacity: .19;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .72);
    transform: translateY(-50%);
    pointer-events: none;
}

.hero-index {
    position: absolute;
    z-index: 3;
    top: 49%;
    right: var(--page-pad);
    display: grid;
    justify-items: end;
    color: rgba(255, 255, 255, .8);
    font-size: 11px;
    letter-spacing: .28em;
    line-height: 1;
    text-transform: uppercase;
    transform: rotate(-90deg) translateX(50%);
    transform-origin: bottom right;
}

.hero-index b {
    margin-top: 7px;
    color: var(--hero-accent);
    font-size: 16px;
    letter-spacing: .35em;
}

.hero-content {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr);
    align-items: end;
    gap: clamp(28px, 5vw, 90px);
    max-width: 1460px;
    min-height: 100svh;
    margin: 0 auto;
    padding: calc(var(--header-h) + 10vh) calc(var(--page-pad) + 3vw) clamp(150px, 17vh, 200px) var(--page-pad);
}

.hero-eyebrow {
    position: absolute;
    top: calc(var(--header-h) + 9vh);
    left: var(--page-pad);
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-eyebrow::before {
    width: 36px;
    height: 3px;
    content: "";
    background: var(--hero-accent);
}

.hero h1,
.identity h2,
.expertise h2,
.professionals h2,
.international h2,
.locations h2,
.contact h2 {
    margin: 0;
    font-weight: 650;
    letter-spacing: -.065em;
    line-height: .86;
}

.hero h1 {
    max-width: 900px;
    font-size: clamp(66px, 9.2vw, 166px);
}

.hero h1 em,
.identity h2 em,
.expertise h2 em,
.professionals h2 em,
.international h2 em,
.locations h2 em,
.contact h2 em {
    color: var(--hero-accent);
    font-family: var(--font-serif);
    font-weight: 400;
}

.hero-copy {
    max-width: 430px;
    padding-bottom: 1vw;
}

.hero-copy > p {
    margin: 0 0 32px;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(16px, 1.22vw, 20px);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
    min-height: 58px;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .03em;
    transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.button--primary {
    min-width: 225px;
    color: var(--ink);
    background: var(--hero-accent);
}

.button--primary:hover {
    color: var(--white);
    background: var(--blue);
}

.button--light {
    min-width: 250px;
    color: var(--ink);
    background: var(--white);
}

.button--light:hover {
    background: var(--gold);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-size: 14px;
    font-weight: 750;
}

.text-link span {
    transition: transform .25s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

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

.hero-controls {
    position: absolute;
    z-index: 5;
    right: var(--page-pad);
    bottom: 38px;
    left: var(--page-pad);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 820px;
}

.hero-controls button {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 20px;
    color: rgba(255, 255, 255, .66);
    background: rgba(7, 17, 27, .34);
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .35);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.hero-controls button + button {
    border-left: 1px solid rgba(255, 255, 255, .2);
}

.hero-controls button span {
    color: var(--hero-accent);
    font-size: 11px;
}

.hero-controls button:hover,
.hero-controls button.is-active {
    color: var(--white);
    border-top-color: var(--hero-accent);
    background: rgba(7, 17, 27, .72);
}

.scroll-cue {
    position: absolute;
    z-index: 5;
    right: var(--page-pad);
    bottom: 43px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.scroll-cue span {
    position: relative;
    width: 46px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, .4);
}

.scroll-cue span::after {
    position: absolute;
    inset: 0;
    content: "";
    background: var(--hero-accent);
    animation: cue 2s ease-in-out infinite;
}

@keyframes cue {
    0% { transform: translateX(-100%); }
    60%, 100% { transform: translateX(100%); }
}

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

.identity-grid,
.expertise-head,
.professionals-head,
.locations-head {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr);
    align-items: start;
    gap: clamp(36px, 8vw, 145px);
}

.identity h2,
.expertise h2,
.professionals h2,
.international h2,
.locations h2,
.contact h2 {
    font-size: clamp(54px, 7vw, 124px);
}

.identity h2 em,
.professionals h2 em,
.locations h2 em {
    color: var(--navy);
}

.identity-copy .lead {
    margin-top: 0;
    color: var(--ink);
    font-size: clamp(19px, 1.55vw, 25px);
    line-height: 1.5;
}

.identity-copy p:not(.lead) {
    margin: 26px 0 34px;
    color: rgba(7, 17, 27, .72);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(75px, 10vw, 155px);
    border-top: 1px solid var(--dark-line);
    border-bottom: 1px solid var(--dark-line);
}

.metrics article {
    min-height: 210px;
    padding: 36px 28px;
}

.metrics article + article {
    border-left: 1px solid var(--dark-line);
}

.metrics strong {
    display: block;
    margin-bottom: 34px;
    color: var(--navy);
    font-size: clamp(54px, 6.7vw, 112px);
    font-weight: 650;
    letter-spacing: -.07em;
    line-height: .8;
}

.metrics span {
    display: block;
    max-width: 180px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

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

.expertise-head h2 em,
.international h2 em,
.contact h2 em {
    color: var(--gold);
}

.expertise-head > p,
.professionals-head > p,
.locations-head > p {
    margin: 0;
    font-size: clamp(18px, 1.4vw, 23px);
    line-height: 1.55;
}

.expertise-head > p {
    color: rgba(255, 255, 255, .68);
}

.expertise-list {
    margin-top: clamp(74px, 9vw, 145px);
    border-top: 1px solid var(--line);
}

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

.expertise-item button {
    display: grid;
    grid-template-columns: 70px 1fr 46px;
    align-items: center;
    width: 100%;
    padding: clamp(24px, 3vw, 46px) 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
}

.expertise-item button span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 750;
}

.expertise-item button strong {
    font-size: clamp(30px, 4.5vw, 76px);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1;
    transition: color .25s ease, transform .35s var(--ease);
}

.expertise-item button:hover strong {
    color: var(--gold);
    transform: translateX(12px);
}

.expertise-item button i {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
}

.expertise-item button i::before,
.expertise-item button i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1px;
    content: "";
    background: currentColor;
    transform: translate(-50%, -50%);
}

.expertise-item button i::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .25s ease;
}

.expertise-item.is-open button i {
    color: var(--ink);
    border-color: var(--gold);
    background: var(--gold);
}

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

.expertise-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, .45fr);
    gap: 60px;
    padding: 0 70px clamp(34px, 4vw, 56px);
}

.expertise-detail[hidden] {
    display: none;
}

.expertise-detail p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .77);
    font-size: clamp(17px, 1.35vw, 22px);
}

.expertise-detail small {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.5;
    text-transform: uppercase;
}

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

.professionals-head > p,
.locations-head > p {
    color: rgba(7, 17, 27, .65);
}

.professional-grid {
    display: grid;
    gap: clamp(90px, 12vw, 190px);
    margin-top: clamp(80px, 11vw, 170px);
}

.professional-card {
    display: grid;
    grid-template-columns: minmax(320px, .95fr) minmax(320px, .8fr);
    align-items: center;
    gap: clamp(45px, 9vw, 150px);
}

.professional-card--reverse figure {
    grid-column: 2;
}

.professional-card--reverse .professional-copy {
    grid-row: 1;
    grid-column: 1;
}

.professional-card figure {
    position: relative;
    min-height: min(700px, 72vw);
    margin: 0;
    overflow: hidden;
    background: var(--navy);
}

.professional-card figure::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 60%, rgba(7, 17, 27, .42));
}

.professional-card figure img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center 20%;
    filter: saturate(.88) contrast(1.03);
    transition: transform 1s var(--ease);
}

.professional-card:hover figure img {
    transform: scale(1.035);
}

.professional-card figure > span {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 18px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
}

.professional-copy .eyebrow {
    margin-bottom: 24px;
    color: #a35b00;
}

.professional-copy h3 {
    margin: 0 0 28px;
    font-size: clamp(40px, 5vw, 80px);
    font-weight: 600;
    letter-spacing: -.06em;
    line-height: .95;
}

.professional-copy > p:not(.eyebrow) {
    margin: 0 0 28px;
    color: rgba(7, 17, 27, .72);
    font-size: clamp(17px, 1.25vw, 21px);
}

.professional-copy ul {
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--dark-line);
}

.professional-copy li {
    padding: 12px 0;
    border-bottom: 1px solid var(--dark-line);
    font-size: 13px;
    font-weight: 700;
}

.international {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 820px;
    color: var(--white);
    background: var(--navy);
}

.international-image {
    position: relative;
    min-height: 660px;
    overflow: hidden;
}

.international-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(135deg, rgba(7, 17, 27, .15), rgba(55, 103, 255, .28));
    mix-blend-mode: color;
}

.international-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.international-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(75px, 8vw, 135px) var(--page-pad);
}

.international-content .section-kicker {
    width: 100%;
    margin-bottom: clamp(50px, 6vw, 85px);
}

.international-content h2 {
    font-size: clamp(50px, 6.2vw, 105px);
}

.international-content > p {
    max-width: 640px;
    margin: 38px 0 42px;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(17px, 1.3vw, 21px);
}

.city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 46px;
}

.city-list span {
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

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

.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: clamp(70px, 9vw, 140px);
    border-top: 1px solid var(--dark-line);
    border-bottom: 1px solid var(--dark-line);
}

.location-grid article {
    min-height: 280px;
    padding: 30px 25px;
}

.location-grid article + article {
    border-left: 1px solid var(--dark-line);
}

.location-grid span {
    color: #9a5900;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
}

.location-grid h3 {
    margin: 55px 0 22px;
    font-size: clamp(32px, 3.4vw, 54px);
    font-weight: 550;
    letter-spacing: -.05em;
}

.location-grid p {
    margin: 0;
    color: rgba(7, 17, 27, .66);
    font-size: 15px;
}

.contact {
    position: relative;
    overflow: hidden;
    padding: clamp(100px, 12vw, 210px) var(--page-pad) 80px;
    color: var(--white);
    background: var(--ink);
}

.contact::before {
    position: absolute;
    top: 0;
    left: var(--page-pad);
    width: 1px;
    height: 100%;
    content: "";
    background: var(--line);
}

.contact-orbit {
    position: absolute;
    top: -10vw;
    right: -5vw;
    width: clamp(400px, 56vw, 980px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
}

.contact-orbit::before,
.contact-orbit::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 50%;
}

.contact-orbit::before { inset: 13%; }
.contact-orbit::after { inset: 28%; border-color: rgba(247, 179, 41, .22); }

.contact > *:not(.contact-orbit) {
    position: relative;
    z-index: 1;
}

.contact > .eyebrow {
    margin-bottom: 48px;
    color: var(--gold);
}

.contact h2 {
    max-width: 1150px;
    font-size: clamp(66px, 10vw, 172px);
}

.contact-email {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    max-width: 1200px;
    margin-top: clamp(55px, 7vw, 105px);
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: clamp(20px, 3vw, 52px);
    font-weight: 500;
    letter-spacing: -.035em;
    transition: color .25s ease;
}

.contact-email:hover {
    color: var(--gold);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin-top: 72px;
}

.contact-grid > div {
    min-height: 150px;
    padding: 0 28px 0 0;
}

.contact-grid > div + div {
    padding-left: 28px;
    border-left: 1px solid var(--line);
}

.contact-label {
    margin: 0 0 20px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.contact-grid a,
.contact-grid p:not(.contact-label) {
    color: rgba(255, 255, 255, .74);
    font-size: 15px;
}

.contact-grid a:hover {
    color: var(--white);
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 30px;
    padding: 48px var(--page-pad) 36px;
    color: var(--white);
    background: var(--ink);
    border-top: 1px solid var(--line);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
    font-size: 13px;
    letter-spacing: .12em;
    line-height: 1.25;
    text-transform: uppercase;
}

.footer-brand img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    background: var(--paper-bright);
    border-radius: 50%;
}

.footer-brand strong {
    display: block;
    font-size: 18px;
    letter-spacing: .17em;
}

.site-footer > p {
    justify-self: end;
    margin: 0;
    color: rgba(255, 255, 255, .62);
    text-align: right;
}

.footer-meta {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    padding-top: 24px;
    color: rgba(255, 255, 255, .45);
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

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

.mobile-call {
    display: none;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

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

@media (max-width: 1180px) {
    .site-header {
        grid-template-columns: 1fr auto auto;
    }

    .main-navigation {
        gap: 18px;
    }

    .hero-content {
        grid-template-columns: minmax(0, 1fr) minmax(260px, .48fr);
    }

    .hero h1 {
        font-size: clamp(66px, 9.8vw, 116px);
    }

    .professional-card {
        gap: 60px;
    }

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

    .location-grid article:nth-child(3) {
        border-top: 1px solid var(--dark-line);
        border-left: 0;
    }

    .location-grid article:nth-child(4) {
        border-top: 1px solid var(--dark-line);
    }
}

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

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

    .header-contact {
        display: none;
    }

    .menu-toggle {
        position: relative;
        z-index: 3;
        display: grid;
        grid-template-columns: 28px auto;
        align-items: center;
        column-gap: 10px;
        width: 82px;
        padding: 8px 0;
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .menu-toggle span {
        grid-column: 1;
        display: block;
        width: 28px;
        height: 1px;
        background: currentColor;
        transition: transform .25s ease, opacity .25s ease;
    }

    .menu-toggle span:nth-child(1) { grid-row: 1; transform: translateY(-5px); }
    .menu-toggle span:nth-child(2) { grid-row: 1; }
    .menu-toggle span:nth-child(3) { grid-row: 1; transform: translateY(5px); }

    .menu-toggle b {
        grid-row: 1;
        grid-column: 2;
        font-size: 11px;
        font-weight: 750;
        letter-spacing: .07em;
        text-transform: uppercase;
    }

    .menu-open .menu-toggle span:nth-child(1) { transform: rotate(45deg); }
    .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
    .menu-open .menu-toggle span:nth-child(3) { transform: rotate(-45deg); }

    .main-navigation {
        position: fixed;
        z-index: 2;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;
        padding: 110px var(--page-pad) 60px;
        visibility: hidden;
        opacity: 0;
        background: var(--ink);
        transform: translateY(-18px);
        transition: opacity .3s ease, visibility .3s ease, transform .3s var(--ease);
    }

    .menu-open .main-navigation {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .main-navigation a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--line);
        font-size: clamp(32px, 8vw, 62px);
        font-weight: 500;
        letter-spacing: -.045em;
    }

    .hero-content {
        grid-template-columns: 1fr;
        align-content: end;
        gap: 30px;
        padding-bottom: 180px;
    }

    .hero-copy {
        max-width: 600px;
    }

    .hero-index,
    .scroll-cue {
        display: none;
    }

    .hero-controls {
        right: var(--page-pad);
        max-width: none;
    }

    .identity-grid,
    .expertise-head,
    .professionals-head,
    .locations-head {
        grid-template-columns: 1fr;
    }

    .identity-copy,
    .expertise-head > p,
    .professionals-head > p,
    .locations-head > p {
        max-width: 680px;
    }

    .professional-card,
    .international {
        grid-template-columns: 1fr;
    }

    .professional-card {
        gap: 45px;
    }

    .professional-card--reverse figure {
        grid-row: 1;
        grid-column: 1;
    }

    .professional-card--reverse .professional-copy {
        grid-row: 2;
        grid-column: 1;
    }

    .professional-card figure {
        min-height: 720px;
    }

    .international-image {
        min-height: 72vw;
        max-height: 780px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 38px;
    }

    .contact-grid > div:nth-child(3) {
        padding-top: 30px;
        padding-left: 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 64px;
        font-size: 16px;
    }

    .brand-mark {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
    }

    .brand-mark img {
        width: 42px;
        height: 42px;
    }

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

    .brand-name strong {
        font-size: 14px;
    }

    .hero-frame {
        clip-path: none;
    }

    .hero-shade {
        background:
            linear-gradient(90deg, rgba(7, 17, 27, .95), rgba(7, 17, 27, .42)),
            linear-gradient(0deg, rgba(7, 17, 27, .96) 0%, transparent 58%);
    }

    .hero-monogram {
        right: -12vw;
        font-size: 115vw;
    }

    .hero-content {
        min-height: 100svh;
        padding: 145px var(--page-pad) 182px;
    }

    .hero-eyebrow {
        top: 118px;
    }

    .hero h1 {
        font-size: clamp(56px, 18.5vw, 84px);
        line-height: .88;
    }

    .hero-copy > p {
        margin-bottom: 25px;
        font-size: 16px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .button--primary {
        width: 100%;
    }

    .hero-controls {
        bottom: 22px;
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-controls button {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 12px 8px;
        font-size: 11px;
    }

    .section-kicker {
        grid-template-columns: 36px auto 1fr;
        gap: 12px;
    }

    .identity h2,
    .expertise h2,
    .professionals h2,
    .international h2,
    .locations h2 {
        font-size: clamp(46px, 15vw, 72px);
        line-height: .91;
    }

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

    .metrics article {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: end;
        min-height: 150px;
        padding: 28px 0;
    }

    .metrics article + article {
        border-top: 1px solid var(--dark-line);
        border-left: 0;
    }

    .metrics strong {
        margin: 0;
    }

    .expertise-item button {
        grid-template-columns: 38px 1fr 38px;
    }

    .expertise-item button strong {
        font-size: clamp(27px, 8.5vw, 42px);
    }

    .expertise-item button i {
        width: 34px;
        height: 34px;
    }

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

    .professional-card figure {
        min-height: 118vw;
    }

    .professional-copy h3 {
        font-size: clamp(40px, 13vw, 60px);
    }

    .international {
        min-height: auto;
    }

    .international-image {
        min-height: 95vw;
    }

    .international-content {
        padding: 70px var(--page-pad) 85px;
    }

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

    .location-grid article {
        min-height: 220px;
        padding: 27px 0;
    }

    .location-grid article + article,
    .location-grid article:nth-child(3),
    .location-grid article:nth-child(4) {
        border-top: 1px solid var(--dark-line);
        border-left: 0;
    }

    .location-grid h3 {
        margin-top: 35px;
    }

    .contact {
        padding-top: 90px;
    }

    .contact h2 {
        font-size: clamp(58px, 18vw, 88px);
        line-height: .88;
    }

    .contact-email {
        align-items: flex-start;
        overflow-wrap: anywhere;
        font-size: 20px;
    }

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

    .contact-grid > div,
    .contact-grid > div + div,
    .contact-grid > div:nth-child(3) {
        min-height: 0;
        padding: 28px 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .site-footer {
        grid-template-columns: 1fr;
        padding-bottom: 30px;
    }

    .site-footer > p {
        justify-self: start;
        text-align: left;
    }

    .footer-meta {
        flex-direction: column;
    }

    .mobile-call {
        position: fixed;
        z-index: 110;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 64px;
        padding: 10px var(--page-pad);
        color: var(--ink);
        background: var(--gold);
        font-size: 12px;
    }

    .mobile-call span {
        text-transform: uppercase;
        letter-spacing: .08em;
    }

    .mobile-call strong {
        font-size: 13px;
    }
}

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

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

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