/* ── Tokens ──────────────────────────────────────────────────────────────── */
:root {
    --black:        #0f0f0f;
    --grey-900:     #111111;
    --grey-800:     #1a1a1a;
    --grey-700:     #272727;
    --grey-600:     #444;
    --grey-400:     #888;
    --grey-200:     #d0d0d0;
    --grey-100:     #f4f4f4;
    --white:        #ffffff;
    --accent:       #f15a29;
    --accent-dark:  #c84620;
    --blue:         #5bb5ff;
    --blue-dark:    #2d9af0;
    --text:         #e0e0e0;
    --text-muted:   #888;
    --util-h:       44px;
    --nav-h:        76px;
    --container:    1280px;
    --pad:          clamp(1rem, 5vw, 2.5rem);
    --radius:       6px;
    --transition:   .2s ease;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    background: var(--grey-900);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; }

/* ── Utilities ───────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
}
.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;
}
.text-accent { color: var(--accent); }
.text-blue   { color: var(--blue); }

/* ── Scroll-reveal ───────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Site header ─────────────────────────────────────────────────────────── */
/* header-right is full-width; logo tab is absolutely layered on top of it.  */
/* overflow:visible lets the logo tab hang below the nav bar's bottom edge.  */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    overflow: visible;
    transform: translateY(0);
    transition: transform .3s ease;
}
.site-header.header--hide-util {
    transform: translateY(calc(-1 * var(--util-h)));
}

/* ── Logo tab ────────────────────────────────────────────────────────────── */
/* Absolutely positioned so it floats over the full-width nav bar rather than */
/* sitting beside it. Inset from the left edge; hangs 24 px below the header. */
.logo-tab {
    position: absolute;
    top: 0;
    left: var(--pad);
    z-index: 10;
    background: transparent;
    padding: 1rem 2.25rem;
    height: calc(var(--util-h) + var(--nav-h) + 40px);
    width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 8px 8px;
    transition: height .3s ease, transform .3s ease;
}
.site-header.header--hide-util .logo-tab {
    transform: translateY(calc(var(--util-h) - 8px));
    height: calc(var(--nav-h) + 40px);
}
.logo-link { display: inline-block; }
.logo-img  { max-height: 160px; max-width: 240px; width: auto; display: block; }
.logo-lockup {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.logo-flame { flex-shrink: 0; }
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.logo-name {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 900;
    color: var(--black);
    letter-spacing: -.02em;
    text-transform: uppercase;
}
.logo-tagline {
    font-size: clamp(.7rem, 1.3vw, .88rem);
    font-weight: 600;
    color: var(--grey-600);
    letter-spacing: .04em;
    text-transform: uppercase;
}
.logo-license {
    font-size: .68rem;
    color: var(--blue);
    font-weight: 600;
    letter-spacing: .05em;
    margin-top: .15rem;
}

/* ── Header right column ─────────────────────────────────────────────────── */
.header-right {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* ── Row 1: Utility bar ──────────────────────────────────────────────────── */
.util-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    height: var(--util-h);
    padding: 0 var(--pad);
    background: var(--accent);
    border-bottom: 1px solid var(--accent-dark);
}
.util-link {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .875rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition);
    white-space: nowrap;
}
.util-link svg { flex-shrink: 0; }
.util-link:hover { color: rgba(255,255,255,.75); }

.util-social { display: flex; gap: .75rem; align-items: center; }
.util-social-link {
    color: var(--white);
    transition: color var(--transition);
    line-height: 1;
}
.util-social-link:hover { color: rgba(255,255,255,.75); }

/* ── Row 2: Nav bar ──────────────────────────────────────────────────────── */
.nav-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    height: var(--nav-h);
    padding: 0 var(--pad);
    background: var(--grey-800);
    box-shadow: 0 2px 12px rgba(0,0,0,.4), inset 0 -2px 0 var(--grey-700);
}

/* ── Main nav ────────────────────────────────────────────────────────────── */
.main-nav { display: flex; align-items: center; }
.nav-list {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
}
.nav-list > li > a {
    display: flex;
    align-items: center;
    gap: .3rem;
    padding: .55rem .75rem;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--grey-200);
    border-radius: 0;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li.is-active > a {
    color: var(--white);
    background: rgba(255,255,255,.07);
}
.nav-list > li.is-active > a { color: var(--accent); }

.nav-arrow, .nav-arrow-right {
    transition: transform var(--transition);
    flex-shrink: 0;
}

/* ── Dropdowns ───────────────────────────────────────────────────────────── */
.has-dropdown, .has-flyout { position: relative; }

.nav-dropdown, .nav-flyout {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 210px;
    background: var(--grey-900);
    border: 1px solid var(--grey-700);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0,0,0,.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    list-style: none;
    padding: .35rem 0;
    z-index: 100;
}
.has-dropdown:hover > .nav-dropdown,
.has-dropdown:focus-within > .nav-dropdown,
.has-flyout:hover > .nav-flyout,
.has-flyout:focus-within > .nav-flyout {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.has-dropdown:hover > a .nav-arrow,
.has-dropdown:focus-within > a .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown a, .nav-flyout a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .55rem 1rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--grey-200);
    transition: color var(--transition), background var(--transition);
}
.nav-dropdown a:hover, .nav-flyout a:hover,
.nav-dropdown li.is-active > a, .nav-flyout li.is-active > a {
    color: var(--white);
    background: rgba(255,255,255,.06);
}

