/* ==========================================================================
   SERVICE LIST PAGES — shared styles for:
     · /service                 (services-all.php)
     · /<category>              (service-category.php)
     · /<category>/<sub>        (service-subcategory.php)

   Designed to read as content-rich landing pages even when a category
   has only 2–3 sub-areas. Cream gradient palette, masthead grammar,
   cubic-bezier(0.32, 0.72, 0, 1) easing.
   ========================================================================== */


/* ──────────────────────────────────────────────────────────────────────────
   §A  HERO — shared by all three pages.
       Layout: 1.4fr text column + 1fr icon column on desktop.
   ──────────────────────────────────────────────────────────────────────── */
.zc-svl-hero,
.zc-svc-cat-hero,
.zc-svc-sub-hero {
    position: relative;
    padding: clamp(40px, 4.4vw, 72px) var(--zc-pad-x) clamp(34px, 3.4vw, 56px);
    background:
        radial-gradient(ellipse at 92% 0%, rgba(207, 138, 63, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 8% 100%, rgba(207, 138, 63, 0.06) 0%, transparent 45%),
        linear-gradient(180deg, var(--zc-snow, #fdfbf6) 0%, var(--zc-off-white) 100%);
    border-bottom: 1px solid var(--zc-linen);
    overflow: clip;
}
@media (max-width: 991px) {
    .zc-svl-hero, .zc-svc-cat-hero, .zc-svc-sub-hero {
        padding-left: var(--zc-pad-x-mb);
        padding-right: var(--zc-pad-x-mb);
    }
}

/* Crumb */
.zc-svl-hero__crumb,
.zc-svc-cat-hero__crumb,
.zc-svc-sub-hero__crumb {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--zc-warm-mid);
    margin-bottom: 22px;
}
.zc-svl-hero__crumb a,
.zc-svc-cat-hero__crumb a,
.zc-svc-sub-hero__crumb a {
    color: var(--zc-warm-dk);
    text-decoration: none;
    transition: color 0.3s ease;
}
.zc-svl-hero__crumb a:hover,
.zc-svc-cat-hero__crumb a:hover,
.zc-svc-sub-hero__crumb a:hover { color: var(--zc-amber-dk); }
.zc-svl-hero__crumb span,
.zc-svc-cat-hero__crumb span,
.zc-svc-sub-hero__crumb span { margin: 0 9px; color: var(--zc-amber-a45); }
.zc-svl-hero__crumb-current,
.zc-svc-cat-hero__crumb-current,
.zc-svc-sub-hero__crumb-current { color: var(--zc-amber-dk) !important; margin: 0 !important; }

/* Two-column hero layout (text on left, icon stage on right). */
.zc-svc-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: clamp(28px, 3vw, 56px);
    align-items: center;
}
@media (max-width: 880px) {
    .zc-svc-hero__layout { grid-template-columns: 1fr; }
}
.zc-svc-hero__textcol { min-width: 0; }
.zc-svc-hero__iconcol {
    position: relative;
    display: grid; place-items: center;
    min-height: 240px;
    pointer-events: none;
}
@media (max-width: 880px) { .zc-svc-hero__iconcol { display: none; } }

/* Icon stage rings */
.zc-svc-hero__icon-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.zc-svc-hero__icon-ring--1 {
    width: 280px; height: 280px;
    border: 1px dashed var(--zc-amber-a35);
    animation: zc-svc-spin 80s linear infinite;
}
.zc-svc-hero__icon-ring--2 {
    width: 200px; height: 200px;
    border: 1px solid var(--zc-amber-a25);
    animation: zc-svc-spin 110s linear infinite reverse;
}
@keyframes zc-svc-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.zc-svc-hero__icon-disc {
    position: relative;
    width: 140px; height: 140px;
    display: inline-grid; place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--zc-amber-lt) 0%, var(--zc-amber) 55%, var(--zc-amber-dk) 100%);
    color: var(--zc-white);
    font-size: 56px;
    border: 4px solid var(--zc-snow, #fdfbf6);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.30) inset,
        0 26px 50px -16px rgba(207, 138, 63, 0.55),
        0 8px 18px rgba(0, 0, 0, 0.16);
}
.zc-svc-hero__icon-img {
    width: 64%;
    height: 64%;
    object-fit: contain;
    filter: brightness(0) invert(1);  /* render any colour icon as white on the amber disc */
}

