:root {
    --navy: #01122c;
    --navy-deep: #000a1f;
    --navy-soft: #0b1d3d;
    --gold: #c69748;
    --gold-light: #d4a85a;
    --gold-pale: #f3e9d2;
    --paper: #fdfcf9;
    --paper-warm: #f7f2e6;
    --ink: #14182a;
    --ink-soft: #2a2f42;
    --muted: #6b6f7a;
    --line: rgba(1, 18, 44, 0.10);
    --line-strong: rgba(1, 18, 44, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--paper);
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    padding: 0.9rem clamp(1.25rem, 3.5vw, 3rem);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 6px 24px -16px rgba(1, 18, 44, 0.18);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.header .brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.header .brand img {
    height: clamp(38px, 4.4vw, 52px);
    width: auto;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 2.8vw, 2rem);
}

.header nav {
    display: flex;
    gap: clamp(1.25rem, 2.8vw, 2.5rem);
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    transition: color 0.25s ease;
}

.social-link:hover {
    color: #0a66c2;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    padding-left: clamp(0.5rem, 1.5vw, 1rem);
    border-left: 1px solid var(--line);
}

.lang-switcher a {
    color: var(--muted);
    text-decoration: none;
    padding: 0.25rem 0.15rem;
    transition: color 0.25s ease, border-color 0.25s ease;
    border-bottom: 1px solid transparent;
}

.lang-switcher a:hover {
    color: var(--gold);
}

.lang-switcher a.active {
    color: var(--ink);
    border-bottom-color: var(--gold);
}

.lang-switcher .lang-sep {
    color: var(--line-strong);
}

@media (max-width: 600px) {
    .header-right {
        gap: 0.75rem;
    }
    .lang-switcher {
        padding-left: 0.5rem;
        font-size: 0.65rem;
    }
}

/* ---------- Mobile menu ---------- */
.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 0.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-left: 0.25rem;
}

.menu-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 82vw);
    height: 100dvh;
    background: #ffffff;
    border-left: 1px solid var(--line);
    box-shadow: -12px 0 40px -20px rgba(1, 18, 44, 0.2);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
    z-index: 60;
    padding: clamp(5rem, 14vw, 6.5rem) 2rem 2rem;
    overflow-y: auto;
    visibility: hidden;
}

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

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-menu-nav a {
    display: block;
    padding: 1rem 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    transition: color 0.25s ease;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a:focus-visible {
    color: var(--gold);
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(1, 18, 44, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 55;
    pointer-events: none;
}

.mobile-menu-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .header nav.nav-desktop {
        display: none;
    }
    .menu-toggle {
        display: inline-flex;
    }
    .lang-switcher {
        border-left: 0;
        padding-left: 0;
    }
}

.header nav a {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.25s ease;
}

.header nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.header nav a:hover {
    color: var(--gold);
}

.header nav a:hover::after {
    width: 100%;
}

@media (max-width: 600px) {
    .header nav {
        gap: 1rem;
    }
    .header nav a {
        font-size: 0.65rem;
        letter-spacing: 0.18em;
    }
}

/* ---------- Hero ---------- */
.hero-frame {
    background: var(--paper);
    padding: 0 clamp(1rem, 2.5vw, 2rem);
}

.hero {
    position: relative;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    min-height: clamp(420px, 58vw, 620px);
    background:
        linear-gradient(180deg, rgba(1, 18, 44, 0.22) 0%, rgba(1, 18, 44, 0.36) 60%, rgba(0, 10, 31, 0.52) 100%),
        url('images/hero2.jpg') center / cover no-repeat;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 4vw, 3rem);
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 880px;
    opacity: 0;
    animation: rise 1.1s 0.15s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-icon {
    width: clamp(200px, 7vw, 84px);
    height: auto;
    margin-bottom: clamp(1.5rem, 2.6vw, 2.25rem);
    opacity: 0.95;
    filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.35));
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(1.55rem, 3.1vw, 2.55rem);
    line-height: 1.28;
    color: #fff;
    letter-spacing: -0.005em;
    max-width: 880px;
}

