/* ArcBridge Electric — institutional electrical contractor site
   Reference vibe: ARS / Rescue Rooter — corporate trust-blue, sober,
   info-dense, formal grid, photo-led with subtle navy tinting,
   credentials-forward (no big yellow $50-OFF deal stickers).
   Type:    Public Sans (US Web Design System feel, government-grade)
   Palette: Deep navy + electric blue + cool white */

@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Brand navy stack */
    --navy-900: #0B1F36;
    --navy-800: #11304D;
    --navy-700: #1A3F61;
    --navy-600: #224F77;
    --navy-500: #2E6394;
    --navy-400: #5F86AE;

    /* Electric blue accent (matches logo) */
    --blue-700: #1D4E89;
    --blue-600: #1F5FA8;
    --blue-500: #2563EB;
    --blue-100: #DBE7F2;
    --blue-50:  #EEF4F9;

    /* Surfaces */
    --bg: #F7F9FB;
    --surface: #FFFFFF;
    --surface-2: #F1F4F8;
    --hairline: #E2E8F0;
    --border: #CBD5E1;

    /* Ink */
    --ink: #0B1626;
    --ink-2: #1F2937;
    --ink-3: #334155;
    --muted: #64748B;
    --muted-2: #94A3B8;

    /* Functional */
    --success: #16A34A;
    --success-bg: #D1FAE5;
    --success-border: #6EE7B7;
    --success-fg: #065F46;
    --danger: #B91C1C;
    --danger-bg: #FEE2E2;
    --danger-border: #FCA5A5;
    --danger-fg: #991B1B;
    --warning: #B45309;
    --star: #F59E0B;

    /* Spacing */
    --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
    --s-5: 24px; --s-6: 32px; --s-7: 40px; --s-8: 48px;
    --s-10: 64px; --s-12: 80px; --s-14: 96px;

    /* Type */
    --t-xs: 12px; --t-sm: 13px; --t-base: 15px; --t-md: 16px;
    --t-lg: 18px; --t-xl: 22px; --t-2xl: 28px; --t-3xl: 36px;
    --t-4xl: 48px; --t-5xl: 64px;

    /* Radii — hard institutional edges */
    --r-sm: 2px;
    --r: 3px;
    --r-lg: 4px;

    /* Shadows — subtle and architectural */
    --shadow-xs: 0 1px 2px rgba(11, 22, 38, 0.06);
    --shadow-sm: 0 1px 3px rgba(11, 22, 38, 0.08), 0 1px 2px rgba(11, 22, 38, 0.04);
    --shadow: 0 4px 12px -2px rgba(11, 22, 38, 0.10), 0 2px 4px rgba(11, 22, 38, 0.05);
    --shadow-lg: 0 14px 28px -8px rgba(11, 22, 38, 0.16);

    /* Motion */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --motion-fast: 140ms var(--ease);
    --motion: 200ms var(--ease);
}

/* ---------- Reset & base ---------- */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: 'Public Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: var(--t-base);
    line-height: 1.55;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--blue-600);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: color var(--motion-fast);
}
a:hover { color: var(--navy-900); text-decoration-thickness: 2px; }

p { margin: 0 0 var(--s-4); }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4, h5 {
    margin: 0 0 var(--s-3);
    font-family: inherit;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--navy-900);
}

h1 { font-size: clamp(2rem, 3.5vw + 1rem, 3.25rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 1.75vw + 1rem, 2.25rem); font-weight: 700; }
h3 { font-size: 1.1875rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }

ul, ol { margin: 0 0 var(--s-4); padding-left: 1.25rem; }
li { margin-bottom: var(--s-2); line-height: 1.55; }

hr { border: 0; border-top: 1px solid var(--hairline); margin: var(--s-8) 0; }

::selection { background: var(--navy-700); color: #FFFFFF; }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Container & sections ---------- */

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--s-5);
}
@media (min-width: 768px) { .container { padding: 0 var(--s-6); } }

