:root {
    --accent: #edb570;
    --accent-dark: #c58d50;
    --anthracite: #606264;
    --anthracite-dark: #4f5153;
    --black: #26282b;
    --dark: #34363a;
    --gray-700: #626262;
    --gray-500: #888;
    --gray-300: #d7d5d1;
    --gray-200: #e8e6e1;
    --gray-100: #f3f2ef;
    --white: #fff;
    --off-white: #faf9f6;
    --border: #dfddd8;
    --container: 1240px;
    --transition: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--dark);
    font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

h1 em,
h2 em {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--accent-dark);
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;
    color: var(--gray-700);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .17em;
    line-height: 1;
    text-transform: uppercase;
}

.eyebrow>span {
    display: block;
    width: 26px;
    height: 1px;
    background: var(--accent-dark);
}

.eyebrow.light {
    color: rgba(255, 255, 255, .68);
}

.eyebrow.light>span {
    background: var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 700;
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

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

.btn-primary {
    background: var(--accent);
    color: var(--black);
}

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

.btn-small {
    min-height: 45px;
    padding-inline: 19px;
}

.site-header {
    position: relative;
    z-index: 100;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.header-inner {
    display: flex;
    align-items: center;
    min-height: 86px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
    margin-right: 42px;
}

.main-nav a {
    position: relative;
    padding: 7px 0;
    color: var(--gray-700);
    font-size: 13px;
    font-weight: 500;
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--accent-dark);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--black);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.header-phone-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-500);
    font-size: 9px;
}

.phone-status {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-dark);
}

.header-phone-number {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 700;
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: 12px;
    border: 0;
    background: transparent;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    margin: 5px auto;
    background: var(--black);
}

.office-hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.office-hours-row {
    min-height: 40px;
    border-top: 1px solid var(--border);
    font-size: 11px;
}

.office-hours-row strong {
    font-weight: 600;
    color: var(--black);
}

.office-hours-row>span {
    text-align: right;
    color: var(--gray-700);
}

.office-hours-row i {
    display: inline-block;
    width: 3px;
    height: 3px;
    margin: 0 7px 3px;
    border-radius: 50%;
    background: var(--accent);
}

.office-hours-row.is-call>span {
    color: var(--accent-dark);
    font-weight: 700;
}

.office-hours-row.is-closed>span {
    color: var(--gray-500);
}

.office-map {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    background: #e9e6df;
    border: 1px solid var(--border);
}

.office-map-visual {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: radial-gradient(circle at 70% 20%, rgba(255, 255, 255, .75), transparent 28%), linear-gradient(145deg, #efede7, #dfddd5);
}

.site-footer {
    padding: 66px 0 24px;
    background: #292b2d;
    color: #fff;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.45fr .7fr 1fr .9fr;
    gap: 48px;
    padding-bottom: 46px;
}

.footer-brand p {
    max-width: 320px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-column h3 {
    margin: 0 0 8px;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column>span {
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
}

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

.footer-column p {
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
}

.footer-arrow {
    color: #fff !important;
    font-weight: 700;
}

.footer-regulatory {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 21px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-regulatory-main {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
}

.footer-regulatory span,
.footer-credit-warning {
    margin: 0;
    color: rgba(255, 255, 255, .48);
    font-size: 9px;
}

.footer-credit-warning strong {
    color: rgba(255, 255, 255, .7);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    color: rgba(255, 255, 255, .4);
    font-size: 9px;
}

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

@media(max-width:1050px) {
    .main-nav {
        display: none;
    }

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

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav.mobile-open {
        position: absolute;
        top: 86px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin: 0;
        padding: 20px 24px;
        background: #fff;
        border-top: 1px solid var(--border);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    }

    .office-map {
        min-height: 500px;
    }

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

}

@media(max-width:720px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .header-phone {
        display: none;
    }

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

    .main-nav.mobile-open {
        top: 76px;
    }

    .office-map {
        min-height: 380px;
    }

    .office-hours-row {
        align-items: flex-start;
        padding: 11px 0;
    }

    .office-hours-row>span {
        max-width: 210px;
        line-height: 1.5;
    }

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

    .footer-regulatory,
    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom div {
        flex-wrap: wrap;
    }

}

@media(max-width:480px) {
    .btn {
        width: 100%;
    }

}

.v6-team {
    position: relative;
    padding: 72px 0 78px;
    overflow: hidden;
    background: #f4f1eb;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.v6-team::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(96, 98, 100, .11);
}

.v6-team-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px minmax(0, 1fr);
    gap: clamp(42px, 5.5vw, 82px);
    align-items: center;
    max-width: 1160px;
}

.v6-profile {
    min-width: 0;
}

.v6-profile-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #dedbd4;
}

.v6-profile-photo::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, .58);
    pointer-events: none;
}

