/* ── Wilson's Hardwood & Millwork ── Modern Design System ── */

:root {
    --bg: #f7f4ef;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: #ffffff;
    --surface-dark: #1c2620;
    --surface-dark-soft: #243326;
    --text: #1d1813;
    --text-soft: #5f564c;
    --text-inverse: #f9f6f1;
    --line: rgba(80, 58, 35, 0.10);
    --primary: #825026;
    --primary-dark: #643d1c;
    --accent: #2f6b3b;
    --shadow-sm: 0 2px 12px rgba(25, 18, 10, 0.06);
    --shadow-md: 0 8px 28px rgba(25, 18, 10, 0.09);
    --shadow-lg: 0 16px 48px rgba(25, 18, 10, 0.12);
    --radius: 16px;
    --radius-sm: 12px;
    --section-pad: 64px;
    --section-pad-mobile: 40px;
    --container: 1440px;
    --edge-gap: clamp(20px, 3vw, 40px);
    --hero-h1: clamp(2rem, 2.8vw, 2.8rem);
    --section-heading: clamp(1.65rem, 2.2vw, 2.2rem);
    --body-size: 0.975rem;
    --font-body: 'Inter', sans-serif;
    --font-display: 'Cormorant Garamond', serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0 0 1rem; color: var(--text-soft); font-size: var(--body-size); line-height: 1.7; text-wrap: pretty; }
h1, h2, h3, h4 { margin: 0 0 0.6rem; color: var(--text); line-height: 1.12; font-weight: 700; }
h1, h2 { font-family: var(--font-display); letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: var(--hero-h1); text-wrap: balance; }
h2 { font-size: var(--section-heading); }
h3 { font-size: 1.15rem; }
ul { padding: 0; margin: 0; list-style: none; }

/* ── Container ── */
.container {
    width: min(calc(100% - (var(--edge-gap) * 2)), var(--container));
    margin: 0 auto;
}
.max-text { max-width: 800px; }

/* ── Sections ── */
.section { padding: var(--section-pad) 0; position: relative; }
.section + .section { margin-top: 0; }
.section-light { background: transparent; }
.section-alt {
    background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(244,238,229,0.7));
    border-top: 1px solid rgba(80, 58, 35, 0.04);
    border-bottom: 1px solid rgba(80, 58, 35, 0.04);
}

/* ── Skip Link ── */
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 1rem; top: 1rem; background: #fff; padding: .75rem 1rem; border-radius: 999px; z-index: 100; }

/* ── Utility Bar ── */
.utility-bar {
    background: rgba(22, 17, 12, 0.95);
    color: rgba(255,255,255,0.78);
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.utility-bar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 34px;
    gap: 1rem;
}
.utility-business { display: none; }
.utility-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.8rem 1.2rem;
}
.utility-links a, .utility-links span { font-size: 0.82rem; line-height: 1; color: rgba(255,255,255,0.75); }
.utility-links a:hover { color: #fff; }

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(16px);
    background: rgba(247, 242, 234, 0.88);
    border-bottom: 1px solid rgba(80, 58, 35, 0.06);
    box-shadow: 0 4px 20px rgba(25, 18, 10, 0.04);
}
.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    min-height: 72px;
}
.brand-mark {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}
.brand-mark img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 4px 8px rgba(25, 18, 10, 0.12));
}
.brand-copy { min-width: 0; display: grid; gap: 0.05rem; }
.brand-mark strong { display: block; font-size: 1rem; line-height: 1.1; letter-spacing: -0.02em; }
.brand-mark span { display: block; color: var(--text-soft); font-size: 0.74rem; line-height: 1.3; max-width: 240px; }
.main-nav { display: contents; }
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.3rem, 0.6vw, 0.8rem);
    min-width: 0;
    padding: 0.35rem 0.5rem;
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(80, 58, 35, 0.06);
    border-radius: 999px;
}
.nav-links > a {
    color: var(--text-soft);
    font-weight: 600;
    font-size: 0.84rem;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 0.01em;
    padding: 0.6rem 0.75rem;
    border-radius: 999px;
    transition: color .2s ease, background .2s ease;
}
.nav-links > a.active,
.nav-links > a:hover {
    color: var(--text);
    background: rgba(255,255,255,0.8);
}
.header-actions { display: flex; align-items: center; justify-content: flex-end; }
.nav-toggle { display: none; background: none; border: 0; padding: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: .25s ease; border-radius: 2px; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 46px;
    padding: .75rem 1.3rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover { box-shadow: var(--shadow-md); }
.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.28);
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); }
.nav-cta {
    min-height: 42px;
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(25, 18, 10, 0.1);
}

