:root {
    --navy: #06365e;
    --navy-deep: #002e54;
    --navy-dark: #052c4d;
    --red: #8f0b09;
    --red-dark: #670000;
    --gold: #d0b089;
    --ink: #111820;
    --muted: #5b626a;
    --soft: #f2f4f6;
    --line: #d6d9dc;
    --white: #ffffff;
    --container: 1340px;
    --header-height: 96px;
    --shadow: 0 12px 35px rgba(0, 0, 0, .10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

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

body.menu-open {
    overflow: hidden;
}

main p {
    font-size: 18px;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid #f6c66b;
    outline-offset: 3px;
}

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

button,
input,
textarea {
    font: inherit;
}

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


.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    left: 16px;
    top: -80px;
    padding: 12px 18px;
    color: var(--navy);
    background: var(--white);
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: var(--header-height);
    color: var(--white);
    background: var(--navy);
    transition: box-shadow .2s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
}

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

.site-logo {
    flex: 0 1 330px;
}

.site-logo img {
    width: min(330px, 100%);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 2vw, 35px);
    white-space: nowrap;
}

.main-nav > a {
    position: relative;
    padding: 38px 0 34px;
    color: var(--white);
    font-size: .84rem;
    font-weight: 500;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.main-nav > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 24px;
    height: 2px;
    background: var(--gold);
    transition: right .2s ease;
}

.main-nav > a:hover::after,
.main-nav > a.is-active::after {
    right: 0;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 4px;
    font-size: .72rem;
    font-weight: 700;
}

.language-current,
.language-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 27px;
    height: 22px;
    border-radius: 2px;
}

.language-current {
    color: var(--navy);
    background: var(--white);
}

.language-link {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .45);
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.language-link:hover,
.language-link:focus-visible {
    color: var(--navy);
    background: var(--white);
    border-color: var(--white);
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    color: var(--white);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle-label {
    font-size: .85rem;
    text-transform: uppercase;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    display: block;
    width: 28px;
    height: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle-icon {
    position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    top: 8px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Home hero */
.home-hero {
    position: relative;
    min-height: 790px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(rgba(46, 17, 0, .25), rgba(42, 17, 0, .31)),
        url("../images/hero-inicio.webp") center center / cover no-repeat;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 25%, rgba(0, 0, 0, .08) 100%);
    pointer-events: none;
}

.home-hero-content {
    position: relative;
    z-index: 1;
    width: min(970px, calc(100% - 48px));
    padding: 80px 0;
    text-align: center;
}

.home-hero h1 {
    max-width: 940px;
    margin: 0 auto 48px;
    font-size: clamp(3rem, 5.8vw, 5.15rem);
    line-height: 1.08;
    letter-spacing: -.035em;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .35);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 11px 21px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: .77rem;
    font-weight: 600;
    letter-spacing: .035em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

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

.button-navy {
    color: var(--white);
    background: var(--navy-deep);
}

.button-navy:hover {
    background: #001d36;
}

.button-red {
    color: var(--white);
    background: var(--red);
}

.button-red:hover {
    background: var(--red-dark);
}

.button-outline {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, .75);
}

.button-outline:hover {
    color: var(--navy);
    background: var(--white);
}

.section {
    padding: 88px 0;
}

.section-sm {
    padding: 64px 0;
}

.home-intro {
    padding-top: 82px;
}

.intro-lead {
    max-width: 880px;
    margin: 0 auto 68px;
    font-size: clamp(1.35rem, 2.1vw, 2rem);
    line-height: 1.2;
    text-align: center;
}

.firm-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.13fr);
    align-items: start;
    gap: 52px;
}

.firm-intro-grid figure {
    margin: 0;
}

.firm-intro-grid img {
    width: 100%;
    border-radius: 2px;
}

.prose h2,
.prose h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.25;
}

.prose h2 {
    font-size: 1.35rem;
}

.prose h3 {
    font-size: 1.16rem;
}

