:root {
    --ink: #1b1b1d;
    --ink-soft: #242426;
    --paper: #fff;
    --cream: #f7f7f7;
    --cream-deep: #ececed;
    --gold: #1b1b1d;
    --gold-light: #e5e5e6;
    --muted: #696a6e;
    --line: rgba(27, 27, 29, .14);
    --serif: "Montserrat", system-ui, -apple-system, sans-serif;
    --sans: "Montserrat", system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
}

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

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

body.menu-open {
    overflow: hidden;
}

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

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

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

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -.035em;
}

h1 {
    font-size: clamp(3rem, 6vw, 6.25rem);
    line-height: 1.02;
}

h2 {
    font-size: clamp(2.25rem, 3.8vw, 4.15rem);
    line-height: 1.08;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.13;
}

h1,
h2 {
    max-width: 445px;
}

p {
    margin-top: 0;
}

.container-xxl {
    max-width: 1440px;
    padding-right: clamp(24px, 4vw, 64px);
    padding-left: clamp(24px, 4vw, 64px);
}

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    transform: translateY(-150%);
    border-radius: 4px;
    background: #fff;
    color: #111;
    transition: transform .2s ease;
}

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

.site-header {
    position: absolute;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    color: #fff;
    transition: background .3s ease, color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.is-inner .site-header,
.site-header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, .96);
    color: var(--ink);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
    backdrop-filter: blur(14px);
}

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

.header-inner {
    display: flex;
    min-height: 98px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    color: inherit;
}

.brand:hover {
    color: inherit;
}

.brand-logo {
    display: block;
    width: auto;
    height: 54px;
    object-fit: contain;
    transition: filter .25s ease;
}

.is-inner .site-header .brand-logo,
.site-header.scrolled .brand-logo {
    filter: brightness(0);
}