/* Flyout positions to the right of its parent item */
.nav-flyout {
    top: -.35rem;
    left: calc(100% + 1px);
}

/* ── Schedule button ─────────────────────────────────────────────────────── */
.nav-actions { flex-shrink: 0; display: flex; align-items: center; gap: 1.25rem; }
.btn-schedule {
    display: inline-block;
    padding: .55rem 1.2rem;
    background: var(--accent);
    color: var(--white);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-radius: 0;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition);
}
.btn-schedule:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

/* ── Hamburger (mobile) ──────────────────────────────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 6px;
    background: none;
    border: 1px solid var(--grey-600);
    border-radius: 0;
    flex-shrink: 0;
}
.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 850;
}
.nav-overlay.is-open { display: block; }

/* ── Sections (shared) ───────────────────────────────────────────────────── */
.section {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.section--dark    { background: var(--grey-900); }
.section--darker  { background: var(--black); }
.section--mid     { background: var(--grey-800); }
.section--light   { background: var(--white); color: var(--black); }
.section--accent  { background: var(--accent); color: var(--white); }
.section--blue    { background: var(--blue); }

.section-label {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .75rem;
}
.section-heading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--white);
    margin-bottom: 1rem;
}
.section--light .section-heading { color: var(--black); }
.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.7;
}
.section--light .section-sub { color: var(--grey-600); }

/* ── Hero section ────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--black);
}
.hero--page { min-height: 42vh; } /* For non-home pages */

/* Slider */
.hero-slider {
    position: absolute;
    inset: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    will-change: opacity;
}
.hero-slide.is-active { opacity: 1; }
/* Dark gradient overlay for text readability */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,.72) 0%,
        rgba(0,0,0,.4)  55%,
        rgba(0,0,0,.15) 100%
    );
}

/* Fallback bg when no image is set */
.hero-slider:empty,
.hero-slide--placeholder {
    background: linear-gradient(135deg, var(--grey-800) 0%, var(--black) 100%);
}

/* YouTube embed */
.hero-video {
    position: absolute;
    inset: 0;
}
.hero-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.hero-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

/* Hero text content */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 88vh;
    padding: clamp(4rem, 10vw, 7rem) 0;
}
.hero--page .hero-content { min-height: 42vh; }
.hero-text { max-width: 680px; }

.hero-eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .85rem;
}
.hero-heading {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.025em;
    color: var(--white);
    margin-bottom: .75rem;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.82);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
    display: inline-block;
    padding: .8rem 1.8rem;
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0;
    border: 2px solid transparent;
    transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}
.btn-outline {
    display: inline-block;
    padding: .8rem 1.8rem;
    background: transparent;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0;
    border: 2px solid rgba(255,255,255,.5);
    transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.08);
}
.btn-blue {
    display: inline-block;
    padding: .8rem 1.8rem;
    background: var(--blue);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0;
    border: 2px solid transparent;
    transition: background var(--transition);
}
.btn-blue:hover { background: var(--blue-dark); }

/* Slider controls */
.hero-nav {
    position: absolute;
    bottom: 2rem;
    left: var(--pad);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hero-arrows { display: flex; gap: .5rem; }
.hero-prev, .hero-next {
    width: 40px; height: 40px;
    border: 1.5px solid rgba(255,255,255,.35);
    border-radius: 0;
    background: rgba(0,0,0,.3);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    transition: border-color var(--transition), background var(--transition);
    font-size: 1rem;
}
.hero-prev:hover, .hero-next:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.12);
}
.hero-dots { display: flex; gap: .5rem; align-items: center; }
.hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    padding: 0;
}
.hero-dot.is-active {
    background: var(--white);
    transform: scale(1.3);
}

/* Single-slide (no controls needed) */
.hero-single .hero-nav { display: none; }
.hero-single .hero-slide { opacity: 1; }

/* ── Statement section ───────────────────────────────────────────────────── */
.statement {
    background: var(--white);
    overflow: hidden;
}
.statement-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 480px;
}
.statement-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 8vw, 6rem) 0;
}
.statement-tagline {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--black);
    margin-bottom: 1rem;
}
.statement-tagline span { color: var(--accent); }
.statement-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 1.75rem;
    line-height: 1.7;
}
.statement-img {
    overflow: hidden;
}
.statement-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.statement-img:hover img { transform: scale(1.04); }
.statement-text .btn-primary { align-self: flex-start; }

/* ── Text + Image section ────────────────────────────────────────────────── */
.text-image {
    background: var(--white);
}
.text-image-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}
.text-image-inner.img-left { direction: rtl; }
.text-image-inner.img-left > * { direction: ltr; }
.text-image-text .section-heading { margin-bottom: .75rem; color: var(--black); }
.text-image-body {
    color: var(--grey-600);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.text-image-body p { margin-bottom: .75rem; }
.text-image-body p:last-child { margin-bottom: 0; }
.text-image-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.text-image-bullets li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .95rem;
    font-weight: 700;
    color: var(--grey-600);
    line-height: 1.5;
}
.text-image-bullets li::before {
    content: '';
    flex-shrink: 0;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: .45em;
}
.text-image-img {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.service-area-map-img { aspect-ratio: 885 / 652; }
.service-area-map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--grey-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-600);
    font-size: .9rem;
}
.text-image-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* ── Hover gallery ───────────────────────────────────────────────────────── */
.hover-gallery { background: var(--black); }
.hover-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
}
.hover-gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    display: block;
}
.hover-gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.hover-gallery-item:hover img { transform: scale(1.07); }
.hover-gallery-caption {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity .35s ease;
}
.hover-gallery-item:hover .hover-gallery-caption { opacity: 1; }
.hover-gallery-caption-text {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    transform: translateY(8px);
    transition: transform .35s ease;
}
.hover-gallery-item:hover .hover-gallery-caption-text { transform: none; }