.prose p {
    margin: 0 0 22px;
}

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

.expert-band {
    color: var(--white);
    background: #002e42;
}

.expert-band-grid {
    min-height: 350px;
    padding: 70px 0;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 70px;
}

.expert-title p {
    max-width: 390px;
    margin: 0;
    font-size: clamp(2.1rem, 3.8vw, 3.7rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.05;
}

.gold-line {
    display: block;
    width: 80px;
    height: 3px;
    margin-bottom: 20px;
    background: var(--gold);
}

.expert-copy {
    max-width: 720px;
    margin-left: auto;
    text-align: center;
}

.expert-copy p {
    margin: 0 auto 25px;
    font-size: 24px;
}

.section-heading {
    margin-bottom: 54px;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-heading .heading-line {
    width: 150px;
    height: 1px;
    margin: 22px auto 0;
    background: #222;
}

.practice-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 52px 45px;
}

.practice-summary {
    position: relative;
    padding-left: 27px;
}

.practice-summary::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--navy);
    font-weight: 800;
}

.practice-summary h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
}

.practice-summary p {
    margin: 0;
    font-size: 18px;
    line-height: 1.55;
}

.practice-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 38px;
    font-size: 1.12rem;
    font-style: italic;
}

.home-cta {
    position: relative;
    min-height: 445px;
    display: grid;
    place-items: center;
    color: var(--white);
    background:
        linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .58)),
        url("../images/hero-interior.webp") center center / cover no-repeat;
}

.home-cta-content {
    max-width: 960px;
    padding: 70px 0;
    text-align: center;
}

.home-cta h2 {
    margin: 0 0 12px;
    font-size: clamp(2.1rem, 3.5vw, 3.25rem);
    font-weight: 400;
}

.home-cta p {
    margin: 0 0 27px;
    font-size: 18px;
}

.blog-home-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e1e3;
    background: var(--white);
}

.blog-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

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

.blog-card-body {
    padding: 20px 18px 22px;
}

.blog-card h3 {
    margin: 0 0 13px;
    font-size: 1.13rem;
    font-weight: 500;
    line-height: 1.28;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 14px;
    color: #6a6f75;
    font-size: .75rem;
}

.blog-card p:not(.post-meta) {
    margin: 0 0 13px;
    font-size: 18px;
}

.blog-card .post-meta {
    font-size: .75rem;
}

.read-more {
    color: var(--red);
    font-size: .82rem;
    font-weight: 700;
}

.blog-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 44px;
    font-size: 1.12rem;
    font-style: italic;
}

/* Inner pages */
.interior-hero {
    position: relative;
    min-height: 565px;
    display: flex;
    align-items: center;
    color: var(--white);
    background: url("../images/hero-interior.webp") center center / cover no-repeat;
}

.interior-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 19, 32, .58), rgba(3, 19, 32, .12));
}

.interior-hero-content {
    position: relative;
    z-index: 1;
}

.interior-hero h1 {
    max-width: 1050px;
    margin: 0 0 7px;
    font-size: clamp(3rem, 5vw, 4.75rem);
    line-height: 1.03;
    text-transform: uppercase;
}

.hero-brand {
    margin: 0 0 2px;
    font-size: .88rem;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    font-size: .9rem;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Firm */
.team-section {
    padding: 0;
}

.team-profile {
    display: grid;
    grid-template-columns: 355px minmax(0, 1fr);
    gap: 45px;
    padding: 58px 0;
    border-bottom: 1px solid #bfa690;
}

.team-profile:first-child {
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 0 0 100vmax var(--navy);
    clip-path: inset(0 -100vmax);
    border-bottom: 0;
}

.team-profile:first-child .team-details h2,
.team-profile:first-child .team-details a {
    color: var(--white);
}

.team-photo {
    align-self: start;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-details h2 {
    margin: 0 0 4px;
    font-size: 2rem;
    line-height: 1.2;
}

.team-details > a {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--navy);
    font-size: .84rem;
}

.team-details p {
    margin: 0 0 11px;
    font-size: 18px;
    line-height: 1.48;
}

/* Practice areas */
.practice-intro {
    padding: 78px 0 42px;
    text-align: center;
}

.practice-intro .eyebrow {
    margin: 0 0 5px;
    font-size: .9rem;
    text-transform: uppercase;
}

.practice-intro h2 {
    margin: 0 0 20px;
    color: var(--navy-deep);
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 400;
    text-transform: uppercase;
}

.practice-intro p {
    max-width: 1220px;
    margin: 0 auto;
    font-size: 18px;
}

.practice-detail-section {
    background: rgba(223, 226, 229, .48);
}

.practice-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 790px;
}