.brand-mark {
    display: inline-flex;
    width: 32px;
    height: 32px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-rule {
    width: 24px;
    height: 1px;
    background: currentColor;
}

.brand-rule:first-child::before,
.brand-rule:first-child::after {
    display: block;
    width: 5px;
    height: 5px;
    margin-top: -2px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.brand-rule:first-child {
    display: flex;
    justify-content: space-between;
}

.brand-pillar {
    width: 2px;
    height: 19px;
    background: currentColor;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 400;
    letter-spacing: .08em;
}

.brand-copy small {
    margin-top: 5px;
    font-size: .55rem;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.desktop-nav {
    align-items: center;
    gap: clamp(18px, 2.1vw, 34px);
}

.desktop-nav a {
    position: relative;
    padding: 38px 0 35px;
    font-size: .78rem;
    font-weight: 500;
}

.desktop-nav a::after {
    position: absolute;
    bottom: 29px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    content: "";
    transition: width .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.header-phone {
    flex-direction: column;
    line-height: 1.2;
}

.header-phone .mini-label {
    margin-bottom: 5px;
    opacity: .55;
    font-size: .57rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.header-phone span:last-child {
    font-size: .8rem;
    font-weight: 600;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 22px;
    border: 0;
    border-radius: 1px;
    font-size: .78rem;
    font-weight: 600;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-gold:hover {
    background: #d7d7d9;
    color: var(--ink);
}

.btn-dark {
    background: var(--ink);
    color: #fff;
}

.btn-dark:hover {
    background: #353538;
    color: #fff;
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
}

.btn-outline-light:hover {
    border-color: var(--gold-light);
    background: var(--gold-light);
    color: var(--ink);
}

.btn-lg {
    min-height: 58px;
    padding: 15px 27px;
}

.menu-toggle,
.menu-close {
    position: relative;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: currentColor;
}

.is-inner .menu-toggle,
.site-header.scrolled .menu-toggle {
    background: var(--cream);
}

.menu-toggle span:not(.visually-hidden),
.menu-close span {
    position: absolute;
    top: 22px;
    left: 14px;
    width: 20px;
    height: 1px;
    background: currentColor;
}

.menu-toggle span:last-child {
    top: 28px;
    width: 14px;
}

.mobile-menu {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    padding: 26px clamp(24px, 6vw, 64px);
    transform: translateX(100%);
    background: var(--ink);
    color: #fff;
    visibility: hidden;
    transition: transform .45s cubic-bezier(.77, 0, .18, 1), visibility .45s;
}

.mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-head {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
}

.menu-close {
    border: 1px solid rgba(255, 255, 255, .23);
}

.menu-close span:first-child {
    transform: rotate(45deg);
}

.menu-close span:last-child {
    transform: rotate(-45deg);
}

.mobile-menu-nav {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    justify-content: center;
    padding: 52px 0;
}

.mobile-menu-nav a {
    display: flex;
    width: 100%;
    align-items: baseline;
    gap: 20px;
    padding: 12px 0;
    color: rgba(255, 255, 255, .65);
    font-family: var(--serif);
    font-size: clamp(2.25rem, 10vw, 4rem);
    line-height: 1.05;
}

.mobile-menu-nav a span {
    width: 22px;
    color: var(--gold-light);
    font-family: var(--sans);
    font-size: .62rem;
    letter-spacing: .13em;
}

.mobile-menu-nav a.active,
.mobile-menu-nav a:hover {
    color: #fff;
}

.mobile-menu-footer {
    display: grid;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    gap: 3px;
    font-size: .87rem;
}

.mobile-menu-footer p {
    margin-bottom: 9px;
    color: var(--gold-light);
    font-size: .62rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.mobile-menu-footer address {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .5);
    line-height: 1.55;
}

.hero {
    position: relative;
    display: flex;
    min-height: min(940px, 100svh);
    align-items: flex-end;
    overflow: hidden;
    padding: 200px 0 115px;
    background: var(--ink);
    color: #fff;
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-image {
    background: url("assets/hero-legal.webp") center center / cover no-repeat;
    transform: scale(1.02);
    animation: heroZoom 12s ease-out both;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(11, 11, 12, .97) 0%, rgba(11, 11, 12, .78) 40%, rgba(11, 11, 12, .16) 78%),
        linear-gradient(0deg, rgba(11, 11, 12, .65), transparent 55%);
}

@keyframes heroZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: #56575b;
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 20px;
    height: 1px;
    background: currentColor;
    content: "";
}

.eyebrow-light {
    color: var(--gold-light);
}

.hero h1 {
    max-width: 1000px;
    font-size: clamp(3.65rem, 6.6vw, 6.85rem);
    font-weight: 500;
}

.hero-lead {
    max-width: 630px;
    margin: 34px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: clamp(1rem, 1.6vw, 1.24rem);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(27, 27, 29, .35);
    font-size: .78rem;
    font-weight: 600;
    transition: gap .25s ease, border-color .25s ease;
}

.text-link:hover {
    gap: 18px;
    border-color: var(--gold);
}

.text-link-light {
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
}

.text-link-light:hover {
    border-color: var(--gold-light);
    color: #fff;
}

.hero-note {
    padding: 25px 0 4px 28px;
    border-left: 1px solid rgba(255, 255, 255, .22);
}

.hero-note-number {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 2.4rem;
}

.hero-note p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: .78rem;
    line-height: 1.6;
}

.hero-scroll {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: rotate(90deg) translateX(100%);
    transform-origin: right bottom;
    color: rgba(255, 255, 255, .42);
    font-size: .54rem;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero-scroll span {
    width: 45px;
    height: 1px;
    background: currentColor;
}

.trust-strip {
    background: var(--cream);
}

.trust-item {
    display: flex;
    min-height: 138px;
    align-items: center;
    gap: 20px;
    padding: 28px clamp(20px, 3vw, 45px);
    border-right: 1px solid var(--line);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item > span {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.7rem;
}

.trust-item div {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    margin-bottom: 5px;
    font-family: var(--serif);
    font-size: 1.22rem;
    font-weight: 400;
}

.trust-item small {
    color: var(--muted);
    font-size: .72rem;
}

.section {
    padding: clamp(95px, 10vw, 165px) 0;
}

.section-cream {
    background: var(--cream);
}

.section-head h2 {
    font-size: clamp(2.45rem, 3.9vw, 4.15rem);
}

.section-copy,
.large-copy {
    color: var(--muted);
    font-size: 1.02rem;
}

.large-copy {
    margin: 34px 0 24px;
    color: var(--ink);
    font-size: 1.12rem;
    line-height: 1.75;
}

.services-scroller {
    display: grid;
    grid-template-columns: repeat(5, minmax(260px, 1fr));
    gap: 15px;
}

.service-card {
    display: flex;
    min-height: 385px;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--line);
    background: #fff;
    transition: transform .3s ease, background .3s ease, color .3s ease;
}

.service-card:hover,
.service-card.featured {
    transform: translateY(-8px);
    background: var(--ink);
    color: #fff;
}

.service-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.service-number {
    color: var(--muted);
    font-size: .64rem;
    letter-spacing: .16em;
}

.service-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--line);
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.35rem;
}

.service-card:hover .service-icon,
.service-card.featured .service-icon {
    border-color: rgba(255, 255, 255, .2);
}

.service-card h3 {
    margin: 65px 0 17px;
}

.service-card p {
    color: var(--muted);
    font-size: .78rem;
}

.service-card:hover p,
.service-card.featured p {
    color: rgba(255, 255, 255, .55);
}

.service-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: .7rem;
    font-weight: 600;
}

.service-card:hover a,
.service-card.featured a {
    border-color: rgba(255, 255, 255, .14);
}

.about-visual {
    position: relative;
    padding: 0 0 45px 40px;
}

.about-visual::before {
    position: absolute;
    top: -22px;
    right: -22px;
    width: 48%;
    height: 65%;
    border: 1px solid rgba(27, 27, 29, .22);
    content: "";
}

.about-visual img {
    position: relative;
    width: 100%;
    min-height: 600px;
    object-fit: cover;
}

.experience-card {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    width: 250px;
    min-height: 150px;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: var(--gold-light);
}

.experience-card strong {
    font-family: var(--serif);
    font-size: 3.1rem;
    font-weight: 400;
    line-height: 1;
}

.experience-card span {
    font-size: .67rem;
    line-height: 1.45;
}

.about-preview h2 {
    font-size: clamp(2.4rem, 3.9vw, 4.15rem);
}

.about-preview .col-lg-5 > p:not(.eyebrow):not(.large-copy) {
    color: var(--muted);
}

.about-signature {
    display: flex;
    margin-top: 35px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.about-signature > span {
    color: #77787b;
    font-family: var(--serif);
    font-size: 2rem;
    font-style: italic;
}

.process-section {
    background: var(--ink);
    color: rgba(255, 255, 255, .6);
}

.process-intro {
    position: sticky;
    top: 145px;
}

.process-intro h2 {
    margin-bottom: 32px;
}

.process-intro > p:last-of-type {
    max-width: 450px;
}

.process-list {
    position: relative;
}

.process-list::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 21px;
    width: 1px;
    background: rgba(255, 255, 255, .15);
    content: "";
}

.process-item {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 30px;
    padding-bottom: 26px;
}

.process-item > span {
    z-index: 1;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--ink);
    font-size: .62rem;
    font-weight: 600;
}

.process-item > div {
    padding: 29px 32px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: var(--ink-soft);
}

.process-item h3 {
    margin-bottom: 13px;
    color: #fff;
    font-size: 1.45rem;
}

.process-item p {
    margin: 0;
    font-size: .78rem;
}

.section-title-narrow {
    max-width: 690px;
    margin-right: auto;
    margin-left: auto;
}

.section-title-narrow .eyebrow {
    justify-content: center;
}

.team-card {
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.team-image {
    position: relative;
    height: 570px;
    overflow: hidden;
    background: #e8e8e9;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .6s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.025);
}

.team-image > span,
.team-profile-image > span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 5px 8px;
    background: rgba(27, 27, 29, .72);
    color: rgba(255, 255, 255, .7);
    font-size: .52rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.team-card-copy {
    position: relative;
    padding: 32px;
}

.team-card-copy > p {
    margin-bottom: 8px;
    color: #56575b;
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.team-card-copy h3 {
    margin-bottom: 12px;
    font-size: 2.2rem;
}

.team-card-copy small {
    display: block;
    max-width: 390px;
    color: var(--muted);
    font-size: .77rem;
    line-height: 1.65;
}

.team-card-copy a {
    display: inline-flex;
    margin-top: 22px;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    font-size: .7rem;
    font-weight: 600;
}

.contact-banner {
    padding: clamp(75px, 8vw, 120px) 0;
    background: #222224;
    color: rgba(255, 255, 255, .6);
}

.contact-banner h2 {
    font-size: clamp(2.45rem, 4.3vw, 4.5rem);
}

.contact-banner p {
    font-size: .9rem;
}

.contact-banner-compact h2 {
    font-size: clamp(2.4rem, 4vw, 4rem);
}

.inner-hero {
    padding: 230px 0 105px;
    background: var(--ink);
    color: #fff;
}

.inner-hero h1 {
    max-width: 1000px;
    font-size: clamp(3.25rem, 5.8vw, 6rem);
    font-weight: 500;
}

.inner-hero .col-lg-4 > p {
    margin: 0;
    padding-left: 26px;
    border-left: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .6);
    font-size: .92rem;
}

.service-row {
    padding: 70px 0;
    border-top: 1px solid var(--line);
}

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

.service-row-meta {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.service-row-meta span {
    color: #77787b;
    font-size: .68rem;
    letter-spacing: .15em;
}

.service-row h2 {
    font-size: clamp(2.3rem, 3.2vw, 3.5rem);
}

.service-lead {
    margin-top: 18px;
    color: #56575b;
    font-size: .8rem;
}

.service-row-description > p {
    color: var(--muted);
    font-size: .94rem;
}

.service-row-description {
    padding-left: clamp(64px, 7vw, 110px);
}

@media (max-width: 991.98px) {
    .service-row-description {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
}

/* Square, optically centered mobile-menu close button */
.menu-close {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 0 !important;
}

.menu-close span {
    top: 50%;
    left: 50%;
    width: 20px;
    margin: 0;
    transform-origin: center;
}

.menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.team-profile {
    padding: 40px 0 120px;
}

.team-profile + .team-profile {
    padding-top: 120px;
    border-top: 1px solid var(--line);
}

.team-profile-image {
    position: relative;
    height: 710px;
    overflow: hidden;
    background: var(--cream);
}

.team-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-profile h2 {
    margin-bottom: 28px;
}

.team-profile .profile-quote {
    margin-bottom: 28px;
    padding-left: 24px;
    border-left: 2px solid var(--gold);
    color: #353537;
    font-family: var(--serif);
    font-size: 1.55rem;
    line-height: 1.45;
}

.team-profile .col-lg-6 > p:not(.eyebrow):not(.profile-quote) {
    color: var(--muted);
    font-size: .93rem;
}

.team-profile-reverse .col-lg-6 {
    padding-right: clamp(20px, 5vw, 90px);
}

.values-section {
    padding: clamp(85px, 9vw, 145px) 0;
    background: var(--ink);
    color: rgba(255, 255, 255, .55);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.values-grid article {
    padding: 32px 28px;
    border-right: 1px solid rgba(255, 255, 255, .14);
}

.values-grid article:last-child {
    border-right: 0;
}

.values-grid span {
    color: var(--gold-light);
    font-size: .62rem;
}

.values-grid h3 {
    margin: 40px 0 16px;
    color: #fff;
}

.values-grid p {
    margin: 0;
    font-size: .76rem;
}

.contact-list {
    margin: 48px 0 42px;
    border-top: 1px solid var(--line);
}

.contact-list > div {
    padding: 25px 0;
    border-bottom: 1px solid var(--line);
}

.contact-list span {
    display: block;
    margin-bottom: 12px;
    color: #56575b;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    white-space: nowrap;
    text-transform: uppercase;
}

.contact-list a,
.contact-list address {
    display: block;
    margin: 0;
    font-family: var(--serif);
    font-size: 1.24rem;
    line-height: 1.45;
}

.contact-list a:hover {
    color: #111;
}

.contact-form-wrap {
    padding: 42px 0 0;
    border-top: 2px solid #0b0b0c;
    background: #fff;
}

.contact-form-wrap h2 {
    margin-bottom: 34px;
    font-size: clamp(2rem, 2.4vw, 2.4rem);
}

.contact-form-wrap form .row {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 20px;
}

.contact-form-wrap label {
    display: block;
    margin-bottom: 8px;
    color: #353537;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
}

.form-control,
.form-select {
    min-height: 54px;
    padding: 13px 15px;
    border: 1px solid #d0d0d2;
    border-radius: 0;
    background-color: #fafafa;
    color: var(--ink);
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #0b0b0c;
    background: #fff;
    box-shadow: none;
}

textarea.form-control {
    min-height: 132px;
    resize: vertical;
}

.form-check {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    padding-top: 2px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    margin-top: 2px;
    border-color: #77787b;
    border-radius: 0 !important;
}

.form-check-input:checked {
    border-color: var(--ink);
    background-color: var(--ink);
}

.form-check-label {
    margin: 0 !important;
    color: #5f6064 !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    line-height: 1.55;
}

.contact-form-wrap .btn {
    min-width: 210px;
    min-height: 54px;
    padding: 13px 22px;
    font-size: 1rem;
}

.form-success {
    display: flex;
    min-height: 430px;
    align-items: flex-start;
    gap: 25px;
    padding-top: 50px;
}

.form-success > span {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--gold-light);
}

.form-success h2 {
    margin-bottom: 18px;
}

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

.document-card {
    display: grid;
    min-height: 260px;
    grid-template-columns: 38px 1fr 44px;
    align-items: start;
    gap: 24px;
    padding: 38px;
    border: 1px solid var(--line);
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.document-card:hover {
    transform: translateY(-5px);
    background: var(--ink);
    color: #fff;
}

.document-index {
    color: #77787b;
    font-size: .65rem;
}

.document-card small {
    color: #56575b;
    font-size: .57rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.document-card h2 {
    margin-top: 38px;
    font-size: clamp(1.9rem, 3vw, 3rem);
}

.document-arrow {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
}

.document-card:hover .document-arrow {
    border-color: rgba(255, 255, 255, .2);
    background: var(--gold-light);
    color: var(--ink);
}

.document-note {
    display: flex;
    margin-top: 60px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.document-note p {
    margin: 0;
    color: var(--muted);
}

.not-found {
    display: grid;
    min-height: 80vh;
    padding: 180px 0 100px;
    place-items: center;
    background: var(--ink);
    color: rgba(255, 255, 255, .6);
}

.not-found .eyebrow {
    justify-content: center;
}

.not-found h1 {
    margin-bottom: 30px;
    color: #fff;
}

.not-found .btn {
    margin-top: 20px;
}

.site-footer {
    padding: 90px 0 0;
    background: #151516;
    color: rgba(255, 255, 255, .52);
}

.brand-light {
    color: #fff;
}

.brand-light:hover {
    color: #fff;
}

.footer-intro {
    max-width: 380px;
    margin-top: 26px;
    font-size: .79rem;
}

.site-footer .footer-title {
    margin-bottom: 24px;
    color: var(--gold-light);
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.site-footer .col-6 > a,
.site-footer .col-lg-3 > a {
    display: block;
    width: fit-content;
    margin-bottom: 9px;
    font-size: .77rem;
    transition: color .2s ease;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer address {
    margin-bottom: 18px;
    font-size: .8rem;
    font-style: normal;
}

.footer-direction {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 40px;
    align-items: center;
    gap: 30px;
    margin-top: 75px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .62rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom > div {
    display: flex;
    gap: 25px;
}

.back-top {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--ink) !important;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s ease;
}

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

@media (max-width: 1199.98px) {
    .services-scroller {
        grid-template-columns: repeat(5, minmax(280px, 310px));
        overflow-x: auto;
        margin-right: calc(clamp(24px, 4vw, 64px) * -1);
        padding: 10px clamp(24px, 4vw, 64px) 25px 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .service-card {
        scroll-snap-align: start;
    }
}

@media (max-width: 991.98px) {
    h1 {
        line-height: 1;
    }

    .header-inner {
        min-height: 82px;
    }

    .hero {
        min-height: 860px;
        padding: 155px 0 95px;
    }

    .hero-image {
        background-position: 62% center;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(11, 11, 12, .96), rgba(11, 11, 12, .63)), linear-gradient(0deg, rgba(11, 11, 12, .7), transparent 60%);
    }

    .hero-note {
        max-width: 350px;
    }

    .trust-item {
        min-height: 115px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .about-visual img {
        min-height: 500px;
    }

    .process-intro {
        position: static;
    }

    .team-profile-image {
        height: 660px;
    }

    .team-profile-reverse .col-lg-6 {
        padding-right: calc(var(--bs-gutter-x) * .5);
    }

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

    .values-grid article {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .inner-hero {
        padding: 180px 0 80px;
    }

    .inner-hero .col-lg-4 > p {
        max-width: 620px;
    }

    .footer-bottom {
        grid-template-columns: 1fr 40px;
    }

    .footer-bottom > div {
        display: none;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .brand-copy strong {
        font-size: 1.22rem;
    }

    .brand-copy small {
        font-size: .47rem;
    }

    .hero {
        min-height: 790px;
        padding-bottom: 75px;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(2.65rem, 10.8vw, 4.1rem);
    }

    .hero-lead {
        max-width: 93%;
    }

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

    .hero-scroll {
        display: none;
    }

    .hero-note {
        display: none;
    }

    .section {
        padding: 90px 0;
    }

    .section-head .text-lg-end {
        text-align: left;
    }

    .service-card {
        min-height: 350px;
    }

    .about-visual {
        padding: 0 0 35px 22px;
    }

    .about-visual::before {
        top: -12px;
        right: -12px;
    }

    .about-visual img {
        min-height: 420px;
    }

    .experience-card {
        width: 210px;
        min-height: 125px;
        padding: 22px;
    }

    .experience-card strong {
        font-size: 2.55rem;
    }

    .about-signature {
        align-items: flex-start;
        flex-direction: column;
    }

    .process-item {
        gap: 14px;
    }

    .process-item > div {
        padding: 24px 21px;
    }

    .team-image {
        height: 500px;
    }

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

    .inner-hero {
        padding: 155px 0 70px;
    }

    .inner-hero h1 {
        font-size: clamp(2.9rem, 12vw, 4.6rem);
    }

    .inner-hero .col-lg-4 > p {
        padding-left: 18px;
    }

    .service-row {
        padding: 55px 0;
    }

    .service-row-meta {
        justify-content: space-between;
    }

    .team-profile {
        padding-bottom: 85px;
    }

    .team-profile + .team-profile {
        padding-top: 85px;
    }

    .team-profile-image {
        height: 560px;
    }

    .contact-form-wrap {
        margin-right: 0;
        margin-left: 0;
        padding-top: 32px;
    }

    .document-card {
        min-height: 220px;
        grid-template-columns: 28px 1fr 40px;
        gap: 16px;
        padding: 25px;
    }

    .document-card h2 {
        margin-top: 27px;
    }

    .document-note {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer {
        padding-top: 70px;
    }

    .footer-bottom {
        margin-top: 55px;
    }
}

/* Compact document list */
.documents-list {
    border-top: 1px solid #d5d5d7;
}

.document-row {
    display: grid;
    min-height: 125px;
    grid-template-columns: 55px minmax(280px, 1.45fr) minmax(210px, .75fr) auto;
    align-items: center;
    gap: 30px;
    padding: 28px 0;
    border-bottom: 1px solid #d5d5d7;
}

.document-row .document-index {
    color: #98999c;
    font-size: .8rem;
}

.document-row-title small {
    display: block;
    margin-bottom: 8px;
    color: #77787b;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.document-row-title h2 {
    max-width: none !important;
    margin: 0;
    font-size: 1.35rem !important;
    font-weight: 500 !important;
    line-height: 1.3;
}

.document-row > p {
    margin: 0;
    color: #66676b;
    font-size: .95rem;
}

.document-row > a {
    display: inline-flex;
    min-width: 130px;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 12px 16px;
    border: 0;
    background: #0b0b0c;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .document-row {
        min-height: 0;
        grid-template-columns: 34px 1fr auto;
        gap: 12px 16px;
        padding: 25px 0;
    }

    .document-row .document-index {
        grid-row: 1 / 3;
        align-self: start;
        padding-top: 4px;
    }

    .document-row-title {
        grid-column: 2 / -1;
    }

    .document-row-title h2 {
        font-size: 1.15rem !important;
    }

    .document-row > p {
        grid-column: 2;
        font-size: .85rem;
    }

    .document-row > a {
        grid-column: 3;
        font-size: .85rem;
    }
}

/* Motion disabled */
html {
    scroll-behavior: auto !important;
}

*,
*::before,
*::after {
    animation: none !important;
    transition: none !important;
}

.reveal,
.reveal.visible {
    opacity: 1 !important;
    transform: none !important;
}

/* Minimal split homepage */
.is-home .site-header:not(.scrolled) {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    background: transparent;
    color: #fff;
    box-shadow: none;
    backdrop-filter: none;
}

.is-home .site-header:not(.scrolled) .brand-logo {
    filter: none;
}

.is-home .site-header:not(.scrolled) .desktop-nav a {
    color: #fff;
}

.is-home .site-header:not(.scrolled) .lp-header-button {
    background: #fff;
    color: #0b0b0c;
}

.minimal-hero {
    position: relative;
    min-height: max(780px, 100svh);
    overflow: hidden;
    background: #0a1119;
    color: #fff;
}

.minimal-hero-bg,
.minimal-hero-shade {
    position: absolute;
    inset: 0;
}

.minimal-hero-bg {
    background: url("assets/legal-architecture-hero.webp") center / cover no-repeat;
}

.minimal-hero-shade {
    background:
        linear-gradient(90deg, rgba(4, 9, 15, .9) 0%, rgba(4, 9, 15, .72) 31%, rgba(4, 9, 15, .2) 64%, rgba(4, 9, 15, .08) 100%),
        linear-gradient(0deg, rgba(4, 9, 15, .52) 0%, transparent 42%);
}

.minimal-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: max(780px, 100svh);
    flex-direction: column;
    justify-content: center;
    padding-top: 150px;
    padding-bottom: 82px;
}

.minimal-hero-copy {
    max-width: 680px;
}

.minimal-hero-copy h1 {
    max-width: 560px !important;
    color: #fff;
    font-size: clamp(3.5rem, 5vw, 4.8rem) !important;
    font-weight: 500 !important;
    line-height: 1.03;
    letter-spacing: -.055em;
}

.minimal-hero-copy > p {
    max-width: 560px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: 1.12rem;
    line-height: 1.7;
}

.minimal-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 36px;
}

.minimal-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
    padding: 14px 22px;
    border: 1px solid transparent;
    font-size: .94rem;
    font-weight: 600;
}

.minimal-button-light {
    background: #fff;
    color: #0b0b0c;
}

.minimal-button-dark {
    background: #0b0b0c;
    color: #fff;
}

.minimal-button-outline {
    border-color: #9c9c9e;
    background: transparent;
    color: #111;
}

.minimal-text-link {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .65);
    color: #fff;
    font-size: .94rem;
    font-weight: 500;
}

.minimal-hero-foot {
    position: absolute;
    right: clamp(24px, 4.45vw, 64px);
    bottom: 32px;
    left: clamp(24px, 4.45vw, 64px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .68);
    font-size: .88rem;
}

.minimal-hero-foot a {
    color: #fff;
}

.minimal-intro {
    padding: clamp(100px, 10vw, 150px) 0;
    background: #fff;
}

.minimal-intro-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: start;
    gap: clamp(70px, 9vw, 150px);
}

.minimal-intro h2,
.minimal-split-copy h2,
.minimal-contact h2 {
    max-width: 520px !important;
    font-size: clamp(2.5rem, 3.4vw, 3.4rem) !important;
    font-weight: 500 !important;
    line-height: 1.08;
    letter-spacing: -.05em;
}

.minimal-intro-grid > div > p {
    max-width: 590px;
    margin: 4px 0 0;
    color: #5f6064;
    font-size: 1.05rem;
    line-height: 1.8;
}

.minimal-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid #d7d7d9;
}

.minimal-facts span {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #6f7074;
    font-size: .9rem;
}

.minimal-facts strong {
    color: #111;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
}

.minimal-split {
    display: grid;
    min-height: 760px;
    grid-template-columns: 1fr 1fr;
    background: #fff;
}

.minimal-split:nth-of-type(even) {
    background: #fff;
}

.minimal-split-media {
    min-width: 0;
    min-height: 760px;
    overflow: hidden;
    background: #d8d8d6;
}

.minimal-split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.minimal-split-services .minimal-split-media img {
    object-position: 56% center;
}

.minimal-split-media-dark img {
    object-position: 63% center;
}

.minimal-split-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 7vw, 110px);
    background: #fff;
}

.minimal-split-copy {
    width: 100%;
    max-width: 550px;
}

.minimal-split-copy > p {
    max-width: 520px;
    margin: 26px 0 0;
    color: #626367;
    font-size: 1rem;
    line-height: 1.8;
}

.minimal-service-list {
    margin: 36px 0 30px;
    border-top: 1px solid #cfcfd1;
}

.minimal-service-list a {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid #cfcfd1;
    font-size: 1rem;
    font-weight: 500;
}

.minimal-points {
    display: grid;
    margin: 32px 0 34px;
    padding: 0;
    gap: 0;
    list-style: none;
}

.minimal-points li {
    padding: 8px 0;
    color: #424347;
    font-size: 1rem;
}

.minimal-points li::before {
    display: none;
    content: none;
}

.minimal-team-visual {
    display: grid;
    min-width: 0;
    min-height: 760px;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    background: #d8d8d6;
}

.minimal-team-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(.72);
}

.minimal-lawyers {
    margin: 34px 0;
    border-top: 1px solid #cfcfd1;
}

.minimal-lawyers a {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 18px 0;
    border-bottom: 1px solid #cfcfd1;
}

.minimal-lawyers strong {
    font-size: 1rem;
    font-weight: 600;
}

.minimal-lawyers span {
    color: #6f7074;
    font-size: .9rem;
}

.minimal-contact {
    padding: clamp(100px, 10vw, 150px) 0;
    background: #0a0a0b;
    color: #fff;
}

.minimal-contact-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: end;
    gap: clamp(70px, 10vw, 160px);
}

.minimal-contact h2 {
    color: #fff;
}

.minimal-contact-inner > div p {
    max-width: 470px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .65);
    font-size: 1rem;
}

@media (max-width: 991.98px) {
    .is-home .site-header:not(.scrolled) .menu-toggle {
        background: rgba(255, 255, 255, .13) !important;
        color: #fff;
    }

    .is-home .site-header:not(.scrolled) .menu-toggle span:not(.visually-hidden) {
        background: #fff;
    }

    .minimal-hero,
    .minimal-hero-inner {
        min-height: 820px;
    }

    .minimal-hero-bg {
        background-position: 60% center;
    }

    .minimal-hero-shade {
        background: linear-gradient(90deg, rgba(4, 9, 15, .92), rgba(4, 9, 15, .4));
    }

    .minimal-intro-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .minimal-split {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .minimal-split-reverse .minimal-split-media {
        order: -1;
    }

    .minimal-split-media,
    .minimal-team-visual {
        min-height: 620px;
    }

    .minimal-split-content {
        min-height: 620px;
        padding: 72px clamp(28px, 7vw, 70px);
    }

    .minimal-contact-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 767.98px) {
    .minimal-hero,
    .minimal-hero-inner {
        min-height: 760px;
    }

    .minimal-hero-inner {
        justify-content: flex-end;
        padding-top: 120px;
        padding-bottom: 115px;
    }

    .minimal-hero-bg {
        background-position: 63% center;
    }

    .minimal-hero-shade {
        background:
            linear-gradient(90deg, rgba(4, 9, 15, .9), rgba(4, 9, 15, .36)),
            linear-gradient(0deg, rgba(4, 9, 15, .72), transparent 58%);
    }

    .minimal-hero-copy h1 {
        max-width: 410px !important;
        font-size: clamp(2.6rem, 10.5vw, 3.25rem) !important;
    }

    .minimal-hero-copy > p {
        margin-top: 22px;
        font-size: 1rem;
    }

    .minimal-hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
        margin-top: 28px;
    }

    .minimal-button {
        min-height: 52px;
        font-size: .9rem;
    }

    .minimal-hero-foot {
        right: 28px;
        bottom: 24px;
        left: 28px;
        font-size: .75rem;
    }

    .minimal-hero-foot a {
        display: none;
    }

    .minimal-intro {
        padding: 82px 0;
    }

    .minimal-intro h2,
    .minimal-split-copy h2,
    .minimal-contact h2 {
        font-size: clamp(2rem, 8.2vw, 2.65rem) !important;
    }

    .minimal-facts {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .minimal-facts span {
        padding: 16px 0;
        border-bottom: 1px solid #d7d7d9;
    }

    .minimal-split-media {
        min-height: 420px;
    }

    .minimal-split-content {
        min-height: 0;
        padding: 72px 28px;
    }

    .minimal-team-visual {
        min-height: 440px;
    }

    .minimal-contact {
        padding: 82px 0;
    }
}

/* Architectural banners on inner pages */
.is-inner .site-header:not(.scrolled) {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    background: transparent;
    color: #fff;
    box-shadow: none;
    backdrop-filter: none;
}

.is-inner .site-header:not(.scrolled) .brand-logo {
    filter: none;
}

.is-inner .site-header:not(.scrolled) .desktop-nav a {
    color: #fff;
}

.is-inner .site-header:not(.scrolled) .lp-header-button {
    background: #fff;
    color: #0b0b0c;
}

.inner-hero {
    position: relative;
    display: flex;
    min-height: 560px;
    align-items: flex-end;
    overflow: hidden;
    padding: 180px 0 78px;
    background: url("assets/legal-architecture-hero.webp") center 57% / cover no-repeat;
    color: #fff;
}

.inner-hero::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 9, 15, .9) 0%, rgba(4, 9, 15, .62) 43%, rgba(4, 9, 15, .26) 100%),
        linear-gradient(0deg, rgba(4, 9, 15, .52), transparent 65%);
    content: "";
}