.hero-headline em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-subheadline {
    margin-top: clamp(1rem, 1.8vw, 1.5rem);
    font-size: clamp(0.95rem, 1.35vw, 1.15rem);
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
}

/* ---------- About the firm ---------- */
.about-frame {
    background: var(--paper);
    padding: 0 clamp(1rem, 2.5vw, 2rem);
}

.about-firm {
    position: relative;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    background:
        linear-gradient(180deg, rgba(1, 18, 44, 0.55) 0%, rgba(1, 18, 44, 0.68) 60%, rgba(0, 10, 31, 0.80) 100%),
        url('images/about-company.jpg') center / cover no-repeat;
    color: #fff;
    padding: clamp(4.5rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3.5rem);
    overflow: hidden;
}

.about-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.about-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.about-inner .cta-title {
    color: var(--gold);
    margin-bottom: 1.75rem;
}

.about-eyebrow::before,
.about-eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--gold-light);
}

.about-body p {
    font-size: clamp(0.98rem, 1.15vw, 1.08rem);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.about-body p:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.3rem, 1.9vw, 1.55rem);
    line-height: 1.45;
    color: #fff;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    position: relative;
}

.about-body p:first-child::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 48px;
    height: 1px;
    background: var(--gold);
}

.about-body p:last-child {
    margin-bottom: 0;
}

/* ---------- Section primitives ---------- */
.section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3.5rem);
}

#practice {
    padding-top: clamp(2rem, 4vw, 3.5rem);
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.section-head .cta-title {
    position: relative;
    padding-top: 1.5rem;
}

.section-head .cta-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 2px;
    background: var(--gold);
}

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.section-label::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.01em;
    max-width: 640px;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-lede {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 380px;
    line-height: 1.75;
}

/* ---------- Intro ---------- */
.intro {
    padding-top: clamp(2rem, 4vw, 3.25rem);
    padding-bottom: clamp(2rem, 4vw, 3.25rem);
}

.intro-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
}

.intro-body {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: var(--ink-soft);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto 1.1rem;
}

.intro-body:last-child {
    margin-bottom: 0;
}

/* ---------- Services grid ---------- */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 1.6vw, 1.5rem);
}

.service {
    background: #fff;
    padding: clamp(2rem, 2.8vw, 2.75rem);
    position: relative;
    border: 1px solid var(--line-strong);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service::before {
    content: "";
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 14px;
    height: 14px;
    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    opacity: 0.5;
    transition: opacity 0.4s ease, width 0.4s ease, height 0.4s ease;
}

.service::after {
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service:hover {
    border-color: var(--gold);
    box-shadow: 0 24px 50px -28px rgba(1, 18, 44, 0.28);
    transform: translateY(-3px);
}

.service:hover::before {
    opacity: 1;
    width: 18px;
    height: 18px;
}

.service:hover::after {
    width: 100%;
}

.service-label {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(1.3rem, 1.75vw, 1.5rem);
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line-strong);
    position: relative;
    letter-spacing: -0.005em;
}

.service-label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 36px;
    height: 1px;
    background: var(--gold);
}

.service p.body {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 0.9rem;
}

.service p.body:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .services {
        grid-template-columns: 1fr;
    }
}

/* ---------- Emotion image band ---------- */
.emotion-frame {
    background: linear-gradient(180deg, #fdfcf9 0%, #fdfcf9 50%, #f8f6f0 50%, #f8f6f0 100%);
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 2.5vw, 2rem);
}