/* ── Gallery ─────────────────────────────────────────────────────────────── */
.gallery { background: var(--grey-800); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: .5rem;
}
.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 3px;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ── Education section ───────────────────────────────────────────────────── */
.education { background: var(--grey-800); }
.education-inner { max-width: 760px; }
.education-subheading {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.education-body {
    color: var(--text-muted);
    line-height: 1.85;
    font-size: .97rem;
}
.education-body h2, .education-body h3 {
    color: var(--white);
    font-weight: 700;
    margin: 1.5rem 0 .5rem;
}
.education-body h2 { font-size: 1.3rem; }
.education-body h3 { font-size: 1.1rem; }
.education-body p  { margin-bottom: .85rem; }
.education-body ul, .education-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.education-body li { margin-bottom: .4rem; }
.education-body strong { color: var(--white); }
.education-body a { color: var(--blue); text-decoration: underline; }

/* ── CTA section ─────────────────────────────────────────────────────────── */
.cta-section {
    background: var(--grey-900);
    border-top: 1px solid var(--grey-700);
    border-bottom: 1px solid var(--grey-700);
}
.cta-inner { text-align: center; }
.cta-heading {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -.02em;
    color: var(--white);
    margin-bottom: .6rem;
}
.cta-sub {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 1.75rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0;
    transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.cta-btn:hover { transform: translateY(-2px); }
.cta-btn--phone {
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
}
.cta-btn--phone:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.cta-btn--email {
    background: var(--blue);
    color: var(--white);
    border: 2px solid var(--blue);
}
.cta-btn--email:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.cta-btn--quote {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.4);
}
.cta-btn--quote:hover { border-color: var(--white); background: rgba(255,255,255,.07); }

/* ── Reviews section ─────────────────────────────────────────────────────── */
.reviews { background: var(--black); }
.reviews-placeholder {
    text-align: center;
    padding: 3rem;
    border: 1px dashed var(--grey-600);
    border-radius: var(--radius);
    color: var(--grey-400);
}
.reviews-stars {
    font-size: 1.8rem;
    color: #f5b300;
    letter-spacing: .1em;
    margin-bottom: .5rem;
}

/* ── Why Us section ──────────────────────────────────────────────────────── */
.why-us { background: var(--grey-800); }
.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}
.why-us-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .85rem;
    margin-top: 1.25rem;
}
.why-us-bullets li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    color: var(--grey-200);
    font-size: .97rem;
    line-height: 1.5;
}
.why-us .text-image-body { color: var(--grey-200); }
.why-bullet-icon {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin-top: .1em;
}
.why-bullet-icon svg { display: block; }
.why-us-img {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.why-us-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--black);
    border-top: 3px solid var(--accent);
    padding-top: clamp(3rem, 7vw, 5rem);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
.footer-logo-lockup {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
}
.footer-name {
    display: block;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -.01em;
}
.footer-tagline {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    color: var(--grey-400);
    letter-spacing: .04em;
    text-transform: uppercase;
}
.footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-bottom: 1.25rem;
}
.footer-contact-link {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .88rem;
    color: var(--grey-200);
    transition: color var(--transition);
}
.footer-contact-link:hover { color: var(--accent); }
.footer-area {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .8rem;
    color: var(--grey-400);
    line-height: 1.5;
}
.footer-social {
    display: flex;
    gap: .75rem;
    margin-bottom: 1.25rem;
}
.footer-social-link {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--grey-600);
    border-radius: 0;
    color: var(--grey-400);
    transition: border-color var(--transition), color var(--transition);
}
.footer-social-link:hover { border-color: var(--white); color: var(--white); }

.btn-footer-cta {
    display: inline-block;
    padding: .6rem 1.25rem;
    background: var(--accent);
    color: var(--white);
    font-size: .85rem;
    font-weight: 700;
    border-radius: 0;
    transition: background var(--transition);
}
.btn-footer-cta:hover { background: var(--accent-dark); }

.footer-heading {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--grey-400);
    margin-bottom: .85rem;
}
.footer-col .footer-heading ~ .footer-heading {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--accent);
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}
.footer-links a {
    font-size: .85rem;
    color: var(--grey-200);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.footer-hours {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: .82rem;
    color: var(--grey-200);
}
.footer-hours li span:first-child { color: var(--grey-400); }

.footer-license {
    font-size: .85rem;
    color: var(--grey-200);
    line-height: 1.5;
    margin-bottom: .5rem;
}
.footer-license strong { color: var(--blue); }

.footer-area-text {
    font-size: .82rem;
    color: var(--grey-200);
    line-height: 1.6;
}
.footer-area-text a { color: var(--blue); }
.footer-area-text a:hover { text-decoration: underline; }

.footer-bottom {
    border-top: 1px solid var(--grey-700);
    padding: 1.25rem 0;
    background: var(--grey-900);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
}
.footer-bottom p {
    font-size: .78rem;
    color: var(--grey-400);
}
.footer-legal-links a {
    color: var(--grey-400);
    font-size: .78rem;
    transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--white); }