.inner-hero > .container-xxl {
    position: relative;
    z-index: 1;
    width: 100%;
}

.inner-hero h1 {
    max-width: 620px !important;
    color: #fff;
    font-size: clamp(2.8rem, 4vw, 3.8rem) !important;
    line-height: 1.08;
}

.inner-hero .col-lg-4 > p {
    margin: 0;
    border-color: rgba(255, 255, 255, .42);
    color: rgba(255, 255, 255, .76);
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .is-inner .site-header:not(.scrolled) .menu-toggle {
        background: rgba(255, 255, 255, .13) !important;
        color: #fff;
    }

    .is-inner .site-header:not(.scrolled) .menu-toggle span:not(.visually-hidden) {
        background: #fff;
    }

    .inner-hero {
        min-height: 520px;
        padding: 155px 0 65px;
        background-position: 61% center;
    }
}

@media (max-width: 767.98px) {
    .inner-hero {
        min-height: 490px;
        padding: 135px 0 55px;
        background-position: 63% center;
    }

    .inner-hero h1 {
        max-width: 410px !important;
        font-size: clamp(2.25rem, 9vw, 2.8rem) !important;
    }

    .inner-hero .col-lg-4 > p {
        margin-top: 10px;
        padding-left: 16px;
        font-size: .94rem;
    }
}

