/* ================================================================
   A-Team Gutters — Design System
   Option E: A-Team Classic (Black / Silver / Red)
   ================================================================ */

/* ── Reset ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Design Tokens ── */
:root {
    /* Brand palette */
    --dark: #1A1A1A;
    --dark-surface: #222222;
    --surface: #F5F5F5;
    --bg: #FFFFFF;
    --border: #DDDDDD;
    --text: #111111;
    --muted: #777777;
    --silver: #9BAAB8;
    --silver-bright: #C8D4DE;

    /* Action red — CTA buttons and eyebrow text ONLY */
    --action: #B01C1C;
    --action-hover: #8F1515;
    --action-deep: #6B1010;

    /* Typography scale — fluid */
    --text-xs: clamp(0.6875rem, 0.65rem + 0.15vw, 0.8125rem);    /* 11-13px */
    --text-sm: clamp(0.8125rem, 0.78rem + 0.15vw, 0.9375rem);    /* 13-15px */
    --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);          /* 16-18px */
    --text-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem);       /* 18-22px */
    --text-xl: clamp(1.5rem, 1.3rem + 1vw, 2.25rem);              /* 24-36px */
    --text-2xl: clamp(2rem, 1.6rem + 2vw, 3.5rem);                /* 32-56px */
    --text-hero: clamp(3rem, 2rem + 5vw, 5.5rem);                  /* 48-88px */

    /* Spacing scale */
    --space-xs: clamp(0.5rem, 0.45rem + 0.2vw, 0.75rem);
    --space-sm: clamp(0.75rem, 0.65rem + 0.5vw, 1.25rem);
    --space-md: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    --space-lg: clamp(2.5rem, 2rem + 2.5vw, 4rem);
    --space-xl: clamp(4rem, 3rem + 5vw, 7rem);
    --space-2xl: clamp(5rem, 4rem + 5vw, 9rem);

    /* Layout */
    --content-width: 72rem;
    --content-narrow: 52rem;
    --gutter: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);

    /* Border radius — near-zero, intentional */
    --radius: 2px;

    /* Slope transitions — angled section boundaries evoking gutter pitch */
    --slope-height: clamp(3rem, 4vw, 6rem);
}

/* ── Base ── */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

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

a {
    color: inherit;
    text-decoration-skip-ink: auto;
}

/* ── Alpine cloak ── */
[x-cloak] {
    display: none !important;
}

/* ── Screen Reader Only ── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ── Skip Link ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 200;
    background: var(--action);
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: var(--radius);
    transition: top 0.15s ease;
}

.skip-link:focus {
    top: 1rem;
}

/* ── Focus States ── */
:focus-visible {
    outline: 2px solid var(--action);
    outline-offset: 2px;
}

/* ── Utility: Section Container ── */
.container {
    width: 100%;
    max-width: var(--content-width);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.container--narrow {
    max-width: var(--content-narrow);
}

/* ── Utility: Eyebrow ── */
.eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--action);
}

/* Dark sections get silver eyebrow */
.section--dark .eyebrow {
    color: var(--silver);
}

/* ── Utility: Section Heading ── */
.section-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
}

/* ── Button: Primary CTA ── */
.btn-primary {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--action);
    padding: 1rem 2.5rem;
    border: 2px solid var(--action);
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10%;
    width: 0;
    background: var(--action-deep);
    transform: skewX(-12deg);
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary:hover {
    border-color: var(--action-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(176, 28, 28, 0.25);
}

.btn-primary:hover::before {
    width: 125%;
}

.btn-primary:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(176, 28, 28, 0.3);
    transition: transform 0.08s ease, box-shadow 0.08s ease;
}

/* Larger variant for heroes */
.btn-primary--lg {
    font-size: clamp(0.9375rem, 0.88rem + 0.25vw, 1.0625rem);
    padding: 1.125rem 3.25rem;
}

/* ── Button: Ghost (secondary on dark) ── */
.btn-ghost {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--silver);
    background: transparent;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.btn-ghost:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

/* ── Section: Dark ── */
.section--dark {
    background: var(--dark);
    color: #F0F0F0;
}

/* ── Section: Surface Alt ── */
.section--surface {
    background: var(--surface);
}