.v6-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 53%;
    transform: scale(1.03);
}

.v6-profile-caption {
    width: calc(100% - 28px);
    margin: -34px auto 0;
    position: relative;
    z-index: 2;
    padding: 18px 20px 17px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 15px 35px rgba(39, 41, 43, .07);
}

.v6-profile-caption>span {
    display: block;
    margin-bottom: 6px;
    color: var(--accent-dark);
    font-size: 7.5px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.v6-profile-caption h3 {
    margin: 0 0 7px;
    color: var(--black);
    font-size: clamp(1.55rem, 2.1vw, 2.25rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.025em;
}

.v6-profile-caption p {
    margin: 0;
    color: #747779;
    font-size: 11px;
    line-height: 1.55;
}

.v6-team-title {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 0;
}

.v6-team-title>small {
    margin-bottom: 14px;
    color: var(--gray-500);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .2em;
}

.v6-team-title h2 {
    margin: 0;
    color: var(--black);
    font-size: clamp(3.6rem, 5.6vw, 5.8rem);
    font-weight: 500;
    line-height: .78;
    letter-spacing: -.055em;
}

.v6-team-title h2 em {
    color: var(--accent-dark);
    font-family: Georgia, serif;
    font-weight: 400;
}

.v6-team-amp {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 28px 0 18px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #f4f1eb;
    color: var(--accent-dark);
    font: italic 400 1.25rem/1 Georgia, serif;
}

.v6-team-title p {
    margin: 0;
    color: #747779;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.65;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.v6-profile-anchisi {
    transform: translateY(-18px);
}

.v6-profile-courtiere {
    transform: translateY(18px);
}

@media(max-width:900px) {
    .v6-team {
        padding: 58px 0 64px;
    }

    .v6-team-inner {
        grid-template-columns: minmax(0, 1fr) 175px minmax(0, 1fr);
        gap: 28px;
    }

    .v6-team-title h2 {
        font-size: clamp(3rem, 7vw, 4.4rem);
    }

    .v6-profile-caption {
        width: calc(100% - 18px);
        padding: 15px 16px 14px;
    }

    .v6-profile-caption p {
        font-size: 10.5px;
    }

}

@media(max-width:720px) {
    .v6-team {
        padding: 48px 0 54px;
    }

    .v6-team::before {
        display: none;
    }

    .v6-team-inner {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        align-items: start;
    }

    .v6-team-title {
        grid-column: 1/-1;
        grid-row: 1;
        padding: 0 0 18px;
    }

    .v6-team-title h2 br {
        display: none;
    }

    .v6-team-title h2 {
        font-size: clamp(3rem, 13vw, 4.5rem);
        line-height: .9;
    }

    .v6-team-title .v6-team-amp,
    .v6-team-title p {
        display: none;
    }

    .v6-team-title>small {
        margin-bottom: 9px;
    }

    .v6-profile-anchisi,
    .v6-profile-courtiere {
        transform: none;
    }

    .v6-profile-caption {
        width: calc(100% - 10px);
        margin: -20px auto 0;
        padding: 13px 12px;
    }

    .v6-profile-caption h3 {
        font-size: 1.35rem;
    }

    .v6-profile-caption p {
        display: none;
    }

    .v6-profile-caption>span {
        font-size: 6.5px;
    }

}

@media(max-width:480px) {
    .v6-team-inner {
        gap: 12px;
    }

    .v6-team-title {
        padding-bottom: 14px;
    }

    .v6-profile-caption {
        margin-top: -14px;
        padding: 11px 10px;
    }

    .v6-profile-caption h3 {
        font-size: 1.15rem;
    }

}

#visite {
    scroll-margin-top: 92px;
}

.bureau-page-v8 {
    overflow: hidden;
    background: #fff;
}

.v8-intro {
    padding: 76px 0 82px;
    background: var(--off-white);
}

.v8-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
    gap: 72px;
    align-items: center;
}

.v8-intro-photo {
    position: relative;
    min-height: 520px;
    overflow: visible;
}

.v8-intro-photo::before {
    content: "";
    position: absolute;
    left: -26px;
    bottom: -24px;
    width: 52%;
    height: 56%;
    border: 1px solid rgba(197, 141, 80, .38);
    z-index: 0;
}