.section { padding: var(--s-10) 0; }
.section-tight { padding: var(--s-7) 0; }
.section-loose { padding: var(--s-12) 0; }
.section-white { background: var(--surface); }
.section-tint { background: var(--blue-50); }
.section-navy { background: var(--navy-800); color: #E2E8F0; }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: #FFFFFF; }

.eyebrow {
    display: inline-block;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-700);
    margin-bottom: var(--s-3);
    padding-left: 14px;
    border-left: 3px solid var(--blue-700);
    line-height: 1.4;
}
.section-navy .eyebrow { color: #93C5FD; border-left-color: #93C5FD; }

.lede {
    font-size: 1.0625rem;
    color: var(--ink-3);
    line-height: 1.6;
    max-width: 64ch;
}
.section-navy .lede { color: #CBD5E1; }

.section-head { margin-bottom: var(--s-7); max-width: 720px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: var(--s-3); }

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 540ms var(--ease), transform 540ms var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 60ms; }
.reveal[data-delay="2"] { transition-delay: 120ms; }
.reveal[data-delay="3"] { transition-delay: 180ms; }

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-2);
    padding: 12px 22px;
    font-family: inherit;
    font-size: var(--t-base);
    font-weight: 700;
    letter-spacing: 0;
    border: 1px solid transparent;
    border-radius: var(--r);
    cursor: pointer;
    line-height: 1.1;
    text-decoration: none;
    transition: background var(--motion-fast), color var(--motion-fast), border-color var(--motion-fast), transform var(--motion-fast);
    white-space: nowrap;
    min-height: 44px;
    text-transform: none;
}
.btn:focus-visible { outline: 2px solid var(--blue-500); outline-offset: 2px; }

.btn-primary {
    background: var(--navy-800);
    color: #FFFFFF;
    border-color: var(--navy-800);
}
.btn-primary:hover {
    background: var(--navy-900);
    color: #FFFFFF;
    border-color: var(--navy-900);
}
.btn-primary:active { transform: translateY(1px); }

.btn-blue {
    background: var(--blue-600);
    color: #FFFFFF;
    border-color: var(--blue-600);
}
.btn-blue:hover { background: var(--blue-700); color: #FFFFFF; border-color: var(--blue-700); }

.btn-ghost {
    background: transparent;
    color: var(--navy-800);
    border-color: var(--border);
}
.btn-ghost:hover { background: var(--surface-2); color: var(--navy-900); border-color: var(--navy-800); }

.btn-ghost-light {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.08); border-color: #FFFFFF; color: #FFFFFF; }

.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-sm { padding: 8px 14px; font-size: 13px; min-height: 36px; }

.btn .arrow { transition: transform var(--motion-fast); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Utility bar ---------- */

.utility-bar {
    background: var(--navy-900);
    color: #CBD5E1;
    font-size: var(--t-sm);
}
.utility-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-3);
    padding: 8px 0;
    flex-wrap: wrap;
}
.utility-list {
    display: none;
    gap: var(--s-5);
    list-style: none;
    padding: 0;
    margin: 0;
}
.utility-list li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}
.utility-list svg { color: #93C5FD; flex-shrink: 0; }
@media (min-width: 768px) { .utility-list { display: flex; } }
.utility-bar a { color: #FFFFFF; text-decoration: none; font-weight: 600; }
.utility-bar a:hover { color: #93C5FD; }
.utility-bar .utility-phone {
    display: inline-flex; align-items: center; gap: 6px;
}
.utility-bar .utility-phone svg { color: #93C5FD; }

/* ---------- Site header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--surface);
    border-bottom: 1px solid var(--hairline);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    padding: var(--s-3) 0;
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 48px; width: auto; max-width: 240px; }
@media (min-width: 768px) { .brand img { height: 58px; max-width: 300px; } }

.nav-desktop { display: none; }
@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 2px;
    }
    .nav-desktop a {
        padding: 8px 14px;
        color: var(--ink-2);
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        position: relative;
        transition: color var(--motion-fast);
    }
    .nav-desktop a:hover { color: var(--navy-900); }
    .nav-desktop a.current { color: var(--navy-900); }
    .nav-desktop a.current::after {
        content: "";
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: -8px;
        height: 3px;
        background: var(--blue-600);
    }
}

.header-cta { display: flex; align-items: center; gap: var(--s-2); }
.header-phone {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    color: var(--navy-900);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
}
.header-phone:hover { color: var(--blue-700); }
.header-phone svg { color: var(--blue-600); }
@media (min-width: 768px) { .header-phone { display: inline-flex; } }

.menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--r);
    background: var(--surface);
    color: var(--navy-900);
    border: 1px solid var(--border);
    cursor: pointer;
}
.menu-btn:hover { background: var(--surface-2); }
@media (min-width: 1024px) { .menu-btn { display: none; } }

.nav-mobile {
    display: none;
    border-top: 1px solid var(--hairline);
    background: var(--surface);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; padding: 0; margin: 0; }
.nav-mobile a {
    display: block;
    padding: 14px var(--s-5);
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--hairline);
    font-weight: 600;
    font-size: 15px;
}
.nav-mobile a.current { color: var(--blue-700); border-left: 3px solid var(--blue-600); padding-left: calc(var(--s-5) - 3px); }
@media (min-width: 1024px) { .nav-mobile { display: none !important; } }

/* ---------- Hero ---------- */

.hero {
    background: var(--surface);
    border-bottom: 1px solid var(--hairline);
    padding: var(--s-10) 0;
}
@media (min-width: 768px) { .hero { padding: var(--s-12) 0; } }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-8);
    align-items: center;
}
@media (min-width: 960px) {
    .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--s-10); }
}

