:root {
    --navy: #071220;
    --navy-mid: #0f1e32;
    --navy-light: #1a3052;
    --gold: #c4a052;
    --gold-light: #e2c878;
    --gold-dim: rgba(196, 160, 82, 0.15);
    --cream: #f7f3eb;
    --cream-muted: #e5dfd3;
    --text: #1e2836;
    --text-muted: #5a6478;
    --white: #ffffff;
    --error: #9b2c2c;
    --success: #1f5a3a;
    --font-serif: "Cormorant Garamond", Georgia, serif;
    --font-sans: "Source Sans 3", system-ui, sans-serif;
    --max-width: 1200px;
    --radius: 6px;
    --radius-lg: 12px;
    --shadow: 0 8px 32px rgba(7, 18, 32, 0.08);
    --shadow-lg: 0 20px 60px rgba(7, 18, 32, 0.14);
    --header-h: 4.75rem;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--navy-light);
    transition: color 0.2s var(--ease);
}

a:hover { color: var(--gold); }

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy);
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); margin-top: 0; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p { margin: 0 0 1.1rem; }

ul, ol { margin: 0 0 1.1rem; padding-left: 1.35rem; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--gold);
    color: var(--navy);
    padding: 0.75rem 1rem;
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
}

.skip-link:focus { top: 1rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    max-width: 100%;
    text-align: center;
    transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn:active { transform: scale(0.98); }

.btn-accent {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(196, 160, 82, 0.35);
}

.btn-accent:hover {
    background: var(--gold-light);
    color: var(--navy);
    box-shadow: 0 6px 24px rgba(196, 160, 82, 0.45);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--cream);
    border-color: rgba(247, 243, 235, 0.35);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--cream);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 18, 32, 0.98);
    border-bottom: 1px solid rgba(196, 160, 82, 0.2);
}

body.nav-open .site-header {
    z-index: 1000;
}

.site-header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    min-height: var(--header-h);
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--cream);
    flex-shrink: 0;
    min-width: 0;
    max-width: 11rem;
}

.site-logo__text {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.site-header__toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.65rem;
    cursor: pointer;
    z-index: 1002;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: rgba(7, 18, 32, 0.75);
    z-index: 999;
}

.nav-backdrop.is-visible {
    display: block;
}

.site-header__toggle-bar,
.site-header__toggle-bar::before,
.site-header__toggle-bar::after {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--cream);
    position: relative;
    transition: transform 0.25s var(--ease);
}

.site-header__toggle-bar::before,
.site-header__toggle-bar::after {
    content: "";
    position: absolute;
    left: 0;
}

.site-header__toggle-bar::before { top: -6px; }
.site-header__toggle-bar::after { top: 6px; }

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 0.2rem 0.65rem;
    flex-wrap: nowrap;
    min-width: 0;
}

.site-nav a {
    color: rgba(247, 243, 235, 0.82);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    flex-shrink: 0;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--gold-light);
    border-bottom-color: var(--gold);
}

.site-nav a.site-nav__cta,
.site-nav a.site-nav__cta:hover,
.site-nav a.site-nav__cta:focus,
.site-nav a.site-nav__cta.is-active {
    color: var(--navy);
    border-bottom: none;
}

.site-nav a.site-nav__cta:hover,
.site-nav a.site-nav__cta:focus {
    background: var(--gold-light);
    color: var(--navy);
}

.site-nav__cta {
    margin-left: 0.15rem;
    padding: 0.5rem 0.85rem !important;
    border-bottom: none !important;
    white-space: nowrap;
    font-size: 0.8125rem !important;
    flex-shrink: 0;
}

#main-content {
    overflow-x: clip;
}

.hero-split__content,
.area-block > *,
.content-split > *,
.editorial-columns > *,
.contact-layout > *,
.practice-card,
.article-card,
.article-card__body,
.insight-card,
.area-block {
    min-width: 0;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy-mid);
    color: var(--cream);
    z-index: 200;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(196, 160, 82, 0.25);
}

.cookie-banner__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.25rem 1.25rem 1.5rem;
    display: grid;
    gap: 0.85rem;
}

.cookie-banner__title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin: 0;
    color: var(--gold-light);
}

.cookie-banner__text {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(247, 243, 235, 0.78);
    line-height: 1.55;
}

.cookie-banner__text a { color: var(--gold-light); }

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

body.has-cookie { padding-bottom: clamp(7rem, 18vh, 10rem); }

/* Hero */
.hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100dvh - var(--header-h));
    max-height: 900px;
    background: var(--navy);
}

.hero-split__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2rem) clamp(2rem, 5vw, 4rem) max(1.25rem, calc((100vw - var(--max-width)) / 2 + 1.25rem));
    color: var(--cream);
}