.v8-intro-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 520px;
    display: block;
    object-fit: cover;
    object-position: center 52%;
}

.v8-address-tag {
    position: absolute;
    z-index: 2;
    right: -26px;
    bottom: 28px;
    width: 220px;
    padding: 17px 19px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(26, 27, 28, .09);
    border-left: 3px solid var(--accent);
}

.v8-address-tag small {
    display: block;
    margin-bottom: 6px;
    color: var(--accent-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
}

.v8-address-tag strong {
    display: block;
    color: var(--black);
    font-size: 14px;
    font-weight: 650;
}

.v8-address-tag span {
    display: block;
    margin-top: 3px;
    color: var(--gray-500);
    font-size: 11px;
}

.v8-intro-copy {
    padding: 12px 0 0;
}

.v8-intro-copy h1 {
    max-width: 570px;
    margin: 0 0 25px;
    font-size: clamp(3rem, 4.8vw, 5rem);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.045em;
}

.v8-intro-copy h1 em {
    color: var(--accent-dark);
    font-family: Georgia, serif;
    font-weight: 400;
}

.v8-intro-copy>p {
    max-width: 545px;
    margin: 0 0 12px;
    color: #6f7274;
    font-size: 13px;
    line-height: 1.78;
}

.v8-scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 52px;
    color: var(--black);
    text-decoration: none;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
}

.v8-scroll-link b {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 15px;
    font-weight: 400;
    transition: transform .25s ease, border-color .25s ease;
}

.v8-scroll-link:hover b {
    transform: translateY(4px);
    border-color: var(--accent);
}

.v8-visit {
    padding: 78px 0 92px;
    background: #fff;
}

.v8-visit-shell {
    position: relative;
    padding-top: 56px;
}

.v8-visit-label {
    position: absolute;
    z-index: 4;
    left: 0;
    top: 0;
    width: 340px;
    padding: 0 0 16px;
    background: #fff;
}

.v8-visit-label .eyebrow {
    margin-bottom: 9px;
}

.v8-visit-label p {
    margin: 0;
    color: var(--gray-500);
    font-size: 11px;
    line-height: 1.6;
}

.v8-map {
    position: relative;
    min-height: 560px;
    width: calc(100% - 126px);
    margin-left: 0;
    border: 1px solid var(--border);
}

.v8-hours {
    position: absolute;
    z-index: 5;
    right: 0;
    top: 126px;
    width: 410px;
    padding: 27px 28px 25px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(27, 28, 29, .12);
    border-top: 3px solid var(--accent);
}

.v8-hours-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.v8-hours-top small {
    display: block;
    margin-bottom: 5px;
    color: var(--gray-500);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .15em;
}

.v8-hours-top strong {
    display: block;
    color: var(--black);
    font: italic 400 1.22rem Georgia, serif;
}

.v8-hours-top>a {
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.v8-hours .office-hours-list {
    margin: 12px 0 20px;
}

.v8-hours .office-hours-row {
    padding: 9px 0;
}

.v8-hours .btn {
    width: 100%;
    justify-content: space-between;
}

.v8-values {
    background: var(--anthracite);
    color: #fff;
}

.v8-values-inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.v8-values-inner>span {
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    white-space: nowrap;
}

.v8-values-inner strong {
    margin-right: 4px;
    color: #fff;
    font: italic 400 1.25rem Georgia, serif;
}

.v8-values-inner>i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--accent);
}

.v8-contact {
    padding: 66px 0 72px;
    background: #fff;
}

.v8-contact-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 70px;
    align-items: end;
}

.v8-contact h2 {
    margin: 0 0 10px;
    font-size: clamp(2.8rem, 4.5vw, 4.7rem);
    font-weight: 500;
    line-height: .95;
    letter-spacing: -.045em;
}

.v8-contact h2 em {
    color: var(--accent-dark);
    font-family: Georgia, serif;
    font-weight: 400;
}

.v8-contact p {
    margin: 0;
    color: var(--gray-500);
    font-size: 12px;
}

.v8-contact-phone {
    min-width: 310px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 26px;
    align-items: center;
    padding: 19px 0 13px;
    text-decoration: none;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--border);
    color: var(--black);
}

.v8-contact-phone small {
    grid-column: 1;
    display: block;
    color: var(--gray-500);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .15em;
}

.v8-contact-phone strong {
    grid-column: 1;
    font-size: 1.55rem;
    font-weight: 600;
}