.hero h1 {
    font-size: clamp(2rem, 3.5vw + 0.5rem, 3.25rem);
    margin-bottom: var(--s-5);
}
.hero h1 .accent { color: var(--blue-700); }

.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin: var(--s-6) 0; }

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-3) var(--s-5);
    align-items: center;
    padding-top: var(--s-5);
    border-top: 1px solid var(--hairline);
    font-size: var(--t-sm);
    color: var(--muted);
}
.hero-meta strong { color: var(--ink); font-weight: 700; }
.hero-meta .stars { color: var(--star); letter-spacing: 1px; }

.hero-photo-frame {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--r-lg);
    border: 1px solid var(--hairline);
    background: var(--surface-2);
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(11, 31, 54, 0.20) 100%);
    pointer-events: none;
}
.hero-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--s-5);
    color: #FFFFFF;
    z-index: 1;
}
.hero-photo-caption strong {
    display: block;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.hero-photo-caption span { font-size: var(--t-sm); color: #DBE7F2; }

/* Placeholder hero image (when no team photo is provided yet) */
.hero-photo-placeholder {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--r-lg);
    border: 1px dashed var(--border);
    background: linear-gradient(135deg, var(--navy-800), var(--blue-700));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-align: center;
    padding: var(--s-6);
}
.hero-photo-placeholder .bolt {
    width: 64px;
    height: 64px;
    margin-bottom: var(--s-4);
    opacity: 0.7;
}
.hero-photo-placeholder strong { display: block; font-size: 1.125rem; margin-bottom: var(--s-2); }
.hero-photo-placeholder span { font-size: var(--t-sm); color: #DBE7F2; max-width: 240px; }

/* ---------- Certifications strip ---------- */

.cert-strip {
    background: var(--surface);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    padding: var(--s-6) 0;
}
.cert-strip-head {
    text-align: center;
    margin-bottom: var(--s-5);
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-4);
}
@media (min-width: 600px) { .cert-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cert-grid { grid-template-columns: repeat(5, 1fr); } }

.cert {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    padding: var(--s-3) var(--s-4);
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: var(--r);
}
.cert-mark {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: -0.02em;
}
.cert-mark.bbb     { background: var(--blue-700); color: #FFFFFF; }
.cert-mark.google  { background: linear-gradient(135deg, #4285F4 25%, #34A853 25% 50%, #FBBC05 50% 75%, #EA4335 75%); color: transparent; }
.cert-mark.master  { background: var(--navy-800); color: #FFFFFF; font-size: 13px; }
.cert-mark.angi    { background: #F26F62; color: #FFFFFF; }
.cert-mark.nec     { background: var(--success); color: #FFFFFF; font-size: 11px; }
.cert-text { display: flex; flex-direction: column; line-height: 1.2; }
.cert-text .top { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.cert-text .bottom { font-size: 14px; font-weight: 700; color: var(--navy-900); margin-top: 2px; }
.cert .stars { color: var(--star); font-size: 12px; letter-spacing: 1px; }

/* ---------- Services grid ---------- */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
    border-radius: var(--r);
    overflow: hidden;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
    background: var(--surface);
    padding: var(--s-6) var(--s-5);
    text-decoration: none;
    color: var(--ink);
    display: block;
    transition: background var(--motion-fast);
    position: relative;
}
.service-card:hover { background: var(--blue-50); color: var(--ink); }
.service-card .icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    background: var(--blue-100);
    color: var(--blue-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s-4);
}
.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--s-2);
    color: var(--navy-900);
}
.service-card p {
    color: var(--ink-3);
    font-size: var(--t-base);
    margin-bottom: var(--s-3);
}
.service-card .more {
    color: var(--blue-700);
    font-weight: 700;
    font-size: var(--t-sm);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}
.service-card:hover .more { color: var(--navy-900); }
.service-card ul {
    margin: var(--s-3) 0 var(--s-4);
    padding-left: 0;
    list-style: none;
}
.service-card ul li {
    padding-left: 16px;
    position: relative;
    font-size: 14px;
    color: var(--ink-3);
    margin-bottom: 6px;
}
.service-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 1px;
    background: var(--blue-600);
}

/* Service detail rows for /services */
.service-detail {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: var(--r);
    padding: var(--s-6);
    margin-bottom: var(--s-4);
}
.service-detail h3 {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    font-size: 1.375rem;
    color: var(--navy-900);
    margin-bottom: var(--s-3);
    padding-bottom: var(--s-3);
    border-bottom: 1px solid var(--hairline);
}
.service-detail h3 .icon {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: var(--blue-100);
    color: var(--blue-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.service-detail ul { list-style: none; padding: 0; margin: var(--s-3) 0 0; }
.service-detail li {
    padding-left: 22px;
    position: relative;
    color: var(--ink-2);
    margin-bottom: var(--s-2);
}
.service-detail li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 12px;
    height: 12px;
    border: 1.5px solid var(--blue-600);
    border-radius: 1px;
}
.service-detail li::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 0.55em;
    width: 5px;
    height: 8px;
    border-right: 2px solid var(--blue-600);
    border-bottom: 2px solid var(--blue-600);
    transform: rotate(45deg) translate(-1px, -1px);
}

/* ---------- Process steps ---------- */

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-4);
}
@media (min-width: 600px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-step {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: var(--r);
    padding: var(--s-6) var(--s-5);
    position: relative;
}
.process-step .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    background: var(--blue-600);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.04em;
    border-radius: var(--r-sm);
    margin-bottom: var(--s-3);
}
.process-step h3 { font-size: 1.125rem; margin-bottom: var(--s-2); color: var(--navy-900); }
.process-step p { color: var(--ink-3); font-size: var(--t-base); margin: 0; }

/* ---------- Stats band ---------- */

.stats-band {
    background: var(--navy-800);
    color: #FFFFFF;
    padding: var(--s-10) 0;
    border-top: 4px solid var(--blue-600);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-5) var(--s-4);
    text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat .value {
    display: block;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #FFFFFF;
}
.stat .value .suffix { color: #93C5FD; }
.stat .label {
    display: block;
    margin-top: var(--s-3);
    font-size: var(--t-sm);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #93C5FD;
}

/* ---------- Locations ---------- */

.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-4);
}
@media (min-width: 600px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .locations-grid { grid-template-columns: repeat(4, 1fr); } }