.practice-detail-row + .practice-detail-row {
    padding-top: 80px;
}

.practice-image {
    min-height: 720px;
}

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

.practice-copy {
    align-self: center;
    padding: 55px 70px;
}

.practice-list {
    margin: 0;
    padding-left: 22px;
}

.practice-list li {
    margin-bottom: 25px;
}

.practice-list li[id] {
    scroll-margin-top: calc(var(--header-height) + 30px);
}

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

.practice-list h3 {
    margin: 0 0 5px;
    color: var(--navy-deep);
    font-size: 1.45rem;
    font-weight: 400;
}

.practice-list p {
    margin: 0;
    font-size: 18px;
}

.practice-bottom-line {
    width: 250px;
    height: 2px;
    margin: 55px auto 0;
    background: #333;
}

/* Blog */
.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 65px;
    padding: 90px 0 100px;
}

.blog-list {
    display: grid;
    gap: 48px;
}

.blog-list-item {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    align-items: center;
    gap: 35px;
}

.blog-list-image {
    aspect-ratio: 1.16 / 1;
    overflow: hidden;
}

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

.blog-list-content h2 {
    margin: 0 0 17px;
    font-size: clamp(1.55rem, 2.2vw, 2.15rem);
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.blog-list-content p {
    margin: 0 0 17px;
}

.button-gray {
    color: var(--white);
    background: #7d858b;
}

.button-gray:hover {
    background: #5f676d;
}

.blog-sidebar h2 {
    margin: 0 0 20px;
    font-size: 16px;
}

.popular-list {
    display: grid;
    gap: 16px;
}

.popular-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.35;
}

.popular-item img {
    width: 72px;
    height: 58px;
    object-fit: cover;
}

.popular-item:hover span {
    text-decoration: underline;
}

/* Article */
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 55px;
    padding: 90px 0 110px;
}

.article-cover {
    aspect-ratio: 16 / 9;
    margin-bottom: 34px;
    overflow: hidden;
}

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

.article-header h2 {
    margin: 0 0 12px;
    font-size: clamp(1.7rem, 2.6vw, 2.45rem);
    font-weight: 400;
    line-height: 1.22;
    text-transform: uppercase;
}

.article-body {
    font-size: 18px;
}

.article-body h3 {
    margin: 34px 0 10px;
    font-size: 2rem;
    font-style: italic;
}

.article-body p {
    margin: 0 0 18px;
}

.article-body ul,
.article-body ol {
    margin: 0 0 20px;
    padding-left: 28px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-navigation {
    margin-top: 38px;
}

.share-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 38px;
}