.emotion-band {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    min-height: clamp(280px, 42vw, 520px);
    background-color: var(--navy);
    background-image:
        linear-gradient(180deg, rgba(1, 18, 44, 0.52) 0%, rgba(0, 10, 31, 0) 100%),
        url("images/expertisebg.jpg");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.emotion-band--about {
    background-image:
        linear-gradient(180deg, rgba(1, 18, 44, 0.52) 0%, rgba(0, 10, 31, 0) 100%),
        url("images/about-company.jpg");
}

/* ---------- Focus areas accordion ---------- */
.section-focus {
    position: relative;
    background-color: var(--navy);
    background-image:
        linear-gradient(180deg, rgba(1, 18, 44, 0.52) 0%, rgba(0, 10, 31, 0.64) 100%),
        url("images/expertisebg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.section-focus .cta-title {
    color: #fff;
}

@media (max-width: 768px) {
    .section-focus {
        background-attachment: scroll;
    }
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: #fff;
    border: 1px solid var(--line-strong);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.accordion-item:hover {
    border-color: var(--gold);
}

.accordion-item.is-open {
    border-color: var(--gold);
    box-shadow: 0 24px 50px -32px rgba(1, 18, 44, 0.25);
}

.accordion-heading {
    margin: 0;
    font-weight: inherit;
}

.accordion-trigger {
    width: 100%;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1rem, 3vw, 2rem);
    padding: clamp(1.4rem, 2.6vw, 2rem) clamp(1.5rem, 2.8vw, 2.5rem);
    text-align: left;
    font-family: inherit;
    color: var(--ink);
    transition: color 0.3s ease;
}

.accordion-trigger:hover {
    color: var(--gold);
}

.accordion-trigger:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -3px;
}

.accordion-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(1.25rem, 2.1vw, 1.6rem);
    line-height: 1.25;
    letter-spacing: -0.005em;
}

.accordion-icon {
    position: relative;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.accordion-icon::before,
.accordion-icon::after {
    content: "";
    position: absolute;
    background: var(--gold);
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.3s ease;
}

.accordion-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.accordion-icon::after {
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.accordion-item.is-open .accordion-icon::before {
    transform: translateY(-50%) rotate(180deg);
}

.accordion-item.is-open .accordion-icon::after {
    transform: translateX(-50%) scaleY(0);
    opacity: 0;
}

.accordion-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.42s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.accordion-item.is-open .accordion-panel {
    grid-template-rows: 1fr;
}

.accordion-panel-inner {
    overflow: hidden;
}

.accordion-panel-inner .body {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.75;
    padding: 0 clamp(1.5rem, 2.8vw, 2.5rem);
}

.accordion-panel-inner .body:first-child {
    border-top: 1px solid var(--line);
    padding-top: clamp(1.25rem, 2vw, 1.6rem);
}

.accordion-panel-inner .body + .body {
    margin-top: 1rem;
}

.accordion-panel-inner .body:last-child {
    padding-bottom: clamp(1.5rem, 2.6vw, 2.1rem);
}

/* ---------- Director note ---------- */
.director {
    background: #f8f6f0;
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3.5rem);
    position: relative;
}

.director-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.director-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    padding: 3px;
    margin: 0 auto 2.5rem;
}

.director-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    filter: grayscale(0.05) contrast(1.02);
}

.director-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.director-eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--gold);
}

.director-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.7rem, 2.9vw, 2.4rem);
    line-height: 1.4;
    color: var(--ink);
    margin: 0 auto 2.25rem;
    max-width: 720px;
    text-align: center;
    position: relative;
    padding-top: clamp(2.75rem, 5vw, 4rem);
}

.director-quote::before {
    content: "\201C";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-size: clamp(4rem, 6vw, 5.5rem);
    line-height: 1;
    color: var(--gold);
    opacity: 0.55;
}

.director-body {
    margin-bottom: 2.25rem;
}

.director-body p {
    font-size: clamp(1.02rem, 1.3vw, 1.15rem);
    color: var(--ink-soft);
    line-height: 1.85;
    margin-bottom: 1.1rem;
}

.director-body p:last-child {
    margin-bottom: 0;
}

.director-sign {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.director-sign::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.director-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ink);
}

.director-role {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--muted);
    margin-left: 0.4rem;
}

.director-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--muted);
    flex-shrink: 0;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.director-linkedin:hover,
.director-linkedin:focus-visible {
    color: #0a66c2;
    border-color: #0a66c2;
}

.director-awards {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2.5rem;
}