.location-card {
    display: block;
    text-decoration: none;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-top: 3px solid var(--blue-600);
    border-radius: var(--r);
    padding: var(--s-5);
    transition: border-color var(--motion-fast), background var(--motion-fast);
}
.location-card:hover {
    background: var(--blue-50);
    border-color: var(--blue-600);
    color: var(--ink);
}
.location-card h3 {
    font-size: 1.0625rem;
    margin-bottom: var(--s-1);
    color: var(--navy-900);
}
.location-card .loc-sub {
    color: var(--muted);
    font-size: var(--t-sm);
    margin-bottom: var(--s-3);
}
.location-card .loc-phone {
    display: block;
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--navy-900);
    margin-bottom: var(--s-2);
    letter-spacing: -0.01em;
    text-decoration: none;
}
.location-card .loc-phone:hover { color: var(--blue-700); }
.location-card .loc-tag {
    display: inline-block;
    padding: 3px 8px;
    background: var(--surface-2);
    color: var(--ink-3);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--r-sm);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.location-card .more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: var(--s-2);
    color: var(--blue-700);
    font-size: var(--t-sm);
    font-weight: 700;
    text-decoration: none;
}

/* Area-region cards for /service-areas */
.area-region {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-left: 4px solid var(--blue-600);
    border-radius: var(--r);
    padding: var(--s-6);
    margin-bottom: var(--s-4);
}
.area-region-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-3);
    margin-bottom: var(--s-5);
    padding-bottom: var(--s-4);
    border-bottom: 1px solid var(--hairline);
}
.area-region-head h2 { margin: 0; font-size: 1.625rem; color: var(--navy-900); }
.area-phone {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    padding: 10px 18px;
    background: var(--navy-800);
    color: #FFFFFF;
    font-family: inherit;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.005em;
    border-radius: var(--r);
    text-decoration: none;
}
.area-phone:hover { background: var(--navy-900); color: #FFFFFF; }
.area-phone svg { color: #93C5FD; }
.area-region h3 {
    margin-top: var(--s-5);
    margin-bottom: var(--s-3);
    font-size: var(--t-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}
.area-region h3:first-of-type { margin-top: 0; }
.area-region p { color: var(--muted); font-size: var(--t-sm); margin-bottom: var(--s-3); }

.area-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
    border-radius: var(--r);
    overflow: hidden;
}
.area-list li {
    background: var(--surface);
    padding: 10px 14px;
    font-size: var(--t-sm);
    color: var(--ink-2);
    margin: 0;
}
.area-list li:hover { background: var(--blue-50); color: var(--blue-700); }

/* ---------- Owner block ---------- */

.owner-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-6);
    align-items: center;
}
@media (min-width: 768px) {
    .owner-block { grid-template-columns: 0.85fr 1.15fr; gap: var(--s-8); }
}
.owner-photo {
    aspect-ratio: 4/5;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--hairline);
    background: var(--surface-2);
    position: relative;
}
.owner-photo img { width: 100%; height: 100%; object-fit: cover; }
.owner-photo.placeholder {
    background: linear-gradient(135deg, var(--navy-800), var(--blue-700));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-align: center;
    padding: var(--s-5);
    font-size: var(--t-sm);
}
.owner-quote {
    font-size: 1.125rem;
    color: var(--ink);
    line-height: 1.55;
    border-left: 3px solid var(--blue-600);
    padding-left: var(--s-5);
    font-style: italic;
    margin-bottom: var(--s-4);
}
.owner-sig {
    margin-top: var(--s-4);
    font-size: var(--t-sm);
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.owner-sig strong { color: var(--navy-900); font-weight: 800; }

/* ---------- Testimonials ---------- */

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-4);
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: var(--r);
    padding: var(--s-5);
    display: flex;
    flex-direction: column;
}
.testimonial-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--s-3);
}
.testimonial-head .stars { color: var(--star); font-size: 16px; letter-spacing: 2px; }
.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 8px;
    background: var(--surface-2);
    border: 1px solid var(--hairline);
    border-radius: var(--r-sm);
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-2);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.platform-badge .g {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4 25%, #34A853 25% 50%, #FBBC05 50% 75%, #EA4335 75%);
}
.platform-badge .y {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    background: #D32323;
    color: #FFFFFF;
    font-size: 8px;
    font-weight: 800;
    border-radius: 1px;
}
.testimonial-card blockquote {
    margin: 0 0 var(--s-4);
    color: var(--ink);
    font-size: var(--t-base);
    line-height: 1.55;
    flex: 1;
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    padding-top: var(--s-3);
    border-top: 1px solid var(--hairline);
}
.testimonial-card .avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: var(--navy-700);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.04em;
}
.testimonial-card .who { font-weight: 700; font-size: var(--t-sm); color: var(--navy-900); }
.testimonial-card .where { font-size: var(--t-xs); color: var(--muted); margin-top: 1px; }

