/*
 * Key Ledgers — Shared Stylesheet
 * Single source of truth for all pages.
 * Page-specific styles live in each page's <style> block.
 * Color system, nav, footer, buttons, animations — all here.
 */

/* ===== CSS VARIABLES — Homepage Color System ===== */
:root {
    --primary:          #FF0000;
    --primary-hover:    #CC0000;
    --bg-dark:          #102A43;
    --bg-mid:           #162F47;
    --bg-alt:           #2A5F8F;
    --bg-light:         #EAF1F8;
    --bg-off:           #F4F8FC;
    --text-dark:        #102A43;
    --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; }
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: 220px;
    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; }

/* ===== 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: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-bottom: none;
}
@media (min-width: 768px) { .services-featured { grid-template-columns: 1fr 1fr; } }
.services-secondary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
@media (min-width: 768px) { .services-secondary { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .services-secondary { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.svc {
    padding: 44px 40px;
    background: #fff;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.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 12px 48px rgba(0,0,0,0.10); transform: translateY(-3px); }
.svc:hover::before { transform: scaleY(1); }
.svc:hover::after { opacity: 1; }
.svc--featured {
    background: var(--bg-dark) !important;
    padding: 56px 44px;
}
.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: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-top: none;
}
@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: 1.6fr 1fr 1fr 1fr; } }
.ft-logo-img {
    height: 52px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.92;
    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: rgba(255,255,255,0.45); flex-shrink: 0; }
.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: #fff;
    letter-spacing: -0.01em;
    line-height: 1.1;
    transition: color 0.2s;
    margin-bottom: 4px;
}
.ft-phone-num:hover { color: var(--primary); }
.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;
    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: rgba(255,255,255,0.85); }
.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: rgba(255,255,255,0.85); }
.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, no extra padding */
    #site-nav { height: 56px; }
    :root { --nav-h: 56px; }
    .nav-inner { height: 56px; gap: 0; }
    .nav-logo-img { height: 30px; }
    .nav-burger { padding: 8px; }
    .nav-burger span { width: 22px; height: 2px; }

    /* Mobile menu — proper sub-items with indent */
    .mob-nav {
        overflow-y: auto;
        padding: 64px 32px 40px;
        gap: 0;
        align-items: flex-start;
    }
    .mob-link {
        font-size: 26px;
        padding: 10px 0;
        width: 100%;
    }
    .mob-link--sub {
        font-size: 15px !important;
        padding: 7px 0 7px 20px !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 — 2-col Services|Company, full-width logo & contact */
    .footer { padding: 48px 0 20px; }
    .footer-top {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 28px;
        margin-bottom: 28px;
        padding-bottom: 28px;
    }
    /* Logo + tagline row */
    .footer-top > div:first-child { grid-column: 1; }
    .ft-logo-img { height: 40px; margin-bottom: 14px; }
    .ft-tag { font-size: 13px; max-width: 100%; }
    .ft-accreds { margin-top: 14px; }

    /* Services + Company side by side */
    .footer-top > div:nth-child(2),
    .footer-top > div:nth-child(3) {
        display: inline-block;
        vertical-align: top;
    }
    .footer-top {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto auto;
    }
    .footer-top > div:first-child { grid-column: 1 / -1; }
    .footer-top > div:nth-child(2) { grid-column: 1; padding-left: 0; text-align: left; }
    .footer-top > div:nth-child(3) { grid-column: 2; padding-right: 0; 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:last-child { grid-column: 1 / -1; }
    .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; }

    /* 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; }

    /* 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: 420px; }
    .director-img { object-position: center 20%; }
    .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.5) !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; }
}
