:root {
    --ink: #17211f;
    --muted: #596662;
    --paper: #f6f2ea;
    --soft: #e7dfd1;
    --accent: #9f6a2f;
    --accent-dark: #754816;
    --line: rgba(23, 33, 31, 0.16);
    --white: #fffaf3;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--ink);
    background: var(--paper);
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 18px clamp(18px, 4vw, 56px);
    color: var(--white);
    transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-solid {
    color: var(--ink);
    background: rgba(246, 242, 234, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid currentColor;
    border-radius: 50%;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 34px);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.site-nav a,
.nav-item > a {
    opacity: 0.82;
    transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-item[aria-current="page"] > a,
.nav-item:hover > a {
    opacity: 1;
    transform: translateY(-1px);
}

.nav-item {
    position: relative;
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.nav-dropdown > a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 180ms ease;
}

.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after {
    transform: rotate(225deg) translateY(-1px);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    z-index: 40;
    width: 310px;
    display: grid;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: rgba(255, 250, 243, 0.98);
    border: 1px solid var(--line);
    box-shadow: 0 22px 60px rgba(17, 23, 22, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.dropdown-menu a {
    padding: 12px 14px;
    font-size: 12px;
    line-height: 1.25;
    text-transform: none;
    border-bottom: 1px solid rgba(23, 33, 31, 0.08);
}

.dropdown-menu a:last-child {
    border-bottom: 0;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
}

.lang-select-wrap {
    position: relative;
    margin-left: auto;
}

.lang-select {
    min-height: 38px;
    min-width: 122px;
    padding: 0 36px 0 14px;
    border: 1px solid currentColor;
    border-radius: 999px;
    color: inherit;
    background: transparent;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    appearance: none;
    cursor: pointer;
}

.site-header.is-home .lang-select {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.95);
}

.site-header.is-home .lang-select-wrap::after {
    border-right-color: var(--ink);
    border-bottom-color: var(--ink);
}

.lang-select-wrap::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
}

.lang-select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(159, 106, 47, 0.28);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 5px auto;
    background: currentColor;
}

.hero {
    position: relative;
    min-height: 96svh;
    display: flex;
    align-items: flex-end;
    padding: 160px clamp(20px, 5vw, 72px) 82px;
    color: var(--white);
    background: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 18px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 22px;
    font-size: clamp(54px, 10vw, 132px);
    line-height: 0.86;
    letter-spacing: 0;
}

.page-hero h1 {
    font-size: clamp(46px, 7vw, 92px);
    line-height: 0.94;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 4.4vw, 60px);
    line-height: 1;
    letter-spacing: 0;
}

p {
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.65;
}

.hero p,
.image-band p {
    color: rgba(255, 250, 243, 0.88);
}

.hero-copy {
    max-width: 620px;
    font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--accent);
    border-color: var(--accent);
}

.button-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.button-ghost {
    color: var(--white);
}

.section,
.page-hero {
    padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 72px);
}

.page-hero {
    padding-top: 150px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.page-hero p {
    max-width: 760px;
    font-size: 19px;
}

.split,
.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: clamp(36px, 7vw, 96px);
    align-items: start;
}

.split p,
.rich-text p {
    font-size: 20px;
}

.image-band {
    min-height: 72svh;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    color: var(--white);
    background: #1d2624;
}

