:root {
    --color-black: #0d0d0d;
    --color-steel-grey: #2f2f2f;
    --color-royal-blue: #1c4e80;
    --color-gold: #d4af37;
    --color-gold-dark: #c6a032;
    --color-emerald: #00a676;
    --color-bg-light: #f7f7f7;
    --color-bg-lighter: #ededed;
    --color-border: #dddddd;

    --font-heading: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --container-width: 1200px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: #222;
    background-color: #ffffff;
    scroll-behavior: smooth;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* Layout */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 16px;
}

section {
    padding: 60px 0;
}

@media (min-width: 900px) {
    section {
        padding: 80px 0;
    }
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(13, 13, 13, 0.96);
    backdrop-filter: blur(6px);
    color: #ffffff;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 65px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.header-phone {
    font-weight: 600;
    white-space: nowrap;
}

.btn-header-call {
    border-radius: 999px;
    border: 1px solid var(--color-gold);
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-header-call:hover {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--color-gold);
}

.btn-primary:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-sm {
    padding: 10px 18px;
    font-size: 14px;
}

.btn-icon {
    font-size: 18px;
    line-height: 1;
}

/* Hero */
.hero {
    background: radial-gradient(circle at top left, #262626 0, #0d0d0d 55%, #050505 100%);
    color: #ffffff;
    padding-top: 32px;
    padding-bottom: 60px;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr);
    gap: 36px;
    align-items: center;
}

.hero-alt-cta {
    font-size: 13px;
    color: #cfcfcf;
    margin-top: 6px;
}

.hero-alt-cta a {
    color: var(--color-gold);
    font-weight: 500;
    text-decoration: underline;
}

@media (min-width: 900px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        gap: 48px;
    }
}

.hero-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #bbbbbb;
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1.15;
    margin: 0 0 16px;
}

@media (min-width: 900px) {
    .hero-title {
        font-size: 40px;
    }
}

.hero-subtitle {
    font-size: 16px;
    color: #dddddd;
    max-width: 520px;
    margin-bottom: 22px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #c7c7c7;
}

.hero-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.rating-pill {
    background: rgba(0, 166, 118, 0.15);
    border-color: rgba(0, 166, 118, 0.8);
    color: #e5fff7;
}

/* HERO IMAGE */
.hero-image-wrap {
    width: 100%;
    min-height: 260px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #111;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-image-caption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border-radius: 10px;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6));
    color: #f5f5f5;
    font-size: 12px;
}

.hero-image-caption-label {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    opacity: 0.75;
    margin-bottom: 4px;
}

.hero-image-caption-text {
    font-size: 12px;
    line-height: 1.4;
}

/* MOBILE hero image */
@media (max-width: 799px) {
    .hero-image-wrap {
        min-height: 360px;
        border-radius: 14px;
        margin-top: 20px;
    }
}

/* DESKTOP hero image */
@media (min-width: 800px) {
    .hero-image-wrap {
        min-height: 420px;
    }
}

/* Section headings */
.section-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #777;
    margin-bottom: 8px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    margin: 0 0 12px;
    color: var(--color-black);
}

@media (min-width: 900px) {
    .section-title {
        font-size: 30px;
    }
}

.section-subtitle {
    font-size: 15px;
    color: #555;
    max-width: 620px;
}

/* Services */
.services {
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    margin-top: 28px;
}