/* ── Animations ── */
/* Slope-inspired entrance — elements arrive along the pitch of a gutter run */
@keyframes slopeIn {
    from {
        opacity: 0;
        transform: translate(-18px, -14px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* Horizontal channel reveal — content wipes in like water filling a gutter */
@keyframes flowReveal {
    from {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }
    to {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

/* ================================================================
   Navigation
   ================================================================ */

.nav {
    background: var(--dark);
    padding: 1rem var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-brand-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
}

/* Desktop nav links */
.nav-links-wrap {
    display: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links > li > a {
    font-size: var(--text-xs);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.nav-links > li > a:hover {
    color: #fff;
}

.nav-links > li > a.is-active {
    color: #fff;
    border-bottom-color: var(--silver);
}

/* Nav dropdown */
.nav-dropdown {
    position: relative;
}

/* Invisible bridge between trigger and dropdown — prevents
   mouseleave from firing in the 0.75rem gap */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -1rem;
    right: -1rem;
    height: 0.75rem;
    background: transparent;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: -1rem;
    background: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 0.5rem 0;
    min-width: 14rem;
    list-style: none;
    z-index: 110;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 0.625rem 1.25rem;
    font-size: var(--text-xs);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.15s, background 0.15s;
}

.nav-dropdown-menu li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

/* Nav right side */
.nav-right {
    display: none;
    align-items: center;
    gap: 1.25rem;
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--silver);
    text-decoration: none;
    letter-spacing: 0.04em;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    transition: color 0.2s, border-color 0.2s;
}

.nav-phone:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.nav-phone svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--action);
    padding: 0.625rem 1.375rem;
    border-radius: var(--radius);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-cta span {
    position: relative;
    z-index: 1;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10%;
    width: 0;
    background: var(--action-deep);
    transform: skewX(-12deg);
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-cta:hover::before {
    width: 125%;
}

.nav-cta:active {
    transform: translateY(2px) scale(0.96);
    transition: transform 0.08s ease;
}

/* Mobile toggle */
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 0.625rem;
    min-width: 44px;
    min-height: 44px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s, border-color 0.2s;
}

.nav-toggle:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.nav-toggle svg {
    display: block;
    width: 20px;
    height: 20px;
}

/* Mobile menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 var(--gutter) 1.5rem;
    z-index: 90;
}

/* ── Mobile menu: Actions (phone + CTA) at top ── */
.mobile-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-cta {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--action);
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    flex-shrink: 0;
}

.mobile-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--silver);
    text-decoration: none;
    letter-spacing: 0.04em;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    transition: color 0.2s, border-color 0.2s;
}

.mobile-phone:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.mobile-phone svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ── Mobile menu: Link groups ── */
.mobile-group-label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--silver);
    padding: 1.25rem 0 0.5rem;
}

.mobile-nav-link {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    padding: 0.875rem 0 0.875rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: #fff;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

/* Desktop breakpoint */
@media (min-width: 64rem) {
    .nav {
        padding: 1.25rem var(--gutter);
    }

    .nav-links-wrap {
        display: block;
    }

    .nav-right {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }
}


/* ================================================================
   Footer
   ================================================================ */

footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    max-width: var(--content-width);
    margin-inline: auto;
    padding: var(--space-xl) var(--gutter) var(--space-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.footer-brand img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: var(--text-sm);
    line-height: 1.6;
    max-width: 20rem;
}

.footer-contact h3,
.footer-nav h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-contact ul,
.footer-nav ul {
    list-style: none;
}

.footer-contact li,
.footer-nav li {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.footer-contact a,
.footer-nav a {
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover,
.footer-nav a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: var(--content-width);
    margin-inline: auto;
    padding: 1.5rem var(--gutter);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-bottom p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 48rem) {
    .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}


/* ================================================================
   Service Pages — Shared Components
   ================================================================ */

/* ── Page Hero (shorter than home hero) ── */
.page-hero {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding: var(--space-2xl) 0 var(--space-xl);
}

/* Noise texture */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero .eyebrow {
    color: var(--action);
    margin-bottom: var(--space-sm);
    opacity: 0;
    animation: slopeIn 0.6s ease-out 0.15s forwards;
}

.page-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-2xl);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #F0F0F0;
    line-height: 1;
    max-width: 42rem;
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: slopeIn 0.7s ease-out 0.3s forwards;
}

.page-hero-sub {
    font-size: var(--text-base);
    color: var(--silver);
    max-width: 38rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: flowReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    opacity: 0;
    animation: slopeIn 0.6s ease-out 0.6s forwards;
}

.page-hero-phone {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    font-weight: 700;
    color: #F0F0F0;
    text-decoration: none;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.page-hero-phone svg {
    width: 16px;
    height: 16px;
    color: var(--silver);
}

.page-hero-phone:hover {
    color: #fff;
}

/* Image placeholder for future hero images */
.page-hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.page-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.8) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        var(--dark) 100%
    );
}


/* ── Content Sections ── */
.sp-section {
    padding: var(--space-xl) 0;
}

.sp-section + .sp-section {
    border-top: 1px solid var(--border);
}

.sp-section h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-xl);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: var(--space-md);
}

.sp-section h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-lg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.sp-section p {
    font-size: var(--text-base);
    color: var(--muted);
    line-height: 1.65;
    max-width: 42rem;
}

.sp-section p + p {
    margin-top: 1rem;
}

.sp-section p + h3 {
    margin-top: var(--space-md);
}

/* ── Two Column: Prose + List ── */
.sp-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 48rem) {
    .sp-two-col {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

.sp-list {
    list-style: none;
}

.sp-list li {
    font-size: var(--text-sm);
    color: var(--muted);
    line-height: 1.6;
    padding: 0.75rem 0;
    padding-left: 1.25rem;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.sp-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--silver);
    transform: translateY(-50%) rotate(45deg);
}

.sp-list li:last-child {
    border-bottom: none;
}


/* ── Process Steps ── */
.sp-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    counter-reset: step;
}

.sp-step {
    counter-increment: step;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
}

.sp-step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--silver);
    line-height: 1;
    min-width: 2.5rem;
}

