:root {
    --ink-900: #101822;
    --ink-800: #1d2a38;
    --ink-700: #2d3b4c;
    --text: #1f2b36;
    --muted: #5b6a78;
    --paper: #f7f8fa;
    --surface: #ffffff;
    --surface-2: #eff3f7;
    --line: #d5dde6;
    --accent: #b7202e;
    --accent-dark: #8f1823;
    --call: #111111;
    --ok: #1f7a42;
    --max: 1140px;
    --radius: 14px;
    --shadow: 0 16px 34px rgba(21, 35, 51, 0.11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Barlow", "Segoe UI", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 8% -12%, #e5edf6 0, #f5f7fa 34%, #f8f9fb 100%);
    line-height: 1.55;
}

a {
    color: inherit;
}

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

.container {
    width: min(var(--max), 100% - 2rem);
    margin: 0 auto;
}

.utility-rail {
    background: linear-gradient(92deg, #1a2a3d, #121f2d);
    color: #dce7f3;
    border-bottom: 1px solid #2a3f57;
}

.utility-inner {
    min-height: 42px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem 1.1rem;
    font-size: 0.86rem;
}

.utility-inner a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: 132px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.62rem;
    text-decoration: none;
    min-width: 220px;
}

.brand img {
    width: 118px;
    height: 118px;
    object-fit: contain;
}

.brand span {
    font-family: "Archivo", sans-serif;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.primary-nav {
    display: flex;
    gap: 1.05rem;
    margin-left: auto;
}

.primary-nav a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 700;
}

.primary-nav a:hover {
    color: var(--ink-900);
}

.primary-nav .nav-home {
    display: none;
}

.header-cta {
    display: flex;
    gap: 0.58rem;
    margin-left: 0.45rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 11px;
    font-weight: 700;
    cursor: pointer;
    padding: 0.72rem 1rem;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-solid {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 18px rgba(183, 32, 46, 0.24);
}

.btn-solid:hover {
    background: var(--accent-dark);
}

.btn-call {
    background: var(--call);
    color: #fff;
}

.btn-call:hover {
    background: #000;
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.14);
}

.btn-lg {
    padding: 0.95rem 1.2rem;
    font-size: 1rem;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 10px;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px 0;
    background: var(--text);
}

.hero {
    position: relative;
    min-height: 620px;
    display: grid;
    align-items: center;
    overflow: hidden;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    background:
        radial-gradient(circle at 76% 24%, rgba(183, 32, 46, 0.34) 0, rgba(183, 32, 46, 0) 36%),
        linear-gradient(120deg, #1f2e40 0%, #223247 42%, #17222f 100%);
}

.hero-overlay {
    background:
        linear-gradient(108deg, rgba(12, 19, 28, 0.86) 0%, rgba(14, 22, 33, 0.74) 42%, rgba(12, 20, 29, 0.4) 100%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 2px, transparent 2px, transparent 8px);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 5.1rem 0 4rem;
    max-width: 820px;
}

.eyebrow {
    margin: 0 0 0.8rem;
    font-size: 0.86rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.hero h1 {
    margin: 0;
    font-family: "Archivo", sans-serif;
    font-size: clamp(2rem, 4.8vw, 3.5rem);
    line-height: 1.08;
    max-width: 18ch;
}

.hero-copy {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.07rem;
    max-width: 58ch;
}

.hero-actions {
    margin-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.hero-points {
    list-style: none;
    padding: 0;
    margin: 1.3rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-points li {
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 999px;
    padding: 0.35rem 0.72rem;
}

.action-cards {
    margin-top: -2.05rem;
    position: relative;
    z-index: 2;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.action-grid article {
    background: #ffffff;
    border: 1px solid #dbe3ed;
    border-radius: 13px;
    padding: 1rem;
    box-shadow: var(--shadow);
}

.action-grid h2 {
    margin: 0;
    font-family: "Archivo", sans-serif;
    font-size: 1.13rem;
}

.action-grid p {
    margin: 0.5rem 0 0.8rem;
    color: var(--muted);
}

.action-grid a {
    color: var(--accent-dark);
    font-weight: 700;
    text-decoration: none;
}

.trust-strip {
    margin-top: 1.4rem;
}

.trust-grid {
    padding: 0.65rem 0 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.trust-grid article {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.75rem;
}

.trust-grid h2 {
    margin: 0;
    font-family: "Archivo", sans-serif;
    font-size: 1rem;
}

.trust-grid p {
    margin: 0.3rem 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.section {
    padding: 4.1rem 0;
}

.section-alt {
    background:
        repeating-linear-gradient(135deg, rgba(45, 59, 76, 0.03) 0, rgba(45, 59, 76, 0.03) 2px, transparent 2px, transparent 10px),
        linear-gradient(180deg, #fefeff 0, #f4f7fb 100%);
    border-top: 1px solid #dbe3eb;
    border-bottom: 1px solid #dbe3eb;
}

.section-kicker {
    margin: 0;
    color: var(--accent-dark);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.section-title {
    margin: 0.35rem 0 1.35rem;
    font-family: "Archivo", sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.85rem;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-icon {
    display: inline-flex;
    width: 1.4rem;
    justify-content: center;
    margin-right: 0.22rem;
    font-size: 0.95rem;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #d27d86;
    box-shadow: 0 16px 34px rgba(183, 32, 46, 0.16);
}

.service-card h3 {
    margin: 0;
    font-family: "Archivo", sans-serif;
    font-size: 1rem;
}

.service-card p {
    margin: 0.52rem 0 0;
    color: var(--muted);
    font-size: 0.93rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.process-grid article {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
}

.process-grid span {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ink-900);
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.process-grid h3 {
    margin: 0;
    font-family: "Archivo", sans-serif;
    font-size: 1.05rem;
}

.process-grid p {
    margin: 0.52rem 0 0;
    color: var(--muted);
}

.ba-wrap {
    max-width: 860px;
}

.ba-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.ba-base,
.ba-after {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.ba-after {
    clip-path: inset(0 44% 0 0);
}

.ba-range {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1rem;
    width: min(86%, 420px);
    accent-color: var(--accent);
}

.ba-label {
    position: absolute;
    top: 0.9rem;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    background: rgba(16, 22, 30, 0.75);
    padding: 0.32rem 0.52rem;
    border-radius: 999px;
}

.ba-label-left {
    left: 0.9rem;
}

.ba-label-right {
    right: 0.9rem;
}

.ba-note {
    margin: 0.6rem 0 0;
    color: var(--muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.review-card {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    padding: 0.85rem;
}

.review-stars {
    margin: 0 0 0.35rem;
    color: #b7202e;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.review-card p {
    margin: 0;
    color: var(--ink-800);
}

.review-source {
    display: inline-block;
    margin-top: 0.55rem;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.review-card strong {
    display: block;
    margin-top: 0.5rem;
    color: var(--accent-dark);
    font-family: "Archivo", sans-serif;
    font-size: 0.92rem;
}

.insurance-strip {
    margin-top: 1.05rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 0.85rem 1rem;
}

.insurance-strip p {
    margin: 0;
    font-weight: 700;
}

.insurance-strip ul {
    margin: 0.45rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
}

.insurance-strip li {
    padding: 0.35rem 0.58rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.86rem;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 1.1rem;
    align-items: start;
}

.contact-copy p {
    color: var(--muted);
}

.contact-list {
    margin-top: 0.9rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 0.95rem;
}

.contact-list p {
    margin: 0.42rem 0;
    color: var(--text);
}

.contact-list a {
    color: var(--accent-dark);
    font-weight: 700;
}

.estimate-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1rem;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

label {
    display: block;
    font-weight: 700;
    font-size: 0.92rem;
}

input,
textarea {
    margin-top: 0.32rem;
    width: 100%;
    padding: 0.68rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    font: inherit;
    background: #fff;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #bd4f5b;
    box-shadow: 0 0 0 3px rgba(183, 32, 46, 0.15);
}

textarea {
    resize: vertical;
}

.damage-chips {
    margin: 0.45rem 0 0.45rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.damage-chips button {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink-700);
    font: inherit;
    font-weight: 700;
    padding: 0.35rem 0.6rem;
    cursor: pointer;
}

.damage-chips button.is-active,
.damage-chips button:hover {
    border-color: #cb6b76;
    background: #fff2f4;
    color: var(--accent-dark);
}

.form-note {
    margin: 0.72rem 0 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.form-success {
    margin: 0.72rem 0 0;
    border-radius: 10px;
    background: #e8f6ee;
    border: 1px solid #c5e7d2;
    padding: 0.7rem;
    color: var(--ok);
    font-weight: 600;
    display: none;
}

.faq-list {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.faq-list details {
    border-bottom: 1px solid var(--line);
    padding: 0.9rem 1rem;
}

.faq-list details:last-child {
    border-bottom: 0;
}

.faq-list summary {
    cursor: pointer;
    font-family: "Archivo", sans-serif;
    font-size: 1rem;
}

.faq-list p {
    margin: 0.45rem 0 0;
    color: var(--muted);
}

.site-footer {
    background: #0f1720;
    color: rgba(255, 255, 255, 0.86);
    padding: 2rem 0 6rem;
}

.footer-inner {
    text-align: center;
}

.footer-inner p {
    margin: 0.34rem 0;
}

.footer-inner a {
    color: #fff;
    font-weight: 700;
}

.mobile-callbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: none;
    gap: 0.55rem;
    padding: 0.7rem;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 22px rgba(18, 32, 47, 0.15);
}

.mobile-callbar .btn {
    flex: 1;
    padding: 0.8rem 0.7rem;
}

@media (max-width: 1080px) {
    .services-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .action-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 840px) {
    .menu-toggle {
        display: inline-block;
    }

    .header-inner {
        flex-wrap: wrap;
        align-items: center;
        min-height: 86px;
    }

    .primary-nav,
    .header-cta {
        display: none;
        width: 100%;
    }

    .primary-nav .nav-home {
        display: block;
    }

    .primary-nav.mobile-open {
        display: grid;
        gap: 0.55rem;
        padding: 0.45rem 0 0;
    }

    .header-cta.mobile-open {
        display: flex;
        margin-left: 0;
        padding-bottom: 0.55rem;
    }

    .utility-inner {
        min-height: 50px;
    }

    .hero {
        min-height: 560px;
    }

    .hero-content {
        padding-top: 4.65rem;
    }

    .field-grid {
        grid-template-columns: 1fr;
    }

    .mobile-callbar {
        display: flex;
    }

    .site-footer {
        padding-bottom: 6.15rem;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(var(--max), 100% - 1.2rem);
    }

    .brand {
        min-width: 0;
    }

    .brand img {
        width: 58px;
        height: 58px;
    }

    .brand span {
        font-size: 1.02rem;
    }

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

    .hero h1 {
        font-size: clamp(1.92rem, 8vw, 2.6rem);
    }

    .hero-copy {
        font-size: 1rem;
    }

    .services-grid,
    .process-grid,
    .trust-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