/* ── Contact page ────────────────────────────────────────────────────────── */
.contact-section { background: var(--grey-800); }
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-form-wrap {
    background: var(--grey-700);
    border-radius: var(--radius);
    padding: 2rem;
}
.contact-flash {
    padding: .85rem 1.1rem;
    border-radius: 4px;
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.contact-flash--success {
    background: rgba(34,197,94,.15);
    border: 1px solid rgba(34,197,94,.4);
    color: #86efac;
}
.contact-flash--error {
    background: rgba(239,68,68,.15);
    border: 1px solid rgba(239,68,68,.4);
    color: #fca5a5;
}
.contact-info { padding-top: .5rem; }
.contact-info h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: .6rem;
}
.contact-info-intro {
    font-size: 1.05rem;
    color: var(--grey-200);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: var(--grey-200);
}
.contact-info-item svg {
    flex-shrink: 0;
    margin-top: .1em;
    color: var(--accent);
}
.contact-info-item strong {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--white);
    margin-bottom: .2rem;
}
.contact-info-item a { color: var(--accent); }
.contact-info-item a:hover { text-decoration: underline; }
.contact-info-license {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--grey-700);
    font-size: 1rem;
    color: var(--grey-200);
}
.contact-info-license strong { color: var(--blue); font-size: 1.05rem; }
.contact-info-socials {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--grey-700);
}
.contact-info-socials > span {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--white);
    margin-bottom: .75rem;
}
.contact-social-links { display: flex; gap: .75rem; }
.contact-social-link {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--grey-600);
    color: var(--grey-400);
    transition: border-color var(--transition), color var(--transition);
}
.contact-social-link:hover { border-color: var(--white); color: var(--white); }

/* Public form fields */
.public-form .form-group { margin-bottom: 1rem; }
.public-form label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--grey-400);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .35rem;
}
.public-form input,
.public-form select,
.public-form textarea {
    width: 100%;
    padding: .7rem 1rem;
    background: var(--grey-700);
    border: 1px solid var(--grey-600);
    border-radius: var(--radius);
    color: var(--white);
    font-size: .97rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.public-form input:focus,
.public-form select:focus,
.public-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(1,49,210,.2);
}
.public-form textarea { resize: vertical; min-height: 120px; }

/* ── Service Area page ───────────────────────────────────────────────────── */
.service-area-intro { max-width: 680px; margin-bottom: 3rem; }
.town-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: .5rem;
    margin-top: 1.5rem;
}
.town-pill {
    display: block;
    padding: .5rem 1rem;
    background: var(--grey-800);
    border: 1px solid var(--grey-700);
    border-radius: 0;
    font-size: .85rem;
    color: var(--grey-200);
    text-align: center;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.town-pill:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* Town pills that are links */
a.town-pill--link {
    text-decoration: none;
    cursor: pointer;
    border-color: var(--accent);
    color: var(--white);
}
a.town-pill--link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* ── Page hero breadcrumb / sub-title ───────────────────────────────────── */
.page-hero-breadcrumb {
    font-size: .8rem;
    color: var(--grey-400);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .6rem;
}
.page-hero-breadcrumb a {
    color: var(--grey-400);
    text-decoration: none;
}
.page-hero-breadcrumb a:hover { color: var(--accent); }

.page-hero-sub {
    font-size: .95rem;
    color: var(--text-muted);
    margin-top: .6rem;
    max-width: 600px;
}

.page-hero--article {
    padding: clamp(2rem, 6vw, 4rem) 0;
    border-bottom: 3px solid var(--accent);
}

/* ── Location page — services grid ─────────────────────────────────────── */
.location-services { background: var(--grey-900); }
.location-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: .75rem;
}
.location-service-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.1rem;
    background: var(--grey-800);
    border: 1px solid var(--grey-700);
    border-left: 3px solid var(--accent);
    text-decoration: none;
    color: var(--grey-200);
    font-size: .95rem;
    font-weight: 600;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.location-service-card:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}
.location-service-arrow {
    font-size: 1.1rem;
    opacity: .6;
    transition: opacity var(--transition);
}
.location-service-card:hover .location-service-arrow { opacity: 1; }

/* ── Location page — trust bar ──────────────────────────────────────────── */
.location-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2.5rem;
    padding: 1.5rem 2rem;
    background: var(--grey-800);
    border: 1px solid var(--grey-700);
    border-top: 3px solid var(--accent);
}
.location-trust-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .9rem;
    color: var(--grey-200);
}
.location-trust-icon {
    color: var(--accent);
    font-weight: 900;
    font-size: 1rem;
}