.v8-contact-phone span {
    grid-column: 2;
    grid-row: 1/3;
    font-size: 1.4rem;
    transition: transform .2s ease;
}

.v8-contact-phone:hover span {
    transform: translateX(5px);
}

@media (max-width:1050px) {
    .v8-intro-grid {
        grid-template-columns: 1.05fr .95fr;
        gap: 48px;
    }

    .v8-intro-photo img {
        height: 480px;
    }

    .v8-intro-photo {
        min-height: 480px;
    }

    .v8-address-tag {
        right: -14px;
    }

    .v8-map {
        width: calc(100% - 70px);
    }

    .v8-hours {
        width: 390px;
    }

}

@media (max-width:820px) {
    .v8-intro {
        padding: 48px 0 58px;
    }

    .v8-intro-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .v8-intro-photo {
        min-height: 0;
    }

    .v8-intro-photo img {
        height: 430px;
    }

    .v8-address-tag {
        right: 16px;
        bottom: 18px;
    }

    .v8-intro-copy {
        max-width: 650px;
    }

    .v8-scroll-link {
        margin-top: 34px;
    }

    .v8-visit {
        padding: 58px 0 68px;
    }

    .v8-visit-shell {
        padding-top: 82px;
    }

    .v8-visit-label {
        width: 100%;
    }

    .v8-map {
        width: 100%;
        min-height: 380px;
    }

    .v8-hours {
        position: relative;
        right: auto;
        top: auto;
        width: calc(100% - 28px);
        margin: -28px 0 0 auto;
        padding: 24px 22px;
    }

    .v8-values-inner {
        gap: 19px;
    }

    .v8-values-inner>span {
        white-space: normal;
        text-align: center;
    }

    .v8-contact {
        padding: 54px 0 60px;
    }

    .v8-contact-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .v8-contact-phone {
        min-width: 0;
        width: min(360px, 100%);
    }

}

@media (max-width:600px) {
    .v8-intro {
        padding: 28px 0 46px;
    }

    .v8-intro-grid {
        gap: 34px;
    }

    .v8-intro-photo::before {
        display: none;
    }

    .v8-intro-photo img {
        height: 335px;
    }

    .v8-address-tag {
        right: 10px;
        bottom: 10px;
        width: auto;
        min-width: 185px;
        padding: 13px 15px;
    }

    .v8-intro-copy h1 {
        font-size: clamp(2.65rem, 12vw, 3.65rem);
    }

    .v8-scroll-link {
        margin-top: 28px;
    }

    .v8-visit-shell {
        padding-top: 88px;
    }

    .v8-map {
        min-height: 310px;
    }

    .v8-hours {
        width: calc(100% - 12px);
        margin-top: -16px;
    }

    .v8-hours-top {
        flex-direction: column;
        gap: 9px;
    }

    .v8-hours .office-hours-row {
        display: grid;
        grid-template-columns: 90px 1fr;
        gap: 10px;
    }

    .v8-hours .office-hours-row span {
        text-align: right;
        font-size: 9px;
    }

    .v8-values-inner {
        min-height: 0;
        flex-direction: column;
        gap: 0;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .v8-values-inner>span {
        width: 100%;
        padding: 11px 0;
        text-align: left;
    }

    .v8-values-inner>i {
        width: 100%;
        height: 1px;
        border-radius: 0;
        background: rgba(255, 255, 255, .12);
    }

}

.v8-intro-copy h1 {
    max-width: 520px;
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 3.55vw, 3.85rem);
    line-height: 1.02;
    letter-spacing: -.035em;
}

.v8-scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 38px;
    padding: 15px 18px 15px 22px;
    border: 1px solid #d8d4cd;
    background: #fff;
    color: var(--black);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.v8-scroll-link b {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 0;
    background: var(--anthracite);
    color: #fff;
    font-size: 19px;
    transition: transform .25s ease, background .25s ease;
}

.v8-scroll-link:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}

.v8-scroll-link:hover b {
    transform: translateY(3px);
    background: var(--accent-dark);
}

@media (max-width:720px) {
    .v8-intro-copy h1 {
        font-size: clamp(2.2rem, 10vw, 3rem);
        max-width: 430px;
    }

    .v8-scroll-link {
        margin-top: 28px;
        padding: 13px 14px 13px 17px;
        font-size: 10px;
    }

    .v8-scroll-link b {
        width: 38px;
        height: 38px;
    }

}

