/*
 * Key Ledgers — Shared Stylesheet
 * Single source of truth for all pages.
 * All styles consolidated here — no inline styles in any HTML file.
 * Color system, nav, footer, buttons, animations — all here.
 */

/* ===== CSS VARIABLES — Homepage Color System ===== */
:root {
    --primary:          #FF0000;
    --primary-hover:    #CC0000;
    --bg-dark:          #00132D;
    --bg-mid:           #162F47;
    --bg-alt:           #2A5F8F;
    --bg-light:         #EAF1F8;
    --bg-off:           #F4F8FC;
    --text-dark:        #00132D;
    --text-body:        #3D3D3D;
    --text-muted:       #6B7280;
    --text-light:       #ADADAD;
    --text-dim:         rgba(255,255,255,0.75);
    --border:           #D1DCE8;
    --border-dark:      #1E3D5A;
    --display:          'Cormorant Garamond', Georgia, serif;
    --sans:             'DM Sans', system-ui, sans-serif;
    --nav-h:            76px;
    --max-w:            1440px;
    --z-nav:            500;
    --ease:             cubic-bezier(0.4,0,0.2,1);
    --ease-out:         cubic-bezier(0.16,1,0.3,1);
    --ease-back:        cubic-bezier(0.34,1.56,0.64,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; -webkit-text-size-adjust: 100%; overflow-x: hidden; background: var(--bg-dark); }
body { font-family: var(--sans); line-height: 1.65; color: var(--text-body); background: #fff; -webkit-font-smoothing: antialiased; width: 100%; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ===== GRAIN OVERLAY ===== */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.022;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

/* ===== CONTAINER ===== */
.wrap {
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: 24px;
}
@media (min-width: 768px)  { .wrap { padding-inline: 48px; } }
@media (min-width: 1200px) { .wrap { padding-inline: 64px; } }

/* ===== SCROLL REVEAL ===== */
.sr, .sr-l, .sr-r {
    transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.sr            { opacity: 0; transform: translateY(36px); }
.sr-l          { opacity: 0; transform: translateX(-36px); }
.sr-r          { opacity: 0; transform: translateX(36px); }
.sr.on, .sr-l.on, .sr-r.on { opacity: 1; transform: none; }
.d1 { transition-delay: 0s; }
.d2 { transition-delay: 0.1s; }
.d3 { transition-delay: 0.2s; }
.d4 { transition-delay: 0.3s; }
.d5 { transition-delay: 0.4s; }
.d6 { transition-delay: 0.5s; }

/* ===== SECTION LABEL ===== */
.s-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}
.s-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--primary);
    flex-shrink: 0;
}
.s-label.light { color: rgba(255,255,255,0.70); }
.s-label.light::before { background: var(--primary); }
/* On light director variant, reset label to dark */
.director--light .s-label.light { color: var(--primary); }
.director--light .s-label.light::before { background: var(--primary); }

/* ===== NAVIGATION ===== */
#site-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0; right: 0;
    height: var(--nav-h);
    z-index: 9990;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 1px 0 var(--border);
    transition: box-shadow 0.35s var(--ease);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
#site-nav.scrolled {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}
/* header always visible — no auto-hide */
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    gap: 32px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.nav-logo-bg {
    display: inline-flex;
    align-items: center;
    background: transparent;
    padding: 0;
}
.nav-logo-img {
    height: 44px;
    width: auto;
    display: block;
}
.nav-links {
    display: none;
    gap: 32px;
    align-items: center;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    transition: color 0.2s;
}
.nav-a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -3px;
    width: 100%; height: 1.5px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out);
}
.nav-a:hover { color: var(--text-dark); }
.nav-a:hover::after { transform: scaleX(1); }
.nav-a--active { color: var(--primary) !important; }
.nav-a--active::after { transform: scaleX(1) !important; }
#site-nav.scrolled .nav-a { color: var(--text-muted); }
#site-nav.scrolled .nav-a:hover { color: var(--text-dark); }
#site-nav.scrolled .nav-a--active { color: var(--primary) !important; }
#site-nav.scrolled .nav-a--active::after { transform: scaleX(1) !important; }
.nav-cta {
    display: none;
}
@media (min-width: 1024px) { .nav-cta { display: flex; align-items: center; gap: 16px; } }
.btn-nav {
    padding: 10px 22px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s;
}
.btn-nav:hover { background: var(--primary-hover); }
.nav-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}
@media (min-width: 1024px) { .nav-burger { display: none; } }
.nav-burger span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--text-dark);
    transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }
.mob-nav {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: calc(var(--z-nav) - 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    clip-path: circle(0% at calc(100% - 36px) 38px);
    transition: clip-path 0.55s var(--ease-out);
}
.mob-nav.open { clip-path: circle(150% at calc(100% - 36px) 38px); }
.mob-link {
    font-family: var(--display);
    font-size: 42px;
    font-weight: 400;
    color: rgba(255,255,255,0.70);
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.mob-link:hover { color: #fff; }

/* ===== NAV DROPDOWN ===== */
.nav-has-drop { position: relative; }
.nav-drop {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    min-width: 280px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-6px);
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
    z-index: 600;
}
.nav-has-drop:hover .nav-drop,
.nav-has-drop:focus-within .nav-drop {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-drop-a {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-body);
    transition: color 0.2s, background 0.2s;
}
.nav-drop-a:hover { color: var(--primary); background: var(--bg-light); }
.mob-link--sub {
    font-size: 22px !important;
    color: rgba(255,255,255,0.55) !important;
    letter-spacing: 0.05em;
}

/* ===== TRUST STRIP (ticker) ===== */
.strip {
    background: #fff;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.strip::before, .strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.strip::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.strip::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }
.strip-track {
    display: flex;
    width: max-content;
    animation: ticker 30s linear infinite;
}
.strip-track:hover { animation-play-state: paused; }
@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 52px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dark);
    white-space: nowrap;
    border-right: 1px solid rgba(16,42,67,0.12);
}
.strip-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
/* Inner page variant — grey bg */
.strip--inner { background: #F4F4F4; border-top: 2px solid #E5E7EB; border-bottom: 2px solid #E5E7EB; }
.strip--inner::before { background: linear-gradient(to right, #F4F4F4, transparent); }
.strip--inner::after  { background: linear-gradient(to left, #F4F4F4, transparent); }
.strip--inner .strip-item { color: #6B7280; font-size: 10px; font-weight: 600; letter-spacing: 0.15em; border-right: none; padding: 0 40px; }

/* ===== BUTTONS ===== */
.btn-p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: var(--bg-dark);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}
.btn-p:hover { background: var(--bg-alt); transform: translateY(-1px); }
.btn-p svg { transition: transform 0.25s; }
.btn-p:hover svg { transform: translateX(4px); }
/* Hero context: white button on dark */
.hero-btns .btn-p { background: #fff; color: var(--bg-dark); }
.hero-btns .btn-p:hover { background: rgba(255,255,255,0.88); }
.btn-o {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.3s var(--ease-out), border-color 0.3s, color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
    white-space: nowrap;
}
.btn-o:hover { background: #fff; border-color: #fff; color: var(--bg-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-w {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: #fff;
    color: var(--bg-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.btn-w:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.btn-w svg { transition: transform 0.3s var(--ease-out); }
.btn-w:hover svg { transform: translateX(4px); }
.btn-submit {
    align-self: flex-start;
    padding: 15px 36px;
    background: var(--bg-dark);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
}
.btn-submit:hover { background: var(--bg-alt); transform: translateY(-1px); }

/* ===== SERVICES / SVC CARDS ===== */
.services {
    background-color: #fff;
    background-image: radial-gradient(circle, rgba(0,0,0,0.045) 1px, transparent 1px);
    background-size: 28px 28px;
    padding: 120px 0;
}
.services-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
}
@media (min-width: 1024px) {
    .services-head {
        grid-template-columns: 1fr 1fr;
        align-items: end;
        gap: 48px;
    }
}
.services-h2 {
    font-family: var(--display);
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--text-dark);
}
.services-sub {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-body);
    max-width: 480px;
    align-self: end;
}
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--border);
}
@media (min-width: 768px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }
.services-featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 768px) { .services-featured { grid-template-columns: 1fr 1fr; } }
.services-secondary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
}
@media (min-width: 768px) { .services-secondary { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .services-secondary { grid-template-columns: 1fr 1fr 1fr; } }
.svc {
    padding: 44px 40px;
    background: var(--bg-light);
    border: none;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.svc-link::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}
.svc::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.45s var(--ease-out);
}
.svc::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16,42,67,0.035) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
}
.svc:hover { background: #fff; box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }
.svc:hover::before { transform: scaleY(1); }
.svc:hover::after { opacity: 1; }
.svc--featured {
    background: var(--bg-dark) !important;
    padding: 56px 44px;
    border-radius: 4px;
}
.svc--featured .svc-n { color: rgba(255,255,255,0.35); }
.svc--featured .svc-n::after { background: rgba(255,255,255,0.12); }
.svc--featured .svc-title { color: #fff; font-size: clamp(26px, 2.5vw, 38px); }
.svc--featured .svc-desc { color: rgba(255,255,255,0.6); }
.svc--featured .svc-link { color: var(--primary); opacity: 0; }
.svc--featured:hover .svc-link { opacity: 1; transform: none; }
.svc--featured::before { background: var(--primary); }
.svc--featured::after { background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 60%); }
.svc-n {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.svc-n::after { content: ''; display: block; width: 16px; height: 1px; background: var(--border); }
.svc-title {
    font-family: var(--display);
    font-size: clamp(20px, 1.8vw, 28px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 14px;
    letter-spacing: -0.005em;
}
.svc-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-body);
}
.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s, transform 0.3s;
}
.svc:hover .svc-link { opacity: 1; transform: none; }

/* ===== WHY US ===== */
.why {
    background: var(--bg-light);
    padding: 120px 0;
}
.why-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}
@media (min-width: 1024px) {
    .why-inner {
        grid-template-columns: 5fr 6fr;
        gap: 80px;
    }
}
.why-img-wrap {
    position: relative;
    overflow: visible;
}
.why-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    position: relative;
    z-index: 1;
    display: block;
}
.why-img-wrap::before {
    content: '';
    position: absolute;
    top: 24px; left: -24px; bottom: -24px; right: 24px;
    border: 1.5px solid rgba(16,42,67,0.12);
    z-index: 0;
    transition: all 0.6s var(--ease-out);
}
.why-img-wrap.on::before {
    top: 20px; left: -20px; bottom: -20px; right: 20px;
}
.why-img-wrap .red-line {
    position: absolute;
    top: 0; left: -24px;
    width: 3px; height: 0;
    background: var(--bg-dark);
    z-index: 2;
    transition: height 1.1s var(--ease-out);
}
.why-img-wrap.on .red-line { height: 100%; }
.why-h2 {
    font-family: var(--display);
    font-size: clamp(34px, 3.5vw, 54px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.why-h2 em { font-style: italic; font-weight: 400; color: var(--primary); }
.why-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 0;
}
.why-body p { margin-bottom: 14px; }
.why-body p:last-child { margin-bottom: 0; }
.why-body-closing {
    font-family: var(--display);
    font-size: 17px;
    font-style: italic;
    font-weight: 500;
    color: var(--text-dark);
    border-left: 3px solid var(--primary);
    padding-left: 14px;
    margin-top: 4px;
}
.why-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}
.why-li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-body);
}
.why-li-dot {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--bg-dark);
    flex-shrink: 0;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-li-dot svg { display: block; }

/* ===== STATS ===== */
.stats {
    background: var(--bg-dark);
    padding: 100px 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}
.stats::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 1100px; height: 600px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.03) 0%, transparent 62%);
    pointer-events: none;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-dark);
    border: 1px solid var(--border-dark);
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
    background: var(--bg-dark);
    padding: 52px 40px;
    text-align: center;
    position: relative;
}
.stat-n {
    font-family: var(--display);
    font-size: clamp(52px, 6vw, 80px);
    font-weight: 600;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.stat-n sup {
    font-size: 0.45em;
    color: rgba(255,255,255,0.5);
    vertical-align: super;
    margin-left: 2px;
}
.stat-l {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

/* ===== CASE STUDIES ===== */
.cases {
    background: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.cases::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,42,67,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.cases-head { margin-bottom: 48px; }
.cases-h2 {
    font-family: var(--display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 600;
    line-height: 1.05;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}
.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) { .cases-grid { grid-template-columns: 1fr 1fr; } }
.case-card {
    background: #fff;
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
    cursor: default;
    box-shadow: 0 4px 24px rgba(16,42,67,0.08);
    border: 1px solid var(--border);
}
.case-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}
.case-card:hover { box-shadow: 0 16px 48px rgba(16,42,67,0.12); transform: translateY(-4px); }
.case-card:hover::before { transform: scaleX(1); }
.case-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.case-h3 {
    font-family: var(--display);
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.005em;
}
.case-body {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-body);
    max-width: 460px;
}
.case-rule {
    width: 40px; height: 2px;
    background: var(--border);
    margin: 28px 0;
    transition: background 0.3s, width 0.4s var(--ease-out);
}
.case-card:hover .case-rule { background: var(--primary); width: 60px; }

/* ===== EDITORIAL PULL ===== */
.editorial {
    background: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.editorial::before {
    content: '';
    position: absolute;
    top: -60px; left: 10%;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: rgba(255,255,255,0.025);
    pointer-events: none;
}
.editorial-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 1024px) {
    .editorial-inner {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}
.editorial-pull {
    font-family: var(--display);
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.3;
    color: rgba(255,255,255,0.85);
    letter-spacing: -0.01em;
}
.editorial-pull strong {
    font-weight: 600;
    font-style: normal;
    color: #fff;
}
.editorial-body {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
}
.editorial-sig {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.editorial-sig::before {
    content: '';
    display: block;
    width: 24px; height: 1px;
    background: var(--primary);
}

/* ===== WHY SOLICITORS INSTRUCT US ===== */
.wsiu {
    padding: 120px 0;
    background: var(--bg-dark);
}
.wsiu-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.wsiu-h2 {
    font-family: var(--display);
    font-size: clamp(24px, 2.4vw, 36px);
    font-weight: 600;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 20px;
}
.wsiu-lead {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-dim);
    font-style: italic;
}
.wsiu-body {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin-bottom: 18px;
}
.wsiu-closing {
    font-family: var(--display);
    font-size: clamp(18px, 1.8vw, 24px);
    font-style: italic;
    font-weight: 500;
    color: #fff;
    border-left: 3px solid var(--primary);
    padding-left: 20px;
    margin-top: 8px;
    line-height: 1.5;
}
@media (max-width: 1023px) {
    .wsiu-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 767px) {
    .wsiu { padding: 80px 0; }
}

/* ===== TESTIMONIALS ===== */
.testi {
    background: var(--bg-off);
    padding: 120px 0;
}
.testi-head {
    text-align: center;
    margin-bottom: 64px;
}
.testi-h2 {
    font-family: var(--display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 600;
    line-height: 1.05;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}
.testi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
@media (min-width: 768px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
.testi-card {
    background: #fff;
    padding: 52px 44px;
    position: relative;
    border-left: 3px solid transparent;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.testi-card:hover { background: #F5F9FD; border-left-color: var(--primary); box-shadow: 0 8px 32px rgba(16,42,67,0.07); }
.testi-q {
    font-family: var(--display);
    font-size: 100px;
    line-height: 0.6;
    color: var(--bg-dark);
    opacity: 0.12;
    pointer-events: none;
    user-select: none;
    margin-bottom: 12px;
    display: block;
}
.testi-text {
    font-family: var(--display);
    font-size: clamp(18px, 1.8vw, 24px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-body);
    margin-bottom: 32px;
}
.testi-auth {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}
.testi-init {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}
.testi-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}
.testi-firm {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 3px;
    letter-spacing: 0.04em;
}
.testi-featured {
    padding: 72px 60px;
    background: #EAF1F8;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--bg-dark);
}
.testi-featured::before {
    content: '"';
    position: absolute;
    top: -20px; right: 32px;
    font-family: var(--display);
    font-size: 220px;
    font-weight: 600;
    color: rgba(16,42,67,0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.testi-featured .testi-text {
    font-size: clamp(20px, 2.2vw, 30px);
    color: var(--text-dark);
    margin-bottom: 40px;
}
.testi-secondary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
}
@media (min-width: 768px) { .testi-secondary-grid { grid-template-columns: 1fr 1fr; } }

/* ===== FAQ ===== */
.faq {
    background: #fff;
    padding: 120px 0;
}
.faq-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
}
.faq-h2 {
    font-family: var(--display);
    font-size: clamp(34px, 3.5vw, 52px);
    font-weight: 600;
    line-height: 1.05;
    color: var(--text-dark);
    margin-bottom: 14px;
}
.faq-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    background: none;
    cursor: pointer;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--primary); }
.faq-ico {
    width: 28px; height: 28px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: background 0.2s, border-color 0.2s, transform 0.35s;
}
.faq-ico::before, .faq-ico::after {
    content: '';
    position: absolute;
    background: var(--text-body);
    transition: background 0.2s, transform 0.35s;
    border-radius: 2px;
}
.faq-ico::before { width: 12px; height: 1.5px; }
.faq-ico::after  { width: 1.5px; height: 12px; }
.faq-item.open .faq-ico { background: var(--primary); border-color: var(--primary); transform: rotate(45deg); }
.faq-item.open .faq-ico::before, .faq-item.open .faq-ico::after { background: #fff; }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease-out);
}
.faq-a-in {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-body);
    padding-bottom: 22px;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(135deg, #0D2137 0%, #1A3F5E 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.cta-band::after {
    content: '';
    position: absolute;
    bottom: -100px; left: 5%;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
    pointer-events: none;
}
.cta-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
@media (min-width: 768px) {
    .cta-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.cta-h2 {
    font-family: var(--display);
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 600;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -0.01em;
}
.cta-h2 em { font-style: italic; font-weight: 300; opacity: 0.65; }

/* ===== CONTACT ===== */
.contact {
    padding: 0;
    border-top: 1px solid var(--border);
    position: relative;
}
.contact-split {
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
    .contact-split { grid-template-columns: 1fr 1fr; min-height: 680px; }
}
.contact-dark {
    background: var(--bg-light);
    padding: clamp(64px, 8vw, 100px) clamp(32px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.contact-dark::after {
    content: '';
    position: absolute;
    bottom: -120px; right: -80px;
    width: 440px; height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,42,67,0.06) 0%, transparent 68%);
    pointer-events: none;
}
.contact-light {
    background: #fff;
    padding: clamp(64px, 8vw, 100px) clamp(32px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.contact-h2 {
    font-family: var(--display);
    font-size: clamp(32px, 3.2vw, 48px);
    font-weight: 600;
    line-height: 1.05;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.contact-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 36px;
}
.contact-detail {
    display: flex;
    align-items: baseline;
    gap: 14px;
    font-size: 14px;
    color: var(--text-body);
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
}
.contact-detail:first-of-type { border-top: 1px solid var(--border); }
.contact-quote {
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}
.contact-quote blockquote {
    font-family: var(--display);
    font-size: clamp(17px, 1.6vw, 22px);
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-muted);
}
.cd-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dark);
    min-width: 72px;
    flex-shrink: 0;
}
.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.fg {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.fl {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.fi, .ft {
    width: 100%;
    padding: 13px 16px;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text-dark);
    font-family: var(--sans);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.fi:focus, .ft:focus { border-color: var(--primary); background: rgba(16,42,67,0.02); }
.fi::placeholder, .ft::placeholder { color: var(--text-muted); opacity: 0.5; }
.ft { resize: vertical; min-height: 130px; }

/* ===== INNER PAGE HERO (shared across all inner pages) ===== */
.inner-hero {
    background: var(--bg-dark);
    padding: calc(var(--nav-h) + 80px) 0 80px;
    position: relative;
    overflow: hidden;
}
.inner-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60%; height: 100%;
    background: radial-gradient(ellipse at 90% 50%, rgba(255,0,0,0.04) 0%, transparent 65%);
    pointer-events: none;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.75); }
.breadcrumb .bc-sep { color: rgba(255,255,255,0.25); }
.ih-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}
.ih-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--primary); }
.ih-h1 {
    font-family: var(--display);
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: -0.015em;
    color: #fff;
    margin-bottom: 24px;
    max-width: 800px;
}
.ih-h1 em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.65); }
.ih-sub {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.75;
    color: var(--text-light);
    max-width: 560px;
    margin-bottom: 36px;
}
.ih-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ih-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.70);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 80px 0 32px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border-dark);
}
@media (min-width: 768px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-top > div:first-child { grid-column: 1 / -1; }
    .footer-top > div:last-child { grid-column: 1 / -1; }
}
@media (min-width: 1100px) {
    .footer-top { grid-template-columns: 1.6fr 0.9fr 0.9fr 1fr 1.2fr; }
    .footer-top > div:first-child { grid-column: auto; }
    .footer-top > div:last-child { grid-column: auto; }
}
.ft-logo-img {
    height: 52px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}