/* ── Common problems hub — card grid ────────────────────────────────────── */
.problem-hub { background: var(--grey-900); }
.problem-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.problem-card {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    padding: 1.5rem;
    background: var(--grey-800);
    border: 1px solid var(--grey-700);
    border-top: 3px solid var(--accent);
    text-decoration: none;
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.problem-card:hover {
    transform: translateY(-3px);
    border-top-color: var(--accent);
    background: var(--grey-700);
}
.problem-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}
.problem-card-desc {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
}
.problem-card-link {
    font-size: .85rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: auto;
}

/* ── Common problems — related services grid ────────────────────────────── */
.related-services { background: var(--grey-900); }
.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: .75rem;
}
.related-service-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 1rem;
    background: var(--grey-800);
    border: 1px solid var(--grey-700);
    border-left: 3px solid var(--blue);
    text-decoration: none;
    color: var(--grey-200);
    font-size: .9rem;
    font-weight: 600;
    transition: background var(--transition), color var(--transition);
}
.related-service-card:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.related-service-arrow {
    font-size: 1rem;
    opacity: .5;
    transition: opacity var(--transition);
}
.related-service-card:hover .related-service-arrow { opacity: 1; }

/* ── Legal page ──────────────────────────────────────────────────────────── */
.legal-body {
    max-width: 760px;
    color: var(--text-muted);
    line-height: 1.85;
    font-size: .97rem;
}
.legal-body h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 2rem 0 .5rem;
}
.legal-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--grey-200);
    margin: 1.25rem 0 .35rem;
}
.legal-body p { margin-bottom: .85rem; }
.legal-body ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-body li { margin-bottom: .4rem; }
.legal-body a { color: var(--blue); text-decoration: underline; }
.legal-body strong { color: var(--white); }

/* ── Page hero (non-home pages without a hero section) ───────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--grey-800) 0%, var(--black) 100%);
    padding: clamp(3rem, 8vw, 5rem) 0;
    border-bottom: 1px solid var(--grey-700);
}
.page-hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: -.02em;
    color: var(--white);
    line-height: 1.1;
}
.page-hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: .75rem;
    max-width: 560px;
}

/* ── 404 ─────────────────────────────────────────────────────────────────── */
.error-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem var(--pad);
}
.error-page h1 {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -.03em;
    margin-bottom: .5rem;
}
.error-page p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.error-page a {
    display: inline-block;
    padding: .75rem 1.75rem;
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    border-radius: 0;
}
.error-page a:hover { background: var(--accent-dark); }

/* ── Search toggle button ────────────────────────────────────────────────── */
.search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid var(--grey-600);
    border-radius: 0;
    color: var(--grey-200);
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition);
    flex-shrink: 0;
}
.search-toggle:hover { border-color: var(--white); color: var(--white); }

/* ── Search overlay ──────────────────────────────────────────────────────── */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.88);
    z-index: 950;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 140px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s;
}
.search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.search-overlay-box {
    width: 100%;
    max-width: 640px;
    padding: 0 var(--pad);
}
.search-overlay-form {
    display: flex;
    border-bottom: 2px solid var(--accent);
}
.search-overlay-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    padding: .75rem 0;
    font-family: inherit;
}
.search-overlay-input::placeholder { color: var(--grey-600); }
.search-overlay-submit {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    padding: .5rem;
    display: flex;
    align-items: center;
}
.search-overlay-hint {
    margin-top: .75rem;
    font-size: .78rem;
    color: var(--grey-400);
}
.search-overlay-hint kbd {
    background: var(--grey-700);
    border: 1px solid var(--grey-600);
    padding: .1em .4em;
    border-radius: 3px;
    font-family: inherit;
    font-size: .78rem;
}

/* ── Search results page ─────────────────────────────────────────────────── */
.search-page { background: var(--white); min-height: 60vh; }
.search-page-heading {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 1.5rem;
}
.search-query { color: var(--accent); }
.search-page-form { margin-bottom: 2.5rem; }
.search-page-input-wrap {
    display: flex;
    gap: 0;
    max-width: 580px;
}
.search-page-input {
    flex: 1;
    padding: .75rem 1rem;
    background: var(--white);
    border: 2px solid var(--grey-700);
    border-right: none;
    color: var(--black);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition);
}
.search-page-input:focus { border-color: var(--accent); }
.search-results {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    max-width: 680px;
}
.search-result { border-bottom: 1px solid #e5e5e5; padding-bottom: 1.75rem; }
.search-result:last-child { border-bottom: none; }
.search-result-title {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: .35rem;
    transition: color var(--transition);
}
.search-result-title:hover { color: var(--accent); }
.search-result-snippet {
    font-size: .92rem;
    color: var(--grey-600);
    line-height: 1.6;
    margin-bottom: .4rem;
}
.search-result-url {
    font-size: .78rem;
    color: var(--accent);
}
.search-no-results {
    font-size: 1rem;
    color: var(--grey-600);
    max-width: 480px;
}
.search-no-results a { color: var(--accent); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-col:first-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; }
    .text-image-inner,
    .why-us-inner { grid-template-columns: 1fr; }
    .text-image-inner.img-left { direction: ltr; }
    .statement-inner { grid-template-columns: 1fr; }
    .statement-img { min-height: 280px; }
}