.v8-scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
    padding: 0 0 9px;
    border: 0;
    border-bottom: 1px solid rgba(31, 32, 33, .32);
    background: transparent;
    box-shadow: none;
    color: var(--black);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
    transition: border-color .25s ease, color .25s ease;
}

.v8-scroll-link b {
    display: inline-block;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--accent-dark);
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
    transition: transform .25s ease;
}

.v8-scroll-link:hover {
    border-color: var(--accent-dark);
    box-shadow: none;
    transform: none;
}

.v8-scroll-link:hover b {
    background: transparent;
    transform: translateY(4px);
}

.v6-team {
    padding: 64px 0 68px;
}

.v6-team-inner {
    grid-template-columns: minmax(260px, 320px) 220px minmax(260px, 320px);
    justify-content: space-between;
    gap: clamp(46px, 6vw, 90px);
    max-width: 1080px;
}

.v6-profile {
    width: 100%;
    max-width: 320px;
}

.v6-profile-photo {
    width: 86%;
    margin: 0 auto;
    aspect-ratio: 1/1;
}

.v6-profile-caption {
    width: 100%;
    margin: -20px 0 0;
    padding: 21px 22px 20px;
    border-top: 3px solid var(--accent);
    box-shadow: 0 13px 30px rgba(39, 41, 43, .06);
}

.v6-profile-caption>span {
    margin-bottom: 8px;
    font-size: 8px;
    letter-spacing: .14em;
}

.v6-profile-caption h3 {
    margin-bottom: 10px;
    font-size: clamp(1.65rem, 2vw, 2.05rem);
}

.v6-profile-caption p {
    color: #55595b;
    font-size: 12.5px;
    line-height: 1.65;
}

.v6-profile-anchisi {
    transform: translateY(-10px);
}

.v6-profile-courtiere {
    transform: translateY(10px);
}

@media (max-width:900px) {
    .v6-team-inner {
        grid-template-columns: minmax(220px, 1fr) 165px minmax(220px, 1fr);
        gap: 28px;
    }

    .v6-profile-photo {
        width: 88%;
    }

    .v6-profile-caption {
        padding: 18px 17px;
    }

    .v6-profile-caption p {
        font-size: 11.5px;
    }

}

@media (max-width:720px) {
    .v6-team {
        padding: 48px 0 54px;
    }

    .v6-team-inner {
        grid-template-columns: 1fr 1fr;
        max-width: 560px;
        gap: 28px;
    }

    .v6-team-title {
        grid-column: 1/-1;
        grid-row: 1;
        padding: 0 0 12px;
    }

    .v6-profile-anchisi,
    .v6-profile-courtiere {
        transform: none;
    }

    .v6-profile-photo {
        width: 90%;
    }

    .v6-profile-caption {
        width: 100%;
        margin: -14px 0 0;
        padding: 15px 14px 16px;
    }

    .v6-profile-caption p {
        display: block;
        font-size: 10.5px;
        line-height: 1.5;
    }

}

@media (max-width:480px) {
    .v6-team-inner {
        gap: 14px;
    }

    .v6-profile-photo {
        width: 94%;
    }

    .v6-profile-caption {
        padding: 12px 10px 13px;
    }

    .v6-profile-caption>span {
        font-size: 6.5px;
    }

    .v6-profile-caption h3 {
        font-size: 1.15rem;
        margin-bottom: 7px;
    }

    .v6-profile-caption p {
        font-size: 9.5px;
    }

}

.header-actions {
    gap: 16px;
}

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 145px;
    padding-right: 20px;
    border-right: 1px solid rgba(96, 98, 100, .16);
}

.header-phone-label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 4px;
    color: var(--gray-700);
    font-size: 9px;
    font-weight: 750;
    line-height: 1;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.phone-status {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(237, 181, 112, .13);
}