.image-panel {
    min-height: 520px;
    background:
        linear-gradient(rgba(23, 33, 31, 0.04), rgba(23, 33, 31, 0.12)),
        url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.band-copy {
    align-self: center;
    padding: clamp(42px, 7vw, 90px);
}

.band-copy a {
    display: inline-block;
    margin-top: 12px;
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
}

.practice-preview,
.practice-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.practice-preview article,
.practice-list article {
    padding: 34px clamp(22px, 4vw, 42px);
    border-bottom: 1px solid var(--line);
}

.practice-preview article:not(:nth-child(3n)),
.practice-list article:not(:nth-child(3n)) {
    border-right: 1px solid var(--line);
}

.practice-preview span,
.practice-list h2,
.lawyer h2,
.contact-details h2 {
    display: block;
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.1;
}

.practice-preview a {
    display: inline-block;
    margin-top: 10px;
    color: var(--accent-dark);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
}

.practice-list {
    padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
    background: var(--line);
}

.service-summary {
    background: var(--paper);
}

.service-summary a {
    min-height: 100%;
    display: grid;
    grid-template-rows: 220px auto auto 1fr;
    padding-bottom: 26px;
    transition: background 180ms ease, transform 180ms ease;
}

.service-summary a:hover {
    background: var(--white);
    transform: translateY(-4px);
}

.service-summary img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: saturate(0.9) contrast(1.02);
}

.service-summary span,
.service-summary p,
.service-summary strong {
    margin-left: 26px;
    margin-right: 26px;
}

.service-summary span {
    display: block;
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 27px;
    line-height: 1.05;
}

.service-summary p {
    font-size: 15px;
    line-height: 1.55;
}

.service-summary strong {
    align-self: end;
    margin-top: 14px;
    color: var(--accent-dark);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
}

.service-hero {
    min-height: 82svh;
    display: flex;
    align-items: flex-end;
    padding: 150px clamp(20px, 5vw, 72px) 70px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(17, 23, 22, 0.86), rgba(17, 23, 22, 0.42) 52%, rgba(17, 23, 22, 0.18)),
        var(--service-image) center/cover;
}

.service-hero-content {
    max-width: 820px;
}

.service-hero h1 {
    font-size: clamp(48px, 8vw, 110px);
}

.service-hero p {
    max-width: 720px;
    color: rgba(255, 250, 243, 0.88);
    font-size: clamp(18px, 2vw, 22px);
}

.service-detail,
.service-scope {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: clamp(40px, 8vw, 110px);
    padding: clamp(76px, 10vw, 130px) clamp(20px, 5vw, 72px);
}

.service-detail {
    background: var(--white);
}

.service-intro h2,
.service-scope h2,
.process-copy h2 {
    font-size: clamp(34px, 5vw, 68px);
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.scope-grid article {
    min-height: 128px;
    display: flex;
    align-items: flex-end;
    padding: 22px;
    border-bottom: 1px solid var(--line);
}

.scope-grid article:nth-child(odd) {
    border-right: 1px solid var(--line);
}

.scope-grid span {
    font-size: 21px;
    line-height: 1.2;
}

.service-process {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    background: var(--ink);
    color: var(--white);
}

.process-image {
    min-height: 620px;
    background-position: center;
    background-size: cover;
}

.process-copy {
    align-self: center;
    padding: clamp(42px, 7vw, 86px);
}

.process-copy p,
.process-copy li {
    color: rgba(255, 250, 243, 0.78);
}

.process-copy ol {
    display: grid;
    gap: 24px;
    margin: 0 0 34px;
    padding-left: 24px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.6;
}

.related-services {
    padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px);
    background: var(--white);
}

.related-services div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.related-services a {
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 800;
    transition: background 180ms ease, color 180ms ease;
}

.related-services a:hover {
    color: var(--white);
    background: var(--ink);
}

.lawyer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
    background: var(--line);
}

.lawyer {
    min-height: 312px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 18px;
    background: var(--paper);
    transition: transform 180ms ease, background 180ms ease;
}

.lawyer:hover {
    background: var(--white);
    transform: translateY(-4px);
}

.lawyer-link {
    display: block;
}

.portrait-frame {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--soft);
}

.portrait {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(1);
    transition: filter 220ms ease, transform 220ms ease;
}

.lawyer:hover .portrait {
    filter: grayscale(0);
    transform: scale(1.015);
}