@media (max-width: 480px) {
    .hero h1 br {
        display: none;
    }

    .mobile-menu-nav {
        padding: 45px 0 35px;
    }

    .mobile-menu-nav a {
        font-size: clamp(2rem, 11.5vw, 3rem);
    }

    .team-image,
    .team-profile-image {
        height: 470px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

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

/* 2026 editorial redesign */
:root {
    --lp-black: #0b0b0c;
    --lp-ink: #141416;
    --lp-muted: #6b6b6d;
    --lp-line: #dedede;
    --lp-soft: #f7f7f6;
}

body {
    background: #fff;
    color: var(--lp-ink);
    font-size: 15px;
    line-height: 1.6;
}

.container-xxl {
    max-width: 1320px;
    padding-right: clamp(24px, 4.45vw, 64px);
    padding-left: clamp(24px, 4.45vw, 64px);
}

.site-header,
.is-inner .site-header,
.site-header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, .97);
    color: var(--lp-ink);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .055);
    backdrop-filter: blur(16px);
}

.site-header.header-hidden {
    transform: none;
}

.header-inner {
    min-height: 96px;
}

.site-header .brand-logo {
    height: 49px;
    filter: brightness(0);
}

.mobile-menu .brand-logo,
.site-footer .brand-logo {
    filter: none;
}