.ft-tag {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 280px;
}
.ft-accreds { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.ft-accred-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    transition: border-color 0.2s, color 0.2s;
}
.ft-accred-badge:hover { border-color: rgba(255,255,255,0.55); color: rgba(255,255,255,0.85); }
.ft-accred-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.ft-icons { display: flex; gap: 12px; margin-top: 20px; }
.ft-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.55);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.ft-icon:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.ft-icon--red { color: var(--primary); border-color: rgba(255,0,0,0.3); }
.ft-icon--red:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.ft-icon--cv { gap: 3px; width: auto; padding: 0 12px; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; }
.ft-phone { margin-bottom: 16px; }
.ft-phone-num {
    display: block;
    font-family: var(--display);
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.01em;
    line-height: 1.1;
    transition: color 0.2s;
    margin-bottom: 4px;
}
.ft-phone-num:hover { color: #fff; }
.ft-phone-avail { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.fc-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
}
.fc-links { display: flex; flex-direction: column; gap: 10px; }
.fc-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.fc-links a:hover { color: #fff; }
/* footer newsletter */
.ft-nl-title {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}
.ft-nl-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.ft-nl-form {
    display: flex;
    gap: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    transition: border-color 0.2s;
}
.ft-nl-form:focus-within { border-color: var(--primary); }
.ft-nl-input {
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
    font-family: var(--sans);
    font-size: 13px;
    color: #fff;
    background: rgba(255,255,255,0.05);
    border: none;
    outline: none;
}
.ft-nl-input::placeholder { color: rgba(255,255,255,0.3); }
.ft-nl-btn {
    padding: 10px 18px;
    background: var(--primary);
    color: #fff;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.ft-nl-btn:hover { background: var(--primary-hover); }
.ft-nl-note {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    margin-top: 10px;
    line-height: 1.5;
}
.footer-bot {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) {
    .footer-bot {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-leg { display: flex; gap: 24px; }
.footer-leg a {
    font-size: 12px;
    color: rgba(255,255,255,0.70);
    transition: color 0.2s;
}
.footer-leg a:hover { color: #fff; }
.footer-credit { font-size: 12px; color: rgba(255,255,255,0.55); }
.footer-credit a {
    color: rgba(255,255,255,0.70);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.footer-credit a:hover { color: rgba(255,255,255,0.85); }

/* ============================================================
   MOBILE RESPONSIVE — COMPREHENSIVE
   ============================================================ */

/* --- Mobile: 0–767px --- */
@media (max-width: 767px) {
    /* Nav — compact, logo bigger, less padding */
    #site-nav { height: 56px; }
    :root { --nav-h: 56px; }
    .nav-inner { height: 56px; gap: 0; padding-block: 6px; }
    .nav-logo-img { height: 42px; }
    .nav-burger { padding: 6px; }
    .nav-burger span { width: 22px; height: 2px; }

    /* Mobile menu — tighter spacing */
    .mob-nav {
        overflow-y: auto;
        padding: 52px 28px 32px;
        gap: 0;
        align-items: flex-start;
    }
    .mob-link {
        font-size: 24px;
        padding: 8px 0;
        width: 100%;
    }
    .mob-link--sub {
        font-size: 14px !important;
        padding: 6px 0 6px 18px !important;
        border-left: 2px solid rgba(255,255,255,0.12);
        margin-left: 4px;
    }

    /* Inner hero */
    .inner-hero { padding: calc(var(--nav-h) + 32px) 0 40px; }
    .ih-h1 { font-size: clamp(30px, 8vw, 44px); }
    .ih-sub { font-size: 14px; margin-bottom: 20px; }
    .ih-pills { gap: 6px; }
    .ih-pill { padding: 5px 10px; font-size: 9px; }

    /* Sections — tighter padding on mobile */
    .services, .why, .cases, .testi, .faq, .credentials, .how-we-work, .about-practice { padding: 64px 0; }
    .stats { padding: 56px 0; }
    .cta-band { padding: 48px 0; }

    /* Buttons — full-width on mobile */
    .btn-p, .btn-o, .btn-w, .btn-nav, .btn-submit { width: 100%; justify-content: center; text-align: center; }
    .hero-btns { flex-direction: column; }

    /* Footer — mobile */
    .footer { padding: 48px 0 24px; }
    .footer-top {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto;
        gap: 28px;
        margin-bottom: 32px;
        padding-bottom: 32px;
    }
    .footer-top > div:first-child { grid-column: 1 / -1; }
    .footer-top > div:nth-child(2) { grid-column: 1; text-align: left; }
    .footer-top > div:nth-child(3) { grid-column: 2; text-align: right; }
    .footer-top > div:nth-child(3) .fc-links { align-items: flex-end; }
    .footer-top > div:nth-child(3) .fc-title { text-align: right; }
    .footer-top > div:nth-child(4) { grid-column: 1 / -1; }
    .footer-top > div:nth-child(5) { grid-column: 1 / -1; }
    .ft-logo-img { height: 48px; margin-bottom: 8px; }
    .ft-tag { font-size: 12px; max-width: 100%; line-height: 1.6; }
    .ft-accreds { margin-top: 10px; }
    .fc-title { font-size: 10px; margin-bottom: 14px; }
    .fc-links a { font-size: 13px; }
    .fc-links { gap: 8px; }
    .ft-phone-num { font-size: 20px; }
    .ft-phone { margin-bottom: 12px; }
    .footer-bot { gap: 12px; flex-direction: column; }
    .footer-leg { flex-wrap: wrap; gap: 12px; }
    .footer-copy { font-size: 11px; }
    .footer-credit { font-size: 11px; }

    /* Contact split — full width stack */
    .contact-split { grid-template-columns: 1fr !important; min-height: auto !important; }
    .contact-dark, .contact-light { padding: 40px 20px; }
    .contact-h2 { font-size: clamp(24px, 6vw, 34px); }

    /* CTA band */
    .cta-inner { flex-direction: column !important; align-items: stretch !important; text-align: center; }
    .cta-h2 { font-size: clamp(24px, 7vw, 36px); }

    /* Stats */
    .stats-grid { grid-template-columns: 1fr 1fr !important; }
    .stat { padding: 28px 16px; }
    .stat-n { font-size: clamp(32px, 10vw, 52px); }

    /* Services grid */
    .services-grid, .services-featured, .services-secondary { grid-template-columns: 1fr !important; }
    .svc { padding: 28px 20px; }
    .svc-link { opacity: 1; transform: none; }
    .svc--featured .svc-link { opacity: 1; }

    /* Case cards */
    .cases-grid { grid-template-columns: 1fr !important; }
    .case-card { padding: 32px 24px; }

    /* Testimonial grid */
    .testi-grid, .testi-secondary-grid { grid-template-columns: 1fr !important; }
    .testi-card { padding: 32px 24px; }
    .testi-featured { padding: 36px 24px; }

    /* FAQ */
    .faq-q { font-size: 14px; padding: 16px 0; }

    /* Why us */
    .why-inner { grid-template-columns: 1fr !important; gap: 36px; }
    .why-img-wrap::before { display: none; }
    .why-img-wrap .red-line { display: none; }
    .why-h2 { font-size: clamp(28px, 7vw, 40px); }

    /* Editorial */
    .editorial-inner { grid-template-columns: 1fr !important; gap: 28px; }

    /* Director section — taller image for face visibility */
    .director-grid { grid-template-columns: 1fr !important; }
    .director-img-wrap { min-height: 480px; }
    .director-img { object-position: center 15%; }
    .director-content { padding: 28px 20px; }
    .director-name { font-size: clamp(26px, 7vw, 38px); }
    .director-bio { font-size: 15px; }

    /* Credentials */
    .credentials-head { grid-template-columns: 1fr !important; }
    .cred-row { grid-template-columns: 40px 1fr !important; gap: 16px; padding: 24px 0; }
    .cred-row-n { font-size: 32px; }
    .cred-row-body { grid-column: 1 / -1 !important; }

    /* Forms */
    .form-row { grid-template-columns: 1fr !important; }

    /* Strip */
    .strip-item { padding: 0 24px; font-size: 10px; }

    /* Wrap container */
    .wrap { padding-inline: 20px; }

    /* Section headings */
    .services-h2, .cases-h2, .testi-h2, .faq-h2 { font-size: clamp(28px, 7vw, 40px); }

    /* Editorial list rows — fix 3-child grid on mobile */
    .ed-row {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        padding: 28px 0 !important;
    }
    .ed-n { font-size: 32px !important; color: rgba(0,0,0,0.3) !important; }
    .ed-body { grid-column: 1 / -1 !important; }

    /* Credential rows on about page */
    .cred-row { grid-template-columns: 1fr !important; gap: 8px !important; }
    .cred-row-n { font-size: 28px !important; position: static !important; }
    .cred-row-title { margin-top: 0; }

    /* Mobile menu social icons */
    .mob-social {
        display: flex;
        gap: 0;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .mob-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(255,255,255,0.15);
        color: rgba(255,255,255,0.6);
        transition: color 0.2s, border-color 0.2s;
    }
    .mob-social a + a { border-left: none; }
    .mob-social a:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
}

/* ===== FORM SUCCESS STATE ===== */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 56px 32px;
    gap: 16px;
    min-height: 240px;
}
.form-success-icon { margin-bottom: 8px; }
.form-success-title {
    font-family: var(--display);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.2;
}
.form-success-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 380px;
}

/* Field validation error highlight */
.field-error {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(255,0,0,0.12) !important;
    outline: none !important;
}

/* --- Tablet: 768–1023px --- */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav-logo-img { height: 40px; }

    .inner-hero { padding: calc(var(--nav-h) + 60px) 0 60px; }

    .services, .why, .cases, .testi, .faq { padding: 96px 0; }

    .contact-split { grid-template-columns: 1fr !important; }
    .contact-dark, .contact-light { padding: 56px 48px; }

    .director-grid { grid-template-columns: 1fr 1fr; }

    .why-inner { grid-template-columns: 1fr !important; gap: 48px; }

    .editorial-inner { grid-template-columns: 1fr !important; }

    .cta-inner { flex-direction: column; align-items: center; text-align: center; }

    /* Testimonials page — reduce hero padding on tablet */
    .from-bar { padding: 80px 0; }

    /* Case studies page — reduce padding on tablet */
    .cs-section { padding: 80px 0; }

    /* About page — reduce credential showcase padding on tablet */
    .about-practice { padding: 80px 0; }
}

/* ===== PAGE: HOMEPAGE ===== */
    /*
      DESIGN DECISIONS — Key Ledgers Premium Rebuild
      1. Colour weight:   Bold — near-black dominant, crimson as commanding authority accent
      2. Font pairing:    Cormorant Garamond (gravitas, legal precision) + DM Sans (body clarity)
      3. Layout rhythm:   Editorial — open sections, generous whitespace, deliberate density
      4. Hero type:       Full-height split — massive typographic statement left, Pexels boardroom right
      5. Differentiation: Underline-draw on hero, counter animations, ledger-line section markers,
                          clip-path service card reveals, staggered grid entries
    */

    /* ===== HERO ===== */
    .hero {
        height: calc(100svh - var(--bar-h, 0px));
        min-height: 600px;
        background: var(--bg-dark);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    /* Panels wrapper — flex row on desktop */
    .hero-panels {
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }
    @media (min-width: 1024px) { .hero-panels { flex-direction: row; } }

    /* Left panel */
    .hero-l {
        flex: 0 0 100%;
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-top: calc(var(--nav-h) + 48px);
        padding-bottom: 48px;
        padding-inline: 24px;
    }
    @media (min-width: 768px)  { .hero-l { padding-inline: 48px; } }
    @media (min-width: 1024px) {
        .hero-l {
            flex: 0 0 54%;
            justify-content: center;
            padding-top: calc(var(--nav-h) + 80px);
            padding-bottom: 80px;
            padding-left: clamp(48px, calc((100vw - 1440px)/2 + 64px), 160px);
            padding-right: 48px;
        }
    }

    /* Right image panel */
    .hero-r {
        flex: 0 0 100%;
        min-height: 45vh;
        position: relative;
        overflow: hidden;
    }
    @media (min-width: 1024px) {
        .hero-r {
            flex: 0 0 46%;
            min-height: 0;
        }
    }
    .hero-r-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
        transform: scale(1.06);
        transition: transform 7s linear;
    }
    .hero-r-img.ken-loaded { transform: scale(1.01); }
    /* Gradient bleeds */
    .hero-r::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, var(--bg-dark) 0%, transparent 12px);
        z-index: 1;
    }
    @media (min-width: 1024px) {
        .hero-r::before {
            background: linear-gradient(to right, var(--bg-dark) 0%, transparent 12%);
        }
    }
    /* Dark image overlay */
    .hero-r::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(16,42,67,0.18);
        z-index: 1;
    }

    /* Hero content */
    .hero-eyebrow {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 28px;
    }
    .hero-eyebrow span { display: block; width: 32px; height: 1px; background: var(--primary); }
    .hero-h1 {
        font-family: var(--display);
        font-size: clamp(42px, 4.6vw, 72px);
        font-weight: 600;
        line-height: 1.0;
        letter-spacing: -0.015em;
        color: #fff;
        margin-bottom: 28px;
    }
    .hero-h1 em {
        font-style: italic;
        font-weight: 300;
        color: rgba(255,255,255,0.7);
    }
    .h1-line { display: block; overflow: hidden; }
    .h1-word {
        display: block;
        animation: wordUp 0.75s var(--ease-out) both;
    }
    .h1-word.w2 { animation-delay: 0.12s; }
    .h1-word.w3 { animation-delay: 0.22s; }
    @keyframes wordUp {
        from { transform: translateY(100%); }
        to   { transform: translateY(0); }
    }
    /* Underline draw */
    .draw-line {
        position: relative;
        display: inline-block;
    }
    .draw-line::after {
        content: '';
        position: absolute;
        left: 0; bottom: 2px;
        width: 100%; height: 2px;
        background: var(--primary);
        transform: scaleX(0);
        transform-origin: left;
        animation: drawUnder 0.7s var(--ease-out) 0.85s both;
    }
    @keyframes drawUnder {
        from { transform: scaleX(0); }
        to   { transform: scaleX(1); }
    }
    .hero-sub {
        font-size: clamp(15px, 1.3vw, 17px);
        line-height: 1.75;
        color: var(--text-light);
        max-width: 460px;
        margin-bottom: 36px;
        animation: fadeSlide 0.75s var(--ease-out) 0.35s both;
    }
    @keyframes fadeSlide {
        from { opacity: 0; transform: translateY(16px); }
        to   { opacity: 1; transform: none; }
    }
    .hero-btns {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-bottom: 48px;
        animation: fadeSlide 0.75s var(--ease-out) 0.45s both;
    }
    .btn-p {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 15px 30px;
        background: #00132D;
        color: #fff;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        transition: background 0.2s, transform 0.2s;
        white-space: nowrap;
    }
    .btn-p:hover { background: #1B4770; transform: translateY(-1px); }
    /* Hero context: white button on dark background */
    .hero-btns .btn-p { background: #fff; color: #00132D; }
    .hero-btns .btn-p:hover { background: rgba(255,255,255,0.88); }
    .btn-p svg { transition: transform 0.25s; }
    .btn-p:hover svg { transform: translateX(4px); }
    .btn-o {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 30px;
        border: 1px solid rgba(255,255,255,0.3);
        color: #fff;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        transition: background 0.3s var(--ease-out), border-color 0.3s, color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
        white-space: nowrap;
    }
    .btn-o:hover { background: #fff; border-color: #fff; color: #00132D; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
    .hero-pills { display: none; }
    .hero-pill {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.70);
        background: transparent;
    }
    .hero-pill span.pill-dot {
        width: 5px; height: 5px;
        border-radius: 50%;
        background: var(--primary);
        flex-shrink: 0;
        display: block;
    }

/* ===== PAGE: INDEX ===== */
    /*
      DESIGN DECISIONS — Key Ledgers Premium Rebuild
      1. Colour weight:   Bold — near-black dominant, crimson as commanding authority accent
      2. Font pairing:    Cormorant Garamond (gravitas, legal precision) + DM Sans (body clarity)
      3. Layout rhythm:   Editorial — open sections, generous whitespace, deliberate density
      4. Hero type:       Full-height split — massive typographic statement left, Pexels boardroom right
      5. Differentiation: Underline-draw on hero, counter animations, ledger-line section markers,
                          clip-path service card reveals, staggered grid entries
    */

    /* ===== HERO ===== */
    .hero {
        height: calc(100svh - var(--bar-h, 0px));
        min-height: 600px;
        background: var(--bg-dark);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    /* Panels wrapper — flex row on desktop */
    .hero-panels {
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }
    @media (min-width: 1024px) { .hero-panels { flex-direction: row; } }

    /* Left panel */
    .hero-l {
        flex: 0 0 100%;
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-top: calc(var(--nav-h) + 48px);
        padding-bottom: 48px;
        padding-inline: 24px;
    }
    @media (min-width: 768px)  { .hero-l { padding-inline: 48px; } }
    @media (min-width: 1024px) {
        .hero-l {
            flex: 0 0 54%;
            justify-content: center;
            padding-top: calc(var(--nav-h) + 80px);
            padding-bottom: 80px;
            padding-left: clamp(48px, calc((100vw - 1440px)/2 + 64px), 160px);
            padding-right: 48px;
        }
    }

    /* Right image panel */
    .hero-r {
        flex: 0 0 100%;
        min-height: 45vh;
        position: relative;
        overflow: hidden;
    }
    @media (min-width: 1024px) {
        .hero-r {
            flex: 0 0 46%;
            min-height: 0;
        }
    }
    .hero-r-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
        transform: scale(1.06);
        transition: transform 7s linear;
    }
    .hero-r-img.ken-loaded { transform: scale(1.01); }
    /* Gradient bleeds */
    .hero-r::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, var(--bg-dark) 0%, transparent 12px);
        z-index: 1;
    }
    @media (min-width: 1024px) {
        .hero-r::before {
            background: linear-gradient(to right, var(--bg-dark) 0%, transparent 12%);
        }
    }
    /* Dark image overlay */
    .hero-r::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(16,42,67,0.18);
        z-index: 1;
    }

    /* Hero content */
    .hero-eyebrow {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 28px;
    }
    .hero-eyebrow span { display: block; width: 32px; height: 1px; background: var(--primary); }
    .hero-h1 {
        font-family: var(--display);
        font-size: clamp(42px, 4.8vw, 72px);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.015em;
        color: #fff;
        margin-bottom: 24px;
    }
    .hero-h1 em {
        font-style: italic;
        font-weight: 300;
        color: rgba(255,255,255,0.7);
    }
    .h1-line { display: block; overflow: visible; padding-bottom: 4px; }
    .h1-word {
        display: block;
        animation: wordUp 0.75s var(--ease-out) both;
    }
    .h1-word.w2 { animation-delay: 0.12s; }
    .h1-word.w3 { animation-delay: 0.22s; }
    @keyframes wordUp {
        from { transform: translateY(100%); }
        to   { transform: translateY(0); }
    }
    /* Underline draw */
    .draw-line {
        position: relative;
        display: inline-block;
    }
    .draw-line::after {
        content: '';
        position: absolute;
        left: 0; bottom: 2px;
        width: 100%; height: 2px;
        background: var(--primary);
        transform: scaleX(0);
        transform-origin: left;
        animation: drawUnder 0.7s var(--ease-out) 0.85s both;
    }
    @keyframes drawUnder {
        from { transform: scaleX(0); }
        to   { transform: scaleX(1); }
    }
    .hero-sub {
        font-size: clamp(15px, 1.3vw, 17px);
        line-height: 1.75;
        color: rgba(255,255,255,0.88);
        max-width: 520px;
        margin-bottom: 32px;
        animation: fadeSlide 0.75s var(--ease-out) 0.35s both;
    }
    .hero-sub p { margin-bottom: 10px; }
    .hero-sub p:last-child { margin-bottom: 0; }
    @keyframes fadeSlide {
        from { opacity: 0; transform: translateY(16px); }
        to   { opacity: 1; transform: none; }
    }
    .hero-btns {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-bottom: 48px;
        animation: fadeSlide 0.75s var(--ease-out) 0.45s both;
    }
    .btn-p {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 15px 30px;
        background: #00132D;
        color: #fff;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        transition: background 0.2s, transform 0.2s;
        white-space: nowrap;
    }
    .btn-p:hover { background: #1B4770; transform: translateY(-1px); }
    /* Hero context: white button on dark background */
    .hero-btns .btn-p { background: #fff; color: #00132D; }
    .hero-btns .btn-p:hover { background: rgba(255,255,255,0.88); }
    .btn-p svg { transition: transform 0.25s; }
    .btn-p:hover svg { transform: translateX(4px); }
    .btn-o {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 30px;
        border: 1px solid rgba(255,255,255,0.3);
        color: #fff;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        transition: background 0.3s var(--ease-out), border-color 0.3s, color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
        white-space: nowrap;
    }
    .btn-o:hover { background: #fff; border-color: #fff; color: #00132D; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
    .hero-pills { display: none; }
    .hero-pill {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.70);
        background: transparent;
    }
    .hero-pill span.pill-dot {
        width: 5px; height: 5px;
        border-radius: 50%;
        background: var(--primary);
        flex-shrink: 0;
        display: block;
    }

/* ===== PAGE: ABOUT ===== */
    /*
      DESIGN DECISIONS — Key Ledgers About Page
      1. Colour weight:   Bold — near-black dominant, crimson as commanding authority accent
      2. Font pairing:    Cormorant Garamond (gravitas, legal precision) + DM Sans (body clarity)
      3. Layout rhythm:   Editorial — open sections, generous whitespace, deliberate density
      4. Hero type:       Inner hero — typographic, dark, radial glow right
    */

    /* Inner hero, breadcrumb, ih-* all in kl.css */

    /* ===== DIRECTOR ICON ROW ===== */
    .dir-icons {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        margin-bottom: 28px;
        margin-top: 4px;
    }
    .dir-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border: 1px solid var(--border);
        color: var(--text-muted);
        transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    .dir-icon + .dir-icon { border-left: none; }
    .dir-icon:hover { color: var(--primary); border-color: var(--primary); background: rgba(255,0,0,0.04); }
    .dir-icon--cv { width: auto; padding: 0 16px; gap: 4px; }
    .director--light .dir-icon { border-color: var(--border); color: var(--text-muted); }

    /* ===== TESTIMONIAL INFINITE SCROLL ===== */
    .testi-scroll {
        overflow: hidden;
        position: relative;
        padding: 0;
    }
    .testi-scroll::before, .testi-scroll::after {
        content: '';
        position: absolute;
        top: 0; bottom: 0;
        width: 120px;
        z-index: 2;
        pointer-events: none;
    }
    .testi-scroll::before { left: 0; background: linear-gradient(to right, var(--bg-off), transparent); }
    .testi-scroll::after  { right: 0; background: linear-gradient(to left, var(--bg-off), transparent); }
    .testi-track {
        display: flex;
        width: max-content;
        animation: testi-ticker 35s linear infinite;
    }
    .testi-track:hover { animation-play-state: paused; }
    @keyframes testi-ticker {
        from { transform: translateX(0); }
        to   { transform: translateX(-50%); }
    }
    .testi-slide {
        flex-shrink: 0;
        width: 480px;
        padding: 44px 40px;
        margin: 0 12px;
        background: #fff;
        border: 1px solid var(--border);
        position: relative;
    }
    @media (max-width: 767px) { .testi-slide { width: 320px; padding: 32px 28px; } }
    .testi-slide-q {
        font-family: var(--display);
        font-size: 64px;
        line-height: 0.6;
        color: var(--bg-dark);
        opacity: 0.1;
        display: block;
        margin-bottom: 16px;
        user-select: none;
    }
    .testi-slide-text {
        font-family: var(--display);
        font-size: clamp(16px, 1.5vw, 20px);
        font-style: italic;
        font-weight: 400;
        line-height: 1.6;
        color: var(--text-body);
        margin-bottom: 28px;
    }
    .testi-slide-auth {
        display: flex;
        align-items: center;
        gap: 12px;
        border-top: 1px solid var(--border);
        padding-top: 20px;
    }
    .testi-slide-init {
        width: 40px; height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        flex-shrink: 0;
    }
    .testi-slide-name { font-size: 14px; font-weight: 500; color: var(--text-dark); }
    .testi-slide-firm { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

    /* ===== ABOUT PAGE - PRACTICE SECTION ===== */
    .about-practice {
        background: var(--bg-light);
        padding: 120px 0;
    }
    .about-practice-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 64px;
        align-items: start;
    }
    @media (min-width: 1024px) {
        .about-practice-grid {
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }
    }
    .about-h2 {
        font-family: var(--display);
        font-size: clamp(34px, 3.5vw, 52px);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.01em;
        color: var(--text-dark);
        margin-bottom: 32px;
    }
    .about-para {
        font-size: 16px;
        line-height: 1.85;
        color: var(--text-body);
        margin-bottom: 20px;
    }
    .about-para:last-child { margin-bottom: 0; }

    /* ===== VISION / MISSION / PRINCIPLES ===== */
    .vmp {
        background: #fff;
        padding: 100px 0;
    }
    .vmp-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2px;
    }
    @media (min-width: 900px) {
        .vmp-grid { grid-template-columns: 1fr 1fr 1fr; }
    }
    .vmp-card {
        background: var(--bg-off);
        padding: 52px 44px;
        display: flex;
        flex-direction: column;
        border-top: 3px solid transparent;
        transition: background 0.25s, border-color 0.25s;
    }
    .vmp-card:hover {
        background: #fff;
        border-top-color: var(--primary);
        box-shadow: 0 8px 40px rgba(16,42,67,0.07);
    }
    .vmp-icon {
        color: var(--primary);
        margin-bottom: 20px;
        opacity: 0.85;
    }
    .vmp-label {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 14px;
    }
    .vmp-title {
        font-family: var(--display);
        font-size: clamp(18px, 1.6vw, 22px);
        font-weight: 600;
        line-height: 1.3;
        color: var(--text-dark);
        margin-bottom: 0;
    }
    .vmp-divider {
        width: 28px;
        height: 2px;
        background: var(--primary);
        margin: 24px 0;
        flex-shrink: 0;
    }
    .vmp-body {
        font-size: 14px;
        line-height: 1.85;
        color: var(--text-body);
        margin-bottom: 14px;
    }
    .vmp-body:last-child { margin-bottom: 0; }
    .vmp-principles {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 8px;
    }
    .vmp-principle {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        font-weight: 500;
        color: var(--text-dark);
        letter-spacing: 0.03em;
    }
    .vmp-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--primary);
        flex-shrink: 0;
    }
    @media (max-width: 767px) {
        .vmp { padding: 72px 0; }
        .vmp-card { padding: 40px 28px; }
    }

    /* ===== PREMIUM CREDENTIAL SHOWCASE ===== */
    .cred-showcase {
        background: var(--bg-dark);
        border: 1px solid rgba(255,255,255,0.07);
        overflow: hidden;
    }
    .cred-showcase-hd {
        padding: 14px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .cred-showcase-hd-dot {
        width: 6px; height: 6px;
        border-radius: 50%;
        background: var(--primary);
        flex-shrink: 0;
    }
    .cred-showcase-hd-label {
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.55);
    }
    .cred-showcase-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    @media (max-width: 480px) {
        .cred-showcase-grid { grid-template-columns: 1fr 1fr; }
        .cred-panel { padding: 20px 16px 24px; }
        .cred-panel-abbr { font-size: 22px; }
    }
    .cred-panel {
        padding: 28px 24px 32px;
        border-right: 1px solid rgba(255,255,255,0.07);
        border-bottom: 1px solid rgba(255,255,255,0.07);
        position: relative;
        overflow: hidden;
        transition: background 0.3s;
        cursor: default;
    }
    .cred-panel:nth-child(even) { border-right: none; }
    .cred-panel:nth-child(3),
    .cred-panel:nth-child(4) { border-bottom: none; }
    .cred-panel::after {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 2px;
        background: var(--primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s var(--ease-out);
    }
    .cred-panel:hover { background: rgba(255,255,255,0.03); }
    .cred-panel:hover::after { transform: scaleX(1); }
    .cred-panel-abbr {
        display: block;
        font-family: var(--display);
        font-size: clamp(26px, 2.8vw, 40px);
        font-weight: 700;
        color: #fff;
        letter-spacing: -0.02em;
        line-height: 1;
        margin-bottom: 10px;
    }
    .cred-panel-label {
        display: block;
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.13em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.70);
        line-height: 1.55;
    }
    /* Stats row beneath grid */
    .cred-showcase-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-top: 1px solid rgba(255,255,255,0.07);
    }
    .cred-stat {
        padding: 20px 24px;
        border-right: 1px solid rgba(255,255,255,0.07);
    }
    .cred-stat:last-child { border-right: none; }
    .cred-stat-n {
        display: block;
        font-family: var(--display);
        font-size: 28px;
        font-weight: 700;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 6px;
        letter-spacing: -0.02em;
    }
    .cred-stat-label {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.55);
        line-height: 1.4;
    }

    /* ===== DIRECTOR SECTION ===== */
    .director {
        background: var(--bg-mid);
        overflow: hidden;
    }
    /* ===== LIGHT VARIANT (Brian) ===== */
    .director--light {
        background: var(--bg-off);
    }
    /* Text overrides — all dark tokens */
    .director--light .director-name   { color: var(--text-dark); }
    .director--light .director-bio    { color: var(--text-body); }
    .director--light .director-creds  { border-top-color: var(--border); }
    .director--light .director-cred   { color: var(--text-muted); border-bottom-color: var(--border); }
    /* No overlay on director images */
    .director-grid {
        display: grid;
        grid-template-columns: 1fr;
    }
    @media (min-width: 1024px) {
        .director-grid { grid-template-columns: 1fr 1fr; min-height: 540px; }
        /* Brian: image right — swap column order */
        .director-grid--reverse .director-img-wrap { order: 2; }
        .director-grid--reverse .director-content  { order: 1; padding: 72px 48px 72px 64px; }
    }
    .director-img-wrap {
        position: relative;
        min-height: 380px;
        overflow: hidden;
    }
    .director-img {
        position: absolute;
        inset: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        object-position: center top;
    }
    /* No overlay on director image */
    .director-img-wrap::after { display: none; }
    .director-content {
        padding: 48px 32px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        z-index: 2;
    }
    @media (min-width: 1024px) { .director-content { padding: 72px 64px 72px 48px; } }
    .director-name {
        font-family: var(--display);
        font-size: clamp(34px, 3.8vw, 58px);
        font-weight: 600;
        line-height: 1.0;
        letter-spacing: -0.015em;
        color: #fff;
        margin-bottom: 8px;
    }
    .director-role {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 36px;
    }
    .director-bio {
        font-size: 16px;
        line-height: 1.85;
        color: var(--text-light);
        margin-bottom: 20px;
        max-width: 520px;
    }
    .director-bio:last-of-type { margin-bottom: 36px; }
    .director-creds {
        display: flex;
        flex-direction: column;
        gap: 0;
        border-top: 1px solid var(--border-dark);
        max-width: 520px;
    }
    .director-cred {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 13px 0;
        border-bottom: 1px solid var(--border-dark);
        font-size: 14px;
        color: rgba(255,255,255,0.6);
    }
    .director-cred-dot {
        width: 5px; height: 5px;
        border-radius: 50%;
        background: var(--primary);
        flex-shrink: 0;
    }

    /* ===== CREDENTIALS GRID SECTION ===== */
    .credentials {
        background: var(--bg-light);
        padding: 100px 0;
    }
    .credentials-head {
        margin-bottom: 64px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    @media (min-width: 1024px) {
        .credentials-head {
            grid-template-columns: 1fr 1fr;
            align-items: end;
            gap: 48px;
        }
    }
    .credentials-h2 {
        font-family: var(--display);
        font-size: clamp(34px, 3.5vw, 52px);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.01em;
        color: var(--text-dark);
    }
    .credentials-sub {
        font-size: 15px;
        line-height: 1.75;
        color: var(--text-muted);
        align-self: end;
    }
    /* Editorial numbered list — credentials */
    .cred-list { border-top: 1px solid var(--border); }
    .cred-row {
        display: grid;
        grid-template-columns: 56px 1fr;
        gap: 40px;
        padding: 40px 0;
        border-bottom: 1px solid var(--border);
        align-items: start;
        transition: padding-left 0.3s var(--ease-out);
        cursor: default;
    }
    @media (min-width: 1024px) {
        .cred-row { grid-template-columns: 80px 1fr 1fr; gap: 48px; }
    }
    .cred-row:hover { padding-left: 8px; }
    .cred-row-n {
        font-family: var(--display);
        font-size: 52px;
        font-weight: 600;
        color: rgba(0,0,0,0.3);
        line-height: 1;
        letter-spacing: -0.04em;
        padding-top: 4px;
        flex-shrink: 0;
    }
    .cred-row-title {
        font-family: var(--display);
        font-size: clamp(22px, 2vw, 32px);
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 10px;
        letter-spacing: -0.01em;
        line-height: 1.1;
    }
    .cred-row-body {
        font-size: 14px;
        line-height: 1.75;
        color: var(--text-muted);
        grid-column: 2 / -1;
    }
    @media (min-width: 1024px) { .cred-row-body { grid-column: 3; margin-top: 6px; } }

    /* ===== HOW WE WORK ===== */
    .how-we-work {
        background: var(--bg-off);
        padding: 120px 0;
    }
    .how-h2 {
        font-family: var(--display);
        font-size: clamp(34px, 3.5vw, 52px);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.01em;
        color: var(--text-dark);
        margin-bottom: 16px;
        max-width: 640px;
    }
    .how-intro {
        font-size: 16px;
        line-height: 1.8;
        color: var(--text-body);
        max-width: 580px;
        margin-bottom: 72px;
    }
    /* Vertical timeline */
    .timeline {
        position: relative;
        padding-left: 0;
    }
    @media (min-width: 768px) {
        .timeline { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }
    }
    /* Horizontal connecting line on desktop */
    @media (min-width: 768px) {
        .timeline::before {
            content: '';
            position: absolute;
            top: 20px; left: 12px; right: 12px;
            height: 1px;
            background: linear-gradient(to right, var(--primary) 0%, rgba(255,0,0,0.15) 100%);
        }
    }
    .tl-step {
        padding-bottom: 56px;
        padding-left: 56px;
        padding-top: 56px;
        position: relative;
    }
    @media (min-width: 768px) {
        .tl-step {
            padding-left: 0;
            padding-top: 56px;
            padding-bottom: 0;
            padding-right: 40px;
        }
    }
    /* Vertical line on mobile */
    .tl-step::before {
        content: '';
        position: absolute;
        left: 19px; top: 40px; bottom: 0;
        width: 1px;
        background: linear-gradient(to bottom, var(--primary) 0%, rgba(255,0,0,0) 100%);
    }
    @media (min-width: 768px) { .tl-step::before { display: none; } }
    .tl-step:last-child::before { display: none; }
    .tl-marker {
        position: absolute;
        left: 0; top: 0;
        width: 40px; height: 40px;
        border-radius: 50%;
        background: var(--primary);
        display: flex; align-items: center; justify-content: center;
        z-index: 1;
    }
    @media (min-width: 768px) {
        .tl-marker { position: relative; left: auto; top: auto; margin-bottom: 28px; }
    }
    .tl-marker-n {
        font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 0.05em;
    }
    .tl-title {
        font-family: var(--display);
        font-size: clamp(22px, 2vw, 30px);
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 12px;
        letter-spacing: -0.01em;
        line-height: 1.1;
    }
    .tl-body {
        font-size: 15px;
        line-height: 1.75;
        color: var(--text-muted);
    }

    /* Footer styles from kl.css */

/* ===== PAGE: SERVICES ===== */
    /*
      DESIGN DECISIONS — Key Ledgers Services Page
      1. Colour weight:   Bold — navy dominant, red accent
      2. Font pairing:    Cormorant Garamond + DM Sans
      3. Layout rhythm:   Editorial — open sections, generous whitespace
      4. Hero type:       Services hub hero — wide editorial with inline stats
    */

    /* ===== SERVICES HUB HERO ===== */
    .svc-hub-hero {
        background: var(--bg-dark);
        padding: calc(var(--nav-h) + 80px) 0 0;
        position: relative;
        overflow: hidden;
        min-height: 520px;
        display: flex;
        flex-direction: column;
    }
    .svc-hub-hero::before {
        content: '';
        position: absolute;
        top: 0; right: 0;
        width: 50%; height: 100%;
        background: radial-gradient(ellipse at 80% 50%, rgba(255,0,0,0.08) 0%, transparent 65%);
        pointer-events: none;
    }
    .svc-hub-inner {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-bottom: 60px;
    }
    .svc-hub-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 24px;
    }
    .svc-hub-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--primary); }
    .svc-hub-h1 {
        font-family: var(--display);
        font-size: clamp(40px, 5.5vw, 80px);
        font-weight: 600;
        line-height: 1.0;
        letter-spacing: -0.02em;
        color: #fff;
        margin-bottom: 28px;
        max-width: 820px;
    }
    .svc-hub-h1 em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.65); }
    .svc-hub-sub {
        font-size: 17px;
        line-height: 1.75;
        color: rgba(255,255,255,0.6);
        max-width: 560px;
        margin-bottom: 40px;
    }
    .svc-hub-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 32px;
        padding-top: 40px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .svc-hub-stat-n {
        font-family: var(--display);
        font-size: clamp(36px, 4vw, 52px);
        font-weight: 600;
        color: #fff;
        letter-spacing: -0.02em;
        line-height: 1;
    }
    .svc-hub-stat-n sup { font-size: 0.5em; color: var(--primary); vertical-align: super; }
    .svc-hub-stat-l {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.70);
        margin-top: 6px;
    }

    /* ===== SERVICES HUB GRID LAYOUTS ===== */
    .svc-hub-featured {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1px;
        background: var(--border);
        border: 1px solid var(--border);
        border-bottom: none;
    }
    @media (min-width: 768px) { .svc-hub-featured { grid-template-columns: 1fr 1fr; } }
    .svc-hub-secondary {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1px;
        background: var(--border);
        border: 1px solid var(--border);
    }
    @media (min-width: 768px) { .svc-hub-secondary { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1200px) { .svc-hub-secondary { grid-template-columns: repeat(4, 1fr); } }

    /* ===== SERVICE PAGE GRID ===== */
    .sp-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        border-top: 1px solid var(--border);
    }
    @media (min-width: 900px) {
        .sp-grid { grid-template-columns: 1fr 1fr; }
        .sp-item { border-right: 1px solid var(--border); }
        .sp-item:nth-child(2n) { border-right: none; }
    }
    .sp-item {
        display: flex;
        gap: 20px;
        padding: 40px 36px;
        border-bottom: 1px solid var(--border);
        text-decoration: none;
        position: relative;
        transition: background 0.3s var(--ease);
    }
    .sp-item::before {
        content: '';
        position: absolute;
        left: 0; top: 0; bottom: 0;
        width: 0;
        background: var(--primary);
        transition: width 0.3s var(--ease-out);
    }
    .sp-item:hover { background: var(--bg-off); }
    .sp-item:hover::before { width: 3px; }
    .sp-num {
        font-family: var(--display);
        font-size: 44px;
        font-weight: 300;
        line-height: 1;
        letter-spacing: -0.03em;
        color: var(--border);
        flex-shrink: 0;
        width: 52px;
        transition: color 0.3s;
    }
    .sp-item:hover .sp-num { color: var(--primary); }
    .sp-body { flex: 1; }
    .sp-name {
        font-family: var(--display);
        font-size: clamp(19px, 1.8vw, 24px);
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.25;
        margin-bottom: 12px;
    }
    .sp-text {
        font-size: 14px;
        line-height: 1.7;
        color: var(--text-muted);
        margin-bottom: 16px;
    }
    .sp-cta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--text-muted);
        opacity: 0;
        transform: translateY(4px);
        transition: opacity 0.3s, transform 0.3s, color 0.3s;
    }
    .sp-item:hover .sp-cta { opacity: 1; transform: none; color: var(--primary); }
    @media (max-width: 899px) {
        .sp-item { padding: 28px 20px; gap: 16px; }
        .sp-num { font-size: 32px; width: 40px; }
        .sp-cta { opacity: 0.6; transform: none; }
    }

    /* ===== DARK SVC CARD VARIANT ===== */
    .svc--dark {
        background: var(--bg-dark) !important;
    }
    .svc--dark .svc-n { color: rgba(255,255,255,0.3); }
    .svc--dark .svc-n::after { background: rgba(255,255,255,0.1); }
    .svc--dark .svc-title { color: #fff; font-size: clamp(26px,2.5vw,36px); }
    .svc--dark .svc-desc { color: rgba(255,255,255,0.6); }
    .svc--dark .svc-link { color: var(--primary); }
    .svc--dark::before { background: var(--primary); }
    .svc--dark:hover { background: var(--bg-alt) !important; }

    /* Services page override — always show svc-link */
    .services .svc-link { opacity: 1; transform: none; }

    /* ===== PROCESS STEPS ===== */
    .process {
        background: var(--bg-light);
        padding: 100px 0;
    }
    .process-head {
        text-align: center;
        margin-bottom: 64px;
    }
    .process-h2 {
        font-family: var(--display);
        font-size: clamp(34px, 3.5vw, 54px);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.01em;
        color: var(--text-dark);
        margin-bottom: 0;
    }

    /* ===== STATS OVERRIDE (dark bg with red top accent) ===== */
    .stats {
        border-top: 3px solid rgba(255,0,0,0.3);
    }
    .stat-n sup { color: var(--primary); }

    /* Testimonials uses kl.css light defaults */

    /* ===== OTHER SERVICES CARDS ===== */
    .other-svc-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1px;
        background: var(--border);
        border: 1px solid var(--border);
        margin-top: 40px;
    }
    @media (min-width: 640px)  { .other-svc-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1100px) { .other-svc-grid { grid-template-columns: repeat(3, 1fr); } }
    .other-svc-card {
        background: #fff;
        overflow: hidden;
        position: relative;
        transition: box-shadow 0.3s;
        display: flex;
        flex-direction: column;
    }
    .other-svc-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
    .other-svc-thumb {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
    }
    .other-svc-card:hover .other-svc-thumb { transform: scale(1.03); }
    .other-svc-body {
        padding: 28px 28px 32px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .other-svc-tag {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 10px;
    }
    .other-svc-title {
        font-family: var(--display);
        font-size: clamp(20px, 1.8vw, 26px);
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.15;
        letter-spacing: -0.01em;
        margin-bottom: 10px;
    }
    .other-svc-desc {
        font-size: 13px;
        line-height: 1.7;
        color: var(--text-muted);
        margin-bottom: 20px;
        flex: 1;
    }
    .other-svc-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--primary);
        transition: gap 0.2s;
    }
    .other-svc-card:hover .other-svc-link { gap: 10px; }