.share-button {
    display: inline-flex;
    align-items: center;
    min-height: 39px;
    padding: 8px 18px;
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.share-facebook { background: #245a98; }
.share-x { background: #161616; }
.share-linkedin { background: #176ca4; }

/* Contact */
.contact-main {
    padding: 90px 0 70px;
}

.contact-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 50px;
}

.contact-intro {
    margin: 0 0 28px;
    font-size: 18px;
}

.contact-image img {
    width: 100%;
}

.contact-data-grid {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 38px;
    margin-bottom: 35px;
}

.contact-data h2 {
    margin: 0 0 14px;
    font-size: 1.55rem;
    font-weight: 400;
}

.contact-data p {
    margin: 0 0 10px;
}

.contact-data a {
    color: var(--navy);
}

.form-intro {
    margin: 0 0 24px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
}

.form-field {
    display: grid;
    gap: 6px;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: .89rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid #d2d4d6;
    border-radius: 1px;
    background: var(--white);
    padding: 10px 12px;
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--navy);
}

.required {
    color: var(--red);
}

.form-privacy-note {
    margin-top: 2px;
    color: var(--muted);
    line-height: 1.45;
}

.form-privacy-note small {
    font-size: 14px;
}

.form-privacy-note a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-actions {
    grid-column: 1 / -1;
}

.form-alert {
    grid-column: 1 / -1;
    padding: 14px 16px;
    border-radius: 2px;
}

.form-alert.success {
    color: #155b34;
    background: #e8f6ee;
    border: 1px solid #aed8bd;
}

.form-alert.error {
    color: #7d1717;
    background: #fff0f0;
    border: 1px solid #e7b7b7;
}

.form-errors {
    margin: 0;
    padding-left: 20px;
}

.office-visit {
    padding: 25px 0 80px;
    text-align: center;
}

.office-visit h2 {
    margin: 0 0 16px;
    font-size: 1.55rem;
    text-transform: uppercase;
}

.office-map {
    width: 100%;
    height: 540px;
    border: 0;
}

/* Legal pages */
.legal-container {
    max-width: 980px;
}

.legal-content h2 {
    margin: 42px 0 12px;
    color: var(--navy-deep);
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
    font-weight: 500;
    line-height: 1.25;
}

.legal-content h3 {
    margin: 28px 0 10px;
    color: var(--navy-deep);
    font-size: 1.3rem;
    font-weight: 500;
}

.legal-content p {
    margin: 0 0 18px;
}

.legal-content a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-updated {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

/* 404 */
.not-found {
    min-height: 55vh;
    display: grid;
    place-items: center;
    padding: 80px 0;
    text-align: center;
}

.not-found h1 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: clamp(4rem, 9vw, 8rem);
}

.not-found h2 {
    margin: 0 0 16px;
}

/* Footer */
.site-footer {
    color: var(--white);
    background: var(--navy);
}

.footer-grid {
    display: grid;
    grid-template-columns: .86fr 1.45fr .9fr;
    gap: 65px;
    padding: 72px 0 58px;
}

.footer-brand img {
    width: 260px;
    margin-bottom: 25px;
}

.footer-brand p,
.footer-contact p {
    margin: 0 0 12px;
    font-size: .87rem;
}

.site-footer h2 {
    margin: 0 0 18px;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
}

.footer-practices {
    columns: 2;
    column-gap: 42px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-practices li {
    position: relative;
    break-inside: avoid;
    margin-bottom: 8px;
    padding-left: 20px;
    font-size: .84rem;
}

.footer-practices li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 800;
}

.footer-practices a:hover,
.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding: 18px 0 26px;
    font-size: .78rem;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 22px;
}

.footer-legal a:hover {
    text-decoration: underline;
}

/* Tablet */
@media (max-width: 1120px) {
    :root {
        --header-height: 86px;
    }

    .container {
        width: min(var(--container), calc(100% - 40px));
    }

    .site-logo {
        flex-basis: 260px;
    }

    .main-nav {
        gap: 17px;
    }

    .main-nav > a {
        font-size: .73rem;
        padding-block: 33px 30px;
    }

    .home-hero {
        min-height: 680px;
    }

    .home-hero h1 {
        font-size: clamp(3rem, 6vw, 4.25rem);
    }

    .practice-summary-grid {
        gap: 42px 30px;
    }

    .team-profile {
        grid-template-columns: 290px 1fr;
    }

    .practice-copy {
        padding: 45px 40px;
    }

    .blog-list-item {
        grid-template-columns: 300px 1fr;
    }
}

@media (max-width: 920px) {
    .menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: fixed;
        z-index: 99;
        inset: var(--header-height) 0 auto 0;
        display: none;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        padding: 25px 28px 35px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--navy);
        box-shadow: 0 14px 26px rgba(0, 0, 0, .25);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav > a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
        font-size: .9rem;
    }

    .main-nav > a::after {
        display: none;
    }

    .language-switch {
        margin: 20px 0 0;
    }

    .firm-intro-grid,
    .expert-band-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .firm-intro-grid {
        gap: 35px;
    }

    .expert-band-grid {
        min-height: 0;
        gap: 40px;
    }

    .expert-copy {
        margin-left: 0;
        text-align: left;
    }

    .practice-summary-grid,
    .blog-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .practice-detail-row {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .practice-detail-row:nth-child(even) .practice-image {
        order: -1;
    }

    .practice-image {
        min-height: 540px;
    }

    .practice-copy {
        padding: 55px 20px 75px;
    }

    .blog-layout,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        padding-top: 30px;
        border-top: 1px solid var(--line);
    }

    .popular-list {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

@media (max-width: 700px) {
    :root {
        --header-height: 78px;
    }

    body {
        font-size: 15px;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .site-logo {
        flex-basis: 225px;
    }

    .site-logo img {
        width: 225px;
    }

    .home-hero {
        min-height: 580px;
        background-position: 61% center;
    }

    .home-hero-content {
        width: min(100% - 28px, 650px);
        padding: 65px 0;
    }

    .home-hero h1 {
        margin-bottom: 34px;
        font-size: clamp(2.55rem, 11vw, 3.5rem);
    }

    .section {
        padding: 66px 0;
    }

    .home-intro {
        padding-top: 62px;
    }

    .intro-lead {
        margin-bottom: 45px;
    }

    .expert-title p {
        font-size: 2.65rem;
    }

    .practice-summary-grid,
    .blog-home-grid,
    .footer-grid,
    .contact-data-grid {
        grid-template-columns: 1fr;
    }

    .practice-summary h3 {
        text-align: left;
    }

    .practice-more,
    .blog-more {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .home-cta {
        min-height: 390px;
    }

    .interior-hero {
        min-height: 390px;
        background-position: 57% center;
    }

    .interior-hero h1 {
        font-size: clamp(2.55rem, 11vw, 3.65rem);
    }

    .team-profile {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 45px 0;
    }

    .team-photo {
        max-width: 360px;
        width: 100%;
        margin: 0 auto;
    }

    .team-details h2 {
        font-size: 1.7rem;
    }

    .practice-intro {
        padding: 58px 0 35px;
    }

    .practice-image {
        min-height: 420px;
    }

    .blog-layout,
    .article-layout {
        padding: 65px 0 80px;
    }

    .blog-list-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-list-image {
        aspect-ratio: 16 / 10;
    }

    .popular-list {
        grid-template-columns: 1fr;
    }

    .contact-main {
        padding: 65px 0 50px;
    }

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

    .form-field.full,
    .form-actions,
    .form-alert {
        grid-column: auto;
    }

    .office-map {
        height: 430px;
    }

    .footer-grid {
        gap: 38px;
        padding: 55px 0 35px;
    }

    .footer-practices {
        columns: 1;
    }

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

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

    .footer-legal {
        justify-content: flex-start;
    }
}

@media (max-width: 430px) {
    .container {
        width: min(100% - 22px, var(--container));
    }

    .site-logo {
        flex-basis: 190px;
    }

    .site-logo img {
        width: 190px;
    }

    .menu-toggle-label {
        display: none;
    }

    .home-hero h1 {
        font-size: 2.45rem;
    }

    .button {
        width: 100%;
        max-width: 300px;
    }

    .home-hero-content .button {
        width: auto;
    }

    .interior-hero h1 {
        font-size: 2.35rem;
    }

    .practice-copy {
        padding-inline: 5px;
    }
}

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