:root {
    --bg: #0b0b0c;
    --panel: #141416;
    --panel-2: #18181b;
    --text: #f3f3f3;
    --muted: #c7c7cb;
    --line: rgba(255,255,255,0.08);
    --red: #e1261c;
    --red-dark: #8b0f11;
    --silver: #d8d8de;
    --shadow: 0 20px 50px rgba(0,0,0,0.35);
    --radius: 22px;
    --header-height: 92px;
}
* {
    box-sizing:border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: linear-gradient(180deg, #0a0a0b, #101012 28%, #0a0a0b 100%);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}
body.menu-open {
    overflow: auto;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
.container {
    width: min(1160px, 92%);
    margin: 0 auto;
}
.section {
    padding: 78px 0;
}
.section-anchor {
    scroll-margin-top: 110px;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.eyebrow {
    display: inline-block;
    color: #ffb1b1;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 12px;
}
/* Headings */
h1, h2, h3 {
    margin: 0 0 14px;
}
h1 {
    font-size: clamp(2.25rem, 5vw, 4.65rem);
    line-height: 1;
    letter-spacing: -0.04em;
}
h2 {
    font-size: clamp(1.9rem, 3.7vw, 3rem);
    line-height: 1.05;
}
h3 {
    font-size: 1.25rem;
}
/* Normal text paragraphs */
p {
    margin: 0 0 16px;
}
/* Strong/bold text */
strong {
    color: #fff;
}
.lead {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 780px;
}
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 22px;
    border-radius: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
    border: 1px solid var(--line);
    transition: 0.18s ease;
    cursor: pointer;
    font: inherit;
}
.btn:hover, .btn:focus-visible {
    transform: translateY(-1px);
}
.btn-primary {
    background: linear-gradient(90deg, var(--red-dark), var(--red));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 12px 28px rgba(225,38,28,0.28);
}
.btn-secondary {
    background: rgba(255,255,255,0.04);
    color: #fff;
}
.btn-light {
    background: #fff;
    color: #111;
}
.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10,10,11,0.82);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}
/* Navigation */
.nav-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    position: relative;
    z-index: 80;
}
.brand img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 16px;
    background: #000;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    padding: 4px;
}
.brand-name {
    font-weight: 900;
    letter-spacing: 0.02em;
    font-size: 1.06rem;
}
.brand-sub {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #cfcfd4;
}
.primary-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 80;
}
.primary-nav a {
    font-size: 0.96rem;
    color: #dddddf;
    transition: color 0.18s ease;
}
.primary-nav a:hover, .primary-nav a:focus-visible {
    color: #fff;
}
.header-call, .mobile-nav-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(225,38,28,0.45);
    background: linear-gradient(90deg, rgba(139,15,17,0.85), rgba(225,38,28,0.85));
    color: #fff;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(225,38,28,0.2);
}
.header-call {
    padding: 12px 15px;
    border-radius: 14px;
    white-space: nowrap;
}
/* Mobile Navigation */
.mobile-nav-call {
    display: none;
}
.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    position: relative;
    z-index: 80;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: #fff;
    transition: 0.2s ease;
}
.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/* Hero */
.hero {
    padding: 88px 0 64px;
    background: radial-gradient(circle at top left, rgba(225,38,28,0.3), transparent 28%), radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 22%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: center;
}
.hero-copy p {
    color: #d6d6db;
    max-width: 780px;
    font-size: 1.08rem;
}
.hero-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 26px 0 30px;
}
.stat {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px 16px;
}
.stat strong {
    display: block;
    font-size: 1.45rem;
}
.stat span {
    display: block;
    color: #cfcfd4;
    font-size: 0.92rem;
}
.hero-card, .form-card, .map-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.hero-card img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}
.hero-card-body {
    padding: 22px;
}
.here-card-body p {
    color: #cfcfd4;
}
.hero-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    margin-top: 16px;
}
.hero-checks div {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    font-weight: 700;
    font-size: 0.94rem;
}
/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 26px;
}
.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow);
}
.card p {
    color: #cfcfd4;
    margin: 0;
}
.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(225,38,28,0.22), rgba(225,38,28,0.08));
    margin-bottom: 16px;
    color: #fff;
}
.service-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.feature-card {
    background: linear-gradient(180deg, rgba(225,38,28,0.14), rgba(20,20,22,0.95));
}
/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 26px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #111;
    box-shadow: var(--shadow);
    margin: 0;
}
.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.24s ease;
}
.gallery-item:hover img {
    transform: scale(1.03);
}
.gallery-item figcaption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.75));
    font-size: 0.9rem;
    font-weight: 800;
}
/* Quotes & Service Areas */
.split-grid, .quote-grid, .areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}
.quote-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
}
.areas-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: stretch;
}
.info-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}
.info-item {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px 18px;
    color: #d8d8de;
}
.info-item a {
    color: #fff;
    font-weight: 800;
}

