/* =====================================================================
   Noble Bridge Law — public site stylesheet
   ===================================================================== */

:root {
    --navy: #0f2137;
    --navy-800: #16304f;
    --navy-700: #1e3f66;
    --gold: #c9a227;
    --gold-dark: #a9871a;
    --ink: #1c2530;
    --body: #4a5765;
    --muted: #7a8697;
    --line: #e2e6ec;
    --bg: #ffffff;
    --bg-soft: #f6f8fa;
    --bg-tint: #eef2f6;
    --success: #1f7a4d;
    --error: #b3261e;
    --radius: 6px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 3px rgba(15, 33, 55, .08);
    --shadow: 0 6px 24px rgba(15, 33, 55, .10);
    --shadow-lg: 0 18px 48px rgba(15, 33, 55, .16);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--body);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: var(--serif);
    color: var(--ink);
    line-height: 1.22;
    margin: 0 0 .6em;
    font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-700); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--gold-dark); }

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

ul, ol { margin: 0 0 1.1rem; padding-left: 1.25rem; }
li { margin-bottom: .4rem; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.muted { color: var(--muted); }

/* ---------------------------------------------------------------- Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 1.7rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: var(--navy);
    color: #fff;
    font: 600 .95rem/1 var(--sans);
    letter-spacing: .01em;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { background: var(--navy-700); color: #fff; transform: translateY(-1px); }
.btn-accent { background: var(--gold); color: var(--navy); }
.btn-accent:hover { background: var(--gold-dark); color: #fff; }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--bg-tint); color: var(--navy); }
.btn-ghost-light { background: transparent; border-color: rgba(255, 255, 255, .5); color: #fff; }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.btn-sm { padding: .5rem 1rem; font-size: .82rem; }
.btn-block { width: 100%; }

/* ----------------------------------------------------------------- Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, .82);
    font-size: .85rem;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 44px;
}
.topbar-contact { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar a { color: rgba(255, 255, 255, .82); }
.topbar a:hover { color: var(--gold); }
.topbar-cta .btn { color: var(--navy); }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 78px;
}

.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--navy); }
.brand-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex: none;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-size: 1.25rem;
}
.brand-text {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.12rem;
    line-height: 1.2;
    color: var(--navy);
}

.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav a {
    position: relative;
    color: var(--ink);
    font-size: .93rem;
    font-weight: 500;
    white-space: nowrap;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .22s ease;
}
.main-nav a:hover::after { width: 100%; }
.main-nav .nav-cta {
    padding: .55rem 1.2rem;
    border-radius: var(--radius);
    background: var(--navy);
    color: #fff;
}
.main-nav .nav-cta:hover { background: var(--navy-700); color: #fff; }
.main-nav .nav-cta::after { display: none; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 40px;
    padding: 0 9px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--navy);
    transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------------ Flash */
.flash { padding: .9rem 0; font-size: .93rem; font-weight: 500; }
.flash-success { background: #e7f4ed; color: var(--success); border-bottom: 1px solid #c6e6d5; }
.flash-error { background: #fbeaea; color: var(--error); border-bottom: 1px solid #f2cfcd; }
.flash-info { background: var(--bg-tint); color: var(--navy); border-bottom: 1px solid var(--line); }

/* -------------------------------------------------------------- Page head */
.page-hero {
    position: relative;
    padding: 4.5rem 0;
    background: var(--navy);
    color: rgba(255, 255, 255, .78);
    text-align: center;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(201, 162, 39, .18), transparent 55%);
    pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.page-hero p { max-width: 620px; margin: 0 auto; }

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 1rem;
    font-size: .84rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}
.breadcrumb a { color: var(--gold); }

/* --------------------------------------------------------------- Sections */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy); color: rgba(255, 255, 255, .78); }
.section-navy h2, .section-navy h3, .section-navy h4 { color: #fff; }

.section-head { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { color: var(--muted); margin-bottom: 0; }

.eyebrow {
    display: inline-block;
    margin-bottom: .8rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-dark);
}
.section-navy .eyebrow { color: var(--gold); }

/* ------------------------------------------------------------------- Grid */
.grid { display: grid; gap: 1.75rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ------------------------------------------------------------------- Hero */
.hero {
    position: relative;
    padding: 3.5rem 0 2rem;
    background: linear-gradient(115deg, var(--navy) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
    color: rgba(255, 255, 255, .8);
    overflow: hidden;
}
.hero::after {
    content: '⚖';
    position: absolute;
    right: -3rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26rem;
    line-height: 1;
    color: rgba(255, 255, 255, .035);
    pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero-lead { font-size: 1.12rem; margin-bottom: 2rem; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 3rem; }

.hero-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, .14);
}
.hero-stat .stat-value {
    display: block;
    font-family: var(--serif);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--gold);
}
.hero-stat .stat-label {
    font-size: .85rem;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .66);
}