.hero-split__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-split h1 { color: var(--cream); margin: 0 0 1.25rem; }

.hero-split__lead {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(247, 243, 235, 0.78);
    max-width: 34rem;
    margin-bottom: 2rem;
    line-height: 1.65;
}

.hero-split__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-split__image {
    position: relative;
    min-height: 280px;
    overflow: hidden;
}

.hero-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-split__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--navy) 0%, transparent 35%);
    pointer-events: none;
}

/* Stats */
.stats-strip {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
}

.stats-strip__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: clamp(1.75rem, 4vw, 2.5rem) 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    text-align: center;
}

.stats-strip__num {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.stats-strip__label {
    margin: 0.6rem 0 0;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    font-weight: 500;
    line-height: 1.45;
}

/* Sections */
.section {
    padding: clamp(3rem, 7vw, 5rem) 1.25rem;
}

.section--light { background: var(--white); }
.section--dark {
    background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 100%);
    color: rgba(247, 243, 235, 0.82);
}

.section--dark h2 { color: var(--cream); }

.section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section__header {
    max-width: 44rem;
    margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.section__header p { color: var(--text-muted); }
.section--dark .section__header p { color: rgba(247, 243, 235, 0.72); }

/* Practice cards */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.75rem);
}

.practice-card {
    background: var(--white);
    border: 1px solid var(--cream-muted);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    display: flex;
    flex-direction: column;
}

.practice-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.practice-card__img {
    height: clamp(160px, 22vw, 210px);
    object-fit: cover;
    width: 100%;
}

.practice-card__body {
    padding: clamp(1.15rem, 2.5vw, 1.65rem);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.practice-card__num {
    font-family: var(--font-serif);
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    margin: 0 0 0.45rem;
    font-weight: 600;
}

.practice-card h3 { margin: 0 0 0.65rem; }

.practice-card p {
    font-size: 0.94rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex: 1;
    line-height: 1.6;
}

.practice-card a {
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
}

/* Editorial columns */
.editorial-columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}

.editorial-columns__img,
.content-split__img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* Content split — text + photo blocks on inner pages */
.content-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: start;
    margin: 2.5rem 0;
}

.content-split--reverse .content-split__media { order: 2; }
.content-split--reverse .content-split__text { order: 1; }

.content-split__caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.65rem;
    line-height: 1.5;
}

/* Process list */
.process-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    counter-reset: step;
}

.process-list li {
    counter-increment: step;
    padding: 1.15rem 0 1.15rem 3.25rem;
    border-bottom: 1px solid var(--cream-muted);
    position: relative;
    font-size: 0.98rem;
    line-height: 1.6;
}

.process-list li::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 1.15rem;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 700;
}

/* Insights */
.insights-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2.5vw, 1.75rem);
}

.insight-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(196, 160, 82, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.25s var(--ease);
}

.insight-card:hover { border-color: rgba(196, 160, 82, 0.45); }

.insight-card__img {
    width: 100%;
    height: clamp(140px, 20vw, 180px);
    object-fit: cover;
}

.insight-card__body {
    padding: clamp(1.15rem, 2.5vw, 1.65rem);
    border-left: 3px solid var(--gold);
}

.insight-card h3 {
    color: var(--cream);
    margin: 0 0 0.65rem;
    font-size: 1.2rem;
}

.insight-card p {
    color: rgba(247, 243, 235, 0.72);
    font-size: 0.94rem;
    margin-bottom: 0.85rem;
}

.insight-card a {
    color: var(--gold-light);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.92rem;
}

/* Article cards (legal insights page) */
.article-grid {
    display: grid;
    gap: clamp(1.25rem, 3vw, 2rem);
}

.article-card {
    display: grid;
    grid-template-columns: minmax(0, 280px) 1fr;
    gap: clamp(1rem, 2.5vw, 1.75rem);
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--cream-muted);
    transition: box-shadow 0.25s var(--ease);
}

.article-card:hover { box-shadow: var(--shadow-lg); }

.article-card__img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
}

.article-card__body {
    padding: clamp(1.15rem, 2.5vw, 1.75rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-card h3 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.article-card h3 a {
    color: var(--navy);
    text-decoration: none;
}

.article-card h3 a:hover { color: var(--gold); }

.article-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

/* Area showcase (practice areas) */
.area-showcase {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin: 2rem 0;
}

.area-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: center;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--cream-muted);
    overflow: hidden;
}

.area-block--alt { background: var(--cream); }

.area-block__img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius);
}

.area-block h2 { margin-bottom: 0.75rem; }

.area-block p {
    color: var(--text-muted);
    font-size: 0.97rem;
}