/* ---------- Specials / Offers (less coupon-flashy, more institutional) ---------- */

.offer-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
    border-radius: var(--r);
    overflow: hidden;
}
@media (min-width: 768px) { .offer-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .offer-list { grid-template-columns: repeat(3, 1fr); } }

.offer {
    background: var(--surface);
    padding: var(--s-6) var(--s-5);
    display: flex;
    flex-direction: column;
}
.offer-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--blue-700);
    letter-spacing: -0.03em;
    margin-bottom: var(--s-2);
}
.offer-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: var(--s-3);
}
.offer p { font-size: var(--t-base); color: var(--ink-3); flex: 1; }
.offer-fine {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-top: var(--s-3);
    padding-top: var(--s-3);
    border-top: 1px solid var(--hairline);
}

/* ---------- FAQ accordion ---------- */

.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: var(--r);
    margin-bottom: var(--s-3);
}
.faq-item.open { border-color: var(--blue-600); }
.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    width: 100%;
    padding: var(--s-5);
    background: transparent;
    border: 0;
    font: inherit;
    font-size: var(--t-md);
    font-weight: 700;
    color: var(--navy-900);
    text-align: left;
    cursor: pointer;
    min-height: 56px;
}
.faq-trigger:hover { color: var(--blue-700); }
.faq-trigger .chev {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--muted);
    transition: transform var(--motion);
}
.faq-item.open .faq-trigger .chev { transform: rotate(180deg); color: var(--blue-700); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height var(--motion); }
.faq-item.open .faq-panel { max-height: 500px; }
.faq-panel-inner {
    padding: 0 var(--s-5) var(--s-5);
    color: var(--ink-3);
    line-height: 1.6;
}