/* === MASTHEAD ROW (shared) ============================================= */
.zc-svl-hero__masthead,
.zc-svc-cat-hero__masthead,
.zc-svc-sub-hero__masthead {
    display: grid;
    grid-template-columns: auto auto auto 1fr auto;
    align-items: center;
    gap: clamp(10px, 1.2vw, 18px);
    margin-bottom: 14px;
}
.zc-svl-hero__masthead-num,
.zc-svc-cat-hero__masthead-num,
.zc-svc-sub-hero__masthead-num {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px;
    color: var(--zc-amber-dk);
    white-space: nowrap;
}
.zc-svl-hero__masthead-rule,
.zc-svc-cat-hero__masthead-rule,
.zc-svc-sub-hero__masthead-rule { height: 1px; }
.zc-svl-hero__masthead-rule--l,
.zc-svc-cat-hero__masthead-rule--l,
.zc-svc-sub-hero__masthead-rule--l {
    width: clamp(20px, 3vw, 44px);
    background: linear-gradient(90deg, var(--zc-amber-a45) 0%, var(--zc-amber-dk) 100%);
}
.zc-svl-hero__masthead-rule--r,
.zc-svc-cat-hero__masthead-rule--r,
.zc-svc-sub-hero__masthead-rule--r {
    background: linear-gradient(90deg, var(--zc-amber-dk) 0%, var(--zc-amber-a25) 70%, var(--zc-linen) 100%);
}
.zc-svl-hero__eyebrow,
.zc-svc-cat-hero__eyebrow,
.zc-svc-sub-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--zc-amber-dk);
    white-space: nowrap;
}
.zc-svl-hero__eyebrow-dot,
.zc-svc-cat-hero__eyebrow-dot,
.zc-svc-sub-hero__eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--zc-amber-lt), var(--zc-amber-dk));
    box-shadow: 0 0 0 2px rgba(207, 138, 63, 0.18);
}
.zc-svl-hero__masthead-count,
.zc-svc-cat-hero__masthead-count,
.zc-svc-sub-hero__masthead-count {
    display: inline-flex; align-items: baseline; gap: 6px;
    font-family: 'Courier New', ui-monospace, monospace;
    white-space: nowrap;
}
.zc-svl-hero__masthead-count-num,
.zc-svc-cat-hero__masthead-count-num,
.zc-svc-sub-hero__masthead-count-num {
    font-size: 16px; font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--zc-amber-dk);
}
.zc-svl-hero__masthead-count-label,
.zc-svc-cat-hero__masthead-count-label,
.zc-svc-sub-hero__masthead-count-label {
    font-size: 10px; font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--zc-warm-dk);
    opacity: 0.85;
}
@media (max-width: 640px) {
    .zc-svl-hero__masthead,
    .zc-svc-cat-hero__masthead,
    .zc-svc-sub-hero__masthead {
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        row-gap: 8px;
    }
    .zc-svl-hero__masthead-num,
    .zc-svc-cat-hero__masthead-num,
    .zc-svc-sub-hero__masthead-num { grid-row: 1; grid-column: 1; }
    .zc-svl-hero__masthead-rule--l,
    .zc-svc-cat-hero__masthead-rule--l,
    .zc-svc-sub-hero__masthead-rule--l {
        grid-row: 1; grid-column: 2; width: auto;
        background: linear-gradient(90deg, var(--zc-amber-a45) 0%, var(--zc-amber-a25) 50%, transparent 100%);
    }
    .zc-svl-hero__masthead-count,
    .zc-svc-cat-hero__masthead-count,
    .zc-svc-sub-hero__masthead-count { grid-row: 1; grid-column: 3; }
    .zc-svl-hero__eyebrow,
    .zc-svc-cat-hero__eyebrow,
    .zc-svc-sub-hero__eyebrow { grid-row: 2; grid-column: 1 / -1; justify-content: flex-start; }
    .zc-svl-hero__masthead-rule--r,
    .zc-svc-cat-hero__masthead-rule--r,
    .zc-svc-sub-hero__masthead-rule--r { display: none; }
}