/* ── Hero ── */
.hero-block {
    position: relative;
    overflow: hidden;
    color: var(--text-inverse);
    display: flex;
    align-items: center;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(10, 14, 12, 0.82) 0%, rgba(14, 18, 15, 0.65) 50%, rgba(18, 23, 18, 0.45) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.35));
}

.hero-shell {
    position: relative;
    z-index: 1;
    padding: 80px 0 56px;
    width: min(calc(100% - (var(--edge-gap) * 2)), var(--container));
    margin: 0 auto;
}
.hero-copy {
    max-width: 640px;
}
.hero-copy-plain {
    background: none;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
}

/* Hero Layout A - Homepage (side-by-side feel, no glass panel) */
.hero-layout-a { min-height: 520px; }
.hero-layout-a .hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 600px) 1fr;
    align-items: center;
    gap: 3rem;
    padding: 72px 0 48px;
}
.hero-layout-a .hero-copy {
    max-width: 600px;
    grid-column: 1;
}
.hero-layout-a .hero-copy .section-label { margin-bottom: 0.5rem; }
.hero-layout-a .hero-copy h1 {
    font-size: clamp(1.85rem, 2.5vw, 2.6rem);
    line-height: 1.08;
    margin-bottom: 0.5rem;
    max-width: 18ch;
}
.hero-layout-a .hero-lead { margin-bottom: 0.35rem; }
.hero-layout-a .hero-body { max-width: 28rem; }
.hero-layout-a .hero-actions { margin-top: 0.8rem; }

/* Hero clean variant (homepage) */
.hero-layout-a.hero-clean .hero-overlay {
    background:
        linear-gradient(100deg, rgba(10, 14, 12, 0.80) 0%, rgba(14, 18, 15, 0.58) 45%, rgba(20, 25, 20, 0.28) 75%, rgba(24, 28, 24, 0.18) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.28));
}

/* Trust strip - always static, below hero content */
.trust-strip {
    grid-column: 1 / -1;
    margin-top: 1.5rem;
}
.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}
.trust-item {
    background: rgba(255,255,255,0.95);
    color: var(--text);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(80,58,35,0.05);
    display: grid;
    align-content: start;
    gap: 0.2rem;
}
.trust-item strong {
    display: block;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--primary-dark);
}
.trust-item span {
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.2;
}
.trust-item small {
    color: var(--text-soft);
    font-size: 0.78rem;
    line-height: 1.35;
}

/* Hero Layout B - Inner pages (centered) */
.hero-layout-b { min-height: 340px; }
.hero-layout-b .hero-overlay {
    background:
        linear-gradient(180deg, rgba(10, 14, 12, 0.78), rgba(16, 20, 17, 0.68)),
        linear-gradient(90deg, rgba(0,0,0,0.12), rgba(0,0,0,0.12));
}
.hero-layout-b .hero-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 48px;
}
.hero-layout-b .hero-copy {
    margin: 0 auto;
    text-align: center;
    max-width: 680px;
}
.hero-layout-b .hero-copy .section-label,
.hero-layout-b .hero-copy .hero-lead,
.hero-layout-b .hero-copy .hero-body { margin-left: auto; margin-right: auto; }
.hero-layout-b .hero-copy .section-label { justify-content: center; }
.hero-layout-b .hero-copy h1 {
    max-width: 20ch;
    margin-left: auto;
    margin-right: auto;
    font-size: var(--hero-h1);
}
.hero-layout-b .hero-actions { justify-content: center; }