.desktop-nav {
    gap: clamp(19px, 2.2vw, 34px);
}

.desktop-nav a {
    padding: 39px 0 35px;
    color: #242426;
    font-size: .7rem;
    font-weight: 500;
}

.desktop-nav a::after {
    bottom: 29px;
    background: var(--lp-black);
}

.lp-header-button {
    min-height: 47px;
    align-items: center;
    justify-content: center;
    padding: 13px 25px;
    background: var(--lp-black);
    color: #fff;
    font-size: .68rem;
    font-weight: 600;
    transition: background .2s ease, transform .2s ease;
}

.lp-header-button:hover {
    transform: translateY(-2px);
    background: #2e2e30;
    color: #fff;
}

.lp-kicker {
    display: block;
    margin: 0 0 20px;
    color: #6d6d70;
    font-size: .56rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.lp-kicker,
.eyebrow {
    display: none !important;
}

.lp-kicker::before {
    display: none;
}

.lp-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 34px;
    padding: 13px 23px;
    border: 1px solid transparent;
    font-size: .67rem;
    font-weight: 600;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.lp-button span {
    font-size: 1rem;
    line-height: 1;
}

.lp-button:hover {
    transform: translateY(-2px);
}

.lp-button-dark {
    background: var(--lp-black);
    color: #fff;
}

.lp-button-dark:hover {
    background: #303032;
    color: #fff;
}

.lp-button-outline {
    border-color: #9a9a9c;
    background: #fff;
    color: var(--lp-black);
}

.lp-button-outline:hover {
    border-color: var(--lp-black);
    background: var(--lp-black);
    color: #fff;
}

.lp-button-light {
    min-width: 265px;
    background: #fff;
    color: var(--lp-black);
}

.lp-button-light:hover {
    background: #eaeaea;
    color: var(--lp-black);
}

.lp-hero {
    padding-top: 96px;
    background: #fff;
}

.lp-hero-grid {
    display: grid;
    min-height: 500px;
    grid-template-columns: .9fr 1.1fr;
}

.lp-hero-copy {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 55px clamp(38px, 5vw, 82px) 55px 0;
}

.lp-hero-copy h1 {
    max-width: 560px;
    margin: 0;
    color: var(--lp-black);
    font-size: clamp(3.2rem, 4.2vw, 5rem);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.045em;
}

.lp-lead {
    max-width: 490px;
    margin: 28px 0 30px;
    color: var(--lp-muted);
    font-size: .83rem;
    line-height: 1.7;
}

.lp-hero-media {
    min-height: 500px;
    overflow: hidden;
}

.lp-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .8s ease;
}

.lp-hero-media:hover img {
    transform: scale(1.015);
}

.lp-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 0;
    background: var(--lp-black);
    color: #fff;
}

.lp-stats article {
    min-height: 255px;
    padding: 34px 32px 28px;
    border-right: 1px solid rgba(255, 255, 255, .18);
}

.lp-stats article:last-child {
    border-right: 0;
}

.lp-stat-icon {
    display: block;
    height: 34px;
    color: #c9c9c9;
    font-family: var(--serif);
    font-size: 1.65rem;
    line-height: 1;
}

.lp-stats strong {
    display: block;
    margin-top: 20px;
    font-family: var(--serif);
    font-size: clamp(2.7rem, 3.7vw, 4rem);
    font-weight: 400;
    line-height: 1;
}

.lp-stats h2 {
    margin: 13px 0 10px;
    color: #fff;
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 0;
}

.lp-stats p {
    max-width: 210px;
    margin: 0;
    color: rgba(255, 255, 255, .57);
    font-size: .65rem;
    line-height: 1.55;
}

.lp-section {
    padding: clamp(88px, 8.5vw, 128px) 0;
}

.lp-section-heading {
    max-width: 740px;
    margin: 0 auto 48px;
    text-align: center;
}

.lp-section-heading h2,
.lp-about-copy h2,
.lp-values-head h2,
.lp-cta h2 {
    margin: 0;
    color: var(--lp-black);
    font-size: clamp(2.5rem, 3.45vw, 4.1rem);
    line-height: 1.03;
    letter-spacing: -.042em;
}

.lp-section-heading h2,
.section-title-narrow h2 {
    margin-right: auto;
    margin-left: auto;
}

.lp-section-heading > p:last-child {
    max-width: 640px;
    margin: 17px auto 0;
    color: #858587;
    font-size: .7rem;
}

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

.lp-service-card {
    position: relative;
    display: grid;
    min-height: 190px;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 32px 34px;
    border-right: 1px solid var(--lp-line);
    border-bottom: 1px solid var(--lp-line);
    background: #fff;
    transition: background .25s ease, color .25s ease;
}

.lp-service-card:hover {
    background: var(--lp-black);
    color: #fff;
}

.lp-service-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: #5e5e60;
    font-family: var(--serif);
    font-size: 1.45rem;
}

.lp-service-card:hover .lp-service-icon {
    color: #fff;
}

.lp-service-card h3 {
    margin: 2px 0 9px;
    font-size: 1.23rem;
    letter-spacing: -.025em;
}

.lp-service-card p {
    max-width: 240px;
    margin: 0;
    color: #77777a;
    font-size: .65rem;
    line-height: 1.55;
}

.lp-service-card:hover p {
    color: rgba(255, 255, 255, .62);
}

.lp-card-arrow {
    position: absolute;
    bottom: 24px;
    left: 35px;
    font-size: 1.35rem;
    transition: transform .25s ease;
}

.lp-service-card:hover .lp-card-arrow {
    transform: translateX(7px);
}

.lp-about {
    padding-top: 35px;
}

.lp-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.lp-about-media {
    position: relative;
    min-height: 525px;
    overflow: hidden;
}

.lp-about-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .3));
    content: "";
}

.lp-about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
}

.lp-about-mark {
    position: absolute;
    z-index: 2;
    right: 32px;
    bottom: 22px;
    color: rgba(255, 255, 255, .8);
    font-family: var(--serif);
    font-size: 4.6rem;
    line-height: 1;
}

.lp-about-copy {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 60px 5px 60px clamp(55px, 6vw, 105px);
}

.lp-about-lead {
    max-width: 500px;
    margin: 27px 0 22px;
    color: #6f6f72;
    font-size: .76rem;
    line-height: 1.75;
}

.lp-checklist {
    display: grid;
    margin: 0 0 30px;
    padding: 0;
    gap: 10px;
    color: #5e5e61;
    font-size: .69rem;
    list-style: none;
}

.lp-checklist li {
    position: relative;
    padding-left: 22px;
}

.lp-checklist li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--lp-black);
    content: "✓";
    font-weight: 700;
}

.lp-experience {
    background: #fafafa;
}

.lp-experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.lp-experience-card {
    position: relative;
    min-height: 335px;
    overflow: hidden;
    color: #fff;
}

.lp-experience-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.lp-experience-card:nth-child(1) img {
    object-position: center;
}

.lp-experience-card:nth-child(2) img {
    object-position: 68% center;
}

.lp-experience-card:nth-child(3) img {
    object-position: center 23%;
}

.lp-experience-card:hover > img {
    transform: scale(1.035);
}

.lp-experience-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .88));
}

.lp-experience-content {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 28px;
}

.lp-experience-content small {
    font-size: .52rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.lp-experience-content strong {
    max-width: 330px;
    margin-top: auto;
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2vw, 2.25rem);
    font-weight: 400;
    line-height: 1.08;
}

.lp-experience-content em {
    display: block;
    max-width: 320px;
    margin: 14px 0 20px;
    color: rgba(255, 255, 255, .66);
    font-size: .61rem;
    font-style: normal;
    line-height: 1.55;
}

.lp-experience-content > span {
    font-size: .61rem;
    font-weight: 600;
}

.lp-team-grid {
    display: grid;
    max-width: 900px;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 0 auto;
}

.lp-team-card {
    min-width: 0;
}

.lp-team-photo {
    display: block;
    height: 510px;
    overflow: hidden;
    background: #e6e6e4;
}

.lp-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(.76);
    transition: transform .5s ease, filter .5s ease;
}

.lp-team-card:hover .lp-team-photo img {
    transform: scale(1.02);
    filter: saturate(1);
}

.lp-team-copy {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 2px 0;
}

.lp-team-copy h3 {
    margin: 0 0 3px;
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 0;
}

.lp-team-copy p {
    margin: 0;
    color: #77777a;
    font-size: .59rem;
}