@media (max-width: 768px) {
    :root { --nav-h: 60px; --util-h: 0px; }

    /* Collapse to a single bar: logo tab left, hamburger right */
    .util-bar { display: none; }
    .nav-actions { display: none; }
    .nav-toggle { display: flex; }

    /* Logo tab: no overhang on mobile, matches the single nav bar height */
    .logo-tab {
        height: var(--nav-h);
        padding: .6rem 1rem;
        align-items: center;
        transform: translateY(10px);
    }
    .site-header.header--hide-util .logo-tab {
        transform: translateY(10px);
        height: var(--nav-h);
    }
    .logo-name { font-size: 1.3rem; }
    .logo-tagline,
    .logo-license { display: none; }

    /* Mobile nav panel slides in from the left */
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: min(320px, 85vw);
        height: 100dvh;
        background: var(--grey-900);
        border-right: 1px solid var(--grey-700);
        overflow-y: auto;
        transition: left .28s ease;
        padding: 4.5rem 0 2rem;
        z-index: 960;
    }
    .main-nav.is-open { left: 0; }

    .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
    .nav-list > li > a {
        padding: .9rem 1.25rem;
        font-size: .88rem;
        border-radius: 0;
        border-bottom: 1px solid var(--grey-700);
    }

    /* Mobile dropdowns expand inline */
    .nav-dropdown, .nav-flyout {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        background: var(--grey-800);
        display: none;
    }
    .has-dropdown.is-open > .nav-dropdown,
    .has-flyout.is-open > .nav-flyout { display: block; }

    .nav-dropdown a, .nav-flyout a {
        padding: .7rem 1.25rem .7rem 2rem;
        border-bottom: 1px solid var(--grey-700);
    }
    .nav-flyout a { padding-left: 3rem; }

    /* Sections */
    .hover-gallery-grid { grid-template-columns: 1fr; }
    .statement-inner { min-height: auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-col:first-child { grid-column: auto; }
}

@media (max-width: 480px) {
    .util-contact .util-link:last-child { display: none; }
    .hero-content { padding: 3rem 0; }
    .cta-buttons { flex-direction: column; align-items: stretch; }
    .cta-btn { justify-content: center; }
}

/* ── Scheduler modal ─────────────────────────────────────────────────────── */
.scheduler-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(0,0,0,.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s;
}
.scheduler-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.scheduler-dialog {
    background: #333333;
    width: 100%;
    max-width: 640px;
    max-height: 92vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--accent);
    box-shadow: 0 24px 80px rgba(0,0,0,.6);
}

/* Header */
.scheduler-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--grey-700);
    flex-shrink: 0;
}
.scheduler-brand {
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
}
.scheduler-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: transparent;
    border: 1px solid var(--grey-700);
    color: var(--grey-400);
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition);
}
.scheduler-close:hover { border-color: var(--white); color: var(--white); }

/* Progress bar */
.scheduler-progress {
    display: flex;
    align-items: center;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--grey-700);
    gap: 0;
    flex-shrink: 0;
}
.sched-step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    flex-shrink: 0;
}
.sched-step-num {
    width: 28px;
    height: 28px;
    border: 2px solid var(--grey-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    color: #aaa;
    transition: border-color .2s, background .2s, color .2s;
}
.sched-step-label {
    font-size: .65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--grey-400);
    transition: color .2s;
}
.sched-step-dot.is-active .sched-step-num {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--white);
}
.sched-step-dot.is-active .sched-step-label { color: var(--accent); }
.sched-step-dot.is-complete .sched-step-num {
    border-color: var(--accent);
    background: transparent;
    color: var(--accent);
}
.sched-step-dot.is-complete .sched-step-label { color: var(--grey-400); }
.sched-step-line {
    flex: 1;
    height: 2px;
    background: var(--grey-600);
    margin: 0 .4rem;
    margin-bottom: 1.4rem;
    transition: background .2s;
}
.sched-step-line.is-complete { background: var(--accent); }

/* Panes */
.sched-pane {
    padding: 1.75rem 1.5rem;
    flex: 1;
}
.sched-pane-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: .5rem;
}
.sched-pane-sub {
    font-size: .9rem;
    color: var(--grey-400);
    margin-bottom: 1.5rem;
}

/* Step 1: category cards */
.sched-category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}
.sched-category-card input[type=radio] { position: absolute; opacity: 0; pointer-events: none; }
.sched-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    padding: 1.75rem 1rem;
    border: 2px solid var(--grey-700);
    background: var(--grey-800);
    cursor: pointer;
    text-align: center;
    transition: border-color var(--transition), background var(--transition);
    color: var(--grey-200);
}
.sched-card-inner svg { color: var(--grey-400); transition: color var(--transition); }
.sched-card-inner span { font-size: .95rem; font-weight: 700; color: var(--white); }
.sched-card-inner small { font-size: .78rem; color: var(--grey-400); }
.sched-category-card:hover .sched-card-inner,
.sched-category-card:focus-within .sched-card-inner {
    border-color: var(--grey-400);
}
.sched-category-card input:checked + .sched-card-inner {
    border-color: var(--accent);
    background: rgba(241,90,41,.08);
}
.sched-category-card input:checked + .sched-card-inner svg { color: var(--accent); }