.zc-svl-hero__title,
.zc-svc-cat-hero__title,
.zc-svc-sub-hero__title {
    margin: 0 0 14px;
    font-family: var(--zc-f-display);
    font-size: clamp(28px, 2.4vw + 14px, 48px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -1px;
    color: var(--zc-charcoal);
    text-wrap: balance;
}
.zc-svl-hero__title-accent,
.zc-svc-cat-hero__title-accent,
.zc-svc-sub-hero__title-accent {
    font-weight: 500;
    background: linear-gradient(135deg, var(--zc-amber-dk), var(--zc-amber), var(--zc-amber-lt));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.zc-svl-hero__lead,
.zc-svc-cat-hero__lead,
.zc-svc-sub-hero__lead {
    margin: 0 0 20px;
    max-width: 60ch;
    font-family: var(--zc-f-body);
    font-size: clamp(14px, 0.3vw + 12px, 16px);
    line-height: 1.7;
    color: var(--zc-warm-dk);
}

/* Trust-chip row beneath the lead copy */
.zc-svc-hero__chips {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.zc-svc-hero__chip {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 14px;
    background: var(--zc-white);
    border: 1px solid var(--zc-amber-a25);
    border-radius: 999px;
    font-family: var(--zc-f-heading);
    font-size: 11.5px; font-weight: 600;
    color: var(--zc-warm-dk);
    letter-spacing: 0.2px;
}
.zc-svc-hero__chip i { font-size: 12px; color: var(--zc-amber-dk); }


/* ──────────────────────────────────────────────────────────────────────────
   §B  SHARED SECTION HEAD — used in every content section
   ──────────────────────────────────────────────────────────────────────── */
.zc-svc-section-head {
    margin-bottom: clamp(20px, 2.2vw, 32px);
}
.zc-svc-section-head__num {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 10.5px; font-weight: 700;
    letter-spacing: 2px;
    color: var(--zc-amber-dk);
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}
.zc-svc-section-head__rule {
    display: inline-block;
    width: clamp(20px, 3vw, 44px);
    height: 1px;
    background: linear-gradient(90deg, var(--zc-amber-a45), var(--zc-amber-dk));
    vertical-align: middle;
    margin-right: 10px;
}
.zc-svc-section-head__eyebrow {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 10.5px; font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--zc-amber-dk);
    vertical-align: middle;
}
.zc-svc-section-head__title {
    margin: 14px 0 0;
    font-family: var(--zc-f-display);
    font-size: clamp(22px, 1.6vw + 12px, 34px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.6px;
    color: var(--zc-charcoal);
    text-wrap: balance;
    max-width: 24ch;
}
.zc-svc-section-head__title span {
    font-weight: 500;
    background: linear-gradient(135deg, var(--zc-amber-dk), var(--zc-amber), var(--zc-amber-lt));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}


/* ──────────────────────────────────────────────────────────────────────────
   §C  ALL-SERVICES INDEX — services-all.php (.zc-svl-*)
   ──────────────────────────────────────────────────────────────────────── */

/* Quick-jump pill bar */
.zc-svl-jump {
    display: flex; align-items: center; gap: 14px;
    padding: 12px var(--zc-pad-x);
    background: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid var(--zc-linen);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    overflow-x: auto;
    scrollbar-width: none;
}
.zc-svl-jump::-webkit-scrollbar { display: none; }
@media (max-width: 991px) { .zc-svl-jump { padding: 10px var(--zc-pad-x-mb); } }
.zc-svl-jump-label {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 10px; font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--zc-amber-dk);
    white-space: nowrap;
    flex-shrink: 0;
}
.zc-svl-jump-pills { display: inline-flex; gap: 6px; flex-wrap: nowrap; }
.zc-svl-jump-pill {
    display: inline-flex; align-items: center;
    padding: 6px 14px;
    border: 1px solid var(--zc-amber-a25);
    border-radius: 999px;
    font-family: var(--zc-f-heading);
    font-size: 11.5px; font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--zc-warm-dk);
    text-decoration: none;
    white-space: nowrap;
    background: var(--zc-white);
    transition: all 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.zc-svl-jump-pill:hover {
    background: linear-gradient(135deg, var(--zc-amber), var(--zc-amber-dk));
    border-color: transparent;
    color: var(--zc-white);
    transform: translateY(-1px);
}

/* List container */
.zc-svl {
    padding: clamp(40px, 4.4vw, 64px) var(--zc-pad-x) clamp(20px, 2vw, 36px);
    background: var(--zc-off-white);
}
@media (max-width: 991px) { .zc-svl { padding-left: var(--zc-pad-x-mb); padding-right: var(--zc-pad-x-mb); } }

.zc-svl-cat {
    padding: clamp(32px, 3.4vw, 52px) 0;
    border-top: 1px solid var(--zc-linen);
    scroll-margin-top: 80px;
}
.zc-svl-cat:first-child { border-top: 0; padding-top: 0; }

.zc-svl-cat__head { margin-bottom: clamp(22px, 2.2vw, 30px); }
.zc-svl-cat__head-meta {
    display: inline-flex; align-items: center; gap: 12px;
    margin-bottom: 10px;
}
.zc-svl-cat__num {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 10.5px; font-weight: 700;
    letter-spacing: 1.8px;
    color: var(--zc-amber-dk);
}
.zc-svl-cat__rule {
    width: 26px; height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--zc-amber-lt), var(--zc-amber-dk));
}
.zc-svl-cat__count {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 10px; font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--zc-warm-dk);
    opacity: 0.85;
}
/* Heading row: icon · title · view-all link */
.zc-svl-cat__head-row {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 14px;
}
.zc-svl-cat__icon {
    width: 52px; height: 52px;
    display: inline-grid; place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--zc-amber-lt), var(--zc-amber-dk));
    color: var(--zc-white);
    border: 3px solid var(--zc-white);
    box-shadow: 0 12px 22px -8px var(--zc-amber-a45);
    font-size: 22px;
    flex-shrink: 0;
}
.zc-svl-cat__icon img {
    width: 60%; height: 60%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.zc-svl-cat__title {
    margin: 0;
    flex: 1;
    font-family: var(--zc-f-display);
    font-size: clamp(22px, 1.6vw + 12px, 34px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.6px;
    color: var(--zc-charcoal);
}
.zc-svl-cat__view {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--zc-f-heading);
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--zc-amber-dk);
    text-decoration: none;
    transition: gap 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.zc-svl-cat__view:hover { gap: 12px; color: var(--zc-amber-dk); }
.zc-svl-cat__view i { font-size: 12px; }

/* Subcategory groups in the /services index — auto-FILL so each group
   stays at its natural width whether the category has 2 sub-areas or 6. */
.zc-svl-cat__subs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: clamp(20px, 2vw, 32px);
    justify-content: start;
}
.zc-svl-sub__head {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 10px;
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px dashed var(--zc-amber-a35);
}
.zc-svl-sub__title { margin: 0; font-family: var(--zc-f-display); font-size: 16px; font-weight: 500; letter-spacing: -0.2px; color: var(--zc-charcoal); }
.zc-svl-sub__title a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
.zc-svl-sub__title a:hover { color: var(--zc-amber-dk); }
.zc-svl-sub__count {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 9.5px; font-weight: 700;
    letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--zc-amber-dk);
    opacity: 0.85;
}
.zc-svl-sub__svcs { list-style: none; margin: 0; padding: 0; }
.zc-svl-svc {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center; gap: 10px;
    padding: 9px 4px;
    border-bottom: 1px solid var(--zc-linen);
    text-decoration: none;
    color: inherit;
    transition: padding-left 0.4s cubic-bezier(0.32, 0.72, 0, 1), background 0.3s ease;
}
.zc-svl-sub__svcs li:last-child .zc-svl-svc { border-bottom: 0; }
.zc-svl-svc:hover {
    padding-left: 10px;
    background: linear-gradient(90deg, var(--zc-amber-a08) 0%, transparent 75%);
}
.zc-svl-svc__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--zc-amber-a45); transition: background 0.3s ease; }
.zc-svl-svc:hover .zc-svl-svc__dot { background: linear-gradient(135deg, var(--zc-amber-lt), var(--zc-amber-dk)); }
.zc-svl-svc__title { font-family: var(--zc-f-body); font-size: 13.5px; color: var(--zc-charcoal); line-height: 1.4; transition: color 0.3s ease; }
.zc-svl-svc:hover .zc-svl-svc__title { color: var(--zc-amber-dk); font-weight: 500; }
.zc-svl-svc__arrow { font-size: 12px; color: var(--zc-amber-dk); opacity: 0; transform: translateX(-6px); transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.32, 0.72, 0, 1); }
.zc-svl-svc:hover .zc-svl-svc__arrow { opacity: 1; transform: translateX(0); }

