/* =========================================================
   Sunny Cleans — Service Pages (Alt Layout v2)
   Scope: /assets/css/pages/service.css only
   Strategy: use global layout primitives (split/stack/grid-2)
   ========================================================= */

:root {
    --svc-copy-max: 78ch;
}

/* ---------- Service-only band rhythm (consistent) ---------- */
/* More consistent section rhythm (less tall between sections) */
.page-service .band {
    padding: clamp(26px, 3.2vw, 54px) 0;
}

/* Let the hero panel sit more comfortably in the band */
.page-service .service-hero {
    padding: clamp(28px, 3.2vw, 56px) 0;
}

/* ---------- Hero: full, correct width ---------- */
.page-service .service-hero-card {
    max-width: var(--max);
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.page-service .service-hero-card h1 {
    font-size: clamp(2.1rem, 3.2vw, 3.1rem);
    line-height: 1.08;
    font-weight: 950;
}

.page-service .service-hero-card .lead {
    max-width: var(--svc-copy-max);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Make hero card feel fuller (match header/nav width) */
.page-service .service-hero-card {
    width: 100%;
}

/* Give hero content more vertical breathing room */
.page-service .service-hero-card.card {
    padding: clamp(28px, 3vw, 44px);
}

/* Breadcrumbs tight under hero, aligned to hero width */
.page-service .service-hero .crumbs {
    max-width: var(--max);
    margin: 14px auto 0;
    font-size: 0.86rem;
    color: rgba(11, 18, 32, .62);
}

.page-service .crumbs ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.page-service .crumbs li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.page-service .crumbs li+li::before {
    content: "›";
    color: rgba(11, 18, 32, .32);
}

.page-service .crumbs a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(11, 18, 32, .18);
}

.page-service .crumbs a:hover {
    border-bottom-color: rgba(11, 18, 32, .35);
}

/* ---------- Split sections: tighten copy width (match home feel) ---------- */
.page-service .service-copy {
    max-width: 560px;
    /* same vibe as global split-copy rule */
}

.page-service .service-copy p {
    max-width: var(--svc-copy-max);
    line-height: 1.75;
}

/* Balance split: soften media dominance on service pages */
.page-service .split-media {
    min-height: 260px;
    /* smaller than home default */
    box-shadow: var(--shadow-sm);
    /* lighter */
    border-radius: 26px;
}

/* Give split sections a touch more “panel cohesion” */
.page-service .split {
    gap: 22px;
}

/* Generator emits <section class="card" style="margin-top:.."> inside copy.
   We want those to read as plain content INSIDE the split, not individual cards. */
.page-service .service-copy .card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    margin-top: 0 !important;
}

.page-service .service-copy h2 {
    margin: 0 0 10px 0;
    font-size: clamp(1.5rem, 2vw, 1.9rem);
    font-weight: 950;
    letter-spacing: -0.02em;
}

.page-service .service-copy ul,
.page-service .service-copy ol {
    margin: 0;
    padding-left: 1.15rem;
    line-height: 1.7;
}

.page-service .service-copy li+li {
    margin-top: 6px;
}

/* ================================
   Overview: BIG stagger (right starts below left) — CLEAN
   ================================ */

.page-service .service-overview-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    gap: 18px;
    align-items: start;
}

@media (min-width: 860px) {
    .page-service .service-overview-grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 32px;
        row-gap: 18px;
    }

    .page-service .service-copy-right {
        padding-top: clamp(10px, 2vw, 28px);
    }
}

@media (min-width: 860px) {
    .page-service .service-steps .split {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

.page-service .service-steps .service-copy h2 {
    margin-top: 0;
}

/* Make list rhythm tighter so the block sits better */
.page-service .service-steps ol {
    margin-top: 10px;
    padding-left: 1.2rem;
}

.page-service .service-steps li+li {
    margin-top: 8px;
}

/* ---------- Details zone: keep as calm panels ---------- */
.page-service .service-details-stack {
    max-width: var(--max);
    margin: 0 auto;
    gap: 16px;
    /* slightly more breathing room than default */
}

.page-service .service-panel {
    box-shadow: var(--shadow-sm);
}

.page-service .service-panel h2 {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 950;
}

/* Tighten bottom stack a little */
.page-service .service-details-stack {
    gap: 14px;
}

/* Accordion (FAQs) */
.page-service .service-panel details {
    border-top: 1px solid rgba(11, 18, 32, .10);
    padding-top: 10px;
    margin-top: 10px;
}

.page-service .service-panel summary {
    cursor: pointer;
    font-weight: 900;
}

.page-service .service-panel .acc-a {
    margin-top: 8px;
    color: rgba(11, 18, 32, .78);
    line-height: 1.65;
}

/* ---------- Mobile tweaks ---------- */
@media (max-width: 720px) {
    .page-service .service-copy {
        max-width: 100%;
    }
}

.page-service .service-note {
    margin: 12px 0 0;
    max-width: 68ch;
    font-style: italic;
    color: rgba(11, 18, 32, .78);
}