.sp-step h3 {
    margin-bottom: 0.375rem;
}

.sp-step p {
    font-size: var(--text-sm);
}

@media (min-width: 48rem) {
    .sp-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ── FAQ Accordion ── */
.sp-faq {
    list-style: none;
    border-top: 1px solid var(--border);
}

.sp-faq-item {
    border-bottom: 1px solid var(--border);
}

.sp-faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-lg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text);
    text-align: left;
    line-height: 1.2;
    transition: color 0.2s;
}

.sp-faq-q:hover {
    color: var(--muted);
}

.sp-faq-q svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--silver);
    transition: transform 0.25s ease;
}

.sp-faq-q[aria-expanded="true"] svg {
    transform: rotate(45deg);
}

.sp-faq-a {
    padding-bottom: 1.25rem;
}

.sp-faq-a p {
    font-size: var(--text-sm);
    color: var(--muted);
    line-height: 1.65;
}


/* ── Related Services ── */
.sp-related {
    padding: var(--space-xl) 0;
}

.sp-related h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-xl);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text);
    margin-bottom: var(--space-md);
}

.sp-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.sp-related-card {
    background: var(--bg);
    padding: var(--space-md);
    text-decoration: none;
    border-left: 3px solid var(--silver);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: border-color 0.2s, padding-left 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.sp-related-card:hover {
    border-left-color: var(--silver-bright);
    padding-left: calc(var(--space-md) + 0.5rem);
}

.sp-related-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text);
}

.sp-related-card p {
    font-size: var(--text-xs);
    color: var(--muted);
    line-height: 1.5;
    margin-top: 0.25rem;
}

.sp-related-card svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--silver);
    transition: transform 0.2s ease;
}

.sp-related-card:hover svg {
    transform: translateX(3px);
}

@media (min-width: 48rem) {
    .sp-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ── Service Page CTA ── */
.sp-cta {
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.sp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
    pointer-events: none;
}

.sp-cta .container {
    position: relative;
    z-index: 1;
}

.sp-cta p {
    font-size: var(--text-base);
    color: var(--silver);
    line-height: 1.65;
    margin-bottom: var(--space-lg);
    max-width: 38rem;
}

.sp-cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

.sp-cta-phone {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    font-weight: 700;
    color: #F0F0F0;
    text-decoration: none;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.sp-cta-phone svg {
    width: 16px;
    height: 16px;
    color: var(--silver);
}

.sp-cta-phone:hover {
    color: #fff;
}


/* ── Breadcrumbs ── */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: slopeIn 0.5s ease-out 0.05s forwards;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs .breadcrumb-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.6em;
}

.breadcrumbs .breadcrumb-current {
    color: rgba(255, 255, 255, 0.55);
}


/* ── PNW Climate Strip ── */
.pnw-strip {
    background: var(--dark-surface);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: var(--space-lg) var(--gutter);
}

.pnw-strip-inner {
    max-width: var(--content-width);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.pnw-item {
    padding-left: 1rem;
    border-left: 2px solid var(--silver);
}

.pnw-item h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #F0F0F0;
    margin-bottom: 0.25rem;
}

.pnw-item p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

@media (min-width: 40rem) {
    .pnw-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 64rem) {
    .pnw-strip-inner {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* ── Pricing Callout ── */
.sp-pricing {
    background: var(--dark);
    padding: var(--space-xl) var(--gutter);
    position: relative;
    overflow: hidden;
}

.sp-pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
    pointer-events: none;
}

.sp-pricing-inner {
    position: relative;
    z-index: 1;
    max-width: var(--content-width);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    align-items: center;
}

.sp-pricing-range {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: #F0F0F0;
    line-height: 1;
}

.sp-pricing-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--silver);
    margin-bottom: 0.5rem;
}

.sp-pricing-note {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    max-width: 28rem;
}

.sp-pricing-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

@media (min-width: 48rem) {
    .sp-pricing-inner {
        grid-template-columns: 1fr auto;
    }
}


/* ── Mid-Page Inline CTA ── */
.sp-mid-cta {
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.sp-mid-cta p {
    font-size: var(--text-sm);
    color: var(--muted);
    max-width: none;
}

.sp-mid-cta a {
    flex-shrink: 0;
}


/* ── Related Services: Dark Variant ── */
.sp-related--dark {
    background: var(--dark);
    padding: var(--space-xl) 0;
}

.sp-related--dark h2 {
    color: #F0F0F0;
}

.sp-related--dark .sp-related-grid {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.06);
}

.sp-related--dark .sp-related-card {
    background: var(--dark-surface);
    border-left-color: rgba(255, 255, 255, 0.15);
}

.sp-related--dark .sp-related-card:hover {
    border-left-color: var(--silver);
}

.sp-related--dark .sp-related-card h3 {
    color: #F0F0F0;
}

.sp-related--dark .sp-related-card p {
    color: rgba(255, 255, 255, 0.4);
}

.sp-related--dark .sp-related-card svg {
    color: rgba(255, 255, 255, 0.25);
}

.sp-related--dark .sp-related-card:hover svg {
    color: var(--silver);
}