.portrait-khalid { object-position: 50% 28%; }
.portrait-maria { object-position: 50% 25%; }
.portrait-brown {
    object-position: 50% 20%;
    transform: scale(1.18);
}

.lawyer:hover .portrait-brown {
    transform: scale(1.2);
}
.portrait-joe { object-position: 50% 24%; }
.portrait-aisha { object-position: 50% 20%; }
.portrait-omar { object-position: 50% 24%; }
.portrait-nadia { object-position: 50% 20%; }
.portrait-samir { object-position: 50% 24%; }
.portrait-layla { object-position: 50% 20%; }
.portrait-daniel { object-position: 50% 22%; }
.portrait-fatima { object-position: 50% 20%; }
.portrait-hassan { object-position: 52% 24%; }
.portrait-priya { object-position: 50% 20%; }
.portrait-yusuf { object-position: 45% 24%; }
.portrait-elena { object-position: 50% 18%; }
.portrait-sofia { object-position: 50% 15%; }
.portrait-reem { object-position: 50% 16%; }
.portrait-victor { object-position: 50% 22%; }

.lawyer h2 {
    font-size: 25px;
}

.lawyer span {
    display: block;
    margin-bottom: 10px;
    color: var(--accent-dark);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.lawyer p {
    font-size: 15px;
    line-height: 1.5;
}

.profile-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--accent-dark);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
}

.lawyer-profile-hero {
    display: grid;
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(36px, 7vw, 96px);
    align-items: end;
    padding: 150px clamp(20px, 5vw, 72px) clamp(70px, 9vw, 120px);
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.profile-photo-panel {
    max-width: 520px;
}

.profile-portrait-frame {
    aspect-ratio: 1;
}

.profile-intro h1 {
    margin-bottom: 22px;
    font-size: clamp(54px, 8vw, 110px);
    line-height: 0.9;
}

.back-link {
    display: inline-block;
    margin-bottom: 26px;
    color: var(--accent-dark);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
}

.profile-intro p {
    max-width: 680px;
    font-size: 21px;
}

.lawyer-profile-body {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    gap: clamp(40px, 8vw, 110px);
    padding: clamp(76px, 10vw, 130px) clamp(20px, 5vw, 72px);
}

.profile-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 0 clamp(20px, 5vw, 72px) clamp(76px, 10vw, 130px);
    background: linear-gradient(var(--paper), var(--paper)) padding-box, var(--line);
}

.profile-detail-grid article {
    min-height: 190px;
    padding: 28px;
    background: var(--white);
}

.profile-detail-grid span {
    display: block;
    margin-bottom: 18px;
    color: var(--accent-dark);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--ink);
    color: var(--white);
}

.metrics div {
    min-height: 220px;
    padding: clamp(30px, 5vw, 56px);
    border-right: 1px solid rgba(255, 250, 243, 0.18);
}

.metrics strong {
    display: block;
    margin-bottom: 12px;
    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.9;
}

.metrics span {
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(255, 250, 243, 0.76);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: clamp(42px, 8vw, 110px);
    padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

label {
    display: grid;
    gap: 8px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(23, 33, 31, 0.88);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 14px 12px;
    color: var(--ink);
    background: var(--white);
    font: 16px Arial, Helvetica, sans-serif;
    transition: border-color 160ms ease, background 160ms ease;
}

input::placeholder,
textarea::placeholder {
    color: rgba(89, 102, 98, 0.72);
}

input:hover,
select:hover,
textarea:hover {
    border-color: rgba(23, 33, 31, 0.26);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-dark);
    background: #ffffff;
}

textarea {
    resize: vertical;
    min-height: 132px;
}

.form-note {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    padding-top: 4px;
    border-top: 0;
}