/* CTA */
.cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 55%, var(--navy-mid) 100%);
    color: var(--cream);
    text-align: center;
    padding: clamp(3rem, 7vw, 5rem) 1.25rem;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(196, 160, 82, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.cta-band h2 {
    color: var(--cream);
    margin-bottom: 1rem;
    position: relative;
}

.cta-band p {
    max-width: 36rem;
    margin: 0 auto 1.5rem;
    color: rgba(247, 243, 235, 0.78);
    position: relative;
}

.cta-band .btn { position: relative; }

/* Page intro */
.page-intro {
    background: var(--navy);
    color: var(--cream);
    padding: clamp(3rem, 7vw, 4.5rem) 1.25rem clamp(2.5rem, 5vw, 3.5rem);
}

.page-intro--img {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: clamp(220px, 35vw, 340px);
    display: flex;
    align-items: flex-end;
}

.page-intro--img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 18, 32, 0.55) 0%, rgba(7, 18, 32, 0.88) 100%);
}

.page-intro__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.page-intro h1 {
    color: var(--cream);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.page-intro p {
    max-width: 42rem;
    color: rgba(247, 243, 235, 0.8);
    font-size: clamp(1rem, 2vw, 1.12rem);
    margin: 0;
    line-height: 1.6;
}

/* Content prose */
.content-prose {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3.5rem) 1.25rem clamp(2.5rem, 6vw, 4.5rem);
}

.content-prose--narrow { max-width: 52rem; }

.content-prose h2 {
    margin-top: clamp(2rem, 4vw, 2.75rem);
    padding-top: 0.5rem;
}

.content-prose h2:first-child { margin-top: 0; }

.content-prose__closing {
    margin-top: 3rem;
    padding-top: 2.25rem;
    border-top: 1px solid var(--cream-muted);
}

.content-prose__closing h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.content-prose__closing p {
    margin-bottom: 1.25rem;
}

.content-prose__closing .fee-note {
    margin: 1.75rem 0;
}

.content-prose__closing .btn {
    margin-top: 0.25rem;
}

.content-prose h3 { margin-top: 1.5rem; }

.prose-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.prose-table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    font-size: 0.94rem;
}

.prose-table th,
.prose-table td {
    border: 1px solid var(--cream-muted);
    padding: 0.85rem 1rem;
    text-align: left;
}

.prose-table th {
    background: var(--navy);
    color: var(--cream);
    font-weight: 600;
    white-space: nowrap;
}

.prose-table tr:nth-child(even) { background: var(--white); }

.legal-note {
    background: var(--white);
    border-left: 4px solid var(--gold);
    padding: clamp(1rem, 2.5vw, 1.35rem) clamp(1.15rem, 2.5vw, 1.5rem);
    margin: 2rem 0;
    font-size: 0.94rem;
    color: var(--text-muted);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: var(--shadow);
}

.fee-note {
    background: var(--gold-dim);
    border: 1px solid rgba(196, 160, 82, 0.35);
    padding: clamp(1rem, 2.5vw, 1.35rem);
    border-radius: var(--radius);
    font-size: 0.94rem;
    line-height: 1.6;
}

/* Contact */
.contact-layout {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3.5rem) 1.25rem clamp(2.5rem, 6vw, 4.5rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}

.contact-layout address {
    font-style: normal;
    line-height: 1.85;
    font-size: 0.98rem;
}

.contact-visual {
    margin-top: 1.25rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-visual img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.map-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem clamp(1.5rem, 3vw, 2rem);
}

.map-section h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    margin-bottom: 0.65rem;
}

.map-section > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--cream-muted);
}

.map-wrap iframe {
    width: 100%;
    height: clamp(280px, 45vw, 420px);
    border: 0;
    display: block;
}

.map-caption {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    line-height: 1.5;
}

/* Forms */
.enquiry-form {
    background: var(--white);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--cream-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group { margin-bottom: 1.15rem; }

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
    color: var(--navy);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--cream-muted);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 1rem;
    background: var(--cream);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-dim);
}

.honeypot {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.req { color: var(--error); }

.form-note {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.5;
}

.alert {
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
}

.alert-error {
    background: #fdeaea;
    border: 1px solid #e8b4b4;
    color: var(--error);
}

.alert-success {
    background: #e8f5ee;
    border: 1px solid #a8d4bc;
    color: var(--success);
}

.alert-success h2 {
    color: var(--success);
    font-size: 1.3rem;
    margin-top: 0;
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: rgba(247, 243, 235, 0.72);
    padding: clamp(2.5rem, 5vw, 3.5rem) 1.25rem 0;
}

.site-footer__grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr) 1.25fr;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.site-footer__name {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    color: var(--cream);
    margin: 0 0 0.65rem;
}

.site-footer__tagline {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.65;
}