/* Shared hero text styles */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .75rem;
    font-weight: 800;
    color: var(--accent);
}
.hero-copy .section-label, .hero-copy p, .hero-copy h1 { color: #fff; }
.hero-copy .section-label { color: rgba(255,255,255,0.7); }
.hero-copy h1 { font-size: var(--hero-h1); line-height: 1.08; max-width: 22ch; margin-bottom: 0.5rem; }
.hero-lead { font-size: var(--body-size); line-height: 1.6; max-width: 36rem; margin-bottom: 0.3rem; opacity: 0.92; }
.hero-body { max-width: 32rem; opacity: .85; margin-bottom: 0; font-size: 0.92rem; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 0.8rem; }
.hero-actions .btn { min-width: 170px; }

/* ── Section Headings ── */
.section-heading { margin-bottom: 1.25rem; }
.section-heading-left { text-align: left; }

/* ── Grids ── */
.feature-grid, .resource-grid, .footer-grid, .form-grid { display: grid; gap: 1rem; }
.feature-grid-four, .resource-grid-four { grid-template-columns: repeat(4, minmax(200px, 1fr)); align-items: stretch; }
.feature-grid-three, .resource-grid-three { grid-template-columns: repeat(3, minmax(220px, 1fr)); align-items: stretch; }
.feature-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ── Cards ── */
.feature-card, .resource-card, .cta-inline-card, .quote-shell, .content-slab, .contact-panel {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(80,58,35,0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feature-card, .resource-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,247,242,0.94));
}
.feature-card:hover,
.resource-card:hover,
.content-slab:hover,
.contact-panel:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(130, 80, 38, 0.12);
}
.feature-card h3, .resource-card h3 { line-height: 1.2; }
.feature-card p:last-child, .resource-card p:last-child { margin-bottom: 0; }
.text-link { font-weight: 700; color: var(--primary); margin-top: auto; font-size: 0.9rem; }
.text-link:hover { color: var(--primary-dark); }

/* ── Service Showcase ── */
.service-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 1rem;
}
.service-showcase-card {
    display: grid;
    grid-template-rows: 200px 1fr;
    min-height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,247,242,0.94));
    border: 1px solid rgba(80,58,35,0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease;
}
.service-showcase-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-showcase-card img { width: 100%; height: 100%; object-fit: cover; }
.service-showcase-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.service-showcase-body .btn { align-self: flex-start; margin-top: auto; }
.service-point-list { display: grid; gap: 0.5rem; margin: 0.15rem 0 0.3rem; }
.service-point-list li { position: relative; padding-left: 1rem; color: var(--text-soft); font-size: 0.92rem; }
.service-point-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 999px;
    background: var(--accent);
}

/* ── Split Section ── */
.split-section {
    display: grid;
    grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
    gap: 1.5rem;
    align-items: center;
}
.split-section > * { min-width: 0; }
.split-section .max-text { max-width: none; }
.split-section-service > :first-child,
.split-section-service > :last-child { align-self: center; }

/* ── Image Stack Card ── */
.image-stack-card {
    overflow: hidden;
    padding: 0.75rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,244,237,0.96));
    border: 1px solid rgba(80,58,35,0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.image-stack-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    border-radius: calc(var(--radius) - 4px);
    margin-bottom: 0.6rem;
}