.header-phone-number {
    color: var(--anthracite);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.025em;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.header-phone-number:hover {
    color: var(--accent-dark);
    transform: translateX(2px);
}

.site-logo-image {
    display: block;
    width: auto;
    height: 58px;
    object-fit: contain;
}

.logo-footer .site-logo-image {
    height: 72px;
}

.footer-regulatory {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    margin-top: 28px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-regulatory-main {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    max-width: 760px;
}

.footer-regulatory-main span {
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
    line-height: 1.55;
}

.footer-regulatory-main strong {
    color: rgba(255, 255, 255, .9);
    font-weight: 600;
}

.footer-credit-warning {
    max-width: 360px;
    margin: 0;
    color: var(--accent);
    font-size: 12px;
    line-height: 1.55;
    text-align: right;
}

@media (max-width: 1050px) and (min-width: 801px) {
    .header-phone {
        min-width: auto;
        padding-right: 14px;
    }

    .header-phone-label {
        display: none;
    }

    .header-phone-number {
        font-size: 14px;
        white-space: nowrap;
    }

    .header-actions .btn-small {
        padding-left: 15px;
        padding-right: 15px;
    }

}

@media (max-width: 800px) {
    .site-logo-image {
        height: 50px;
    }

    .logo-footer .site-logo-image {
        height: 62px;
    }

}

@media (max-width: 780px) {
    .footer-regulatory {
        flex-direction: column;
        gap: 14px;
    }

    .footer-regulatory-main {
        flex-direction: column;
        gap: 4px;
    }

    .footer-credit-warning {
        max-width: none;
        text-align: left;
    }

}

@media (max-width: 520px) {
    .site-logo-image {
        height: 44px;
    }

    .logo-footer .site-logo-image {
        height: 56px;
    }

}

.site-footer {
    padding: 70px 0 25px;
    background: var(--anthracite-dark);
    color: var(--white);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr .7fr .9fr .8fr;
    gap: 70px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.footer-brand p {
    max-width: 340px;
    margin-top: 25px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    line-height: 1.7;
}

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

.footer-column h3 {
    margin: 0 0 20px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column>span {
    margin-bottom: 9px;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-cta p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
}

.footer-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .45);
    color: var(--white) !important;
    font-size: 11px;
    font-weight: 700;
}

.footer-arrow span {
    transition: transform var(--transition);
}

.footer-arrow:hover {
    color: var(--accent);
}

.footer-arrow:hover span {
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding-top: 22px;
    color: rgba(255, 255, 255, .48);
    font-size: 9px;
}

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

.footer-bottom a {
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent);
}

@media (max-width: 1050px) {
    .footer-main {
        gap: 35px;
    }

}

@media (max-width: 800px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px 30px;
    }

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

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

    .footer-bottom div {
        flex-wrap: wrap;
        gap: 10px 18px;
    }

}

@media (max-width: 780px) {
    .footer-regulatory {
        flex-direction: column;
        gap: 14px;
    }

    .footer-regulatory-main {
        flex-direction: column;
        gap: 4px;
    }

    .footer-credit-warning {
        max-width: none;
        text-align: left;
    }

}

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

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

    .footer-bottom {
        font-size: 8px;
    }

}

.v8-map .office-map-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 18% 22%, rgba(237, 181, 112, .16), transparent 32%),
        linear-gradient(145deg, #f4f2ed, #e8e5df);
}

.v8-map .office-map-visual>iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-consent {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 38px;
}

.map-consent::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .55;
    background: linear-gradient(28deg, transparent 47%, rgba(255, 255, 255, .9) 48%, rgba(255, 255, 255, .9) 51%, transparent 52%),
        linear-gradient(112deg, transparent 42%, rgba(255, 255, 255, .7) 43%, rgba(255, 255, 255, .7) 46%, transparent 47%);
    background-size: 150px 120px, 190px 160px;
    pointer-events: none;
}

.map-consent-inner {
    position: relative;
    z-index: 1;
    width: min(100%, 430px);
    padding: 30px 32px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--border);
    box-shadow: 0 18px 50px rgba(38, 40, 43, .10);
    text-align: left;
}

.map-consent-label {
    display: block;
    margin-bottom: 11px;
    color: var(--accent-dark);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .16em;
}

.map-consent h3 {
    margin: 0 0 11px;
    color: var(--black);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.025em;
}

.map-consent p {
    margin: 0 0 20px;
    color: #707375;
    font-size: 12px;
    line-height: 1.65;
}

.map-consent-button {
    width: 100%;
    min-height: 48px;
    padding-inline: 18px;
    cursor: pointer;
}