/* ---------- CTA band ---------- */

.cta-band {
    background: var(--navy-900);
    color: #E2E8F0;
    padding: var(--s-10) 0;
    border-top: 4px solid var(--blue-600);
}
.cta-band-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-5);
    align-items: center;
}
@media (min-width: 768px) { .cta-band-inner { grid-template-columns: 1.2fr 0.8fr; gap: var(--s-7); } }
.cta-band h2 { color: #FFFFFF; margin-bottom: var(--s-3); }
.cta-band p { color: #CBD5E1; font-size: 1.0625rem; }
.cta-phone-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: var(--s-6);
    border-radius: var(--r);
    text-align: center;
}
.cta-phone-card .label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #93C5FD;
    margin-bottom: var(--s-2);
}
.cta-phone-card a {
    display: block;
    color: #FFFFFF;
    font-weight: 800;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: var(--s-3);
    text-decoration: none;
}
.cta-phone-card a:hover { color: #93C5FD; }
.cta-phone-card .sub { font-size: var(--t-sm); color: #CBD5E1; margin: 0; }

/* ---------- Forms ---------- */

.contact-form {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: var(--r);
    padding: var(--s-6);
}
.contact-form .field { margin-bottom: var(--s-4); }
.contact-form label {
    display: block;
    font-size: var(--t-sm);
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 11px 14px;
    font: inherit;
    font-size: var(--t-md);
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    transition: border-color var(--motion-fast), box-shadow var(--motion-fast);
    min-height: 44px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(31, 95, 168, 0.18);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* Two-column split for contact + sidebar */
.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-6);
}
@media (min-width: 960px) {
    .split { grid-template-columns: 1.4fr 1fr; gap: var(--s-7); align-items: start; }
}

/* Sidebar info cards (contact page) */
.info-card {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: var(--r);
    padding: var(--s-5);
    margin-bottom: var(--s-4);
}
.info-card h3 {
    font-size: var(--t-md);
    margin-bottom: var(--s-2);
    color: var(--navy-900);
}
.info-card h3 small {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 4px;
}
.info-card .phone-big {
    display: block;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--navy-900);
    margin: 6px 0 4px;
    text-decoration: none;
    letter-spacing: -0.01em;
}
.info-card .phone-big:hover { color: var(--blue-700); }
.info-card .tag {
    display: inline-block;
    padding: 3px 8px;
    background: var(--surface-2);
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--r-sm);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 4px;
}