/* ===== PAGE: CONTACT ===== */
    /*
      DESIGN DECISIONS — Key Ledgers Contact Page
      1. Colour weight:   Bold — navy dominant, red as commanding authority accent
      2. Font pairing:    Cormorant Garamond (gravitas, legal precision) + DM Sans (body clarity)
      3. Layout rhythm:   Editorial — open sections, generous whitespace, deliberate density
      4. Hero type:       Inner hero — typographic, dark, radial glow right
    */

    /* ===== CONTACT MAIN SECTION ===== */
    .contact-main {
        background: linear-gradient(to bottom, #fff 0%, #F8F8FA 100%);
        padding: 100px 0;
        border-top: 1px solid var(--border);
    }
    .contact-wide-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 64px;
    }
    @media (min-width: 1024px) { .contact-wide-grid { grid-template-columns: 1fr 1fr; gap: 100px; } }
    .contact-divider {
        width: 100%;
        height: 1px;
        background: var(--border);
        margin: 36px 0;
    }
    .contact-trust {
        margin-top: 28px;
        padding: 20px 24px;
        background: var(--bg-off);
        border-left: 2px solid var(--primary);
        font-size: 13px;
        line-height: 1.7;
        color: var(--text-muted);
    }

    /* ===== ENHANCED FORM ===== */
    .form-group { margin-bottom: 24px; }
    .form-label-text {
        display: block;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 8px;
    }
    .form-field {
        width: 100%;
        padding: 14px 16px;
        background: #fff;
        border: 1.5px solid var(--border);
        font-family: var(--sans);
        font-size: 15px;
        color: var(--text-dark);
        transition: border-color 0.2s, box-shadow 0.2s;
        outline: none;
        appearance: none;
        -webkit-appearance: none;
    }
    .form-field:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,0,0,0.07); }
    .form-field::placeholder { color: var(--text-muted); font-size: 14px; }
    .form-field-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; cursor: pointer; }
    .form-2col { display: grid; grid-template-columns: 1fr; gap: 0; }
    @media (min-width: 768px) { .form-2col { grid-template-columns: 1fr 1fr; gap: 24px; } }
    .form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
    .form-submit {
        width: 100%;
        padding: 18px 32px;
        background: var(--bg-dark);
        color: #fff;
        font-family: var(--sans);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: background 0.2s, transform 0.2s;
        margin-top: 8px;
    }
    .form-submit:hover { background: var(--bg-alt); transform: translateY(-1px); }
    .form-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; text-align: center; line-height: 1.6; }

    /* ===== FAQ — page-specific override (grid bg + red top border) ===== */
    .faq {
        background-color: #F3F4F6;
        background-image:
            linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
        background-size: 48px 48px;
    }
    .faq .faq-list { border-top: 3px solid var(--primary); }
    .faq .faq-q { padding: 24px 0; line-height: 1.5; }
    .faq .faq-item.open .faq-q { color: var(--primary); }
    .faq .faq-a-in { padding-bottom: 28px; max-width: 680px; }