.site-footer__heading {
    font-weight: 600;
    color: var(--gold-light);
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li { margin-bottom: 0.45rem; }

.site-footer a {
    color: rgba(247, 243, 235, 0.72);
    text-decoration: none;
    font-size: 0.9rem;
}

.site-footer a:hover { color: var(--gold-light); }

.site-footer address {
    font-style: normal;
    font-size: 0.88rem;
    line-height: 1.75;
}

.site-footer__bottom {
    max-width: var(--max-width);
    margin: clamp(1.75rem, 3vw, 2.5rem) auto 0;
    padding: 1.25rem 0 1.5rem;
    border-top: 1px solid rgba(196, 160, 82, 0.18);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.82rem;
}

.site-footer__note {
    max-width: 30rem;
    margin: 0;
    opacity: 0.85;
    line-height: 1.55;
}

/* 404 */
.error-page {
    text-align: center;
    padding: clamp(4rem, 10vw, 7rem) 1.25rem;
    min-height: 50vh;
}

.error-page__img {
    max-width: 420px;
    margin: 0 auto 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.error-page h1 {
    font-size: clamp(4rem, 12vw, 6rem);
    color: var(--gold);
    margin: 0;
    line-height: 1;
}

.error-page h2 { margin: 0.5rem 0 1rem; }

.error-page p {
    color: var(--text-muted);
    max-width: 28rem;
    margin: 0 auto 1.5rem;
}

.error-page .btn { margin: 0.35rem; }

/* Responsive — tablet */
@media (max-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 960px) {
    .hero-split {
        grid-template-columns: 1fr;
        max-height: none;
        min-height: auto;
    }

    .hero-split__image {
        min-height: clamp(220px, 40vw, 320px);
        order: -1;
    }

    .hero-split__image::after {
        background: linear-gradient(180deg, transparent 30%, var(--navy) 100%);
    }

    .hero-split__content {
        padding: 2rem 1.25rem 2.5rem;
    }

    .practice-grid { grid-template-columns: 1fr; }
    .stats-strip__inner { grid-template-columns: 1fr; }
    .editorial-columns { grid-template-columns: 1fr; }
    .editorial-columns__img { order: -1; }
    .content-split { grid-template-columns: 1fr; }
    .content-split--reverse .content-split__media { order: -1; }
    .content-split--reverse .content-split__text { order: 0; }
    .insights-row { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .area-block { grid-template-columns: 1fr; }
    .area-block__img { order: -1; }
    .article-card { grid-template-columns: 1fr; }
    .article-card__body { padding: 1.25rem; }
    .article-card__img { min-height: 200px; }
    .form-row { grid-template-columns: 1fr; }
}

/* Responsive — desktop nav sizing */
@media (min-width: 1025px) {
    .site-nav a:not(.site-nav__cta) {
        font-size: 0.875rem;
    }

    .site-nav__cta {
        font-size: 0.875rem !important;
        padding: 0.55rem 1rem !important;
    }

    .site-logo {
        max-width: 13rem;
    }
}

/* Responsive — mobile & tablet menu */
@media (max-width: 1024px) {
    .site-header__inner {
        position: relative;
    }

    .site-logo {
        max-width: none;
        flex: 1;
        z-index: 1003;
    }

    .site-header__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1002;
        flex-shrink: 0;
    }

    .site-nav {
        display: flex;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        max-height: calc(100dvh - var(--header-h));
        z-index: 1001;
        background: var(--navy-mid);
        flex-direction: column;
        align-items: stretch;
        flex: none;
        padding: 1.25rem 1.25rem 2rem;
        gap: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-top: 1px solid rgba(196, 160, 82, 0.15);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a {
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 1rem;
    }

    .site-nav a.is-active { border-bottom-color: var(--gold); }

    .site-nav__cta {
        margin: 1rem 0 0;
        text-align: center;
        width: 100%;
        font-size: 0.95rem !important;
    }
}

@media (max-width: 720px) {
    .cookie-banner__inner {
        padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
    }

    .cookie-banner__actions .btn {
        flex: 1 1 auto;
        min-width: calc(50% - 0.35rem);
    }

    .hero-split__actions {
        flex-direction: column;
    }

    .hero-split__actions .btn {
        width: 100%;
        text-align: center;
    }

    .process-list li {
        padding-left: 2.75rem;
        font-size: 0.94rem;
    }

    .site-footer__grid { grid-template-columns: 1fr; }

    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .site-footer__note { max-width: none; }

    .enquiry-form .btn { width: 100%; }
}

@media (max-width: 480px) {
    body { font-size: 1rem; }

    .stats-strip__num { font-size: 1.85rem; }

    .practice-card__img { height: 180px; }

    .map-wrap iframe { height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html { scroll-behavior: auto; }
}