.zc-svl-empty { padding: 60px 20px; text-align: center; color: var(--zc-warm-mid); font-family: var(--zc-f-body); }
.zc-svl-empty i { font-size: 36px; color: var(--zc-amber-a45); margin-bottom: 12px; display: block; }


/* ──────────────────────────────────────────────────────────────────────────
   §D  CATEGORY LANDING — service-category.php (.zc-svc-cat-*)
   ──────────────────────────────────────────────────────────────────────── */
.zc-svc-cat {
    padding: clamp(40px, 4.2vw, 70px) var(--zc-pad-x);
    background: var(--zc-off-white);
}
@media (max-width: 991px) { .zc-svc-cat { padding-left: var(--zc-pad-x-mb); padding-right: var(--zc-pad-x-mb); } }

/* Sub-area tiles — icon badge + name + teaser list + service count.
   auto-FILL so tiles stay at their natural width even when there are
   only 2 or 3 of them, rather than stretching to fill the row. */
.zc-svc-cat__subs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: clamp(18px, 2vw, 28px);
    justify-content: start;
}
.zc-svc-cat__sub-tile {
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
    background: var(--zc-white);
    border: 1px solid var(--zc-linen);
    border-radius: 6px;
    padding: clamp(20px, 2vw, 28px);
    transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1),
                border-color 0.4s ease, box-shadow 0.4s ease;
}
.zc-svc-cat__sub-tile:hover {
    transform: translateY(-4px);
    border-color: var(--zc-amber-a45);
    box-shadow:
        0 22px 44px -22px rgba(46, 75, 113, 0.28),
        0 12px 26px -14px rgba(207, 138, 63, 0.28);
}
.zc-svc-cat__sub-tile-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 14px;
}
.zc-svc-cat__sub-tile-icon {
    width: 52px; height: 52px;
    display: inline-grid; place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--zc-amber-lt), var(--zc-amber-dk));
    color: var(--zc-white);
    border: 3px solid var(--zc-white);
    box-shadow: 0 10px 20px -8px var(--zc-amber-a45);
    font-size: 22px;
    flex-shrink: 0;
    transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}