/* Form for Quote */
.form-card {
    padding: 24px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.field.full {
    grid-column: 1 / -1;
}
label {
    font-size: 0.92rem;
    font-weight: 700;
    color: #e9e9ec;
}
input, select, textarea {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: #101012;
    color: #fff;
    font: inherit;
    outline: none;
}
textarea {
    min-height: 130px;
    resize: vertical;
}
input:focus, select:focus, textarea:focus {
    border-color: rgba(255,38,28,0.68);
    box-shadow: 0 0 0 3px rgba(225,38,28,0.12);
}
.form-actions {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
}
.form-actions .btn {
    flex: 1;
}
.tiny {
    font-size: 0.88rem;
    color: #bfbfc5;
    margin-top: 12px;
}
/* Area & Location */
.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.area-tags span {
    padding: 10px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line);
    font-weight: 800;
    font-size: 0.92rem;
}
/* Map */
.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    display: block;
    filter: grayscale(0.1) contrast(1.03);
}
/* Call to Action */
.cta-band {
    margin-top: 24px;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(90deg,#6f0d0f,#df2018);
    box-shadow: var(--shadow);
}
.cta-band strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 8px;
}
.cta-band p {
    color: #fff;
}
/* Customer Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 26px;
}
.review {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px;
    min-height: 240px;
    box-shadow: var(--shadow);
}
.review strong {
    display: block;
    margin-bottom: 10px;
}
.stars {
    color: #ffce54;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}
.review p {
    color: #d0d0d5;
}
.review span {
    color: #bfbfc5;
    font-size: 0.92rem;
}
/* Website Footer & Copyright */
.site-footer {
    border-top: 1px solid var(--line);
    padding: 28px 0 94px;
    color: #cfcfd4;
}
.site-footer strong {
    display: block;
    font-size: 1.08rem;
}
.site-footer p {
    margin: 4px 0 0;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer-grid > div {
    max-width: 360px;
}
/* Sticky Call to Action */
.sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 80;
    display: none;
    gap: 10px;
}
.sticky-cta a {
    flex: 1;
    padding: 15px 16px;
    border-radius: 16px;
    text-align: center;
    font-weight: 900;
    box-shadow: 0 18px 34px rgba(0,0,0,0.35);
}
.sticky-call {
    background: #fff;
    color: #111;
}
.sticky-text {
    background: linear-gradient(90deg, var(--red-dark), var(--red));
    color: #fff;
}
/* Mobile Responsive Styles */
@media (max-width: 980px) {
    .hero-grid, .split-grid, .quote-grid, .areas-grid {
        grid-template-columns: 1fr;
    }
    .services-grid, .gallery-grid, .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 760px) {
    .nav-wrap {
        padding: 10px 0;
    }
    .brand img {
        width: 75px;
        height: 75px;
    }
    .header-actions {
        gap: 8px;
    }
    .header-call {
        width: 46px;
        height: 46px;
        padding: 0;
        border-radius: 14px;
        font-size: 1.1rem;
    }
    .header-call span:last-child {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0,0,0,0);
        white-space: nowrap;
    }
    .menu-toggle {
        display: block;
    }
    .primary-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 4%;
        right: 4%;
        max-height: min(72dvh, 560px);
        padding: 18px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 12px;
        background: #0a0a0b;
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 22px;
        box-shadow: 0 30px 70px rgba(0,0,0,0.72);
        overflow-y: auto;
        overscroll-behavior: contain;
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.24s ease, opacity 0.24s ease;
    }
    .primary-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .primary-nav a {
        width: 100%;
        padding: 16px;
        border-radius: 16px;
        background: #18181b;
        border: 1px solid rgba(255,255,255,0.13);
        font-size: 1.05rem;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }
    .primary-nav .mobile-nav-call {
        display: inline-flex;
        margin-top: 8px;
        border-color: rgba(255,38,28,0.55);
        background: linear-gradient(90deg, var(--red-dark), var(--red));
    }
    .section {
        padding: 62px 0;
    }
    .hero {
        padding-top: 62px;
    }
    .hero-start-row, .services-grid, .gallery-grid, .reviews-grid, .form-grid {
        grid-template-columns: 1fr;
    }
    .hero-checks {
        grid-template-columns: 1fr;
    }
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .form-actions .btn {
        width: 100%;
        flex: none;
    }
    .sticky-cta {
        display: flex;
    }
    .site-footer {
        padding-bottom: 112px;
    }
}