/* Step 2: ownership */
.sched-ownership-grid { display: flex; flex-direction: column; gap: .75rem; margin-top: 1rem; }
.sched-ownership-btn input[type=radio] { position: absolute; opacity: 0; pointer-events: none; }
.sched-ownership-btn span {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.25rem;
    border: 2px solid var(--grey-700);
    background: var(--grey-800);
    cursor: pointer;
    font-size: .95rem;
    font-weight: 600;
    color: var(--grey-200);
    transition: border-color var(--transition), background var(--transition);
}
.sched-ownership-btn span svg { color: var(--grey-600); transition: color var(--transition); flex-shrink: 0; }
.sched-ownership-btn:hover span { border-color: var(--grey-400); }
.sched-ownership-btn input:checked + span { border-color: var(--accent); background: rgba(241,90,41,.08); }
.sched-ownership-btn input:checked + span svg { color: var(--accent); }
/* Chimney type list (step 5) */
.sched-chimney-list { display: flex; flex-direction: column; gap: .45rem; }
.sched-chimney-opt { display: flex; cursor: pointer; }
.sched-chimney-opt input[type=radio] { display: none; }
.sched-chimney-opt > span {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    padding: .7rem 1rem .7rem 2.75rem;
    border: 2px solid var(--grey-700);
    background: var(--grey-800);
    color: var(--grey-200);
    width: 100%;
    font-size: .9rem;
    line-height: 1.4;
    transition: border-color .15s;
    position: relative;
}
.sched-chimney-opt > span::before {
    content: '';
    position: absolute;
    left: .9rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid var(--grey-400);
    border-radius: 50%;
    flex-shrink: 0;
    transition: border-color .15s, background .15s;
}
.sched-chimney-opt:hover > span { border-color: var(--grey-400); }
.sched-chimney-opt input:checked + span { border-color: var(--accent); background: rgba(241,90,41,.08); }
.sched-chimney-opt input:checked + span::before { border-color: var(--accent); background: var(--accent); }
.sched-chimney-opt small { font-size: .76rem; color: var(--grey-400); }

.sched-non-owner-note {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    margin-top: 1rem;
    padding: .85rem 1rem;
    background: rgba(91,181,255,.08);
    border-left: 3px solid var(--blue);
    font-size: .87rem;
    color: var(--grey-200);
}
.sched-non-owner-note svg { flex-shrink: 0; margin-top: .1em; color: var(--blue); }

/* Step 3: form fields */
.sched-form-group { margin-bottom: 1.1rem; position: relative; }
.sched-form-group label,
.sched-form-group > label {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--grey-400);
    margin-bottom: .35rem;
}
.sched-form-group input[type=text],
.sched-form-group input[type=tel],
.sched-form-group input[type=email],
.sched-form-group textarea {
    width: 100%;
    padding: .7rem .9rem;
    background: var(--grey-800);
    border: 1px solid var(--grey-600);
    color: var(--white);
    font-size: .97rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.sched-form-group input:focus,
.sched-form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(241,90,41,.15);
}
.sched-form-group textarea { resize: vertical; min-height: 80px; }
.sched-hint { font-size: .78rem; color: var(--grey-400); margin-top: .3rem; display: block; }
.sched-optional { font-size: .7rem; color: var(--grey-400); font-weight: 400; text-transform: none; letter-spacing: 0; }
.req { color: var(--accent); }

.sched-consent-label {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    margin-bottom: 1.25rem;
    cursor: pointer;
    font-size: .83rem;
    color: var(--grey-400);
    line-height: 1.5;
}
.sched-consent-label input { flex-shrink: 0; margin-top: .2rem; accent-color: var(--accent); }

/* Address row */
.sched-address-row { display: grid; grid-template-columns: 1fr .6fr .6fr; gap: .75rem; }
.sched-form-group--sm {}
.sched-name-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }

/* Autocomplete */
.sched-autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    z-index: 10;
    background: var(--grey-800);
    border: 1px solid var(--grey-600);
    border-top: none;
    max-height: 220px;
    overflow-y: auto;
}
.sched-ac-item {
    display: block;
    width: 100%;
    padding: .65rem .9rem;
    text-align: left;
    background: transparent;
    color: var(--grey-200);
    font-size: .9rem;
    cursor: pointer;
    border: none;
    border-bottom: 1px solid var(--grey-700);
    transition: background var(--transition);
}
.sched-ac-item:hover { background: var(--grey-700); color: var(--white); }

/* Area notice */
.sched-area-notice {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    margin-top: .5rem;
    padding: .65rem .85rem;
    font-size: .85rem;
    color: var(--white);
    background: rgba(91,181,255,.1);
    border-left: 3px solid var(--blue);
}
.sched-area-notice.is-outside { background: rgba(241,90,41,.1); border-left-color: var(--accent); }
.sched-area-notice svg { flex-shrink: 0; color: var(--blue); }
.sched-area-notice.is-outside svg { color: var(--accent); }

/* Step 4: chip selectors */
.sched-chip-group { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .4rem; }
.sched-chip input[type=radio] { position: absolute; opacity: 0; pointer-events: none; }
.sched-chip span {
    display: block;
    padding: .5rem 1rem;
    border: 1px solid var(--grey-600);
    background: var(--grey-800);
    font-size: .87rem;
    font-weight: 600;
    color: var(--grey-400);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.sched-chip:hover span { border-color: var(--grey-400); color: var(--white); }
.sched-chip input:checked + span {
    border-color: var(--accent);
    background: rgba(241,90,41,.1);
    color: var(--white);
}

/* Step 5: flexible toggle */
.sched-flexible-label {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1.25rem;
    cursor: pointer;
    font-size: .93rem;
    font-weight: 600;
    color: var(--grey-200);
}
.sched-flexible-label input { accent-color: var(--accent); transform: scale(1.2); }

/* Date/time blocks */
.sched-datetime-block { margin-bottom: 1.5rem; }
.sched-datetime-heading {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--accent);
    margin-bottom: .75rem;
}