.zc-svc-cat__sub-tile-icon img { width: 60%; height: 60%; object-fit: contain; filter: brightness(0) invert(1); }
.zc-svc-cat__sub-tile:hover .zc-svc-cat__sub-tile-icon { transform: scale(1.06) rotate(-6deg); }
.zc-svc-cat__sub-tile-num {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 10px; font-weight: 700;
    letter-spacing: 1.6px;
    color: var(--zc-amber-dk);
    opacity: 0.8;
}
.zc-svc-cat__sub-tile-title {
    margin: 0 0 12px;
    font-family: var(--zc-f-display);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: -0.3px;
    color: var(--zc-charcoal);
    transition: color 0.3s ease;
}
.zc-svc-cat__sub-tile:hover .zc-svc-cat__sub-tile-title { color: var(--zc-amber-dk); }
.zc-svc-cat__sub-tile-list {
    list-style: none; margin: 0 0 14px; padding: 0;
    display: flex; flex-direction: column; gap: 6px;
}
.zc-svc-cat__sub-tile-list li {
    display: flex; align-items: baseline; gap: 8px;
    font-family: var(--zc-f-body);
    font-size: 12.5px;
    line-height: 1.45;
    color: var(--zc-warm-dk);
}
.zc-svc-cat__sub-tile-bullet {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--zc-amber-dk);
    flex-shrink: 0;
    transform: translateY(2px);
}
.zc-svc-cat__sub-tile-bullet--soft { background: var(--zc-amber-a45); }
.zc-svc-cat__sub-tile-more-li { color: var(--zc-amber-dk); font-weight: 500; }
.zc-svc-cat__sub-tile-foot {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--zc-linen);
}
.zc-svc-cat__sub-tile-count {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 10px; font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--zc-warm-dk);
}
.zc-svc-cat__sub-tile-arrow {
    display: inline-grid; place-items: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--zc-amber-a45);
    color: var(--zc-amber-dk);
    font-size: 12px;
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1),
                background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.zc-svc-cat__sub-tile:hover .zc-svc-cat__sub-tile-arrow {
    background: linear-gradient(135deg, var(--zc-amber), var(--zc-amber-dk));
    color: var(--zc-white);
    border-color: transparent;
    transform: translate(2px, -2px);
}


/* ──────────────────────────────────────────────────────────────────────────
   §E  SHARED SECTIONS — approach steps, featured services, team, FAQ
   ──────────────────────────────────────────────────────────────────────── */

/* "How we approach this" four-step timeline. */
.zc-svc-approach {
    padding: clamp(40px, 4.2vw, 70px) var(--zc-pad-x);
    background: var(--zc-pearl, #fdf8ee);
    border-top: 1px solid var(--zc-linen);
    border-bottom: 1px solid var(--zc-linen);
}
@media (max-width: 991px) { .zc-svc-approach { padding-left: var(--zc-pad-x-mb); padding-right: var(--zc-pad-x-mb); } }
.zc-svc-approach__steps {
    list-style: none; margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(20px, 2.4vw, 32px);
}
.zc-svc-approach__step {
    position: relative;
    padding: 22px 22px 24px;
    background: var(--zc-white);
    border: 1px solid var(--zc-linen);
    border-radius: 6px;
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1),
                border-color 0.3s ease, box-shadow 0.3s ease;
}
.zc-svc-approach__step:hover {
    transform: translateY(-3px);
    border-color: var(--zc-amber-a45);
    box-shadow: 0 18px 36px -20px rgba(207, 138, 63, 0.30);
}
.zc-svc-approach__step-num {
    display: inline-block;
    font-family: var(--zc-f-display);
    font-size: 38px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -1.4px;
    background: linear-gradient(135deg, var(--zc-amber-dk), var(--zc-amber-lt));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    margin-bottom: 8px;
}
.zc-svc-approach__step-title {
    margin: 0 0 8px;
    font-family: var(--zc-f-display);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.25px;
    color: var(--zc-charcoal);
}
.zc-svc-approach__step-body {
    margin: 0;
    font-family: var(--zc-f-body);
    font-size: 13px;
    line-height: 1.6;
    color: var(--zc-warm-dk);
}