/* ===== PAGE: DIRECTOR ===== */
    /*
      DESIGN DECISIONS — Key Ledgers Director Profile
      1. Colour weight:   Bold — navy dominant, red accent for hierarchy
      2. Font pairing:    Cormorant Garamond (authority / gravitas) + DM Sans (clarity / body)
      3. Layout rhythm:   Open / editorial — generous whitespace, deliberate section pacing
      4. Hero type:       Inner hero — split: typographic left, photo right
    */

    /* ===== SPACE TOKENS (director-specific) ===== */
    :root {
        --section-pad:      clamp(64px, 9.4vw, 120px);
        --section-pad-sm:   clamp(48px, 6.25vw, 80px);
    }

    /* ===== DIRECTOR HERO (split layout, different from shared .inner-hero) ===== */
    .ih {
        background: var(--bg-dark);
        padding-top: calc(var(--nav-h) + clamp(48px,7vw,96px));
        padding-bottom: 0;
        position: relative;
        overflow: hidden;
    }
    .ih::before {
        content: '';
        position: absolute;
        top: 0; right: 0;
        width: 60%; height: 100%;
        background: radial-gradient(ellipse at 80% 30%, rgba(255,0,0,0.05) 0%, transparent 60%);
        pointer-events: none;
    }
    .ih-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        align-items: end;
    }
    @media (min-width: 1024px) {
        .ih-grid { grid-template-columns: 1fr 420px; gap: 80px; align-items: end; }
    }
    .ih-content { position: relative; z-index: 1; padding-bottom: clamp(48px,6vw,80px); }
    .ih-name {
        font-family: var(--display);
        font-size: clamp(52px, 7vw, 96px);
        font-weight: 600;
        line-height: 0.95;
        color: #fff;
        letter-spacing: -0.02em;
        margin-bottom: 16px;
    }
    .ih-name em { font-style: italic; font-weight: 300; color: var(--primary); }
    .ih-titles {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 32px;
    }
    .ih-title-row {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.70);
    }
    .ih-title-row .dot {
        width: 4px; height: 4px;
        border-radius: 50%;
        background: var(--primary);
        flex-shrink: 0;
    }
    .ih-summary {
        font-size: clamp(16px, 1.4vw, 18px);
        line-height: 1.7;
        color: rgba(255,255,255,0.85);
        max-width: 580px;
        margin-bottom: 40px;
    }
    .ih-creds {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 0;
    }
    .ih-cred-pill {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 6px 14px;
        border: 1px solid rgba(255,0,0,0.35);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.70);
    }
    .ih-cred-pill .cred-dot {
        width: 5px; height: 5px;
        border-radius: 50%;
        background: var(--primary);
        flex-shrink: 0;
    }

    /* Photo panel */
    .ih-photo {
        position: relative;
        align-self: end;
        display: none;
    }
    @media (min-width: 1024px) { .ih-photo { display: block; } }
    .ih-photo-wrap {
        position: relative;
        width: 100%;
        aspect-ratio: 3/4;
        overflow: hidden;
        background: var(--bg-mid);
    }
    .ih-photo-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        display: block;
    }
    .ih-photo-initials {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(160deg, #162F47 0%, #00132D 100%);
    }
    .ih-photo-initials .pi-monogram {
        font-family: var(--display);
        font-size: 96px;
        font-weight: 300;
        font-style: italic;
        color: rgba(255,255,255,0.10);
        line-height: 1;
        letter-spacing: -0.03em;
    }
    .ih-photo-initials .pi-name {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.35);
        margin-top: 16px;
    }
    .ih-photo-bar {
        position: absolute;
        bottom: 0; left: 0; right: 0;
        padding: 16px 20px;
        background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    }
    .ih-photo-bar-name {
        font-family: var(--display);
        font-size: 18px;
        font-weight: 600;
        color: #fff;
        letter-spacing: -0.01em;
    }
    .ih-photo-bar-role {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--primary);
        margin-top: 2px;
    }

    /* ===== STATS STRIP ===== */
    .stats-strip {
        background: var(--primary);
        padding: 0;
    }
    .stats-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-left: 1px solid rgba(255,255,255,0.12);
    }
    @media (min-width: 768px) { .stats-inner { grid-template-columns: repeat(4, 1fr); } }
    .stat-cell {
        padding: 28px 24px;
        border-right: 1px solid rgba(255,255,255,0.12);
        border-bottom: 1px solid rgba(255,255,255,0.12);
        position: relative;
    }
    @media (min-width: 768px) { .stat-cell { border-bottom: none; } }
    .stat-cell .stat-n {
        font-family: var(--display);
        font-size: clamp(36px, 4vw, 56px);
        font-weight: 600;
        color: #fff;
        line-height: 1;
        letter-spacing: -0.02em;
        margin-bottom: 6px;
    }
    .stat-cell .stat-n em { font-style: italic; font-weight: 300; }
    .stat-cell .stat-l {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.70);
        line-height: 1.4;
    }

    /* ===== PROFILE / BIO ===== */
    .profile {
        background: var(--bg-light);
        padding: var(--section-pad) 0;
    }
    .profile-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 64px;
        align-items: start;
    }
    @media (min-width: 1024px) {
        .profile-grid { grid-template-columns: 1fr 380px; gap: 96px; }
    }
    .profile-body { display: flex; flex-direction: column; gap: 24px; }
    .profile-h2 {
        font-family: var(--display);
        font-size: clamp(32px, 3.5vw, 52px);
        font-weight: 600;
        line-height: 1.1;
        color: var(--text-dark);
        letter-spacing: -0.02em;
        margin-bottom: 8px;
    }
    .profile-h2 em { font-style: italic; font-weight: 300; color: var(--primary); }
    .profile-p {
        font-size: 16px;
        line-height: 1.8;
        color: var(--text-body);
    }
    .profile-p strong { font-weight: 600; color: var(--text-dark); }
    .profile-sidebar { display: flex; flex-direction: column; gap: 32px; }
    .profile-quote {
        background: var(--bg-dark);
        padding: 36px 32px;
        position: relative;
    }
    .profile-quote::before {
        content: '\201C';
        position: absolute;
        top: -16px; left: 28px;
        font-family: var(--display);
        font-size: 80px;
        font-style: italic;
        color: var(--primary);
        line-height: 1;
    }
    .profile-quote blockquote {
        font-family: var(--display);
        font-size: clamp(17px, 1.6vw, 21px);
        font-style: italic;
        font-weight: 300;
        line-height: 1.6;
        color: rgba(255,255,255,0.88);
        margin-bottom: 24px;
    }
    .profile-quote-attr {
        border-top: 1px solid var(--border-dark);
        padding-top: 18px;
    }
    .profile-quote-name {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.85);
        margin-bottom: 3px;
    }
    .profile-quote-role {
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 6px;
    }
    .profile-quote-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 10px;
    }
    .profile-quote-tag {
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.55);
        padding: 3px 8px;
        border: 1px solid rgba(255,255,255,0.12);
    }
    .profile-contact-card {
        background: var(--bg-off);
        padding: 28px 28px;
        border-left: 3px solid var(--primary);
    }
    .pcc-label {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 16px;
    }
    .pcc-row {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .pcc-item {
        display: flex;
        gap: 10px;
        font-size: 13px;
        color: var(--text-body);
        align-items: flex-start;
    }
    .pcc-item-key {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-muted);
        width: 60px;
        flex-shrink: 0;
        padding-top: 2px;
    }
    .pcc-item-val { color: var(--text-dark); font-weight: 500; }
    .pcc-item-val a { color: var(--primary); }

    /* ===== PRACTICE AREAS ===== */
    .practice {
        background: var(--bg-off);
        padding: var(--section-pad) 0;
        position: relative;
    }
    .practice::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 1px;
        background: var(--border);
    }
    .practice-head {
        display: grid;
        grid-template-columns: 1fr;
        gap: 48px;
        margin-bottom: clamp(48px,5vw,72px);
    }
    @media (min-width: 1024px) {
        .practice-head { grid-template-columns: 1fr 1fr; }
    }
    .practice-h2 {
        font-family: var(--display);
        font-size: clamp(36px, 4vw, 60px);
        font-weight: 600;
        line-height: 1.05;
        color: var(--text-dark);
        letter-spacing: -0.02em;
    }
    .practice-h2 em { font-style: italic; font-weight: 300; color: var(--primary); }
    .practice-intro {
        font-size: 16px;
        line-height: 1.75;
        color: var(--text-body);
        align-self: end;
    }
    .practice-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        border-top: 1px solid var(--border);
        border-left: 1px solid var(--border);
    }
    @media (min-width: 640px)  { .practice-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .practice-grid { grid-template-columns: repeat(4, 1fr); } }
    .practice-card {
        padding: 32px 28px;
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        position: relative;
        transition: background 0.25s var(--ease);
    }
    .practice-card:hover { background: var(--bg-light); }
    .practice-card:hover .pc-arrow { opacity: 1; transform: translateX(0); }
    .pc-n {
        font-family: var(--display);
        font-size: 40px;
        font-weight: 300;
        font-style: italic;
        color: rgba(0,0,0,0.3);
        line-height: 1;
        letter-spacing: -0.03em;
        margin-bottom: 20px;
    }
    .pc-title {
        font-family: var(--display);
        font-size: clamp(18px,1.6vw,22px);
        font-weight: 600;
        line-height: 1.2;
        color: var(--text-dark);
        letter-spacing: -0.01em;
        margin-bottom: 10px;
    }
    .pc-body {
        font-size: 13px;
        line-height: 1.65;
        color: var(--text-muted);
    }
    .pc-arrow {
        position: absolute;
        bottom: 20px; right: 20px;
        color: var(--primary);
        opacity: 0;
        transform: translateX(-4px);
        transition: opacity 0.2s, transform 0.25s var(--ease-out);
    }

    /* ===== NOTABLE INSTRUCTIONS ===== */
    .notable {
        background: var(--bg-light);
        padding: var(--section-pad) 0;
    }
    .notable-head { margin-bottom: clamp(48px,5vw,72px); }
    .notable-h2 {
        font-family: var(--display);
        font-size: clamp(36px,4vw,60px);
        font-weight: 600;
        line-height: 1.05;
        color: var(--text-dark);
        letter-spacing: -0.02em;
    }
    .notable-h2 em { font-style: italic; font-weight: 300; color: var(--primary); }
    .notable-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2px;
    }
    @media (min-width: 1024px) { .notable-grid { gap: 24px; } }
    .notable-card {
        background: #fff;
        border-left: 4px solid var(--border);
        padding: 36px 36px 36px 40px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        transition: border-color 0.2s, box-shadow 0.2s;
    }
    @media (min-width: 768px) { .notable-card { grid-template-columns: 280px 1fr; gap: 48px; } }
    .notable-card:hover { border-left-color: var(--primary); box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
    .notable-type {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 10px;
    }
    .notable-title {
        font-family: var(--display);
        font-size: clamp(22px,2.2vw,30px);
        font-weight: 600;
        line-height: 1.2;
        color: var(--text-dark);
        letter-spacing: -0.01em;
        margin-bottom: 12px;
    }
    .notable-desc {
        font-size: 14px;
        line-height: 1.7;
        color: var(--text-muted);
    }
    .notable-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .notable-list li {
        display: flex;
        gap: 12px;
        font-size: 14px;
        line-height: 1.6;
        color: var(--text-body);
        align-items: flex-start;
    }
    .notable-list li::before {
        content: '';
        display: block;
        width: 5px; height: 5px;
        border-radius: 50%;
        background: var(--primary);
        margin-top: 7px;
        flex-shrink: 0;
    }

    /* ===== SPECIALISMS ===== */
    .specialisms {
        background: #fff;
        padding: var(--section-pad) 0;
        position: relative;
    }
    .spec-head {
        display: grid;
        grid-template-columns: 1fr;
        gap: 48px;
        margin-bottom: clamp(48px,5vw,72px);
        align-items: end;
    }
    @media (min-width: 1024px) { .spec-head { grid-template-columns: 1fr 1fr; } }
    .spec-h2 {
        font-family: var(--display);
        font-size: clamp(36px,4vw,60px);
        font-weight: 600;
        line-height: 1.05;
        color: var(--text-dark);
        letter-spacing: -0.02em;
    }
    .spec-h2 em { font-style: italic; font-weight: 300; color: var(--primary); }
    .spec-intro {
        font-size: 15px;
        line-height: 1.75;
        color: var(--text-body);
    }
    .spec-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }
    @media (min-width: 768px)  { .spec-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1200px) { .spec-grid { grid-template-columns: repeat(4, 1fr); } }
    .spec-item {
        padding: 28px 24px;
        border-bottom: 1px solid var(--border);
        border-right: 1px solid var(--border);
        position: relative;
    }
    @media (min-width: 1200px) {
        .spec-item:nth-child(4n) { border-right: none; }
        .spec-item:nth-last-child(-n+4) { border-bottom: none; }
    }
    .spec-item-n {
        font-family: var(--display);
        font-size: 12px;
        font-weight: 300;
        font-style: italic;
        color: var(--primary);
        margin-bottom: 10px;
        letter-spacing: 0.02em;
    }
    .spec-item-title {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.5;
        color: var(--text-body);
    }

    /* ===== CPR COMPLIANCE ===== */
    .cpr-compliance {
        background: var(--bg-dark);
        padding: var(--section-pad) 0;
        border-top: 1px solid var(--border-dark);
    }
    .cpr-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 64px;
    }
    @media (min-width: 1024px) { .cpr-grid { grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; } }
    .cpr-content-h2 {
        font-family: var(--display);
        font-size: clamp(32px,3.5vw,52px);
        font-weight: 600;
        line-height: 1.1;
        color: #fff;
        letter-spacing: -0.02em;
        margin-bottom: 20px;
    }
    .cpr-content-h2 em { font-style: italic; font-weight: 300; color: var(--primary); }
    .cpr-content-body {
        font-size: 16px;
        line-height: 1.75;
        color: rgba(255,255,255,0.85);
        margin-bottom: 36px;
    }
    .cpr-capabilities {
        display: flex;
        flex-direction: column;
        gap: 0;
        border-top: 1px solid var(--border-dark);
    }
    .cpr-cap {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 18px 0;
        border-bottom: 1px solid var(--border-dark);
        transition: padding-left 0.2s var(--ease-out);
    }
    .cpr-cap:hover { padding-left: 8px; }
    .cpr-cap-icon {
        width: 32px; height: 32px;
        border: 1px solid rgba(255,0,0,0.35);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--primary);
    }
    .cpr-cap-text {
        font-size: 15px;
        font-weight: 400;
        color: rgba(255,255,255,0.85);
        line-height: 1.4;
    }
    .cpr-visual {
        background: var(--bg-mid);
        padding: 48px 40px;
        position: relative;
    }
    .cpr-visual::before {
        content: 'CPR\A 35';
        white-space: pre;
        position: absolute;
        top: -20px; right: 28px;
        font-family: var(--display);
        font-size: 120px;
        font-weight: 700;
        line-height: 0.85;
        color: rgba(255,255,255,0.03);
        letter-spacing: -0.04em;
        pointer-events: none;
    }
    .cpr-badge {
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: relative;
        z-index: 1;
    }
    .cpr-badge-row {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border-dark);
    }
    .cpr-badge-row:last-child { border-bottom: none; padding-bottom: 0; }
    .cpr-badge-abbr {
        font-family: var(--display);
        font-size: 28px;
        font-weight: 700;
        color: var(--primary);
        letter-spacing: -0.02em;
        width: 80px;
        flex-shrink: 0;
        line-height: 1;
        padding-top: 2px;
    }
    .cpr-badge-info-title {
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: rgba(255,255,255,0.85);
        margin-bottom: 4px;
    }
    .cpr-badge-info-body {
        font-size: 13px;
        line-height: 1.6;
        color: rgba(255,255,255,0.70);
    }

    /* ===== TESTIMONIALS (director page — light bg variant) ===== */
    .testi-dir {
        background: var(--bg-light);
        padding: var(--section-pad) 0;
        border-top: 1px solid var(--border);
    }
    .testi-dir .testi-head {
        text-align: center;
        margin-bottom: clamp(48px,5vw,72px);
    }
    .testi-dir .testi-h2 {
        font-family: var(--display);
        font-size: clamp(36px,4vw,60px);
        font-weight: 600;
        line-height: 1.05;
        color: var(--text-dark);
        letter-spacing: -0.02em;
    }
    .testi-dir .testi-h2 em { font-style: italic; font-weight: 300; color: var(--primary); }
    .testi-dir-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    @media (min-width: 1024px) { .testi-dir-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
    .testi-dir-card {
        background: #fff;
        padding: 40px 36px;
        display: flex;
        flex-direction: column;
        gap: 0;
        border-left: 3px solid transparent;
        transition: border-color 0.2s, box-shadow 0.2s;
    }
    .testi-dir-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.07); border-left-color: var(--primary); }
    .testi-dir-card--featured {
        grid-column: 1 / -1;
        background: var(--bg-off);
        border-left: 3px solid var(--primary);
        padding: 48px 44px;
    }
    .testi-context {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 24px;
    }
    .testi-quote-mark {
        font-family: var(--display);
        font-size: 48px;
        font-style: italic;
        font-weight: 300;
        color: var(--primary);
        line-height: 0.8;
        margin-bottom: 16px;
        display: block;
    }
    .testi-dir-card .testi-text {
        font-family: var(--display);
        font-size: clamp(17px, 1.6vw, 22px);
        font-style: italic;
        font-weight: 300;
        line-height: 1.65;
        color: var(--text-body);
        margin-bottom: 28px;
        flex: 1;
    }
    .testi-dir-card--featured .testi-text {
        font-size: clamp(20px,2.2vw,28px);
    }
    .testi-attr {
        display: flex;
        align-items: center;
        gap: 14px;
        padding-top: 24px;
        border-top: 1px solid var(--border);
    }
    .testi-attr .testi-init {
        width: 40px; height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        flex-shrink: 0;
    }
    .testi-attr .testi-name {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: var(--text-dark);
    }
    .testi-attr .testi-firm {
        font-size: 12px;
        font-weight: 400;
        color: var(--text-muted);
        margin-top: 2px;
    }

    /* ===== CONTACT SECTION (dark variant for director page) ===== */
    .contact-dir {
        padding: 0;
        border-top: none;
        position: relative;
    }
    .contact-dir .contact-split {
        display: grid;
        grid-template-columns: 1fr;
    }
    @media (min-width: 1024px) { .contact-dir .contact-split { grid-template-columns: 1fr 1fr; min-height: 680px; } }
    .contact-dir .contact-dark {
        background: var(--bg-mid);
        padding: clamp(64px,8vw,100px) clamp(32px,5vw,80px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }
    .contact-dir .contact-dark::after {
        content: '';
        position: absolute;
        bottom: -120px; right: -80px;
        width: 440px; height: 440px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,0,0,0.07) 0%, transparent 68%);
        pointer-events: none;
    }
    .contact-dir .contact-light {
        background: #fff;
        padding: clamp(64px,8vw,100px) clamp(32px,5vw,80px);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .contact-dir .contact-h2 {
        font-family: var(--display);
        font-size: clamp(32px,3.2vw,48px);
        font-weight: 600;
        line-height: 1.05;
        color: #fff;
        margin-bottom: 16px;
        letter-spacing: -0.01em;
    }
    .contact-dir .contact-body {
        font-size: 16px;
        line-height: 1.75;
        color: rgba(255,255,255,0.85);
        margin-bottom: 36px;
    }
    .contact-dir .contact-detail {
        display: flex;
        align-items: baseline;
        gap: 12px;
        padding: 14px 0;
        border-bottom: 1px solid var(--border-dark);
        font-size: 15px;
        color: rgba(255,255,255,0.85);
    }
    .contact-dir .contact-detail:first-of-type { border-top: 1px solid var(--border-dark); }
    .contact-dir .cd-label {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--primary);
        width: 72px;
        flex-shrink: 0;
    }
    .contact-dir .contact-quote { margin-top: 40px; }
    .contact-dir .contact-quote blockquote {
        font-family: var(--display);
        font-size: clamp(18px,1.8vw,24px);
        font-style: italic;
        font-weight: 300;
        line-height: 1.5;
        color: rgba(255,255,255,0.70);
        border-left: 2px solid var(--primary);
        padding-left: 20px;
    }

    /* ===== REDUCED MOTION ===== */
    @media (prefers-reduced-motion: reduce) {
        .sr, .sr-l, .sr-r { opacity: 1; transform: none; }
    }