.director-award {
    display: inline-block;
    max-width: 125px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.director-award img {
    width: 100%;
    height: auto;
    display: block;
}

.director-award--oaklins {
    max-width: 140px;
}

/* ---------- People ---------- */
.section-people {
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.people-intro {
    max-width: 760px;
    margin: -1.5rem 0 clamp(3rem, 5vw, 4.5rem);
}

.people-intro-lead {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 1.1rem;
}

.people-intro p:last-child {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: var(--ink-soft);
    line-height: 1.8;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 4vw, 3.25rem);
}

@media (max-width: 900px) {
    .people-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
    }
}

.person {
    display: flex;
    flex-direction: column;
}

.person-photo-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    margin-bottom: 1.6rem;
    overflow: hidden;
}

.person-photo-wrap::before {
    content: "";
    position: absolute;
    inset: 10px -10px -10px 10px;
    border: 1px solid var(--gold);
    z-index: 0;
    pointer-events: none;
}

.person-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    position: relative;
    z-index: 1;
    filter: grayscale(0.05) contrast(1.02);
}

.person-photo-wrap--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--navy-soft), var(--navy-deep));
}

.person-initials {
    position: relative;
    z-index: 1;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.75rem, 5vw, 3.75rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--gold-light);
    opacity: 0.85;
}

.person-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.person-role {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.person-tags {
    font-size: 0.82rem;
    color: var(--muted);
    letter-spacing: 0.01em;
    line-height: 1.5;
    padding-bottom: 1.1rem;
    margin-bottom: 1.1rem;
    border-bottom: 1px solid var(--line);
}

.person-desc {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.75;
    margin-bottom: 1.4rem;
}

.person-exp-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.85rem;
}

.person-exp {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    flex-grow: 1;
}

.person-exp li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 0.7rem;
}

.person-exp li:last-child {
    margin-bottom: 0;
}

.person-exp li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.person-cv {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    align-self: flex-start;
    margin-top: auto;
    padding: 0.85rem 1.5rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--navy);
    background: transparent;
    border: 1px solid var(--navy);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.person-cv .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.person-cv:hover {
    background: var(--navy);
    color: var(--gold-light);
}

.person-cv:hover .arrow {
    transform: translateX(4px);
}

/* ---------- Matters / Experience ---------- */
.section-experience {
    background: #f8f6f0;
    border-bottom: 1px solid var(--line);
}

.experience-lede {
    max-width: 760px;
    margin: -2rem 0 clamp(2.5rem, 4vw, 3.5rem);
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: var(--ink-soft);
    line-height: 1.8;
}

.matters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 1.6vw, 1.5rem);
}

@media (max-width: 800px) {
    .matters {
        grid-template-columns: 1fr;
    }
}

.matter {
    background: #fff;
    border: 1px solid var(--line-strong);
    padding: clamp(2rem, 2.6vw, 2.5rem);
    position: relative;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.matter::before {
    content: "";
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 14px;
    height: 14px;
    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    opacity: 0.5;
    transition: opacity 0.4s ease, width 0.4s ease, height 0.4s ease;
}

.matter::after {
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.matter:hover {
    border-color: var(--gold);
    box-shadow: 0 24px 50px -28px rgba(1, 18, 44, 0.28);
    transform: translateY(-3px);
}

.matter:hover::before {
    opacity: 1;
    width: 18px;
    height: 18px;
}

.matter:hover::after {
    width: 100%;
}

.matter h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(1.3rem, 1.75vw, 1.5rem);
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 1rem;
    letter-spacing: -0.005em;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line-strong);
    position: relative;
}

.matter h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 36px;
    height: 1px;
    background: var(--gold);
}

.experience-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(1.5rem, 2.5vw, 2rem);
    margin-top: clamp(3rem, 5vw, 4.5rem);
    padding-top: clamp(3rem, 5vw, 4.5rem);
    border-top: 1px solid var(--line-strong);
}

.experience-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    line-height: 1.2;
    color: var(--ink);
    letter-spacing: -0.005em;
    max-width: 640px;
}

.experience-cta .cta-button {
    justify-self: center;
}