/* Featured services — small card grid (photo + tag + title). */
.zc-svc-feat {
    padding: clamp(40px, 4.2vw, 70px) var(--zc-pad-x);
    background: var(--zc-off-white);
}
@media (max-width: 991px) { .zc-svc-feat { padding-left: var(--zc-pad-x-mb); padding-right: var(--zc-pad-x-mb); } }
.zc-svc-feat__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
    gap: clamp(18px, 2vw, 28px);
    justify-content: start;
}
.zc-svc-feat__card {
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
    background: var(--zc-white);
    border: 1px solid var(--zc-linen);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1),
                border-color 0.3s ease, box-shadow 0.3s ease;
}
.zc-svc-feat__card:hover {
    transform: translateY(-3px);
    border-color: var(--zc-amber-a45);
    box-shadow: 0 22px 44px -22px rgba(46, 75, 113, 0.28);
}
.zc-svc-feat__card-photo {
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--zc-linen);
    position: relative;
}
.zc-svc-feat__card-photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.9s cubic-bezier(0.32, 0.72, 0, 1);
}
.zc-svc-feat__card:hover .zc-svc-feat__card-photo img { transform: scale(1.06); }
.zc-svc-feat__card-fallback {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    color: var(--zc-amber-dk);
    font-size: 32px;
    background: linear-gradient(135deg, var(--zc-amber-a08), var(--zc-amber-a25));
    opacity: 0.6;
}
.zc-svc-feat__card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.zc-svc-feat__card-tag {
    display: inline-block;
    align-self: flex-start;
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 9.5px; font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--zc-amber-dk);
    margin-bottom: 6px;
}
.zc-svc-feat__card-title {
    margin: 0 0 10px;
    font-family: var(--zc-f-display);
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.2px;
    color: var(--zc-charcoal);
    transition: color 0.3s ease;
}
.zc-svc-feat__card:hover .zc-svc-feat__card-title { color: var(--zc-amber-dk); }
.zc-svc-feat__card-more {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: auto;
    padding-top: 8px;
    font-family: var(--zc-f-heading);
    font-size: 10px; font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--zc-warm-dk);
    transition: color 0.3s ease, gap 0.3s ease;
}
.zc-svc-feat__card-more i { font-size: 12px; color: var(--zc-amber-dk); }
.zc-svc-feat__card:hover .zc-svc-feat__card-more { color: var(--zc-amber-dk); gap: 10px; }

/* Specialists row */
.zc-svc-team {
    padding: clamp(40px, 4.2vw, 70px) var(--zc-pad-x);
    background: var(--zc-pearl, #fdf8ee);
    border-top: 1px solid var(--zc-linen);
}
@media (max-width: 991px) { .zc-svc-team { padding-left: var(--zc-pad-x-mb); padding-right: var(--zc-pad-x-mb); } }
.zc-svc-team__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(16px, 2vw, 26px);
}
.zc-svc-team__card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: center;
    padding: 18px 20px;
    background: var(--zc-white);
    border: 1px solid var(--zc-linen);
    border-radius: 6px;
    text-decoration: none; color: inherit;
    transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1),
                border-color 0.3s ease, box-shadow 0.3s ease;
}
.zc-svc-team__card:hover {
    transform: translateY(-3px);
    border-color: var(--zc-amber-a45);
    box-shadow: 0 22px 44px -22px rgba(46, 75, 113, 0.24);
}
.zc-svc-team__avatar {
    position: relative;
    width: 64px; height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--zc-amber-lt), var(--zc-amber-dk));
    border: 2px solid var(--zc-white);
    box-shadow: 0 8px 18px -6px var(--zc-amber-a45);
    flex-shrink: 0;
}
.zc-svc-team__avatar img {
    position: absolute; inset: 0;
    width: 100% !important; height: 100% !important;
    max-width: none !important;
    object-fit: cover; object-position: center top;
    display: block;
}
.zc-svc-team__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.zc-svc-team__name {
    font-family: var(--zc-f-display);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.15px;
    color: var(--zc-charcoal);
}
.zc-svc-team__role {
    font-family: var(--zc-f-body);
    font-size: 12px;
    color: var(--zc-warm-dk);
    line-height: 1.35;
    margin-bottom: 4px;
}
.zc-svc-team__more {
    display: inline-flex; align-items: center; gap: 5px;
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 9.5px; font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--zc-amber-dk);
    transition: gap 0.3s ease;
}
.zc-svc-team__more i { font-size: 11px; }
.zc-svc-team__card:hover .zc-svc-team__more { gap: 9px; }

/* FAQ section — hairline-divided list, no card chrome */
.zc-svc-faq {
    padding: clamp(40px, 4.2vw, 70px) var(--zc-pad-x);
    background: var(--zc-off-white);
}
@media (max-width: 991px) { .zc-svc-faq { padding-left: var(--zc-pad-x-mb); padding-right: var(--zc-pad-x-mb); } }
.zc-svc-faq__list {
    list-style: none; margin: 0; padding: 0;
    max-width: 880px;
}
.zc-svc-faq__item {
    display: grid;
    grid-template-columns: clamp(56px, 5vw, 72px) 1fr;
    column-gap: clamp(14px, 1.6vw, 22px);
    align-items: baseline;
    padding: clamp(18px, 2vw, 26px) 0;
    border-top: 1px solid var(--zc-linen);
}
.zc-svc-faq__item:last-child { border-bottom: 1px solid var(--zc-linen); }
.zc-svc-faq__num {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.8px;
    color: var(--zc-amber-dk);
    padding-top: 3px;
}
.zc-svc-faq__q {
    margin: 0 0 8px;
    font-family: var(--zc-f-display);
    font-size: clamp(16px, 0.5vw + 12px, 19px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.25px;
    color: var(--zc-charcoal);
}
.zc-svc-faq__a {
    font-family: var(--zc-f-body);
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--zc-warm-dk);
}
.zc-svc-faq__a a { color: var(--zc-amber-dk); font-weight: 600; }
.zc-svc-faq__a p:first-child { margin-top: 0; }
.zc-svc-faq__a p:last-child  { margin-bottom: 0; }