/* Calendar */
.sched-cal { background: var(--grey-800); border: 1px solid var(--grey-700); }
.sched-cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .65rem .75rem;
    border-bottom: 1px solid var(--grey-700);
}
.sched-cal-prev,
.sched-cal-next {
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    background: transparent;
    border: 1px solid var(--grey-700);
    color: var(--grey-400);
    font-size: 1.2rem;
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition);
}
.sched-cal-prev:hover,
.sched-cal-next:hover { border-color: var(--white); color: var(--white); }
.sched-cal-title { font-size: .87rem; font-weight: 700; color: var(--white); }
.sched-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: var(--grey-700);
    padding: 1px;
}
.sched-cal-dow {
    background: var(--grey-800);
    text-align: center;
    font-size: .65rem;
    font-weight: 700;
    color: var(--grey-600);
    padding: .4rem 0;
    text-transform: uppercase;
}
.sched-cal-day {
    background: var(--grey-900);
    border: none;
    text-align: center;
    padding: .55rem 0;
    font-size: .85rem;
    color: var(--grey-600);
    cursor: default;
}
.sched-cal-day.is-open {
    background: var(--grey-800);
    color: var(--white);
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}
.sched-cal-day.is-open:hover { background: var(--grey-700); }
.sched-cal-day.is-selected {
    background: var(--accent) !important;
    color: var(--white) !important;
    font-weight: 700;
}
.sched-cal-loading,
.sched-cal-error { padding: 1rem; font-size: .87rem; color: var(--grey-400); text-align: center; }

/* Time slots */
.sched-slots { margin-top: .75rem; }
.sched-slots-heading {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--grey-400);
    margin-bottom: .5rem;
}
.sched-slots-grid { display: flex; flex-wrap: wrap; gap: .4rem; }
.sched-slot {
    padding: .45rem .9rem;
    border: 1px solid var(--grey-600);
    background: var(--grey-800);
    color: var(--grey-200);
    font-size: .87rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.sched-slot:hover { border-color: var(--accent); color: var(--white); }
.sched-slot.is-selected { border-color: var(--accent); background: var(--accent); color: var(--white); }
.sched-slots-loading,
.sched-slots-error,
.sched-slots-none { font-size: .85rem; color: var(--grey-400); padding: .5rem 0; }

/* Success pane */
.sched-pane--success { text-align: center; padding: 2.5rem 1.5rem; }
.sched-success-icon { margin-bottom: 1rem; }
.sched-success-title { font-size: 1.5rem; font-weight: 900; color: var(--white); margin-bottom: .75rem; }
.sched-success-body { font-size: 1rem; color: var(--grey-200); line-height: 1.6; margin-bottom: .75rem; }
.sched-success-note { font-size: .83rem; color: var(--grey-400); margin-bottom: 1.75rem; }
.sched-success-close { min-width: 160px; }

/* Footer nav */
.scheduler-footer {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--grey-700);
    flex-shrink: 0;
}
.btn-sched-back {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .7rem 1.1rem;
    border: 1px solid var(--grey-600);
    background: transparent;
    color: var(--grey-400);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition);
}
.btn-sched-back:hover { border-color: var(--white); color: var(--white); }
.btn-sched-next {
    margin-left: auto;
    padding: .75rem 1.75rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition);
}
.btn-sched-next:hover { background: var(--accent-dark); }
.sched-submit { display: flex; align-items: center; gap: .5rem; margin-left: auto; }
.sched-submit-spinner { display: flex; align-items: center; }
.sched-error {
    width: 100%;
    margin-top: .25rem;
    padding: .6rem .85rem;
    background: rgba(241,90,41,.12);
    border-left: 3px solid var(--accent);
    font-size: .85rem;
    color: var(--white);
}

/* Spinner animation */
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin .8s linear infinite; display: block; }

/* ── Counter-offer confirm page ──────────────────────────────────────────── */
.confirm-slots { display: flex; flex-direction: column; gap: .75rem; margin-top: 1rem; }
.confirm-slot-card input[type=radio] { position: absolute; opacity: 0; pointer-events: none; }
.confirm-slot-inner {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    padding: 1.1rem 1.25rem;
    border: 2px solid var(--grey-700);
    background: var(--grey-800);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}
.confirm-slot-inner strong { font-size: 1rem; color: var(--white); }
.confirm-slot-inner span  { font-size: .9rem; color: var(--grey-400); }
.confirm-slot-card:hover .confirm-slot-inner { border-color: var(--grey-400); }
.confirm-slot-card input:checked + .confirm-slot-inner {
    border-color: var(--accent);
    background: rgba(241,90,41,.1);
}

/* ── Print ───────────────────────────────────────────────────────────────── */
@media print {
    .util-bar, .site-header, .nav-toggle, .site-footer,
    .hero-nav, .cta-buttons { display: none !important; }
    body { background: #fff; color: #000; }
}