/* ===== PAGE: TESTIMONIALS ===== */
    /*
      DESIGN DECISIONS — Key Ledgers Testimonials Page
      1. Colour weight:   Bold — navy dominant, red as authority accent
      2. Font pairing:    Cormorant Garamond (gravitas, legal authority) + DM Sans (body clarity)
      3. Layout rhythm:   Editorial — alternating dark/light sections, generous whitespace
      4. Hero type:       Inner hero — typographic, dark, radial glow right
    */

    /* ===== IH-SUB: italic Cormorant variant for testimonials page ===== */
    .ih-sub--italic {
        font-style: italic;
        font-family: var(--display);
        font-weight: 300;
    }

    /* ===== FROM THE BAR SECTION ===== */
    .from-bar {
        background: #ffffff;
        padding: 120px 0;
        position: relative;
        overflow: hidden;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }
    .from-bar::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 900px;
        height: 600px;
        background: radial-gradient(ellipse at center, rgba(255,0,0,0.06) 0%, transparent 65%);
        pointer-events: none;
    }
    .from-bar-inner {
        position: relative;
        z-index: 1;
        max-width: 960px;
        margin: 0 auto;
        text-align: center;
    }
    .bar-source-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 48px;
    }
    .bar-source-label::before,
    .bar-source-label::after {
        content: '';
        display: block;
        width: 40px;
        height: 1px;
        background: var(--primary);
        flex-shrink: 0;
    }
    .bar-opening-mark {
        display: block;
        font-family: var(--display);
        font-size: 140px;
        line-height: 0.7;
        color: var(--primary);
        opacity: 0.18;
        pointer-events: none;
        user-select: none;
        margin-bottom: 8px;
    }
    .bar-quote {
        font-family: var(--display);
        font-size: clamp(22px, 3vw, 42px);
        font-style: italic;
        font-weight: 300;
        line-height: 1.55;
        color: var(--text-dark);
        margin-bottom: 56px;
        letter-spacing: 0.005em;
    }
    .bar-attribution {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-top: 40px;
        border-top: 1px solid var(--border);
    }
    @media (min-width: 768px) {
        .bar-attribution {
            flex-direction: row;
            justify-content: center;
            gap: 40px;
        }
    }
    .bar-attrib-info { text-align: left; }
    .bar-attrib-name {
        font-family: var(--display);
        font-size: clamp(22px, 2.2vw, 32px);
        font-weight: 600;
        color: var(--text-dark);
        letter-spacing: -0.01em;
        line-height: 1.1;
        margin-bottom: 4px;
    }
    .bar-attrib-title {
        font-size: 13px;
        font-weight: 400;
        color: var(--text-muted);
        letter-spacing: 0.05em;
        margin-bottom: 14px;
    }
    .bar-attrib-chambers {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--primary);
    }
    .bar-accred-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 16px;
    }
    @media (min-width: 768px) {
        .bar-attrib-info { text-align: left; }
        .bar-accred-badges { justify-content: flex-start; }
    }
    .bar-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 14px;
        border: 1px solid rgba(255,0,0,0.35);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--text-muted);
        transition: border-color 0.25s, color 0.25s;
    }
    .bar-badge:hover { border-color: rgba(255,0,0,0.70); color: var(--text-dark); }
    .bar-badge-dot {
        width: 4px; height: 4px;
        border-radius: 50%;
        background: var(--primary);
        flex-shrink: 0;
    }
    .bar-divider {
        width: 1px;
        height: 80px;
        background: var(--border);
        flex-shrink: 0;
        display: none;
    }
    @media (min-width: 768px) { .bar-divider { display: block; } }

    /* Matter tags */
    .bar-matter-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        margin-bottom: 52px;
    }
    .bar-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 5px 14px;
        background: rgba(255,0,0,0.05);
        border: 1px solid rgba(255,0,0,0.40);
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--text-muted);
    }
    .bar-tag::before {
        content: '';
        display: inline-block;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--primary);
        flex-shrink: 0;
    }

    /* ===== FROM SOLICITORS SECTION ===== */
    .from-solicitors {
        background: var(--bg-light);
        padding: 120px 0;
    }
    .solicitors-head {
        margin-bottom: 64px;
    }
    .solicitors-h2 {
        font-family: var(--display);
        font-size: clamp(34px, 3.5vw, 54px);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.01em;
        color: var(--text-dark);
        margin-bottom: 16px;
        max-width: 640px;
    }
    .solicitors-intro {
        font-size: 16px;
        line-height: 1.8;
        color: var(--text-muted);
        max-width: 520px;
    }

    /* Mahmuda Ali featured card */
    .featured-solicitor-card {
        background: #fff;
        border: 1px solid var(--border);
        padding: 56px;
        position: relative;
        overflow: hidden;
        margin-bottom: 32px;
        transition: box-shadow 0.3s;
    }
    @media (min-width: 768px) {
        .featured-solicitor-card { padding: 64px 72px; }
    }
    .featured-solicitor-card::before {
        content: '';
        position: absolute;
        left: 0; top: 0; bottom: 0;
        width: 4px;
        background: var(--primary);
    }
    .featured-solicitor-card:hover {
        box-shadow: 0 8px 48px rgba(0,0,0,0.08);
    }
    .fsc-firm-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 16px 6px 8px;
        background: var(--bg-dark);
        margin-bottom: 36px;
    }
    .fsc-firm-badge-dot {
        width: 6px; height: 6px;
        border-radius: 50%;
        background: rgba(255,255,255,0.55);
        flex-shrink: 0;
    }
    .fsc-firm-badge-label {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.85);
    }
    .fsc-opening-mark {
        display: block;
        font-family: var(--display);
        font-size: 100px;
        line-height: 0.6;
        color: var(--primary);
        opacity: 0.12;
        pointer-events: none;
        user-select: none;
        margin-bottom: 12px;
    }
    .fsc-paragraphs {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 44px;
    }
    .fsc-para {
        font-family: var(--display);
        font-size: clamp(17px, 1.6vw, 22px);
        font-style: italic;
        font-weight: 300;
        line-height: 1.65;
        color: var(--text-body);
    }
    .fsc-para:first-child {
        font-size: clamp(19px, 1.9vw, 26px);
        color: var(--text-dark);
    }
    .fsc-attribution {
        display: flex;
        align-items: center;
        gap: 20px;
        padding-top: 32px;
        border-top: 1px solid var(--border);
    }
    .fsc-init {
        width: 52px; height: 52px;
        border-radius: 50%;
        background: var(--bg-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--display);
        font-size: 20px;
        font-weight: 600;
        color: #fff;
        flex-shrink: 0;
    }
    .fsc-name {
        font-family: var(--display);
        font-size: 22px;
        font-weight: 600;
        color: var(--text-dark);
        letter-spacing: -0.01em;
        line-height: 1.1;
        margin-bottom: 3px;
    }
    .fsc-title {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-muted);
    }
    .fsc-firm {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--primary);
        margin-top: 4px;
    }

    /* Smaller solicitor cards grid */
    .small-cards-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }
    @media (min-width: 768px) {
        .small-cards-grid { grid-template-columns: 1fr 1fr; }
    }
    .small-testi-card {
        background: #fff;
        border: 1px solid var(--border);
        padding: 44px 40px;
        position: relative;
        overflow: hidden;
        transition: box-shadow 0.3s, border-color 0.3s;
    }
    .small-testi-card::after {
        content: '';
        position: absolute;
        bottom: 0; left: 40px; right: 40px;
        height: 2px;
        background: var(--primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.45s var(--ease-out);
    }
    .small-testi-card:hover {
        box-shadow: 0 6px 32px rgba(0,0,0,0.07);
        border-color: var(--primary);
    }
    .small-testi-card:hover::after { transform: scaleX(1); }
    .stc-mark {
        font-family: var(--display);
        font-size: 64px;
        line-height: 0.65;
        color: var(--primary);
        opacity: 0.2;
        pointer-events: none;
        user-select: none;
        margin-bottom: 10px;
        display: block;
    }
    .stc-quote {
        font-family: var(--display);
        font-size: clamp(18px, 1.8vw, 24px);
        font-style: italic;
        font-weight: 300;
        line-height: 1.6;
        color: var(--text-body);
        margin-bottom: 32px;
    }
    .stc-attribution {
        display: flex;
        align-items: center;
        gap: 14px;
        border-top: 1px solid var(--border);
        padding-top: 24px;
    }
    .stc-init {
        width: 44px; height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        font-weight: 600;
        color: #fff;
        flex-shrink: 0;
    }
    .stc-name {
        font-size: 15px;
        font-weight: 500;
        color: var(--text-dark);
        line-height: 1.3;
    }
    .stc-firm {
        font-size: 12px;
        color: var(--text-muted);
        margin-top: 3px;
        letter-spacing: 0.04em;
    }

/* ===== PAGE: CASE STUDIES ===== */
    /*
      DESIGN DECISIONS — Key Ledgers Case Studies Page
      1. Colour weight:   Balanced — light bg, navy text, red accents
      2. Font pairing:    Cormorant Garamond + DM Sans
      3. Layout rhythm:   Editorial — numbered cards, generous whitespace
      4. Hero type:       Inner hero — dark
    */

    /* ===== CASE STUDIES GRID ===== */
    .cs-section {
        background: #fff;
        padding: 100px 0;
    }
    .cs-intro {
        max-width: 680px;
        margin: 0 auto 72px;
        text-align: center;
    }
    .cs-intro-text {
        font-size: 15px;
        line-height: 1.8;
        color: var(--text-muted);
        font-style: italic;
    }
    .cs-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2px;
    }
    @media (min-width: 768px) {
        .cs-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (min-width: 1200px) {
        .cs-grid { grid-template-columns: 1fr 1fr 1fr; }
    }

    /* Case card */
    .cs-card {
        background: var(--bg-off);
        padding: 48px 44px;
        display: flex;
        flex-direction: column;
        gap: 0;
        position: relative;
        transition: background 0.25s, box-shadow 0.25s;
        border-top: 3px solid transparent;
    }
    .cs-card:hover {
        background: #fff;
        box-shadow: 0 8px 40px rgba(16,42,67,0.08);
        border-top-color: var(--primary);
        z-index: 1;
    }
    .cs-num {
        font-family: var(--display);
        font-size: 72px;
        font-weight: 300;
        line-height: 1;
        color: rgba(0,0,0,0.3);
        margin-bottom: 20px;
        letter-spacing: -0.02em;
        transition: color 0.25s;
    }
    .cs-card:hover .cs-num { color: rgba(255,0,0,0.3); }
    .cs-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 12px;
    }
    .cs-tag::before {
        content: '';
        display: block;
        width: 16px;
        height: 1px;
        background: var(--primary);
    }
    .cs-title {
        font-family: var(--display);
        font-size: clamp(22px, 2vw, 28px);
        font-weight: 600;
        line-height: 1.2;
        color: var(--text-dark);
        letter-spacing: -0.01em;
        margin-bottom: 20px;
    }
    .cs-divider {
        width: 32px;
        height: 2px;
        background: var(--primary);
        margin-bottom: 20px;
        flex-shrink: 0;
    }
    .cs-body {
        font-size: 14px;
        line-height: 1.85;
        color: var(--text-body);
        flex: 1;
    }
    .cs-body p { margin-bottom: 14px; }
    .cs-body p:last-child { margin-bottom: 0; }

    /* Tags row at bottom */
    .cs-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 28px;
    }
    .cs-pill {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-dark);
        background: rgba(16,42,67,0.06);
        padding: 4px 10px;
        border-radius: 2px;
    }

    /* Disclaimer banner */
    .cs-disclaimer {
        background: var(--bg-light);
        border-left: 3px solid var(--primary);
        padding: 20px 28px;
        margin-bottom: 64px;
        max-width: 800px;
    }
    .cs-disclaimer p {
        font-size: 13px;
        line-height: 1.7;
        color: var(--text-muted);
        font-style: italic;
        margin: 0;
    }

    .cta-sub { color: rgba(255,255,255,0.85) !important; font-size: 16px; }

    @media (max-width: 767px) {
        .cs-section { padding: 72px 0; }
        .cs-card { padding: 40px 28px; }
        .cs-num { font-size: 52px; }
    }