/* ------------------------------------------------------------------ Cards */
.card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d3dae3; }
.card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: .5rem; }
.card-body p { color: var(--body); font-size: .95rem; }
.card-link {
    margin-top: auto;
    padding-top: 1rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--navy);
}
.card-link::after { content: ' →'; }

.card-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 1.2rem;
    border-radius: var(--radius);
    background: var(--bg-tint);
    color: var(--navy);
    font-size: 1.5rem;
}
.card:hover .card-icon { background: var(--gold); color: var(--navy); }

.card-media { aspect-ratio: 3 / 2; background: var(--bg-tint); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: .7rem;
    font-size: .8rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted);
}

/* --------------------------------------------------------------- Attorney */
.attorney-card { text-align: center; }
.attorney-photo {
    aspect-ratio: 1 / 1;
    background: var(--bg-tint);
    overflow: hidden;
}
.attorney-photo img { width: 100%; height: 100%; object-fit: cover; }
.attorney-initials {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    background: linear-gradient(140deg, var(--bg-tint), #dde4ec);
}
.attorney-card .role {
    font-size: .85rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: .6rem;
}

.profile-layout { display: grid; grid-template-columns: 320px 1fr; gap: 3rem; align-items: start; }
.profile-aside {
    position: sticky;
    top: 140px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.profile-aside .attorney-photo { aspect-ratio: 4 / 5; }
.profile-contact { padding: 1.5rem; display: grid; gap: .5rem; font-size: .92rem; }
.profile-section { margin-bottom: 2.5rem; }
.profile-section:last-child { margin-bottom: 0; }
.profile-section h3 {
    padding-bottom: .6rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

/* ----------------------------------------------------------------- Chips */
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
    display: inline-block;
    padding: .3rem .85rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--bg-soft);
    font-size: .82rem;
    color: var(--body);
}
a.chip:hover { border-color: var(--gold); background: #fff; color: var(--navy); }

.badge {
    display: inline-block;
    padding: .2rem .6rem;
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.badge-gold { background: rgba(201, 162, 39, .16); color: var(--gold-dark); }
.badge-navy { background: rgba(15, 33, 55, .08); color: var(--navy); }
.badge-green { background: #e7f4ed; color: var(--success); }
.badge-red { background: #fbeaea; color: var(--error); }
.badge-grey { background: var(--bg-tint); color: var(--muted); }

/* ---------------------------------------------------------- Case results */
.result-card {
    padding: 2rem;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    background: #fff;
    transition: box-shadow .2s ease, transform .2s ease;
}
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.result-amount {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: .5rem;
}
.result-card h3 { font-size: 1.1rem; }
.result-card .result-meta { font-size: .82rem; color: var(--muted); margin-bottom: .8rem; }

/* --------------------------------------------------------- Testimonials */
.testimonial {
    position: relative;
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
}
.section-soft .testimonial { background: #fff; border-color: var(--line); }
.testimonial::before {
    content: '“';
    position: absolute;
    top: .35rem;
    right: 1.5rem;
    font-family: var(--serif);
    font-size: 5rem;
    line-height: 1;
    color: var(--gold);
    opacity: .35;
}
.testimonial .stars { color: var(--gold); letter-spacing: .12em; margin-bottom: .9rem; }
.testimonial blockquote { margin: 0 0 1.4rem; font-size: 1rem; font-style: italic; }
.testimonial cite { font-style: normal; font-weight: 600; color: inherit; }
.section-navy .testimonial cite { color: #fff; }
.testimonial .client-title { display: block; font-size: .84rem; color: var(--muted); font-weight: 400; }
.section-navy .testimonial .client-title { color: rgba(255, 255, 255, .6); }

/* ------------------------------------------------------------------- CTA */
.cta-band {
    padding: 4rem 0;
    background: linear-gradient(100deg, var(--gold) 0%, #e0bc4e 100%);
    color: var(--navy);
    text-align: center;
}
.cta-band h2 { color: var(--navy); margin-bottom: .6rem; }
.cta-band p { max-width: 620px; margin: 0 auto 1.8rem; color: rgba(15, 33, 55, .78); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.cta-band .btn { background: var(--navy); color: #fff; }
.cta-band .btn:hover { background: var(--navy-800); }
.cta-band .btn-outline { background: transparent; border-color: rgba(15, 33, 55, .45); color: var(--navy); }
.cta-band .btn-outline:hover { background: rgba(15, 33, 55, .08); color: var(--navy); }

/* -------------------------------------------------- Article body & sidebar */
.post-body { font-size: 1.05rem; }
.post-body h2 { margin-top: 2.2rem; }
.post-body h3 { margin-top: 1.8rem; }
.post-body img { border-radius: var(--radius-lg); margin: 1.5rem 0; }
.post-body blockquote {
    margin: 1.6rem 0;
    padding: .3rem 0 .3rem 1.4rem;
    border-left: 3px solid var(--gold);
    font-style: italic;
    color: var(--ink);
}

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 3.5rem; align-items: start; }
.sidebar { position: sticky; top: 140px; display: grid; gap: 1.5rem; }
.sidebar-card {
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg-soft);
}
.sidebar-card h4 { margin-bottom: .9rem; }
.sidebar-list { list-style: none; margin: 0; padding: 0; }
.sidebar-list li { margin-bottom: .55rem; padding-bottom: .55rem; border-bottom: 1px solid var(--line); }
.sidebar-list li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }

/* ---------------------------------------------------------------- Careers */
.job-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    transition: box-shadow .2s ease, border-color .2s ease;
}
.job-card:hover { box-shadow: var(--shadow); border-color: #d3dae3; }
.job-card h3 { margin-bottom: .4rem; }
.job-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .87rem; color: var(--muted); }

.stack { display: grid; gap: 1.25rem; }

/* ------------------------------------------------------------------ Forms */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.form-group { display: grid; gap: .45rem; }
.form-group.full { grid-column: 1 / -1; }

label { font-size: .88rem; font-weight: 600; color: var(--ink); }
label .req { color: var(--error); }

input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
input[type="password"], input[type="number"], input[type="date"], input[type="file"],
select, textarea {
    width: 100%;
    padding: .75rem .9rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    font: 400 .95rem/1.5 var(--sans);
    color: var(--ink);
    transition: border-color .18s ease, box-shadow .18s ease;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--navy-700);
    box-shadow: 0 0 0 3px rgba(30, 63, 102, .12);
}
textarea { min-height: 150px; resize: vertical; }
input[type="file"] { padding: .6rem; background: var(--bg-soft); }
.field-hint { font-size: .8rem; color: var(--muted); }

.form-card {
    padding: 2.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.checkbox-row { display: flex; align-items: flex-start; gap: .55rem; }
.checkbox-row input { width: auto; margin-top: .3rem; }
.checkbox-row label { font-weight: 400; font-size: .9rem; color: var(--body); }

/* --------------------------------------------------------------- Contact */
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 3rem; align-items: start; }
.office-card {
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    background: var(--bg-soft);
    margin-bottom: 1.25rem;
}
.office-card h4 { margin-bottom: .5rem; }
.office-card p { font-size: .93rem; margin-bottom: .4rem; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; }

/* ------------------------------------------------------------- Prose page */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; }

/* ------------------------------------------------------------ Empty state */
.empty-state {
    padding: 3.5rem 2rem;
    text-align: center;
    border: 1px dashed var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg-soft);
    color: var(--muted);
}

/* ------------------------------------------------------------------- 404 */
.error-page { padding: 7rem 0; text-align: center; }
.error-code {
    font-family: var(--serif);
    font-size: clamp(5rem, 16vw, 9rem);
    font-weight: 700;
    line-height: 1;
    color: var(--bg-tint);
}

/* ---------------------------------------------------------------- Footer */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, .68); font-size: .93rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 2.5rem;
    padding: 4rem 24px 3rem;
}
.footer-col h4 {
    margin-bottom: 1.1rem;
    font-family: var(--sans);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
}
.footer-col a { display: block; margin-bottom: .6rem; color: rgba(255, 255, 255, .68); }
.footer-col a:hover { color: var(--gold); }
.footer-col p { margin-bottom: .6rem; }
.brand-footer { margin-bottom: 1rem; }
.brand-footer .brand-text { color: #fff; }
.footer-col .brand-footer + p { color: rgba(255, 255, 255, .55); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 1.5rem 0; }
.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .85rem;
}
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-disclaimer {
    margin-top: 1rem;
    font-size: .78rem;
    color: rgba(255, 255, 255, .42);
}

/* ------------------------------------------------------------ Responsive */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .profile-layout, .article-layout, .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .profile-aside, .sidebar { position: static; }
    .profile-aside { max-width: 380px; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: .5rem 24px 1.25rem;
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: var(--shadow);
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: .8rem 0; border-bottom: 1px solid var(--line); }
    .main-nav a::after { display: none; }
    .main-nav .nav-cta { margin-top: .9rem; text-align: center; border-bottom: 0; }
    .navbar { position: relative; min-height: 66px; }
}

@media (max-width: 760px) {
    .section { padding: 3.5rem 0; }
    .hero { padding: 4.5rem 0 3.5rem; }
    .hero::after { display: none; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
    .form-grid { grid-template-columns: 1fr; }
    .topbar-contact { gap: .9rem; }
    .topbar-cta { display: none; }
    .form-card { padding: 1.5rem; }
    .job-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .brand-text { font-size: .98rem; }
    .page-hero { padding: 3rem 0; }
}
