
/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0A0A0A;
    background: #FFFFFF;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0A0A0A;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.serif { font-family: 'Instrument Serif', serif; font-weight: 400; font-style: italic; letter-spacing: -0.01em; }
p { color: #2A2A2A; }

/* ---- Layout ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
section { padding: 4.5rem 0; }

/* ---- Top Trust Bar ---- */
.trust-bar {
    background: #0A0A0A;
    color: #FFFFFF;
    font-size: 0.82rem;
    padding: 0.55rem 1rem;
    text-align: center;
    letter-spacing: 0.02em;
}
.trust-bar strong { color: #FFFFFF; font-weight: 700; }
.trust-bar .sep { color: #6B7280; margin: 0 0.7rem; }
.trust-bar a { color: #FFFFFF; text-decoration: none; }

/* ---- Header ---- */
.header {
    background: #FFFFFF;
    border-bottom: 1px solid #E5E5E5;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-link img { height: 52px; width: auto; }
.header-cta {
    background: #DC2626;
    color: #FFFFFF;
    padding: 0.7rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.15s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.header-cta:hover { background: #B91C1C; }

/* ---- Hero ---- */
.hero {
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(26, 26, 26, 0.88) 60%, rgba(42, 16, 16, 0.85) 100%),
        url('https://images.unsplash.com/photo-1582139329536-e7284fece509?auto=format&fit=crop&w=2000&q=80') center center / cover no-repeat,
        #0A0A0A;
    color: #FFFFFF;
    padding: 5rem 0 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.hero h1 { color: #FFFFFF; margin-bottom: 1.2rem; position: relative; z-index: 1; }
.hero h1 .serif { color: #DC2626; }
.hero-sub {
    font-size: 1.15rem;
    color: #D4D4D4;
    max-width: 640px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}
.hero-phone {
    display: inline-block;
    background: #DC2626;
    color: #FFFFFF;
    padding: 1.1rem 2.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    transition: transform 0.15s, box-shadow 0.15s;
    position: relative;
    z-index: 1;
    letter-spacing: 0.01em;
}
.hero-phone:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(220, 38, 38, 0.55); }
.hero-phone .phone-icon { margin-right: 0.5rem; }
.hero-meta {
    margin-top: 1.4rem;
    font-size: 0.92rem;
    color: #A3A3A3;
    position: relative;
    z-index: 1;
}
.hero-meta .pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    margin: 0.25rem;
    font-size: 0.85rem;
    color: #E5E5E5;
}
.hero-meta .pill strong { color: #FFFFFF; font-weight: 700; }

/* ---- Section Heads ---- */
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .eyebrow {
    display: inline-block;
    color: #DC2626;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}
.section-head p { color: #525252; max-width: 640px; margin: 1rem auto 0; }

/* ---- Services Grid ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: #FAFAFA;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    padding: 1.8rem 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #DC2626;
}
.service-card .icon { font-size: 2rem; margin-bottom: 0.7rem; display: block; }
.service-card h3 { color: #0A0A0A; margin-bottom: 0.5rem; }
.service-card p { color: #525252; font-size: 0.95rem; line-height: 1.55; }

/* ---- Trust Section ---- */
.trust-section { background: #FAFAFA; }
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
.trust-card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-left: 4px solid #DC2626;
    border-radius: 8px;
    padding: 1.5rem;
}
.trust-card .label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6B7280;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.trust-card .value {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0A0A0A;
    letter-spacing: -0.01em;
}
.trust-card .meta {
    margin-top: 0.4rem;
    font-size: 0.88rem;
    color: #525252;
}

/* ---- Cities (homepage) ---- */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.6rem;
    margin-top: 2rem;
}
.cities-grid a {
    display: block;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    padding: 0.85rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    color: #0A0A0A;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.15s;
}
.cities-grid a:hover {
    border-color: #DC2626;
    color: #DC2626;
    transform: translateX(2px);
}

/* ---- City Page Specific ---- */
.city-hero {
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(26, 26, 26, 0.88) 60%, rgba(42, 16, 16, 0.85) 100%),
        url('https://images.unsplash.com/photo-1582139329536-e7284fece509?auto=format&fit=crop&w=2000&q=80') center center / cover no-repeat,
        #0A0A0A;
    color: #FFFFFF;
    padding: 4.5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.city-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.city-hero .crumb {
    color: #DC2626;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.city-hero h1 { color: #FFFFFF; position: relative; z-index: 1; }
.city-hero .tagline {
    color: #D4D4D4;
    font-size: 1.15rem;
    margin: 1rem auto 2rem;
    max-width: 640px;
    position: relative;
    z-index: 1;
}
.area-context {
    background: #FAFAFA;
    padding: 3rem 0;
}
.area-context-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}
.area-context h3 { font-size: 1.05rem; color: #DC2626; margin-bottom: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; }
.area-context ul { list-style: none; padding: 0; }
.area-context li { padding: 0.35rem 0; color: #2A2A2A; border-bottom: 1px solid #E5E5E5; }
.area-context li:last-child { border-bottom: 0; }
.local-note {
    background: #FFFFFF;
    border-left: 4px solid #DC2626;
    padding: 1.4rem 1.6rem;
    margin: 2.5rem auto 0;
    max-width: 760px;
    border-radius: 0 8px 8px 0;
}
.local-note .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #DC2626;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.local-note p { color: #2A2A2A; font-size: 1rem; }

/* ---- FAQ ---- */
.faq-section { background: #FFFFFF; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid #E5E5E5;
    padding: 1.25rem 0;
}
.faq-item:last-child { border-bottom: 0; }
.faq-q {
    font-weight: 700;
    font-size: 1.05rem;
    color: #0A0A0A;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.faq-q::before {
    content: 'Q';
    color: #DC2626;
    font-weight: 800;
    flex-shrink: 0;
}
.faq-a {
    color: #525252;
    line-height: 1.65;
    padding-left: 1.5rem;
}

/* ---- Quote Form (per city) ---- */
.quote-section {
    background: linear-gradient(180deg, #FAFAFA 0%, #F5F5F5 100%);
    padding: 4.5rem 0;
}
.quote-form-wrap {
    max-width: 560px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #DC2626;
}
.quote-form-wrap h3 { text-align: center; margin-bottom: 0.4rem; }
.quote-form-wrap .form-sub { text-align: center; color: #525252; margin-bottom: 1.8rem; font-size: 0.95rem; }
.quote-form input, .quote-form textarea, .quote-form select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #D4D4D4;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 0.9rem;
    transition: border-color 0.15s;
    background: #FFFFFF;
}
.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus {
    outline: none;
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.quote-form textarea { resize: vertical; min-height: 90px; }
.quote-form button {
    width: 100%;
    background: #DC2626;
    color: #FFFFFF;
    padding: 1rem;
    border: 0;
    border-radius: 6px;
    font-family: inherit;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.15s;
    letter-spacing: 0.02em;
}
.quote-form button:hover { background: #B91C1C; }
.quote-form .honey { display: none; }
.form-success, .form-error {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    display: none;
    font-size: 0.95rem;
}
.form-success { background: #DCFCE7; color: #166534; border: 1px solid #86EFAC; }
.form-error { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }
.form-or-call {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E5E5;
    font-size: 0.9rem;
    color: #6B7280;
}
.form-or-call a { color: #DC2626; font-weight: 700; text-decoration: none; }

/* ---- Footer ---- */
.footer {
    background: #0A0A0A;
    color: #D4D4D4;
    padding: 3.5rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer-brand img { height: 48px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { color: #A3A3A3; font-size: 0.92rem; line-height: 1.6; max-width: 320px; }
.footer h4 {
    color: #FFFFFF;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.2rem;
}
.footer a { color: #D4D4D4; text-decoration: none; display: block; padding: 0.3rem 0; font-size: 0.95rem; }
.footer a:hover { color: #DC2626; }
.footer-bottom {
    border-top: 1px solid #262626;
    padding-top: 1.5rem;
    text-align: center;
    color: #6B7280;
    font-size: 0.85rem;
}
.footer-bottom .license-line {
    color: #A3A3A3;
    margin-bottom: 0.5rem;
}
.footer-bottom .license-line strong { color: #FFFFFF; }

/* ---- Map Section ---- */
.map-section { background: #FAFAFA; padding: 4rem 0; }
.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E5E5;
    line-height: 0;
}
.map-wrap iframe { display: block; width: 100%; }

/* ---- Floating phone CTA (mobile) ---- */
.mobile-call-fab {
    display: none;
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    background: #DC2626;
    color: #FFFFFF;
    padding: 1rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
    z-index: 99;
    font-size: 0.95rem;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    section { padding: 3rem 0; }
    .hero { padding: 3.5rem 0 3rem; }
    .city-hero { padding: 3.5rem 0 3rem; }
    .hero-phone { font-size: 1.3rem; padding: 1rem 1.7rem; }
    .area-context-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
    .quote-form-wrap { padding: 1.8rem 1.4rem; }
    .header-cta { padding: 0.55rem 0.95rem; font-size: 0.85rem; }
    .header-cta .label-full { display: none; }
    .mobile-call-fab { display: inline-flex; align-items: center; gap: 0.4rem; }
    .logo-link img { height: 42px; }
    .trust-bar { font-size: 0.75rem; }
    .trust-bar .sep { margin: 0 0.4rem; }
    .trust-bar .hide-mobile { display: none; }
}