.form-alert {
    padding: 12px 14px;
    border: 1px solid var(--line);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.form-alert p {
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 14px;
}

.form-alert ul {
    margin: 0;
    padding-left: 18px;
}

.form-alert-error {
    border-color: rgba(166, 46, 46, 0.35);
    background: rgba(166, 46, 46, 0.05);
}

.form-alert-success {
    border-color: rgba(37, 109, 68, 0.3);
    background: rgba(37, 109, 68, 0.06);
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form .button {
    margin-top: 2px;
}

.contact-form .button-primary {
    width: auto;
    min-height: 48px;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.contact-details {
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.contact-details a {
    border-bottom: 1px solid currentColor;
}

.branch-list {
    display: grid;
    gap: 18px;
    margin: 22px 0 26px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.branch-list article {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.branch-list span {
    display: block;
    margin-bottom: 6px;
    color: var(--accent-dark);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.branch-list p {
    margin: 0;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding: 42px clamp(20px, 5vw, 72px);
    color: var(--white);
    background: #111716;
}

.enquiry-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    background: var(--white);
}

.enquiry-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

.enquiry-table th,
.enquiry-table td {
    text-align: left;
    vertical-align: top;
    padding: 12px;
    border-bottom: 1px solid var(--line);
}

.enquiry-table th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--soft);
}

.site-footer p {
    max-width: 480px;
    margin: 10px 0 0;
    color: rgba(255, 250, 243, 0.68);
    font-size: 15px;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-content: flex-start;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

html[dir="rtl"] .site-nav {
    direction: rtl;
}

html[dir="rtl"] .site-nav .lang-select-wrap {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .site-nav .lang-select {
    padding: 0 14px 0 36px;
}

html[dir="rtl"] .site-nav .lang-select-wrap::after {
    left: 14px;
    right: auto;
}

html[dir="rtl"] .site-footer nav {
    direction: rtl;
}

@media (max-width: 980px) {
    .split,
    .two-column,
    .image-band,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .practice-preview,
    .practice-list,
    .lawyer-grid,
    .service-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .practice-preview article,
    .practice-list article,
    .practice-preview article:not(:nth-child(3n)),
    .practice-list article:not(:nth-child(3n)) {
        padding-left: clamp(22px, 4vw, 42px);
        padding-right: clamp(22px, 4vw, 42px);
        border-right: 0;
    }
}

@media (max-width: 720px) {
    .site-header {
        min-height: 68px;
        padding: 12px 18px;
    }

    .nav-toggle {
        display: block;
        z-index: 31;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 30;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 26px;
        padding: 80px 28px;
        color: var(--ink);
        background: var(--paper);
        font-size: 28px;
        transform: translateX(100%);
        transition: transform 260ms ease;
        overflow-y: auto;
    }

    .site-nav .lang-select-wrap {
        margin-left: 0;
        margin-top: 6px;
    }

    .site-nav .lang-select {
        min-width: 160px;
        min-height: 42px;
        font-size: 14px;
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .nav-item {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        display: grid;
        margin-top: 12px;
        padding: 0 0 0 14px;
        color: inherit;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .dropdown-menu a {
        padding: 8px 0;
        font-size: 15px;
    }

    .hero {
        min-height: 92svh;
        padding: 112px 20px 52px;
        background-position: 58% center;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .section,
    .page-hero,
    .practice-list,
    .lawyer-grid,
    .contact-layout {
        padding-left: 20px;
        padding-right: 20px;
    }

    .practice-preview,
    .practice-list,
    .lawyer-grid,
    .service-list,
    .metrics {
        grid-template-columns: 1fr;
    }

    .service-detail,
    .service-scope,
    .service-process,
    .lawyer-profile-hero,
    .lawyer-profile-body,
    .profile-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-hero {
        min-height: 76svh;
        padding-top: 116px;
    }

    .scope-grid {
        grid-template-columns: 1fr;
    }

    .scope-grid article:nth-child(odd) {
        border-right: 0;
    }

    .process-image {
        min-height: 300px;
    }

    .lawyer {
        min-height: auto;
    }

    .site-footer {
        flex-direction: column;
    }
}