/* ===== PAGE: FORENSIC ACCOUNTING ===== */
    /*
      DESIGN DECISIONS — Key Ledgers Forensic Accounting Page
      1. Colour weight:   Bold — navy dominant, red accent
      2. Font pairing:    Cormorant Garamond + DM Sans
      3. Layout rhythm:   Editorial — open sections, generous whitespace
      4. Hero type:       Inner hero — dark with radial glow, breadcrumb, pills
    */

    /* ===== SERVICE DETAIL ===== */
    .svc-detail { background: var(--bg-light); padding: 100px 0; }
    .svc-detail-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 64px;
    }
    @media (min-width: 1024px) { .svc-detail-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; } }
    .svc-detail-h2 {
        font-family: var(--display);
        font-size: clamp(32px, 3.5vw, 52px);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.01em;
        color: var(--text-dark);
        margin-bottom: 20px;
    }
    .svc-detail-body {
        font-size: 16px;
        line-height: 1.8;
        color: var(--text-body);
        margin-bottom: 28px;
    }
    .svc-check-list { display: flex; flex-direction: column; gap: 12px; }
    .svc-check-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 15px;
        line-height: 1.5;
        color: var(--text-body);
    }
    .svc-check-dot {
        width: 20px; height: 20px;
        border-radius: 50%;
        background: var(--bg-dark);
        flex-shrink: 0;
        margin-top: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .svc-check-dot svg { display: block; }

    /* ===== PREMIUM FEATURE ITEMS ===== */
    .sfi-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        border: 1px solid var(--border);
    }
    .sfi-item {
        padding: 40px;
        background: #fff;
        border-bottom: 1px solid var(--border);
        position: relative;
        overflow: hidden;
        transition: background 0.3s;
        cursor: default;
    }
    .sfi-item:last-child { border-bottom: none; }
    .sfi-item::before {
        content: '';
        position: absolute;
        bottom: 0; left: 40px; right: 40px;
        height: 1px;
        background: var(--primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.45s var(--ease-out);
    }
    .sfi-item:hover { background: var(--bg-off); }
    .sfi-item:hover::before { transform: scaleX(1); }
    .sfi-n {
        font-family: var(--display);
        font-size: 52px;
        font-weight: 600;
        color: rgba(0,0,0,0.3);
        line-height: 1;
        letter-spacing: -0.04em;
        margin-bottom: 16px;
    }
    .sfi-title {
        font-family: var(--display);
        font-size: clamp(20px, 1.8vw, 28px);
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 12px;
        letter-spacing: -0.01em;
        line-height: 1.1;
    }
    .sfi-body {
        font-size: 14px;
        line-height: 1.75;
        color: var(--text-muted);
    }

    /* ===== INDEPENDENCE SECTION ===== */
    .independence {
        background: #fff;
        padding: 100px 0;
    }
    .independence-head { margin-bottom: 56px; }
    .independence-h2 {
        font-family: var(--display);
        font-size: clamp(32px, 3.5vw, 52px);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.01em;
        color: var(--text-dark);
        margin-bottom: 20px;
    }
    .independence-body {
        font-size: 16px;
        line-height: 1.8;
        color: var(--text-body);
        max-width: 640px;
    }

    /* ===== EDITORIAL LIST ===== */
    .ed-list { border-top: 1px solid var(--border); }
    .ed-row {
        display: grid;
        grid-template-columns: 56px 1fr;
        gap: 32px;
        padding: 36px 0;
        border-bottom: 1px solid var(--border);
        align-items: start;
        transition: padding-left 0.3s var(--ease-out);
        cursor: default;
    }
    @media (min-width: 1024px) { .ed-row { grid-template-columns: 72px 1fr 1fr; gap: 48px; } }
    .ed-row:hover { padding-left: 8px; }
    .ed-n {
        font-family: var(--display);
        font-size: 48px;
        font-weight: 600;
        color: rgba(0,0,0,0.3);
        line-height: 1;
        letter-spacing: -0.04em;
        padding-top: 4px;
    }
    .ed-title {
        font-family: var(--display);
        font-size: clamp(20px, 1.8vw, 28px);
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 10px;
        letter-spacing: -0.01em;
        line-height: 1.1;
    }
    .ed-body {
        font-size: 15px;
        line-height: 1.8;
        color: var(--text-body);
    }

    /* ===== RELATED SERVICES ===== */
    .related {
        background: var(--bg-off);
        padding: 80px 0;
    }
    .other-svc-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1px;
        background: var(--border);
        border: 1px solid var(--border);
        margin-top: 40px;
    }
    @media (min-width: 640px)  { .other-svc-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1100px) { .other-svc-grid { grid-template-columns: repeat(3, 1fr); } }
    .other-svc-card {
        background: #fff;
        overflow: hidden;
        position: relative;
        transition: box-shadow 0.3s;
        display: flex;
        flex-direction: column;
    }
    .other-svc-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
    .other-svc-thumb {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
    }
    .other-svc-card:hover .other-svc-thumb { transform: scale(1.03); }
    .other-svc-body {
        padding: 28px 28px 32px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .other-svc-tag {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 10px;
    }
    .other-svc-title {
        font-family: var(--display);
        font-size: clamp(20px, 1.8vw, 26px);
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.15;
        letter-spacing: -0.01em;
        margin-bottom: 10px;
    }
    .other-svc-desc {
        font-size: 13px;
        line-height: 1.7;
        color: var(--text-muted);
        margin-bottom: 20px;
        flex: 1;
    }
    .other-svc-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--primary);
        transition: gap 0.2s;
    }
    .other-svc-card:hover .other-svc-link { gap: 10px; }