/* Hours list */
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--hairline);
    font-size: var(--t-sm);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { font-weight: 700; color: var(--navy-900); }
.hours-list .hrs { color: var(--ink-3); }

/* ---------- Page hero (subpages) ---------- */

.page-hero {
    background: var(--surface);
    border-bottom: 1px solid var(--hairline);
    padding: var(--s-10) 0;
}
.page-hero h1 { margin-bottom: var(--s-3); max-width: 18ch; }
.page-hero .lede { font-size: 1.0625rem; max-width: 64ch; }

/* ---------- Footer ---------- */

.site-footer {
    background: var(--navy-900);
    color: #94A3B8;
    padding: var(--s-12) 0 var(--s-5);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-7);
    margin-bottom: var(--s-8);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 0.8fr 1.5fr; gap: var(--s-7); } }
.footer-brand img {
    height: 56px;
    width: auto;
    max-width: 280px;
    background: var(--surface);
    border-radius: var(--r);
    padding: 8px 14px;
    margin-bottom: var(--s-4);
}
.footer-brand p { color: #94A3B8; max-width: 360px; font-size: var(--t-sm); }
.footer-creds {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-2);
    margin-top: var(--s-4);
}
.footer-creds span {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #FFFFFF;
    border-radius: var(--r-sm);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.site-footer h4 {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--s-4);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: var(--s-2); }
.site-footer a { color: #94A3B8; text-decoration: none; font-size: var(--t-sm); transition: color var(--motion-fast); }
.site-footer a:hover { color: #FFFFFF; }

.footer-locations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-4);
}
.footer-loc strong {
    display: block;
    color: #FFFFFF;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
    font-weight: 700;
}
.footer-loc a {
    display: block;
    color: #FFFFFF;
    font-weight: 700;
    font-size: var(--t-md);
    letter-spacing: -0.01em;
}
.footer-loc a:hover { color: #93C5FD; }
.footer-loc .loc-note { color: #64748B; font-size: 11px; margin-top: 2px; display: block; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--s-4);
    text-align: center;
    font-size: var(--t-xs);
    color: #64748B;
}

/* ---------- 404 ---------- */

.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--s-12) var(--s-5);
}
.error-code {
    font-size: clamp(5rem, 13vw, 10rem);
    font-weight: 800;
    line-height: 0.9;
    color: var(--blue-600);
    margin-bottom: var(--s-4);
    letter-spacing: -0.05em;
}
.error-page p { color: var(--ink-3); font-size: var(--t-md); max-width: 480px; margin: 0 auto var(--s-6); }
.error-page .actions { display: inline-flex; gap: var(--s-3); flex-wrap: wrap; justify-content: center; }

/* ---------- Utility classes ---------- */

.text-center { text-align: center; }
.muted { color: var(--muted); }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 22px; height: 22px; }