/* ── CTA Inline ── */
.cta-inline-card {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(31,49,37,0.97), rgba(76,50,26,0.93));
    color: #fff;
    box-shadow: var(--shadow-md);
}
.cta-inline-card h2, .cta-inline-card p, .cta-inline-card .section-label { color: #fff; }
.cta-inline-card h2 { font-size: clamp(1.35rem, 1.8vw, 1.75rem); }

/* ── Quote / Form ── */
.quote-section .quote-shell {
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,247,242,0.94));
}
.quote-form { margin-top: 0.8rem; }
.two-column-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-field, .form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-field-full, .form-group.full { grid-column: 1 / -1; }
label { font-weight: 700; font-size: 0.9rem; }
input, select, textarea {
    width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(80,58,35,0.15);
    background: rgba(255,255,255,0.96);
    padding: .85rem 1rem;
    font: inherit;
    color: var(--text);
    font-size: 0.95rem;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus {
    outline: 2px solid rgba(130,80,38,0.2);
    border-color: rgba(130,80,38,0.45);
}
.quote-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem; margin-top: 0.75rem; }
.quote-note { margin: 0; }
.contact-list { display: grid; gap: .6rem; margin: 0.75rem 0; }
.contact-list li { color: var(--text-soft); }
.contact-panel { padding: 1.5rem; }

/* ── Areas We Serve ── */
.areas-serve { background: linear-gradient(180deg, rgba(245, 240, 232, 0.6), rgba(255,255,255,0.7)); }
.areas-serve-dark {
    background: linear-gradient(135deg, rgba(26, 37, 28, 0.97), rgba(41, 28, 18, 0.95));
}
.areas-serve-dark h2, .areas-serve-dark p, .areas-serve-dark .section-label,
.areas-serve-dark .resource-card h3 a, .areas-serve-dark .resource-card p { color: #f8f5ef; }
.areas-serve-dark .resource-card { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.07); }
.areas-serve-dark .resource-card:hover { background: rgba(255,255,255,0.12); }

/* ── Content Slab ── */
.content-slab { padding: 1.25rem; max-width: 100%; }