/* ===== PAGE: EXPERT WITNESS ===== */
    /*
      DESIGN DECISIONS — Key Ledgers Expert Witness Page
      1. Colour weight:   Bold — navy dominant, red accent
      2. Font pairing:    Cormorant Garamond + DM Sans
      3. Layout rhythm:   Editorial — open sections, generous whitespace
      4. Hero type:       Inner hero — dark with radial glow, breadcrumb, pills
    */

    /* ===== SERVICE DETAIL ===== */
    .svc-detail { background: var(--bg-light); padding: 100px 0; }
    .svc-detail-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 64px;
    }
    @media (min-width: 1024px) { .svc-detail-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; } }
    .svc-detail-h2 {
        font-family: var(--display);
        font-size: clamp(32px, 3.5vw, 52px);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.01em;
        color: var(--text-dark);
        margin-bottom: 20px;
    }
    .svc-detail-body {
        font-size: 16px;
        line-height: 1.8;
        color: var(--text-body);
        margin-bottom: 28px;
    }
    .svc-check-list { display: flex; flex-direction: column; gap: 12px; }
    .svc-check-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 15px;
        line-height: 1.5;
        color: var(--text-body);
    }
    .svc-check-dot {
        width: 20px; height: 20px;
        border-radius: 50%;
        background: var(--bg-dark);
        flex-shrink: 0;
        margin-top: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .svc-check-dot svg { display: block; }

    /* ===== PREMIUM FEATURE ITEMS ===== */
    .sfi-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        border: 1px solid var(--border);
    }
    .sfi-item {
        padding: 40px;
        background: #fff;
        border-bottom: 1px solid var(--border);
        position: relative;
        overflow: hidden;
        transition: background 0.3s;
        cursor: default;
    }
    .sfi-item:last-child { border-bottom: none; }
    .sfi-item::before {
        content: '';
        position: absolute;
        bottom: 0; left: 40px; right: 40px;
        height: 1px;
        background: var(--primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.45s var(--ease-out);
    }
    .sfi-item:hover { background: var(--bg-off); }
    .sfi-item:hover::before { transform: scaleX(1); }
    .sfi-n {
        font-family: var(--display);
        font-size: 52px;
        font-weight: 600;
        color: rgba(0,0,0,0.3);
        line-height: 1;
        letter-spacing: -0.04em;
        margin-bottom: 16px;
    }
    .sfi-title {
        font-family: var(--display);
        font-size: clamp(20px, 1.8vw, 28px);
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 12px;
        letter-spacing: -0.01em;
        line-height: 1.1;
    }
    .sfi-body {
        font-size: 14px;
        line-height: 1.75;
        color: var(--text-muted);
    }

    /* ===== EDITORIAL LIST ===== */
    .ed-list { border-top: 1px solid var(--border); }
    .ed-row {
        display: grid;
        grid-template-columns: 56px 1fr;
        gap: 32px;
        padding: 36px 0;
        border-bottom: 1px solid var(--border);
        align-items: start;
        transition: padding-left 0.3s var(--ease-out);
        cursor: default;
    }
    @media (min-width: 1024px) { .ed-row { grid-template-columns: 72px 1fr 1fr; gap: 48px; } }
    .ed-row:hover { padding-left: 8px; }
    .ed-n {
        font-family: var(--display);
        font-size: 48px;
        font-weight: 600;
        color: rgba(0,0,0,0.3);
        line-height: 1;
        letter-spacing: -0.04em;
        padding-top: 4px;
    }
    .ed-title {
        font-family: var(--display);
        font-size: clamp(20px, 1.8vw, 28px);
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 10px;
        letter-spacing: -0.01em;
        line-height: 1.1;
    }
    .ed-body {
        font-size: 15px;
        line-height: 1.8;
        color: var(--text-body);
    }

    /* ===== CPR SECTION ===== */
    .cpr-section { background: #fff; padding: 100px 0; }
    .cpr-h2 {
        font-family: var(--display);
        font-size: clamp(32px, 3.5vw, 52px);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.01em;
        color: var(--text-dark);
        margin-bottom: 20px;
    }
    .cpr-intro {
        font-size: 16px;
        line-height: 1.8;
        color: var(--text-body);
        max-width: 640px;
        margin-bottom: 56px;
    }

    /* ===== FAQ ON LIGHT BG OVERRIDE ===== */
    .faq { background: var(--bg-off); padding: 100px 0; }

    /* ===== RELATED SERVICES ===== */
    .other-svc-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1px;
        background: var(--border);
        border: 1px solid var(--border);
        margin-top: 40px;
    }
    @media (min-width: 640px)  { .other-svc-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1100px) { .other-svc-grid { grid-template-columns: repeat(3, 1fr); } }
    .other-svc-card {
        background: #fff;
        overflow: hidden;
        position: relative;
        transition: box-shadow 0.3s;
        display: flex;
        flex-direction: column;
    }
    .other-svc-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
    .other-svc-thumb {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
    }
    .other-svc-card:hover .other-svc-thumb { transform: scale(1.03); }
    .other-svc-body {
        padding: 28px 28px 32px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .other-svc-tag {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 10px;
    }
    .other-svc-title {
        font-family: var(--display);
        font-size: clamp(20px, 1.8vw, 26px);
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.15;
        letter-spacing: -0.01em;
        margin-bottom: 10px;
    }
    .other-svc-desc {
        font-size: 13px;
        line-height: 1.7;
        color: var(--text-muted);
        margin-bottom: 20px;
        flex: 1;
    }
    .other-svc-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--primary);
        transition: gap 0.2s;
    }
    .other-svc-card:hover .other-svc-link { gap: 10px; }

/* ===== PAGE: AUDIT ===== */
    /*
      DESIGN DECISIONS — Key Ledgers Audit Page
      1. Colour weight:   Bold — near-black dominant, crimson as commanding authority accent
      2. Font pairing:    Cormorant Garamond (gravitas, legal precision) + DM Sans (body clarity)
      3. Layout rhythm:   Editorial — open sections, generous whitespace, deliberate density
      4. Hero type:       Inner hero — dark with radial glow, breadcrumb, pills
    */

    /* ===== WHO WE AUDIT ===== */
    .who-we-audit { background: var(--bg-light); padding: 100px 0; }
    .who-we-audit-h2 {
        font-family: var(--display);
        font-size: clamp(34px, 3.5vw, 54px);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.01em;
        color: var(--text-dark);
        margin-bottom: 56px;
    }
    .ed-list { border-top: 1px solid var(--border); }
    .ed-row {
        display: grid;
        grid-template-columns: 56px 1fr;
        gap: 32px;
        padding: 36px 0;
        border-bottom: 1px solid var(--border);
        align-items: start;
        transition: padding-left 0.3s var(--ease-out);
        cursor: default;
    }
    @media (min-width: 1024px) { .ed-row { grid-template-columns: 72px 1fr 1fr; gap: 48px; } }
    .ed-row:hover { padding-left: 8px; }
    .ed-n { font-family: var(--display); font-size: 48px; font-weight: 600; color: rgba(0,0,0,0.3); line-height: 1; letter-spacing: -0.04em; padding-top: 4px; }
    .ed-title { font-family: var(--display); font-size: clamp(20px,1.8vw,28px); font-weight: 600; color: var(--text-dark); margin-bottom: 10px; letter-spacing: -0.01em; line-height: 1.1; }
    .ed-body { font-size: 15px; line-height: 1.8; color: var(--text-body); }

    /* ===== REGISTERED AUDITOR ===== */
    .reg-auditor { background: var(--bg-off); padding: 100px 0; }
    .reg-auditor-inner { max-width: 720px; }
    .reg-auditor-h2 {
        font-family: var(--display);
        font-size: clamp(32px, 3.5vw, 52px);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.01em;
        color: var(--text-dark);
        margin-bottom: 24px;
    }
    .reg-auditor-body {
        font-size: 16px;
        line-height: 1.8;
        color: var(--text-body);
        margin-bottom: 24px;
    }

    /* ===== SERVICE DETAIL ===== */
    .svc-detail { background: var(--bg-light); padding: 100px 0; }
    .svc-detail-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 64px;
    }
    @media (min-width: 1024px) { .svc-detail-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; } }
    .svc-detail-h2 {
        font-family: var(--display);
        font-size: clamp(32px, 3.5vw, 52px);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.01em;
        color: var(--text-dark);
        margin-bottom: 20px;
    }
    .svc-detail-body {
        font-size: 16px;
        line-height: 1.8;
        color: var(--text-body);
        margin-bottom: 28px;
    }
    .svc-check-list { display: flex; flex-direction: column; gap: 12px; }
    .svc-check-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 15px;
        line-height: 1.5;
        color: var(--text-body);
    }
    .svc-check-dot {
        width: 20px; height: 20px;
        border-radius: 50%;
        background: var(--bg-dark);
        flex-shrink: 0;
        margin-top: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .svc-check-dot svg { display: block; }

    /* ===== PREMIUM FEATURE ITEMS ===== */
    .sfi-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        border: 1px solid var(--border);
    }
    .sfi-item {
        padding: 40px;
        background: #fff;
        border-bottom: 1px solid var(--border);
        position: relative;
        overflow: hidden;
        transition: background 0.3s;
        cursor: default;
    }
    .sfi-item:last-child { border-bottom: none; }
    .sfi-item::before {
        content: '';
        position: absolute;
        bottom: 0; left: 40px; right: 40px;
        height: 1px;
        background: var(--primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.45s var(--ease-out);
    }
    .sfi-item:hover { background: var(--bg-off); }
    .sfi-item:hover::before { transform: scaleX(1); }
    .sfi-n {
        font-family: var(--display);
        font-size: 52px;
        font-weight: 600;
        color: rgba(0,0,0,0.3);
        line-height: 1;
        letter-spacing: -0.04em;
        margin-bottom: 16px;
    }
    .sfi-title {
        font-family: var(--display);
        font-size: clamp(20px, 1.8vw, 28px);
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 12px;
        letter-spacing: -0.01em;
        line-height: 1.1;
    }
    .sfi-body {
        font-size: 14px;
        line-height: 1.75;
        color: var(--text-muted);
    }

    /* ===== RELATED SERVICES ===== */
    .other-svc-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1px;
        background: var(--border);
        border: 1px solid var(--border);
        margin-top: 40px;
    }
    @media (min-width: 640px)  { .other-svc-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1100px) { .other-svc-grid { grid-template-columns: repeat(3, 1fr); } }
    .other-svc-card {
        background: #fff;
        overflow: hidden;
        position: relative;
        transition: box-shadow 0.3s;
        display: flex;
        flex-direction: column;
    }
    .other-svc-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
    .other-svc-thumb {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
    }
    .other-svc-card:hover .other-svc-thumb { transform: scale(1.03); }
    .other-svc-body {
        padding: 28px 28px 32px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .other-svc-tag {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 10px;
    }
    .other-svc-title {
        font-family: var(--display);
        font-size: clamp(20px, 1.8vw, 26px);
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.15;
        letter-spacing: -0.01em;
        margin-bottom: 10px;
    }
    .other-svc-desc {
        font-size: 13px;
        line-height: 1.7;
        color: var(--text-muted);
        margin-bottom: 20px;
        flex: 1;
    }
    .other-svc-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--primary);
        transition: gap 0.2s;
    }
    .other-svc-card:hover .other-svc-link { gap: 10px; }

/* ===== PAGE: BUSINESS INTERRUPTION ===== */
    /*
      DESIGN DECISIONS — Key Ledgers Business Interruption Page
      1. Colour weight:   Bold — navy dominant, red as commanding authority accent
      2. Font pairing:    Cormorant Garamond (gravitas, legal precision) + DM Sans (body clarity)
      3. Layout rhythm:   Editorial — open sections, generous whitespace, deliberate density
      4. Hero type:       Inner hero — dark with radial glow, breadcrumb, pills
    */

    /* ===== SERVICE DETAIL ===== */
    .svc-detail { background: var(--bg-light); padding: 100px 0; }
    .svc-detail-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 64px;
    }
    @media (min-width: 1024px) { .svc-detail-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; } }
    .svc-detail-h2 {
        font-family: var(--display);
        font-size: clamp(32px, 3.5vw, 52px);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.01em;
        color: var(--text-dark);
        margin-bottom: 20px;
    }
    .svc-detail-body {
        font-size: 16px;
        line-height: 1.8;
        color: var(--text-body);
        margin-bottom: 28px;
    }
    .svc-check-list { display: flex; flex-direction: column; gap: 12px; }
    .svc-check-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 15px;
        line-height: 1.5;
        color: var(--text-body);
    }
    .svc-check-dot {
        width: 20px; height: 20px;
        border-radius: 50%;
        background: var(--bg-dark);
        flex-shrink: 0;
        margin-top: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .svc-check-dot svg { display: block; }

    /* ===== PREMIUM FEATURE ITEMS ===== */
    .sfi-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        border: 1px solid var(--border);
    }
    .sfi-item {
        padding: 40px;
        background: #fff;
        border-bottom: 1px solid var(--border);
        position: relative;
        overflow: hidden;
        transition: background 0.3s;
        cursor: default;
    }
    .sfi-item:last-child { border-bottom: none; }
    .sfi-item::before {
        content: '';
        position: absolute;
        bottom: 0; left: 40px; right: 40px;
        height: 1px;
        background: var(--primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.45s var(--ease-out);
    }
    .sfi-item:hover { background: var(--bg-off); }
    .sfi-item:hover::before { transform: scaleX(1); }
    .sfi-n {
        font-family: var(--display);
        font-size: 52px;
        font-weight: 600;
        color: rgba(0,0,0,0.3);
        line-height: 1;
        letter-spacing: -0.04em;
        margin-bottom: 16px;
    }
    .sfi-title {
        font-family: var(--display);
        font-size: clamp(20px, 1.8vw, 28px);
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 12px;
        letter-spacing: -0.01em;
        line-height: 1.1;
    }
    .sfi-body {
        font-size: 14px;
        line-height: 1.75;
        color: var(--text-muted);
    }

    /* ===== RELATED SERVICES ===== */
    .other-svc-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1px;
        background: var(--border);
        border: 1px solid var(--border);
        margin-top: 40px;
    }
    @media (min-width: 640px)  { .other-svc-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1100px) { .other-svc-grid { grid-template-columns: repeat(3, 1fr); } }
    .other-svc-card {
        background: #fff;
        overflow: hidden;
        position: relative;
        transition: box-shadow 0.3s;
        display: flex;
        flex-direction: column;
    }
    .other-svc-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
    .other-svc-thumb {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
    }
    .other-svc-card:hover .other-svc-thumb { transform: scale(1.03); }
    .other-svc-body {
        padding: 28px 28px 32px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .other-svc-tag {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 10px;
    }
    .other-svc-title {
        font-family: var(--display);
        font-size: clamp(20px, 1.8vw, 26px);
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.15;
        letter-spacing: -0.01em;
        margin-bottom: 10px;
    }
    .other-svc-desc {
        font-size: 13px;
        line-height: 1.7;
        color: var(--text-muted);
        margin-bottom: 20px;
        flex: 1;
    }
    .other-svc-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--primary);
        transition: gap 0.2s;
    }
    .other-svc-card:hover .other-svc-link { gap: 10px; }

    /* ===== CASE STUDY ===== */
    .case-study { background: var(--bg-mid); padding: 100px 0; }
    .case-study-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 64px;
        align-items: center;
    }
    @media (min-width: 1024px) { .case-study-inner { grid-template-columns: 1fr 1fr; gap: 80px; } }
    .cs-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 16px;
        border: 1px solid rgba(255,255,255,0.1);
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.70);
        margin-bottom: 28px;
    }
    .cs-h2 {
        font-family: var(--display);
        font-size: clamp(32px, 3.5vw, 52px);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.01em;
        color: #fff;
        margin-bottom: 24px;
    }
    .cs-body {
        font-size: 16px;
        line-height: 1.8;
        color: var(--text-light);
        margin-bottom: 32px;
    }
    .cs-outcome {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 24px;
        background: transparent;
        border: 1px solid rgba(255,255,255,0.5);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--primary);
    }
    .cs-visual {
        background: var(--bg-alt);
        padding: 52px 44px;
        border-left: 3px solid var(--primary);
        position: relative;
    }
    .cs-visual-q {
        font-family: var(--display);
        font-size: 80px;
        line-height: 0.6;
        color: var(--primary);
        opacity: 0.12;
        display: block;
        margin-bottom: 12px;
        user-select: none;
    }
    .cs-visual-text {
        font-family: var(--display);
        font-size: clamp(18px, 1.8vw, 26px);
        font-style: italic;
        font-weight: 400;
        line-height: 1.6;
        color: rgba(255,255,255,0.7);
    }

    /* ===== RELATED SERVICES ===== */
    .related { background: var(--bg-off); padding: 80px 0; }
    .related-h2 { font-family: var(--display); font-size: clamp(30px, 3vw, 46px); font-weight: 600; line-height: 1.05; letter-spacing: -0.01em; color: var(--text-dark); margin-bottom: 48px; }