.matter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.matter-list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 0.85rem;
}

.matter-list li:last-child {
    margin-bottom: 0;
}

.matter-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

/* ---------- CTA band ---------- */
.cta-band {
    background: var(--paper-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.15;
}

.cta-band::after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -120px;
    width: 420px;
    height: 420px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.10;
}

.cta-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 800px) {
    .cta-inner {
        grid-template-columns: 1fr;
    }
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    line-height: 1.2;
    color: var(--ink);
}

.cta-title em {
    font-style: italic;
    color: var(--gold);
}

.cta-body {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin-top: 1rem;
    line-height: 1.7;
    max-width: 520px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.05rem 2rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--navy);
    background: transparent;
    border: 1px solid var(--navy);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    justify-self: end;
    white-space: nowrap;
}

.cta-button .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background: var(--navy);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.cta-button:hover .arrow {
    transform: translateX(4px);
}

@media (max-width: 800px) {
    .cta-button {
        justify-self: start;
    }
}

/* ---------- Contact ---------- */
.contact-section {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 4vw, 3.5rem) clamp(2.5rem, 4vw, 3rem);
    position: relative;
    overflow: hidden;
}

.contact-section .ornament {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, var(--gold) 50%, transparent 100%);
}

.contact-slogan {
    position: relative;
    max-width: 1200px;
    margin: 0 auto clamp(3rem, 5vw, 4.5rem);
    padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    line-height: 1.3;
    color: #fff;
    letter-spacing: -0.005em;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
}

.contact-slogan span:nth-child(2) {
    color: var(--gold-light);
    font-style: italic;
}

.contact-slogan span:nth-child(3) {
    color: rgba(255, 255, 255, 0.7);
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 800px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.contact-block .label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
}

.contact-block .firm {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.005em;
}

.contact-block .principal {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.5rem;
}

.contact-block p,
.contact-block a {
    font-size: 0.9rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.contact-block a {
    position: relative;
    transition: color 0.25s ease;
}

.contact-block a:hover {
    color: var(--gold-light);
}

.footer-strip {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

.footer-strip .footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-strip .footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-strip .footer-legal a:hover {
    color: var(--gold-light);
}

/* ---------- Legal pages ---------- */
.legal {
    padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 4vw, 3.5rem);
    background: var(--paper);
}

.legal-inner {
    max-width: 780px;
    margin: 0 auto;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.legal-back:hover {
    color: var(--gold);
}

.legal-back .arrow {
    transition: transform 0.25s ease;
}

.legal-back:hover .arrow {
    transform: translateX(-3px);
}

.legal-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.legal-eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--gold);
}

.legal-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line-strong);
    position: relative;
}

.legal-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 48px;
    height: 1px;
    background: var(--gold);
}

.legal-block {
    margin-bottom: 2.5rem;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(1.25rem, 1.7vw, 1.45rem);
    color: var(--ink);
    margin-bottom: 0.85rem;
    letter-spacing: -0.005em;
}

.legal-block p,
.legal-block li {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-block p:last-child,
.legal-block li:last-child {
    margin-bottom: 0;
}

.legal-block a {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
    transition: color 0.25s ease;
}

.legal-block a:hover {
    color: var(--gold);
}

.legal-block ul {
    margin: 0.5rem 0 0.75rem 1.25rem;
    padding-left: 0.5rem;
}

.legal-block ul li {
    margin-bottom: 0.35rem;
}

.legal-block ul li::marker {
    color: var(--gold);
}

.legal-data {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 0.5rem 1.75rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--ink-soft);
}

.legal-data dt {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding-top: 0.35rem;
    white-space: nowrap;
}

.legal-data dd {
    margin: 0;
}

@media (max-width: 600px) {
    .legal-data {
        grid-template-columns: 1fr;
        gap: 0.15rem 0;
    }
    .legal-data dt {
        padding-top: 1rem;
    }
    .legal-data dt:first-child {
        padding-top: 0;
    }
}

/* ---------- Animations ---------- */
@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}