.lp-team-copy > a {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 1px solid #bdbdbf;
    font-size: .67rem;
}

.lp-center {
    margin-top: 42px;
    text-align: center;
}

.lp-values {
    padding-top: 40px;
}

.lp-values-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 34px;
}

.lp-values-head > p {
    max-width: 370px;
    margin: 0 0 4px;
    color: #77777a;
    font-size: .7rem;
}

.lp-value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.lp-value-grid article {
    min-height: 225px;
    padding: 30px 35px;
    border: 1px solid var(--lp-line);
}

.lp-value-grid article > span {
    display: block;
    height: 35px;
    color: #bbb;
    font-family: Georgia, serif;
    font-size: 3.2rem;
    line-height: 1;
}

.lp-value-grid article p {
    max-width: 470px;
    margin: 26px 0 26px;
    color: #333336;
    font-family: var(--serif);
    font-size: 1.22rem;
    line-height: 1.42;
}

.lp-value-grid article strong {
    font-size: .62rem;
    font-weight: 600;
}

.lp-cta {
    background: var(--lp-black);
    color: rgba(255, 255, 255, .64);
}

.lp-cta-inner {
    display: flex;
    min-height: 250px;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    padding: 45px 16px;
    background:
        linear-gradient(90deg, rgba(11, 11, 12, .96) 0%, rgba(11, 11, 12, .78) 54%, rgba(11, 11, 12, .36) 100%),
        url("assets/hero-legal.webp") right 35% / 58% auto no-repeat;
}

.lp-cta .lp-kicker {
    color: rgba(255, 255, 255, .55);
}

.lp-cta h2 {
    color: #fff;
    font-size: clamp(2.35rem, 3.5vw, 4.2rem);
}

.lp-cta p:last-child {
    margin: 13px 0 0;
    font-size: .69rem;
}

.site-footer {
    padding: 72px 0 0;
    background: #080809;
    color: rgba(255, 255, 255, .58);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.45fr .75fr 1fr .6fr;
    gap: 55px;
}

.footer-company {
    padding-right: 60px;
}

.site-footer .brand-logo {
    height: 52px;
}

.site-footer address,
.footer-company > p,
.footer-hours {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .55);
    font-family: var(--sans);
    font-size: .67rem;
    font-style: normal;
    line-height: 1.7;
}

.footer-company > p {
    margin-top: 17px;
}

.site-footer .footer-title {
    margin: 4px 0 25px;
    color: #fff;
    font-size: .56rem;
    letter-spacing: .15em;
}

.footer-top > div:not(.footer-company) {
    padding-left: 28px;
    border-left: 1px solid rgba(255, 255, 255, .16);
}

.footer-top > div > a {
    display: block;
    width: fit-content;
    margin-bottom: 10px;
    font-size: .68rem;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-size: .65rem;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 62px;
    padding: 22px 0;
    font-size: .55rem;
}

.footer-bottom > div {
    display: flex;
    gap: 26px;
}

/* Bring inner pages into the same light editorial system. */
.inner-hero {
    padding: 185px 0 85px;
    background: #f4f4f3;
    color: var(--lp-black);
}

.inner-hero .eyebrow-light {
    color: #727275;
}

.inner-hero .col-lg-4 > p {
    border-color: #cfcfcf;
    color: #6d6d70;
}

.inner-hero h1 {
    color: var(--lp-black);
}

@media (max-width: 1199.98px) {
    .lp-hero-grid {
        grid-template-columns: .95fr 1.05fr;
    }

    .lp-hero-copy h1 {
        font-size: clamp(3rem, 4.7vw, 4.3rem);
    }

    .lp-stats article {
        padding-right: 25px;
        padding-left: 25px;
    }
}

@media (max-width: 991.98px) {
    .header-inner {
        position: relative;
        min-height: 78px;
    }

    .site-header .brand-logo {
        height: 43px;
    }

    .header-actions {
        position: absolute;
        top: 50%;
        right: 0;
        margin-left: auto;
        transform: translateY(-50%);
    }

    .menu-toggle.d-lg-none {
        display: block !important;
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        border-radius: 0;
        background: #f3f3f2;
        color: var(--lp-black);
    }

    .menu-toggle span:not(.visually-hidden) {
        background: var(--lp-black);
    }

    .lp-hero {
        padding-top: 78px;
    }

    .lp-hero-grid {
        min-height: 0;
        grid-template-columns: minmax(0, 1fr);
    }

    .lp-hero-copy {
        width: 100%;
        min-width: 0;
        min-height: 470px;
        padding-right: 0;
    }

    .lp-hero-copy > * {
        max-width: 100%;
    }

    .lp-lead {
        width: 100%;
        overflow-wrap: break-word;
    }

    .lp-hero-copy h1 {
        max-width: 650px;
        font-size: clamp(3.4rem, 8.5vw, 5.3rem);
    }

    .lp-hero-media {
        width: 100%;
        min-width: 0;
        min-height: 480px;
    }

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

    .lp-stats article:nth-child(2) {
        border-right: 0;
    }

    .lp-stats article:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .18);
    }

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

    .lp-about-grid {
        grid-template-columns: 1fr;
    }

    .lp-about-media {
        min-height: 480px;
    }

    .lp-about-copy {
        padding: 65px 20px 0 0;
    }

    .lp-experience-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .lp-experience-card {
        min-height: 390px;
    }

    .footer-top {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-top > div:last-child {
        display: none;
    }

    .inner-hero {
        padding-top: 155px;
    }
}