/* ===== PAGE: AFFORDABILITY ANALYSIS ===== */
    /*
      DESIGN DECISIONS — Key Ledgers Affordability Analysis Page
      1. Colour weight:   Bold — near-black dominant, crimson as commanding authority accent
      2. Font pairing:    Cormorant Garamond (gravitas, legal precision) + DM Sans (body clarity)
      3. Layout rhythm:   Editorial — open sections, generous whitespace, deliberate density
      4. Hero type:       Inner hero — dark with radial glow, breadcrumb, pills
    */

    /* ===== METHODOLOGY ===== */
    .methodology { background: var(--bg-light); padding: 100px 0; }
    .methodology-h2 {
        font-family: var(--display);
        font-size: clamp(34px, 3.5vw, 54px);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.01em;
        color: var(--text-dark);
        margin-bottom: 56px;
    }
    .ed-list { border-top: 1px solid var(--border); }
    .ed-row {
        display: grid;
        grid-template-columns: 56px 1fr;
        gap: 32px;
        padding: 36px 0;
        border-bottom: 1px solid var(--border);
        align-items: start;
        transition: padding-left 0.3s var(--ease-out);
        cursor: default;
    }
    @media (min-width: 1024px) { .ed-row { grid-template-columns: 72px 1fr 1fr; gap: 48px; } }
    .ed-row:hover { padding-left: 8px; }
    .ed-n { font-family: var(--display); font-size: 48px; font-weight: 600; color: rgba(0,0,0,0.3); line-height: 1; letter-spacing: -0.04em; padding-top: 4px; }
    .ed-title { font-family: var(--display); font-size: clamp(20px,1.8vw,28px); font-weight: 600; color: var(--text-dark); margin-bottom: 10px; letter-spacing: -0.01em; line-height: 1.1; }
    .ed-body { font-size: 15px; line-height: 1.8; color: var(--text-body); }

    /* ===== SERVICE DETAIL ===== */
    .svc-detail { background: var(--bg-light); padding: 100px 0; }
    .svc-detail-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 64px;
    }
    @media (min-width: 1024px) { .svc-detail-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; } }
    .svc-detail-h2 {
        font-family: var(--display);
        font-size: clamp(32px, 3.5vw, 52px);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.01em;
        color: var(--text-dark);
        margin-bottom: 20px;
    }
    .svc-detail-body {
        font-size: 16px;
        line-height: 1.8;
        color: var(--text-body);
        margin-bottom: 28px;
    }
    .svc-check-list { display: flex; flex-direction: column; gap: 12px; }
    .svc-check-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 15px;
        line-height: 1.5;
        color: var(--text-body);
    }
    .svc-check-dot {
        width: 20px; height: 20px;
        border-radius: 50%;
        background: var(--bg-dark);
        flex-shrink: 0;
        margin-top: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .svc-check-dot svg { display: block; }

    /* ===== PREMIUM FEATURE ITEMS ===== */
    .sfi-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        border: 1px solid var(--border);
    }
    .sfi-item {
        padding: 40px;
        background: #fff;
        border-bottom: 1px solid var(--border);
        position: relative;
        overflow: hidden;
        transition: background 0.3s;
        cursor: default;
    }
    .sfi-item:last-child { border-bottom: none; }
    .sfi-item::before {
        content: '';
        position: absolute;
        bottom: 0; left: 40px; right: 40px;
        height: 1px;
        background: var(--primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.45s var(--ease-out);
    }
    .sfi-item:hover { background: var(--bg-off); }
    .sfi-item:hover::before { transform: scaleX(1); }
    .sfi-n {
        font-family: var(--display);
        font-size: 52px;
        font-weight: 600;
        color: rgba(0,0,0,0.3);
        line-height: 1;
        letter-spacing: -0.04em;
        margin-bottom: 16px;
    }
    .sfi-title {
        font-family: var(--display);
        font-size: clamp(20px, 1.8vw, 28px);
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 12px;
        letter-spacing: -0.01em;
        line-height: 1.1;
    }
    .sfi-body {
        font-size: 14px;
        line-height: 1.75;
        color: var(--text-muted);
    }

    /* ===== RELATED SERVICES ===== */
    .other-svc-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1px;
        background: var(--border);
        border: 1px solid var(--border);
        margin-top: 40px;
    }
    @media (min-width: 640px)  { .other-svc-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1100px) { .other-svc-grid { grid-template-columns: repeat(3, 1fr); } }
    .other-svc-card {
        background: #fff;
        overflow: hidden;
        position: relative;
        transition: box-shadow 0.3s;
        display: flex;
        flex-direction: column;
    }
    .other-svc-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
    .other-svc-thumb {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
    }
    .other-svc-card:hover .other-svc-thumb { transform: scale(1.03); }
    .other-svc-body {
        padding: 28px 28px 32px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .other-svc-tag {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 10px;
    }
    .other-svc-title {
        font-family: var(--display);
        font-size: clamp(20px, 1.8vw, 26px);
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.15;
        letter-spacing: -0.01em;
        margin-bottom: 10px;
    }
    .other-svc-desc {
        font-size: 13px;
        line-height: 1.7;
        color: var(--text-muted);
        margin-bottom: 20px;
        flex: 1;
    }
    .other-svc-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--primary);
        transition: gap 0.2s;
    }
    .other-svc-card:hover .other-svc-link { gap: 10px; }

/* ===== PAGE: PCP CONSUMER FINANCE ===== */
    /*
      DESIGN DECISIONS — Key Ledgers PCP and Consumer Finance Page
      1. Colour weight:   Bold — near-black dominant, crimson as commanding authority accent
      2. Font pairing:    Cormorant Garamond (gravitas, legal precision) + DM Sans (body clarity)
      3. Layout rhythm:   Editorial — open sections, generous whitespace, deliberate density
      4. Hero type:       Inner hero — dark with radial glow, breadcrumb, pills
    */

    /* ===== KEY ISSUES ===== */
    .key-issues { background: var(--bg-light); padding: 100px 0; }
    .key-issues-h2 {
        font-family: var(--display);
        font-size: clamp(34px, 3.5vw, 54px);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.01em;
        color: var(--text-dark);
        margin-bottom: 56px;
    }
    .ed-list { border-top: 1px solid var(--border); }
    .ed-row {
        display: grid;
        grid-template-columns: 56px 1fr;
        gap: 32px;
        padding: 36px 0;
        border-bottom: 1px solid var(--border);
        align-items: start;
        transition: padding-left 0.3s var(--ease-out);
        cursor: default;
    }
    @media (min-width: 1024px) { .ed-row { grid-template-columns: 72px 1fr 1fr; gap: 48px; } }
    .ed-row:hover { padding-left: 8px; }
    .ed-n { font-family: var(--display); font-size: 48px; font-weight: 600; color: rgba(0,0,0,0.3); line-height: 1; letter-spacing: -0.04em; padding-top: 4px; }
    .ed-title { font-family: var(--display); font-size: clamp(20px,1.8vw,28px); font-weight: 600; color: var(--text-dark); margin-bottom: 10px; letter-spacing: -0.01em; line-height: 1.1; }
    .ed-body { font-size: 15px; line-height: 1.8; color: var(--text-body); }

/* ===== PAGE: COLOR PICKER ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "DM Sans", sans-serif; background: #f0f0f0; }
.header { background: #00132D; padding: 28px 48px; }
.header h1 { font-family: "Cormorant Garamond", serif; color: #fff; font-size: 24px; font-weight: 600; }
.header p { color: rgba(255,255,255,0.5); font-size: 13px; margin-top: 5px; }
.combos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 32px; }
.combo { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.combo-label { padding: 18px 24px 0; display: flex; justify-content: space-between; align-items: flex-start; }
.combo-num { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #aaa; }
.combo-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 9px; border-radius: 2px; }
.tag-rec { background: #FF0000; color: #fff; }
.tag-opt { background: #eee; color: #555; }
.swatches { display: flex; gap: 10px; padding: 14px 24px 16px; align-items: center; }
.sw { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.sw-box { width: 44px; height: 44px; border-radius: 3px; border: 1px solid rgba(0,0,0,0.09); }
.sw-hex { font-size: 9px; font-weight: 600; letter-spacing: 0.06em; color: #999; text-transform: uppercase; }
.sw-name { font-size: 9px; color: #bbb; white-space: nowrap; }
.plus { font-size: 18px; color: #ddd; margin: 0 2px; padding-bottom: 16px; }
/* Mini page preview */
.page-preview { margin: 0 24px 24px; border: 1px solid #e5e5e5; border-radius: 4px; overflow: hidden; font-size: 0; }
.pg-nav { background: #fff; padding: 8px 14px; font-size: 9px; color: #aaa; letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 1px solid #eee; display: flex; align-items: center; justify-content: space-between; }
.pg-nav-dot { display: inline-block; width: 28px; height: 2px; background: #FF0000; }
.pg-hero { background: #00132D; padding: 18px 14px; }
.pg-hero-tag { font-size: 8px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #FF0000; margin-bottom: 5px; }
.pg-hero-h { font-family: "Cormorant Garamond", serif; font-size: 18px; font-weight: 600; color: #fff; line-height: 1.2; margin-bottom: 5px; }
.pg-hero-p { font-size: 10px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.pg-section { padding: 16px 14px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.pg-section-tag { font-size: 8px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #FF0000; margin-bottom: 4px; }
.pg-section-h { font-family: "Cormorant Garamond", serif; font-size: 15px; font-weight: 600; color: #00132D; line-height: 1.2; margin-bottom: 5px; }
.pg-section-p { font-size: 10px; color: #555; line-height: 1.55; }
.pg-footer { background: #00132D; padding: 10px 14px; font-size: 9px; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; }
.verdict { padding: 0 24px 24px; font-size: 12px; line-height: 1.65; color: #6B7280; border-top: 1px solid #f0f0f0; padding-top: 16px; margin-top: 0; }
.verdict strong { color: #00132D; display: block; margin-bottom: 3px; font-size: 13px; }

/* ===== HOMEPAGE INLINE CSS CLEANUP ===== */

/* Service numbers - boost visibility */
.svc-n { color: var(--text-dark); opacity: 0.45; }
.svc--featured .svc-n { color: #fff; opacity: 0.5; }

/* Nav dropdown chevron */
.nav-chevron { display: inline-block; margin-left: 4px; vertical-align: middle; transition: transform 0.2s; }

/* Mobile phone link */
.mob-link--phone { color: var(--primary); font-weight: 500; }

/* Why section CTA */
.why .btn-p { display: inline-flex; margin-top: 28px; }

/* Stats - text-based stat numbers */
.stat-n--text { font-size: clamp(26px, 2.8vw, 40px); padding-top: 12px; }

/* Editorial pull / "Our Standard" section */
.editorial { background: #fff; padding: 100px 0; overflow: hidden; position: relative; }
.editorial-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; overflow: hidden; }
.editorial-circle-1 { position: absolute; top: -40px; right: -80px; width: 400px; height: 400px; border-radius: 50%; border: 1px solid rgba(16, 42, 67, 0.07); }
.editorial-circle-2 { position: absolute; bottom: -60px; left: -60px; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(16, 42, 67, 0.05); }
.editorial-inner { position: relative; z-index: 1; display: block; }
.editorial-content { max-width: 1000px; margin: 0 auto; text-align: center; }
.editorial .s-label { justify-content: center; margin-bottom: 40px; }
.editorial-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 3.8vw, 52px);
    font-style: italic;
    font-weight: 300;
    line-height: 1.35;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    margin: 0 auto 40px;
    max-width: 860px;
}
.editorial-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    max-width: 760px;
    margin: 0 auto;
}
.editorial-stat { text-align: center; flex: 1; }
.editorial-stat-n {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1;
}
.editorial-stat-n--small {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    line-height: 1.1;
}
.editorial-stat-n span { color: #00132D; opacity: 0.45; }
.editorial-stat-l {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 8px;
}
.editorial-divider { width: 1px; height: 56px; background: var(--border); flex-shrink: 0; margin: 0 8px; }

/* Testimonials section */
.testi .s-label { justify-content: center; }
/* testi-featured border defined at line 974 */
.testi-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.testi-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-dark);
    border: 1px solid rgba(16, 42, 67, 0.25);
    padding: 3px 9px;
}
.testi-tag-dot { width: 3px; height: 3px; border-radius: 50%; background: #00132D; display: inline-block; }
.testi-auth--featured { margin-top: 24px; border-top-color: var(--border); }
.testi-init--dark { background: #00132D; }
.testi-init--mid { background: #1B4770; }
.testi-init--blue { background: #4285F4; }
.testi-source { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; gap: 8px; flex-wrap: wrap; }
.testi-source-tag {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 3px 8px;
}
.testi-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #00132D;
    border-bottom: 1px solid rgba(16, 42, 67, 0.35);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}
.testi-all-wrap { text-align: center; margin-top: 48px; }

/* FAQ */
.faq .s-label { justify-content: center; }

/* Case studies subtitle */
.cases-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 0;
    margin-top: -16px;
}
.cases-grid--mt { margin-top: 48px; }

/* Center last 2 services on desktop (6 items in 4-col grid) */
@media (min-width: 1200px) {
    .services-secondary { justify-content: center; }
}

/* Tablet + mobile: editorial stats - hide dividers, 2x2 grid */
@media (max-width: 767px) {
    .editorial-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }
    .editorial-divider { display: none; }
    .editorial-stat-n { font-size: clamp(36px, 10vw, 52px); }
    .editorial { padding: 64px 0; }
}

/* ================================================================
   SERVICE PAGE ENHANCEMENTS
   Stats · Why Choose Us · Who We Work With · Deliverables · Insights
   ================================================================ */

/* ── Stats Bar ─────────────────────────────────────────────────── */
.svc-stats {
    background: var(--bg-dark);
    padding: 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.svc-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.07);
}
@media (min-width: 768px) { .svc-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.svc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 36px 20px;
    background: var(--bg-dark);
    gap: 6px;
    transition: background 0.2s;
}
.svc-stat:hover { background: #001f45; }
.svc-stat-n {
    font-family: var(--display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    font-style: italic;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}
.svc-stat-l {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
    max-width: 120px;
}

/* ── Why Choose Us ─────────────────────────────────────────────── */
.svc-why {
    background: #fff;
    padding: 100px 0;
}
.svc-why-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: start;
}
@media (min-width: 1024px) { .svc-why-inner { grid-template-columns: 340px 1fr; gap: 80px; } }
.svc-why-h2 {
    font-family: var(--display);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.1;
    color: var(--text-dark);
    margin: 14px 0 18px;
}
.svc-why-sub {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-muted);
}
.svc-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--border);
}
@media (min-width: 580px) { .svc-why-grid { grid-template-columns: repeat(2, 1fr); } }
.svc-why-item {
    padding: 28px 28px 28px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
@media (min-width: 580px) {
    .svc-why-item:nth-child(odd)  { border-right: 1px solid var(--border); padding-right: 28px; }
    .svc-why-item:nth-child(even) { padding-left: 28px; }
}
.svc-why-ico {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,0,0,0.06);
    border: 1px solid rgba(255,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.svc-why-ico svg { width: 15px; height: 15px; stroke: var(--primary); fill: none; }
.svc-why-item-h {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}
.svc-why-item-b {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted);
}

/* ── Who We Work With ──────────────────────────────────────────── */
.svc-who {
    background: var(--bg-off);
    padding: 80px 0;
}
.svc-who-h2 {
    font-family: var(--display);
    font-size: clamp(26px, 2.5vw, 38px);
    font-weight: 600;
    color: var(--text-dark);
    margin: 12px 0 40px;
    line-height: 1.1;
}
.svc-who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (min-width: 640px)  { .svc-who-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .svc-who-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.svc-who-card {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid transparent;
    border-radius: 2px;
    padding: 20px 18px;
    transition: border-top-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.svc-who-card:hover {
    border-top-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transform: translateY(-2px);
}
.svc-who-card-ico {
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
    stroke: var(--primary);
    fill: none;
}
.svc-who-card-h {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.25;
}
.svc-who-card-b {
    font-size: 12px;
    line-height: 1.65;
    color: var(--text-muted);
}

/* ── What You Receive ──────────────────────────────────────────── */
.svc-recv {
    background: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.svc-recv::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 85% 50%, rgba(255,0,0,0.05) 0%, transparent 60%);
    pointer-events: none;
}
.svc-recv-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    position: relative;
}
@media (min-width: 1024px) { .svc-recv-inner { grid-template-columns: 340px 1fr; gap: 80px; align-items: start; } }
.svc-recv-h2 {
    font-family: var(--display);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 1.1;
    margin: 14px 0 18px;
}
.svc-recv-sub {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,0.55);
}
.svc-recv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.svc-recv-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.svc-recv-tick {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,0,0,0.12);
    border: 1px solid rgba(255,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}
.svc-recv-tick svg { width: 10px; height: 10px; stroke: var(--primary); fill: none; }
.svc-recv-item-h {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
    line-height: 1.25;
}
.svc-recv-item-b {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

/* ── Related Insights ──────────────────────────────────────────── */
.svc-insights {
    background: var(--bg-off);
    padding: 100px 0;
}
.svc-insights-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 16px;
    flex-wrap: wrap;
}
.svc-insights-h2 {
    font-family: var(--display);
    font-size: clamp(26px, 2.5vw, 38px);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.1;
    margin-top: 12px;
}
.svc-insights-all {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: color 0.2s, gap 0.2s;
}
.svc-insights-all:hover { color: var(--primary); gap: 10px; }
.svc-insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 640px)  { .svc-insights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .svc-insights-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-insight-card {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    padding: 28px 24px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow 0.25s, transform 0.25s;
}
.svc-insight-card:hover {
    box-shadow: 0 8px 32px rgba(0,19,45,0.1);
    transform: translateY(-3px);
}
.svc-insight-tag {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
}
.svc-insight-h {
    font-family: var(--display);
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    flex-grow: 1;
}
.svc-insight-exc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
}
.svc-insight-link {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    transition: gap 0.2s, color 0.2s;
}
.svc-insight-card:hover .svc-insight-link { gap: 10px; color: var(--primary); }

/* ==========================================================================
   Mega-menu services dropdown — desktop (added by KL_final mega-menu update)
   ========================================================================== */
.nav-drop--mega {
    width: 720px !important;
    max-width: 92vw;
    background: var(--bg-dark, #00132D) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45) !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 56px;
    row-gap: 28px;
    padding: 36px 44px !important;
    border-radius: 0;
}
.nav-drop--mega li { list-style: none; margin: 0; padding: 0; }
.nav-mega-link {
    display: block;
    padding: 4px 0;
    color: inherit;
    transition: transform 0.25s var(--ease, ease);
}
.nav-mega-link:hover,
.nav-mega-link:focus-visible {
    background: transparent;
    transform: translateX(4px);
}
.nav-mega-title {
    display: block;
    font-family: var(--display, 'Cormorant Garamond', Georgia, serif);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 6px;
    transition: color 0.2s var(--ease, ease);
}
.nav-mega-link:hover .nav-mega-title,
.nav-mega-link:focus-visible .nav-mega-title {
    color: var(--primary, #FF0000);
}
.nav-mega-desc {
    display: block;
    font-family: var(--sans, 'DM Sans', system-ui, sans-serif);
    font-size: 10.5px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 1100px) {
    .nav-drop--mega {
        width: 560px !important;
        column-gap: 36px;
        padding: 28px 32px !important;
    }
    .nav-mega-title { font-size: 19px; }
}