/* ── FAQ ── */
.faq-list { display: grid; gap: 0.75rem; }
.faq-item {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(80,58,35,0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.faq-item summary { cursor: pointer; list-style: none; padding: 1rem 1.15rem; font-weight: 700; font-size: 0.95rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer { padding: 0 1.15rem 1rem; }
.section-faq { background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(244,238,229,0.75)); }

/* ── Footer ── */
.site-footer {
    background: linear-gradient(135deg, rgba(24,19,14,0.97), rgba(33,25,18,0.95));
    color: rgba(255,255,255,0.8);
    padding: 72px 0 24px;
    margin-top: 0;
}
.site-footer h2, .site-footer h3, .site-footer a { color: #fff; }
.site-footer h2 { font-size: clamp(1.4rem, 1.8vw, 1.75rem); }
.footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.footer-grid ul { display: grid; gap: .65rem; }
.footer-base {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
}

/* ── Mobile CTA ── */
.mobile-call-cta {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 40;
    display: none;
    justify-content: center;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #245730);
    color: #fff;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
    font-size: 0.95rem;
}

/* ── Form Status ── */
.form-status { margin-top: 0.75rem; padding: 0.9rem 1rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem; }
.form-status.success { background: rgba(47, 107, 59, 0.1); color: #1f5b2b; }
.form-status.error { background: rgba(160, 43, 43, 0.1); color: #8c1f1f; }

/* ── Compact Grid ── */
.compact-grid .feature-card { min-height: 0; }

/* ── Tablet ── */
@media (max-width: 1100px) {
    .utility-business { display: inline; }
    .utility-bar-inner { justify-content: space-between; }

    .header-inner { display: flex; min-height: 68px; gap: 1rem; }
    .brand-mark img { width: 48px; height: 48px; }
    .brand-mark span { max-width: 220px; font-size: 0.74rem; }

    .feature-grid-four, .resource-grid-four, .footer-grid, .trust-strip-grid, .service-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .feature-grid-three, .resource-grid-three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .split-section { grid-template-columns: 1fr; }

    .hero-layout-a .hero-shell {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 56px 0 36px;
    }
    .hero-layout-a .hero-copy { max-width: 560px; }
    .hero-layout-a { min-height: 0; }

    .main-nav {
        display: flex;
        position: fixed;
        inset: 66px 1rem auto 1rem;
        background: rgba(250,247,242,0.98);
        border: 1px solid rgba(80,58,35,0.06);
        box-shadow: var(--shadow-md);
        border-radius: var(--radius);
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: .2s ease;
        backdrop-filter: blur(12px);
    }
    .nav-links, .header-actions { display: flex; flex-direction: column; align-items: stretch; }
    .nav-links {
        gap: 0.4rem;
        padding: 0;
        background: none;
        border: 0;
        box-shadow: none;
        border-radius: 0;
    }
    .nav-links > a { padding: 0.3rem 0; font-size: 0.95rem; }
    .nav-cta { width: 100%; }
    .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .nav-toggle { display: block; }
}

/* ── Mobile ── */
@media (max-width: 760px) {
    :root { --section-pad: var(--section-pad-mobile); }
    h1 { font-size: clamp(1.65rem, 6.5vw, 2.2rem); }
    h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }

    .utility-bar { display: none; }

    /* Mobile header - show logo prominently, keep it tight */
    .header-inner { min-height: 60px; gap: 0.6rem; }
    .brand-mark { gap: 0.6rem; flex: 1; min-width: 0; }
    .brand-mark img { width: 42px; height: 42px; }
    .brand-mark strong { font-size: 0.95rem; }
    .brand-mark span {
        display: block;
        font-size: 0.68rem;
        line-height: 1.2;
        max-width: 180px;
        color: var(--text-soft);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .nav-toggle { order: 1; }

    /* Mobile hero */
    .hero-shell { padding: 44px 0 28px; }
    .hero-copy { max-width: 100%; }
    .hero-copy h1 { max-width: 20ch; font-size: clamp(1.55rem, 5.8vw, 2rem); }

    .hero-layout-a .hero-shell {
        display: block;
        padding: 40px 0 24px;
    }
    .hero-layout-a .hero-copy { max-width: 100%; }
    .hero-layout-a .hero-copy h1 { font-size: clamp(1.5rem, 5.5vw, 1.9rem); max-width: 20ch; }

    .hero-layout-b .hero-shell { padding: 40px 0 32px; }
    .hero-layout-b .hero-copy { text-align: left; margin: 0; }
    .hero-layout-b .hero-copy .section-label,
    .hero-layout-b .hero-copy .hero-lead,
    .hero-layout-b .hero-copy .hero-body,
    .hero-layout-b .hero-copy h1 { margin-left: 0; margin-right: 0; }
    .hero-layout-b .hero-copy .section-label,
    .hero-layout-b .hero-actions { justify-content: flex-start; }
    .hero-layout-b { min-height: 260px; }

    .hero-actions .btn { width: 100%; min-width: 0; }

    /* Mobile trust strip - 2-column grid, compact */
    .trust-strip { margin-top: 0.75rem; }
    .trust-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .trust-item { padding: 0.75rem; border-radius: var(--radius-sm); }
    .trust-item strong { font-size: 1.3rem; }
    .trust-item span { font-size: 0.78rem; }
    .trust-item small { display: none; }

    /* Mobile grids */
    .feature-grid-four, .feature-grid-three, .feature-grid-two,
    .resource-grid-four, .resource-grid-three,
    .footer-grid, .two-column-grid, .service-showcase-grid {
        grid-template-columns: 1fr;
    }

    .cta-inline-card, .quote-actions, .utility-links, .footer-base {
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-inline-card { padding: 1.15rem; gap: 0.8rem; }
    .cta-inline-card h2 { font-size: 1.25rem; }

    /* Footer cleanup */
    .site-footer { padding: 48px 0 20px; }
    .footer-grid { gap: 1.5rem; margin-bottom: 1.5rem; }

    /* Mobile CTA bar */
    .mobile-call-cta { display: inline-flex; }
    body { padding-bottom: 72px; }

    /* Tighter section spacing */
    .section-heading { margin-bottom: 1rem; }
    .feature-card, .resource-card { padding: 1.25rem; }
}