.map-privacy-link {
    display: block;
    width: fit-content;
    margin: 14px auto 0;
    color: var(--gray-500);
    font-size: 9px;
    line-height: 1.45;
    text-align: center;
    border-bottom: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.map-privacy-link:hover {
    color: var(--black);
    border-bottom-color: var(--gray-300);
}

@media(max-width:720px) {
    .map-consent {
        padding: 20px;
    }

    .map-consent-inner {
        padding: 24px 22px;
    }

    .map-consent h3 {
        font-size: 21px;
    }

    .map-consent p {
        font-size: 11px;
    }

}

@media(max-width:480px) {
    .map-consent {
        padding: 14px;
    }

    .map-consent-inner {
        padding: 20px 18px;
    }

    .map-consent-button {
        font-size: 11px;
    }

}

.bureau-page-v8,
.bureau-page-v8 section,
.v8-intro-grid,
.v8-visit-shell,
.v6-team-inner,
.v8-contact-inner {
    min-width: 0;
}

.bureau-page-v8 img,
.v8-map,
.v8-hours,
.v6-profile,
.v6-profile-photo,
.v8-contact-phone {
    max-width: 100%;
}

@media (max-width: 900px) {
    .v8-intro {
        padding: 46px 0 58px;
    }

    .v8-intro-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .v8-intro-photo {
        min-height: 0;
        width: 100%;
    }

    .v8-intro-photo img {
        width: 100%;
        height: clamp(360px, 62vw, 470px);
    }

    .v8-address-tag {
        right: 16px;
        bottom: 16px;
    }

    .v8-intro-copy {
        width: 100%;
        max-width: 680px;
    }

    .v8-intro-copy h1 {
        max-width: 600px;
        font-size: clamp(2.5rem, 7vw, 4rem);
    }

    .v8-visit {
        padding: 56px 0 66px;
    }

    .v8-visit-shell {
        display: flex;
        flex-direction: column;
        padding-top: 0;
    }

    .v8-visit-label {
        position: static;
        width: 100%;
        max-width: 520px;
        margin-bottom: 24px;
        padding: 0;
    }

    .v8-map {
        position: relative;
        width: 100%;
        min-height: 390px;
    }

    .v8-hours {
        position: relative;
        inset: auto;
        width: min(100%, 620px);
        margin: 18px 0 0 auto;
        padding: 24px 24px 23px;
    }

    .v6-team {
        padding: 54px 0 60px;
    }

    .v6-team::before {
        display: none;
    }

    .v6-team-inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
        max-width: 720px;
        margin-inline: auto;
    }

    .v6-team-title {
        grid-column: 1 / -1;
        grid-row: 1;
        text-align: center;
        padding: 0 0 10px;
    }

    .v6-team-title h2 {
        font-size: clamp(3rem, 10vw, 4.6rem);
    }

    .v6-team-title h2 br {
        display: none;
    }

    .v6-team-title .v6-team-amp,
    .v6-team-title p {
        display: none;
    }

    .v6-profile {
        width: 100%;
        max-width: none;
        transform: none;
    }

    .v6-profile-photo {
        width: 100%;
        margin: 0;
    }

    .v6-profile-caption {
        width: calc(100% - 18px);
        margin: -18px auto 0;
        padding: 16px 16px 17px;
    }

    .v8-contact {
        padding: 52px 0 58px;
    }

    .v8-contact-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: start;
    }

    .v8-contact-phone {
        width: min(100%, 380px);
        min-width: 0;
    }

}