/* ──────────────────────────────────────────────────────────────────────────
   §F  SUBCATEGORY LISTING — service-subcategory.php (.zc-svc-sub-*)
   ──────────────────────────────────────────────────────────────────────── */
.zc-svc-sub {
    padding: clamp(40px, 4.2vw, 70px) var(--zc-pad-x);
    background: var(--zc-off-white);
}
@media (max-width: 991px) { .zc-svc-sub { padding-left: var(--zc-pad-x-mb); padding-right: var(--zc-pad-x-mb); } }
/* Service card grid — auto-FILL (not auto-fit) so a single card never
   stretches to fill the row. 1 service → small card with empty columns
   to the right; 4 → a clean row; 6 → 4 in row 1, 2 in row 2 (both rows
   same card size). minmax sized so we get ~4 cards in a typical
   container width and they shrink to 3 / 2 / 1 on narrower viewports. */
.zc-svc-sub__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: clamp(20px, 2.2vw, 32px);
    justify-content: start;
}
.zc-svc-sub__card {
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
    transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}
.zc-svc-sub__card:hover { transform: translateY(-3px); }
.zc-svc-sub__card-photo {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--zc-linen);
    margin-bottom: 14px;
}
.zc-svc-sub__card-photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.9s cubic-bezier(0.32, 0.72, 0, 1), filter 0.5s ease;
    filter: saturate(0.94);
}
.zc-svc-sub__card:hover .zc-svc-sub__card-photo img { transform: scale(1.06); filter: saturate(1.06); }
.zc-svc-sub__card-fallback {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    color: var(--zc-amber-dk);
    font-size: 38px;
    background: linear-gradient(135deg, var(--zc-amber-a08), var(--zc-amber-a25));
    opacity: 0.6;
}
.zc-svc-sub__card-num {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 10px; font-weight: 700;
    letter-spacing: 1.6px;
    color: var(--zc-amber-dk);
    margin-bottom: 4px;
}
.zc-svc-sub__card-rule {
    display: block;
    width: 22px; height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--zc-amber-lt), var(--zc-amber-dk));
    margin-bottom: 12px;
    transition: width 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}
.zc-svc-sub__card:hover .zc-svc-sub__card-rule { width: 50px; }
.zc-svc-sub__card-title {
    margin: 0 0 12px;
    font-family: var(--zc-f-display);
    font-size: clamp(15px, 0.4vw + 12px, 18px);
    font-weight: 500;
    line-height: 1.28;
    letter-spacing: -0.3px;
    color: var(--zc-charcoal);
    transition: color 0.3s ease;
}
.zc-svc-sub__card:hover .zc-svc-sub__card-title { color: var(--zc-amber-dk); }
.zc-svc-sub__card-more {
    display: inline-flex; align-items: center; gap: 7px;
    margin-top: auto;
    padding-top: 8px;
    font-family: var(--zc-f-heading);
    font-size: 10.5px; font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--zc-warm-dk);
    transition: gap 0.3s cubic-bezier(0.32, 0.72, 0, 1), color 0.3s ease;
}
.zc-svc-sub__card-more i { font-size: 12px; color: var(--zc-amber-dk); transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1); }
.zc-svc-sub__card:hover .zc-svc-sub__card-more { gap: 11px; color: var(--zc-amber-dk); }
.zc-svc-sub__card:hover .zc-svc-sub__card-more i { transform: translate(2px, -2px); }


/* ──────────────────────────────────────────────────────────────────────────
   §G  RELATED-CATEGORIES PILL STRIP — shared, can carry icons
   ──────────────────────────────────────────────────────────────────────── */
.zc-svc-related {
    padding: clamp(28px, 3vw, 48px) var(--zc-pad-x);
    background: var(--zc-pearl, #fdf8ee);
    border-top: 1px solid var(--zc-linen);
    border-bottom: 1px solid var(--zc-linen);
}
@media (max-width: 991px) { .zc-svc-related { padding-left: var(--zc-pad-x-mb); padding-right: var(--zc-pad-x-mb); } }
.zc-svc-related__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 18px; }
.zc-svc-related__tag {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 10.5px; font-weight: 700;
    letter-spacing: 1.8px; text-transform: uppercase;
    color: var(--zc-amber-dk);
    flex-shrink: 0;
}
.zc-svc-related__rule {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, var(--zc-amber-dk) 0%, var(--zc-amber-a25) 60%, transparent 100%);
    align-self: center;
}
.zc-svc-related__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.zc-svc-related__pill {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 8px 16px 8px 8px;
    background: var(--zc-white);
    border: 1px solid var(--zc-amber-a25);
    border-radius: 999px;
    font-family: var(--zc-f-heading);
    font-size: 12px; font-weight: 600;
    color: var(--zc-warm-dk);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.zc-svc-related__pill:hover {
    background: linear-gradient(135deg, var(--zc-amber), var(--zc-amber-dk));
    border-color: transparent;
    color: var(--zc-white);
    transform: translateY(-1px);
}
.zc-svc-related__pill-icon {
    width: 24px; height: 24px;
    display: inline-grid; place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--zc-amber-lt), var(--zc-amber-dk));
    color: var(--zc-white);
    font-size: 12px;
    flex-shrink: 0;
}
.zc-svc-related__pill-icon img { width: 58%; height: 58%; object-fit: contain; filter: brightness(0) invert(1); }
.zc-svc-related__pill:hover .zc-svc-related__pill-icon {
    background: rgba(255, 255, 255, 0.22);
}