@media (min-width: 800px) {
    .services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.service-card {
    background: var(--color-bg-light);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(28, 78, 128, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--color-royal-blue);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 16px;
    margin: 0 0 8px;
}

.service-text {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.services-cta {
    margin-top: 24px;
}

/* Gallery */
.gallery {
    background: var(--color-bg-light);
}

.gallery-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
}

@media (min-width: 800px) {
    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.gallery-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 140px;
}

.gallery-before,
.gallery-after {
    background-size: cover;
    background-position: center;
    position: relative;
}

.gallery-before {
    background-image: linear-gradient(135deg, #5a5a5a, #2f2f2f);
}

.gallery-after {
    background-image: linear-gradient(135deg, #1c4e80, #00a676);
}

.gallery-label {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: rgba(0, 0, 0, 0.6);
    color: #f5f5f5;
}

.gallery-body {
    padding: 12px 14px 14px;
    font-size: 13px;
}

.gallery-body-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.gallery-body-text {
    color: #666;
}

/* Insurance */
.insurance {
    background: var(--color-bg-lighter);
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    align-items: flex-start;
    margin-top: 24px;
}

@media (min-width: 900px) {
    .two-col {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: 40px;
    }
}

.insurance-highlight {
    background: #ffffff;
    border-radius: 10px;
    padding: 16px 18px;
    font-size: 13px;
    border-left: 4px solid var(--color-emerald);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
    margin-bottom: 18px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    font-size: 14px;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.check-icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(0, 166, 118, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--color-emerald);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Process */
.process {
    background: #ffffff;
}

.process-steps {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    margin-top: 24px;
}

@media (min-width: 800px) {
    .process-steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.process-step {
    background: var(--color-bg-light);
    border-radius: 10px;
    padding: 18px;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.process-step-number {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--color-black);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step-title {
    font-weight: 600;
    margin-bottom: 6px;
}

/* Why choose us */
.why {
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    margin-top: 24px;
}

@media (min-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.why-card {
    background: var(--color-bg-light);
    border-radius: 10px;
    padding: 18px 18px 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    font-size: 14px;
}

.why-card-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.why-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    background: rgba(28, 78, 128, 0.08);
    color: var(--color-royal-blue);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Testimonials */
.testimonials {
    background: var(--color-bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    margin-top: 24px;
}

@media (min-width: 900px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.testimonial-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 18px 18px 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px;
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 14px;
    margin-bottom: 6px;
}

.testimonial-text {
    color: #555;
    margin-bottom: 10px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 13px;
}

/* Form section */
.estimate {
    background: #ffffff;
}

.estimate-full {
    display: block;
    width: 100%;
}

.estimate-note {
    font-size: 14px;
    color: #555;
}

.estimate-form-card {
    background: var(--color-bg-light);
    border-radius: 12px;
    padding: 20px 18px 22px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

@media (min-width: 600px) {
    .form-row.two-col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.form-label {
    font-size: 13px;
    margin-bottom: 4px;
    color: #444;
    display: block;
}

.form-input,
.form-textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    padding: 10px 12px;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #ffffff;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--color-royal-blue);
    box-shadow: 0 0 0 1px rgba(28, 78, 128, 0.18);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.upload-area {
    border-radius: 10px;
    border: 1px dashed var(--color-border);
    background: rgba(255, 255, 255, 0.9);
    padding: 16px 14px;
    font-size: 13px;
    color: #555;
    margin-bottom: 14px;
}

.upload-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.upload-label {
    font-weight: 500;
}

.upload-help {
    font-size: 12px;
    color: #777;
}

.upload-btn {
    border-radius: 999px;
    border: 1px solid var(--color-royal-blue);
    padding: 6px 12px;
    font-size: 13px;
    background: rgba(28, 78, 128, 0.06);
    color: var(--color-royal-blue);
    cursor: pointer;
}

.estimate-disclaimer {
    font-size: 11px;
    color: #777;
    margin-top: 8px;
}

/* Final CTA section */
.final-cta {
    background: radial-gradient(circle at top, #111 0, #050505 55%, #000 100%);
    color: #ffffff;
    text-align: center;
}

.final-cta .section-title {
    color: #ffffff;
}

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

/* PREMIUM FOOTER */
.site-footer {
    background: #050505;
    color: #dddddd;
    padding: 28px 0 24px;
    font-size: 13px;
    border-top: 1px solid rgba(212, 175, 55, 0.35);
}

.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

@media (min-width: 900px) {
    .footer-inner {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        align-items: flex-start;
    }
}

.footer-left,
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 52px;
    height: auto;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 12px;
    color: #aaaaaa;
}

/* Contact blocks */
.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    font-size: 13px;
}

.footer-contact-block p {
    margin: 6px 0 0;
}

.footer-contact a {
    color: #ffffff;
}

.footer-contact a:hover {
    color: var(--color-gold);
}

/* Footer headings */
.footer-heading {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #bbbbbb;
}

/* Hours */
.footer-hours {
    font-size: 13px;
    color: #cccccc;
    line-height: 1.7;
}

.footer-hours ul {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3px 0;
}

.footer-hours li span:last-child {
    color: var(--color-gold);
    font-weight: 600;
}

/* Bottom row */
.footer-bottom-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    font-size: 12px;
    color: #aaaaaa;
}

@media (min-width: 700px) {
    .footer-bottom-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-copy {
    opacity: 0.85;
}

.footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Mobile sticky bottom bar */
.mobile-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 12px 10px;
    display: flex;
    gap: 8px;
    z-index: 999;
}

.mobile-sticky-bar .btn {
    flex: 1;
    padding: 10px 6px;
    font-size: 14px;
}

.mobile-only {
    display: flex;
}

.desktop-only {
    display: none;
}

@media (min-width: 800px) {
    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: flex;
    }

    .mobile-sticky-bar {
        display: none;
    }
}

/* Small tweaks */
@media (max-width: 599px) {
    .hero {
        padding-bottom: 80px;
        /* room for sticky bar */
    }
}