@media (max-width: 767.98px) {
    .container-xxl {
        padding-right: 28px;
        padding-left: 28px;
    }

    .lp-hero-copy {
        min-height: 445px;
        padding: 55px 0;
    }

    .lp-hero-copy h1 {
        font-size: clamp(2.6rem, 11.4vw, 3.45rem);
        line-height: 1;
    }

    .lp-hero-copy h1 br {
        display: none;
    }

    .lp-hero-media {
        min-height: 360px;
    }

    .lp-stats {
        grid-template-columns: 1fr;
    }

    .lp-stats article {
        min-height: 210px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
    }

    .lp-stats article:last-child {
        border-bottom: 0;
    }

    .lp-section {
        padding: 78px 0;
    }

    .lp-section-heading {
        margin-bottom: 36px;
    }

    .lp-section-heading h2,
    .lp-about-copy h2,
    .lp-values-head h2 {
        font-size: clamp(2.3rem, 11vw, 3.3rem);
    }

    .lp-service-grid {
        grid-template-columns: 1fr;
    }

    .lp-service-card {
        min-height: 175px;
        padding: 28px 25px;
    }

    .lp-card-arrow {
        left: 27px;
    }

    .lp-about {
        padding-top: 0;
    }

    .lp-about-media {
        min-height: 365px;
    }

    .lp-about-copy {
        padding-top: 55px;
    }

    .lp-experience-card {
        min-height: 350px;
    }

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

    .lp-team-photo {
        height: min(128vw, 600px);
    }

    .lp-values {
        padding-top: 20px;
    }

    .lp-values-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .lp-value-grid {
        grid-template-columns: 1fr;
    }

    .lp-value-grid article {
        padding: 27px;
    }

    .lp-cta-inner {
        min-height: 370px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 36px;
        padding: 50px 4px;
        background:
            linear-gradient(90deg, rgba(11, 11, 12, .96), rgba(11, 11, 12, .72)),
            url("assets/hero-legal.webp") center / cover no-repeat;
    }

    .lp-button-light {
        width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 45px 30px;
    }

    .footer-company {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .footer-top > div:not(.footer-company) {
        padding-left: 18px;
    }

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

    .footer-bottom > div {
        display: flex;
    }
}

@media (max-width: 440px) {
    .lp-hero-copy {
        min-height: 420px;
    }

    .lp-hero-media {
        min-height: 310px;
    }

    .lp-about-media {
        min-height: 320px;
    }

    .lp-team-photo {
        height: 118vw;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-company {
        grid-column: auto;
    }

    .footer-top > div:not(.footer-company) {
        padding-left: 0;
        border-left: 0;
    }
}

@media (min-width: 992px) {
    body {
        font-size: 16px;
    }

    .desktop-nav {
        margin-left: auto;
    }

    .header-actions {
        margin-left: 0;
    }

    .desktop-nav a::after {
        display: none;
    }

    .desktop-nav a.active {
        font-weight: 600;
    }

    .desktop-nav a,
    .lp-header-button,
    .lp-kicker,
    .lp-button,
    .lp-lead,
    .lp-stats h2,
    .lp-stats p,
    .lp-section-heading > p:last-child,
    .lp-service-card p,
    .lp-about-lead,
    .lp-checklist,
    .lp-experience-content small,
    .lp-experience-content em,
    .lp-experience-content > span,
    .lp-team-copy h3,
    .lp-team-copy p,
    .lp-team-copy > a,
    .lp-values-head > p,
    .lp-value-grid article strong,
    .lp-cta p:last-child,
    .site-footer address,
    .footer-company > p,
    .footer-hours,
    .site-footer .footer-title,
    .footer-top > div > a,
    .footer-socials a,
    .footer-bottom,
    .eyebrow,
    .hero-note p,
    .hero-scroll,
    .trust-item small,
    .service-number,
    .service-card p,
    .service-card a,
    .process-item p,
    .team-card-copy > p,
    .team-card-copy small,
    .team-card-copy a,
    .service-row-meta span,
    .service-lead,
    .values-grid span,
    .values-grid p,
    .contact-list span,
    .contact-form-wrap label,
    .contact-banner p,
    .inner-hero .col-lg-4 > p,
    .service-row-description > p,
    .team-profile .col-lg-6 > p:not(.eyebrow):not(.profile-quote),
    .form-control,
    .form-select,
    .document-card small,
    .footer-intro,
    .site-footer .col-6 > a,
    .site-footer .col-lg-3 > a {
        font-size: 1rem;
    }
}

h1,
h2 {
    max-width: 445px !important;
    font-weight: 500 !important;
}

h1 {
    font-size: clamp(2.56rem, 3.36vw, 4rem) !important;
}

h2 {
    font-size: clamp(2rem, 2.76vw, 3.28rem) !important;
}

h3 {
    font-weight: 500;
}

@media (max-width: 767.98px) {
    h1 {
        font-size: clamp(2.08rem, 9.12vw, 2.76rem) !important;
    }

    h2 {
        font-size: clamp(1.84rem, 8.8vw, 2.64rem) !important;
    }
}

/* Final Montserrat type scale */
body {
    font-size: 16px;
    line-height: 1.65;
}

h1,
h2,
h3 {
    letter-spacing: -.035em;
}

h1 {
    font-size: clamp(2.75rem, 3.35vw, 3.5rem) !important;
    line-height: 1.08;
}

h2 {
    font-size: clamp(2rem, 2.5vw, 2.5rem) !important;
    line-height: 1.14;
}

h3 {
    font-size: clamp(1.125rem, 1.55vw, 1.4rem);
    line-height: 1.3;
}

p,
li,
address {
    line-height: 1.7;
}

.desktop-nav a,
.lp-header-button,
.lp-button {
    font-size: 1rem;
}

.lp-hero-copy h1 {
    max-width: 445px;
}

.lp-lead,
.lp-section-heading > p:last-child,
.lp-about-lead,
.lp-checklist,
.lp-values-head > p,
.lp-cta p:last-child {
    font-size: 1rem;
    line-height: 1.7;
}

.lp-stats strong {
    font-size: clamp(2.5rem, 3.3vw, 3.35rem);
    font-weight: 500;
}

.lp-stats h2 {
    max-width: 210px !important;
    margin-top: 14px;
    font-size: 1.18rem !important;
    font-weight: 600 !important;
    line-height: 1.35;
    letter-spacing: -.02em;
}

.lp-stats p {
    font-size: 1rem;
    line-height: 1.55;
}

.lp-service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
}

.lp-service-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.lp-experience-content strong {
    font-size: clamp(1.4rem, 1.8vw, 1.75rem);
    line-height: 1.2;
}

.lp-experience-content em,
.lp-experience-content small,
.lp-experience-content > span {
    font-size: .94rem;
    line-height: 1.55;
}

.lp-team-copy h3,
.lp-team-copy p,
.lp-value-grid article strong {
    font-size: 1rem;
}

.lp-value-grid article p {
    font-size: 1.15rem;
    line-height: 1.55;
}

.service-row h2,
.team-profile h2,
.contact-form-wrap h2 {
    font-size: clamp(1.8rem, 2.2vw, 2.2rem) !important;
}

.document-card h2 {
    font-size: clamp(1.35rem, 1.8vw, 1.65rem) !important;
    line-height: 1.3;
}

.contact-banner h2,
.values-section h2 {
    font-size: clamp(2rem, 2.7vw, 2.7rem) !important;
}

@media (max-width: 767.98px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: clamp(2.35rem, 9.5vw, 2.8rem) !important;
        line-height: 1.1;
    }

    h2 {
        font-size: clamp(1.75rem, 7.4vw, 2.2rem) !important;
        line-height: 1.18;
    }

    h3 {
        font-size: 1.125rem;
    }

    .lp-lead,
    .lp-section-heading > p:last-child,
    .lp-about-lead,
    .lp-checklist,
    .lp-service-card p,
    .lp-values-head > p,
    .lp-value-grid article p,
    .lp-cta p:last-child {
        font-size: .94rem;
    }

    .lp-button,
    .lp-header-button {
        font-size: .9rem;
    }

    .lp-stats strong {
        font-size: 2.65rem;
    }

    .lp-stats h2 {
        max-width: 260px !important;
        font-size: 1.12rem !important;
    }

    .lp-stats p {
        font-size: .94rem;
    }

    .lp-experience-content em,
    .lp-experience-content small,
    .lp-experience-content > span,
    .lp-team-copy p,
    .lp-value-grid article strong,
    .site-footer,
    .footer-bottom {
        font-size: .875rem;
    }

    .service-row h2,
    .team-profile h2,
    .contact-form-wrap h2,
    .contact-banner h2,
    .values-section h2 {
        font-size: 1.75rem !important;
    }

    .document-card h2 {
        font-size: 1.3rem !important;
    }
}

/* Final inner hero authority */
.is-inner .inner-hero {
    position: relative;
    display: flex;
    min-height: 560px;
    align-items: flex-end;
    overflow: hidden;
    padding: 180px 0 78px;
    background: url("assets/legal-architecture-hero.webp") center top / cover no-repeat !important;
    color: #fff !important;
}

.is-inner .inner-hero::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 9, 15, .9) 0%, rgba(4, 9, 15, .62) 43%, rgba(4, 9, 15, .26) 100%),
        linear-gradient(0deg, rgba(4, 9, 15, .52), transparent 65%);
    content: "";
}

.is-inner .inner-hero > .container-xxl {
    position: relative;
    z-index: 1;
    width: 100%;
}

.is-inner .inner-hero h1 {
    max-width: 620px !important;
    color: #fff !important;
    font-size: clamp(2.8rem, 4vw, 3.8rem) !important;
    line-height: 1.08;
}

.is-inner .inner-hero .col-lg-4 > p {
    margin: 0;
    border-color: rgba(255, 255, 255, .42);
    color: rgba(255, 255, 255, .78) !important;
    font-size: 1rem;
    line-height: 1.7;
}

.is-inner .site-header:not(.scrolled) .lp-header-button {
    background: #fff !important;
    color: #0b0b0c !important;
}

@media (max-width: 991.98px) {
    .is-inner .inner-hero {
        min-height: 520px;
        padding: 155px 0 65px;
        background-position: center top !important;
    }
}

@media (max-width: 767.98px) {
    .is-inner .inner-hero {
        min-height: 490px;
        padding: 135px 0 55px;
        background-position: center top !important;
    }

    .is-inner .inner-hero h1 {
        max-width: 410px !important;
        font-size: clamp(2.25rem, 9vw, 2.8rem) !important;
    }

    .is-inner .inner-hero .col-lg-4 > p {
        margin-top: 10px;
        padding-left: 16px;
        font-size: .94rem;
    }
}

/* Structured navigation */
.nav-dropdown {
    position: relative;
    display: flex;
    align-self: stretch;
    align-items: center;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-dropdown-trigger > span {
    font-size: .9rem;
}

.nav-dropdown-menu {
    position: absolute;
    z-index: 1200;
    top: calc(100% - 1px);
    left: 50%;
    display: none;
    width: 360px;
    padding: 10px;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
}

.desktop-nav .nav-dropdown-menu a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-bottom: 1px solid #e2e2e2;
    color: #171719 !important;
    font-size: .9rem;
    font-weight: 500;
}

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

.desktop-nav .nav-dropdown-menu a:hover,
.desktop-nav .nav-dropdown-menu a.active {
    background: #f2f2f1;
}

.desktop-nav .nav-dropdown-menu .nav-dropdown-all {
    margin-top: 8px;
    background: #0b0b0c;
    color: #fff !important;
}

.mobile-nav-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-nav-dropdown summary {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 12px 0;
    color: rgba(255, 255, 255, .65);
    cursor: pointer;
    font-family: var(--serif);
    font-size: clamp(2.25rem, 10vw, 4rem);
    line-height: 1.05;
    list-style: none;
}

.mobile-nav-dropdown summary::-webkit-details-marker {
    display: none;
}

.mobile-nav-dropdown summary > span {
    width: 22px;
    color: var(--gold-light);
    font-family: var(--sans);
    font-size: .62rem;
    letter-spacing: .13em;
}

.mobile-nav-dropdown summary i {
    margin-left: auto;
    font-family: var(--sans);
    font-size: 0;
    font-style: normal;
}

.mobile-nav-dropdown summary i::before {
    content: "+";
    font-size: 1.2rem;
}

.mobile-nav-dropdown[open] summary i::before {
    content: "−";
}

.mobile-nav-dropdown > div {
    display: grid;
    padding: 8px 0 20px 42px;
}

.mobile-menu-nav .mobile-nav-dropdown > div a {
    display: flex;
    padding: 9px 0;
    color: rgba(255, 255, 255, .7);
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.35;
}

/* About page */
.about-page-intro {
    padding: clamp(95px, 9vw, 145px) 0;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(60px, 8vw, 130px);
}