/* ──────────────────────────────────────────────────────────────────────────
   §H  CTA BAND — shared
   ──────────────────────────────────────────────────────────────────────── */
.zc-svl-cta, .zc-svc-cat-cta, .zc-svc-sub-cta {
    padding: clamp(40px, 4.4vw, 70px) var(--zc-pad-x);
    background:
        radial-gradient(ellipse at 8% 50%, rgba(207, 138, 63, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 92% 50%, rgba(207, 138, 63, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--zc-snow, #fdfbf6) 0%, var(--zc-pearl, #fdf8ee) 100%);
    border-top: 1px solid var(--zc-linen);
    text-align: center;
}
@media (max-width: 991px) {
    .zc-svl-cta, .zc-svc-cat-cta, .zc-svc-sub-cta {
        padding-left: var(--zc-pad-x-mb);
        padding-right: var(--zc-pad-x-mb);
    }
}
.zc-svl-cta__inner, .zc-svc-cat-cta__inner, .zc-svc-sub-cta__inner { max-width: 640px; margin: 0 auto; }
.zc-svl-cta__eyebrow, .zc-svc-cat-cta__eyebrow, .zc-svc-sub-cta__eyebrow {
    display: inline-block;
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 10.5px; font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--zc-amber-dk);
    margin-bottom: 12px;
}
.zc-svl-cta__title, .zc-svc-cat-cta__title, .zc-svc-sub-cta__title {
    margin: 0 0 10px;
    font-family: var(--zc-f-display);
    font-size: clamp(22px, 1.8vw + 12px, 36px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.6px;
    color: var(--zc-charcoal);
}
.zc-svl-cta__title span, .zc-svc-cat-cta__title span, .zc-svc-sub-cta__title span {
    font-weight: 500;
    background: linear-gradient(135deg, var(--zc-amber-dk), var(--zc-amber), var(--zc-amber-lt));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.zc-svl-cta__sub, .zc-svc-cat-cta__sub, .zc-svc-sub-cta__sub {
    margin: 0 auto 22px;
    max-width: 56ch;
    font-family: var(--zc-f-body);
    font-size: 14px;
    line-height: 1.65;
    color: var(--zc-warm-dk);
}
.zc-svl-cta__btns, .zc-svc-cat-cta__btns, .zc-svc-sub-cta__btns {
    display: inline-flex; flex-wrap: wrap; justify-content: center;
    gap: 10px;
}
.zc-svl-cta__btn, .zc-svc-cat-cta__btn, .zc-svc-sub-cta__btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 22px;
    border-radius: 999px;
    font-family: var(--zc-f-heading);
    font-size: 12px; font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}
.zc-svl-cta__btn--primary, .zc-svc-cat-cta__btn--primary, .zc-svc-sub-cta__btn--primary {
    background: linear-gradient(135deg, var(--zc-amber), var(--zc-amber-dk));
    color: var(--zc-white);
    border: 1px solid transparent;
    box-shadow: 0 12px 26px -6px var(--zc-amber-a45);
}
.zc-svl-cta__btn--primary:hover, .zc-svc-cat-cta__btn--primary:hover, .zc-svc-sub-cta__btn--primary:hover {
    transform: translateY(-2px);
    color: var(--zc-white);
    box-shadow: 0 18px 36px -8px var(--zc-amber-a45);
}
.zc-svl-cta__btn--ghost, .zc-svc-cat-cta__btn--ghost, .zc-svc-sub-cta__btn--ghost {
    background: var(--zc-white);
    color: var(--zc-charcoal);
    border: 1px solid var(--zc-amber-a35);
}
.zc-svl-cta__btn--ghost:hover, .zc-svc-cat-cta__btn--ghost:hover, .zc-svc-sub-cta__btn--ghost:hover {
    transform: translateY(-2px);
    border-color: var(--zc-amber-dk);
    color: var(--zc-amber-dk);
}


/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .zc-svc-hero__icon-ring--1,
    .zc-svc-hero__icon-ring--2 { animation: none; }
}