@media (max-width: 600px) {
    .container {
        width: calc(100% - 28px);
    }

    .v8-intro {
        padding: 28px 0 44px;
    }

    .v8-intro-grid {
        gap: 28px;
    }

    .v8-intro-photo {
        overflow: hidden;
    }

    .v8-intro-photo::before {
        display: none;
    }

    .v8-intro-photo img {
        height: 300px;
        object-position: center 52%;
    }

    .v8-address-tag {
        right: 10px;
        bottom: 10px;
        width: auto;
        max-width: calc(100% - 20px);
        min-width: 0;
        padding: 11px 13px;
    }

    .v8-address-tag strong {
        overflow-wrap: anywhere;
    }

    .v8-intro-copy h1 {
        font-size: clamp(2.15rem, 10.5vw, 3rem);
        line-height: 1;
    }

    .v8-intro-copy p {
        font-size: 13px;
        line-height: 1.7;
    }

    .v8-scroll-link {
        margin-top: 26px;
        max-width: 100%;
    }

    .v8-visit {
        padding: 44px 0 52px;
    }

    .v8-visit-label {
        margin-bottom: 18px;
    }

    .v8-map {
        min-height: 310px;
        overflow: hidden;
    }

    .map-consent {
        padding: 14px;
    }

    .map-consent-inner {
        width: 100%;
        padding: 20px 17px;
    }

    .map-consent h3 {
        font-size: 21px;
    }

    .map-consent p {
        font-size: 11px;
        line-height: 1.55;
    }

    .map-consent-button {
        min-height: 46px;
        padding: 10px 12px;
        white-space: normal;
    }

    .v8-hours {
        width: 100%;
        margin: 14px 0 0;
        padding: 20px 17px;
        box-shadow: 0 12px 34px rgba(27, 28, 29, .08);
    }

    .v8-hours-top {
        flex-direction: column;
        gap: 8px;
        padding-bottom: 14px;
    }

    .v8-hours .office-hours-list {
        margin: 10px 0 18px;
    }

    .v8-hours .office-hours-row {
        display: grid;
        grid-template-columns: 82px minmax(0, 1fr);
        align-items: start;
        gap: 10px;
        padding: 10px 0;
    }

    .v8-hours .office-hours-row strong {
        font-size: 10px;
    }

    .v8-hours .office-hours-row span {
        min-width: 0;
        text-align: right;
        font-size: 9px;
        line-height: 1.5;
        overflow-wrap: anywhere;
    }

    .v8-hours .btn {
        width: 100%;
        min-width: 0;
        padding-inline: 16px;
        white-space: normal;
    }

    .v6-team {
        padding: 46px 0 50px;
    }

    .v6-team-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 420px;
    }

    .v6-team-title {
        grid-column: 1;
        text-align: left;
        padding-bottom: 0;
    }

    .v6-team-title h2 {
        font-size: clamp(2.8rem, 14vw, 4rem);
        line-height: .92;
    }

    .v6-profile-photo {
        width: 100%;
        aspect-ratio: 4 / 3;
    }

    .v6-profile-photo img {
        object-position: center 48%;
    }

    .v6-profile-caption {
        width: calc(100% - 24px);
        margin: -22px 0 0 auto;
        padding: 16px 17px 17px;
    }

    .v6-profile-caption>span {
        font-size: 7px;
    }

    .v6-profile-caption h3 {
        font-size: 1.5rem;
    }

    .v6-profile-caption p {
        display: block;
        font-size: 10.5px;
        line-height: 1.55;
    }

    .v8-values-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        min-height: 0;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .v8-values-inner>span {
        width: 100%;
        padding: 12px 0;
        text-align: center;
        white-space: normal;
    }

    .v8-values-inner>i {
        width: 100%;
        height: 1px;
        border-radius: 0;
        background: rgba(255, 255, 255, .12);
    }

    .v8-contact {
        padding: 44px 0 50px;
    }

    .v8-contact h2 {
        font-size: clamp(2.45rem, 12vw, 3.45rem);
    }

    .v8-contact-phone {
        width: 100%;
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 14px;
    }

    .v8-contact-phone strong {
        font-size: 1.35rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand,
    .footer-column {
        align-items: center;
        text-align: center;
    }

    .logo-footer {
        justify-content: center;
        width: 100%;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer-regulatory {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        text-align: left;
    }

    .footer-regulatory-main {
        flex-direction: column;
        gap: 5px;
    }

    .footer-credit-warning {
        max-width: none;
        text-align: left;
    }

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

    .footer-bottom div {
        justify-content: center;
        flex-wrap: wrap;
    }

}

@media (max-width: 390px) {
    .container {
        width: calc(100% - 24px);
    }

    .v8-intro-photo img {
        height: 270px;
    }

    .v8-address-tag {
        left: 8px;
        right: 8px;
        bottom: 8px;
        width: auto;
    }

    .v8-hours .office-hours-row {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 7px;
    }

    .v8-hours .office-hours-row span {
        font-size: 8.5px;
    }

    .v6-profile-photo {
        aspect-ratio: 1 / 1;
    }

    .v6-profile-caption {
        width: calc(100% - 14px);
        padding: 14px 14px 15px;
    }

    .v8-contact-phone {
        padding-left: 0;
        padding-right: 0;
    }

}

@media (max-width: 800px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .site-header {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .header-inner {
        width: min(calc(100% - 36px), var(--container));
        min-height: 72px;
        justify-content: space-between;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        flex: 0 0 44px;
        margin-left: auto;
    }

    .main-nav {
        position: fixed;
        z-index: 99;
        top: 72px;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100vw;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 15px 18px 25px;
        background: var(--white);
        border-top: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 20px 35px rgba(0, 0, 0, .08);
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: transform 280ms ease,
            opacity 280ms ease;
    }

    .main-nav.mobile-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav a {
        width: 100%;
        padding: 15px 8px;
        border-bottom: 1px solid var(--gray-200);
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

    .site-logo-image {
        max-width: 190px;
        height: auto;
    }

}

@media (max-width: 420px) {
    .header-inner {
        width: calc(100% - 28px);
    }

    .site-logo-image {
        max-width: 165px;
    }

}