.about-page-image {
    align-self: center;
    min-height: 0;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.about-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.about-page-copy {
    align-self: center;
}

.about-page-copy h2,
.about-team-heading h2 {
    max-width: 520px !important;
    font-size: clamp(2.25rem, 3vw, 3rem) !important;
}

.about-page-copy > p {
    max-width: 560px;
    margin: 25px 0 0;
    color: #626367;
    font-size: 1rem;
    line-height: 1.8;
}

.about-page-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 38px;
    border-top: 1px solid #d5d5d7;
}

.about-page-facts span {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 25px 20px 0 0;
    color: #65666a;
    font-size: .9rem;
}

.about-page-facts strong {
    color: #111;
    font-size: 2rem;
    font-weight: 500;
}

.about-team-section {
    padding-top: 20px;
}

.about-team-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 80px;
    padding-bottom: 28px;
    border-bottom: 1px solid #d5d5d7;
}

.about-team-heading p {
    max-width: 520px;
    margin: 0;
    color: #696a6e;
    font-size: 1rem;
}

.profile-role {
    margin: -15px 0 25px;
    color: #77787b;
    font-size: 1rem;
}

/* Individual legal service pages */
.service-detail-page {
    padding: clamp(95px, 9vw, 145px) 0;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
    align-items: start;
    gap: clamp(65px, 9vw, 145px);
}

.service-detail-main {
    max-width: 760px;
}

.service-detail-main h2 {
    max-width: 620px !important;
    font-size: clamp(2.3rem, 3vw, 3rem) !important;
}

.service-detail-lead {
    margin: 32px 0 0;
    color: #55565a;
    font-size: 1.08rem;
    line-height: 1.85;
}

.service-detail-extra {
    margin: 24px 0 0;
    color: #55565a;
    font-size: 1.08rem;
    line-height: 1.85;
}

.service-detail-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 52px 0 0;
    padding-left: 22px;
    list-style: disc;
}

.service-detail-list li {
    min-height: 0;
    padding: 0 0 0 8px;
    border: 0;
    font-size: 1rem;
    line-height: 1.7;
}

.service-detail-list li::marker {
    color: #77787b;
    font-size: .75em;
}

.service-detail-aside {
    position: sticky;
    top: 135px;
    padding: 42px;
    background: #0b0b0c;
    color: #fff;
}

.service-detail-aside h2 {
    max-width: 300px !important;
    color: #fff;
    font-size: 1.75rem !important;
    line-height: 1.25;
}

.service-detail-aside p {
    margin: 22px 0 30px;
    color: rgba(255, 255, 255, .65);
    font-size: .95rem;
}

@media (max-width: 991.98px) {
    .about-page-grid,
    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .about-page-image {
        min-height: 0;
    }

    .service-detail-aside {
        position: static;
    }

}

@media (max-width: 767.98px) {
    .about-page-intro,
    .service-detail-page {
        padding: 78px 0;
    }

    .about-page-image {
        min-height: 0;
    }

    .about-page-copy h2,
    .about-team-heading h2,
    .service-detail-main h2 {
        font-size: clamp(1.9rem, 7.8vw, 2.4rem) !important;
    }

    .about-page-facts {
        grid-template-columns: 1fr;
    }

    .about-page-facts span + span {
        border-top: 1px solid #d5d5d7;
    }

    .about-team-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .service-detail-aside {
        padding: 30px;
    }

}

/* Footer information architecture */
.footer-top {
    grid-template-columns: 1.05fr .75fr 1.05fr 1.35fr;
    gap: clamp(38px, 4vw, 65px);
}

.footer-top > div:not(.footer-company) {
    padding-left: 0;
    border-left: 0;
}

.site-footer .footer-brand .brand-logo {
    width: auto;
    height: 76px;
}

.footer-company > p {
    margin-top: 26px;
    color: rgba(255, 255, 255, .52);
    font-size: .95rem;
    line-height: 1.7;
}

.footer-contact address {
    margin: 28px 0 17px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .58);
    font-size: .95rem;
    line-height: 1.7;
}

.footer-top .footer-contact .footer-map-link {
    display: inline-flex;
    margin: 0;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
}

@media (max-width: 991.98px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top > div:last-child {
        display: block;
    }

    .footer-company {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-company {
        grid-column: auto;
    }

    .footer-top > div:not(.footer-company) {
        padding-left: 0;
        border-left: 0;
    }
}

/* Global footer CTA */
.site-footer {
    padding-top: 0;
}

.footer-cta {
    display: grid;
    min-height: 330px;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: clamp(70px, 10vw, 160px);
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.footer-cta h2 {
    max-width: 560px !important;
    margin: 0;
    color: #fff;
    font-size: clamp(2.5rem, 3.5vw, 3.5rem) !important;
    font-weight: 500 !important;
    line-height: 1.08;
}

.footer-cta > div p {
    max-width: 500px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .58);
    font-size: 1rem;
    line-height: 1.7;
}

.footer-cta .minimal-button {
    min-width: 280px;
}

.footer-top {
    padding-top: 72px;
}

@media (max-width: 767.98px) {
    .footer-cta {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 78px 0;
    }

    .footer-cta h2 {
        max-width: 430px !important;
        font-size: clamp(2rem, 8vw, 2.6rem) !important;
    }

    .footer-cta .minimal-button {
        width: 100%;
        min-width: 0;
    }
}

/* Footer legal and copyright rows */
.footer-legal {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 62px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .55);
    font-size: .8rem;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 0;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
    font-size: .8rem;
}

.footer-credit {
    color: rgba(255, 255, 255, .55);
}

.footer-credit strong {
    color: #fff;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .footer-legal {
        flex-wrap: wrap;
        gap: 12px 24px;
        margin-top: 48px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}

/* Button contrast authority */
.minimal-button-light,
.minimal-button-light:visited,
.site-footer .minimal-button-light,
.site-footer .minimal-button-light:visited {
    background: #fff;
    color: #0b0b0c !important;
}

.minimal-button-light:hover,
.minimal-button-light:focus-visible,
.site-footer .minimal-button-light:hover,
.site-footer .minimal-button-light:focus-visible {
    background: #e5e5e6;
    color: #0b0b0c !important;
}

.minimal-button-dark,
.minimal-button-dark:visited,
.btn-dark,
.btn-dark:visited,
.lp-button-dark,
.lp-button-dark:visited,
.document-row > a,
.document-row > a:visited {
    background: #0b0b0c;
    color: #fff !important;
}

.minimal-button-dark:hover,
.minimal-button-dark:focus-visible,
.btn-dark:hover,
.btn-dark:focus-visible,
.lp-button-dark:hover,
.lp-button-dark:focus-visible,
.lp-header-button:hover,
.lp-header-button:focus-visible,
.document-row > a:hover,
.document-row > a:focus-visible {
    background: #303032;
    color: #fff !important;
}

.is-home .site-header:not(.scrolled) .lp-header-button,
.is-home .site-header:not(.scrolled) .lp-header-button:visited,
.is-inner .site-header:not(.scrolled) .lp-header-button,
.is-inner .site-header:not(.scrolled) .lp-header-button:visited {
    background: #fff !important;
    color: #0b0b0c !important;
}

.is-home .site-header:not(.scrolled) .lp-header-button:hover,
.is-home .site-header:not(.scrolled) .lp-header-button:focus-visible,
.is-inner .site-header:not(.scrolled) .lp-header-button:hover,
.is-inner .site-header:not(.scrolled) .lp-header-button:focus-visible {
    background: #e5e5e6 !important;
    color: #0b0b0c !important;
}

.minimal-button-outline,
.minimal-button-outline:visited,
.lp-button-outline,
.lp-button-outline:visited {
    background: transparent;
    color: #0b0b0c !important;
}

.minimal-button-outline:hover,
.minimal-button-outline:focus-visible,
.lp-button-outline:hover,
.lp-button-outline:focus-visible {
    border-color: #0b0b0c;
    background: #0b0b0c;
    color: #fff !important;
}

.btn-gold:hover,
.btn-gold:focus-visible,
.btn-outline-light:hover,
.btn-outline-light:focus-visible,
.lp-button-light:hover,
.lp-button-light:focus-visible {
    color: #0b0b0c !important;
}

.minimal-button:focus-visible,
.btn:focus-visible,
.lp-button:focus-visible,
.lp-header-button:focus-visible,
.document-row > a:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

/* Compact mobile navigation */
@media (max-width: 991.98px) {
    .mobile-menu-nav {
        justify-content: flex-start;
        padding: 36px 0 30px;
    }

    .mobile-menu-nav > a,
    .mobile-nav-dropdown summary {
        gap: 14px;
        padding: 10px 0;
        font-size: clamp(1.55rem, 6.8vw, 1.9rem);
        line-height: 1.2;
    }

    .mobile-menu-nav > a span,
    .mobile-nav-dropdown summary > span {
        width: 20px;
        font-size: .7rem;
    }

    .mobile-nav-dropdown > div {
        padding: 6px 0 14px 34px;
    }

    .mobile-menu-nav .mobile-nav-dropdown > div a {
        padding: 7px 0;
        font-size: .95rem;
    }
}
