/* =============================================================================
   CLB REBUILD — INTERIOR COMPONENT KIT (Rocksteady Consulting)
   Shared building blocks for every interior page. Extends the tokens + primitives
   defined in clb-rebuild.css (loaded first): --clb-teal/beam/cream/ink, Verdana Pro,
   --clb-radius/shadow/focus, .btn-clb*, .clb-eyebrow*, .clb-vh, .home-section__inner.
   Conventions matched to clb-rebuild.css: 1240px container, 24px gutter,
   clamp(56px,6vw,96px) section rhythm, alternating white/cream/teal/ink surfaces.
   Accessibility: WCAG 2.2 AAA target. Body text stays on --clb-ink / --clb-fg-2;
   --clb-fg-3 is used for large or meta text only. Beam is background-only (ink text).
   ============================================================================= */

/* ---- shared layout primitives ---------------------------------------------- */
.clb-wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.clb-wrap--narrow { max-width: 820px; }

.section { padding: clamp(56px, 6vw, 96px) 0; background: #fff; }
.section--cream { background: var(--clb-cream); }
.section--teal  { background: var(--clb-teal); color: #fff; }
.section--ink   { background: var(--clb-ink);  color: #fff; }
.section--tight { padding: clamp(40px, 4vw, 64px) 0; }

/* Section header. Centered by default; --left for asymmetric page layouts. */
.section__head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section__head--left { margin-left: 0; text-align: left; }
.section__head h2 { font-size: clamp(28px, 2vw + 18px, 42px); line-height: 1.1; letter-spacing: -.01em; margin: 14px 0 0; }
.section__head p  { font-size: 18px; line-height: 1.6; color: var(--clb-fg-2); margin: 14px 0 0; }
.section--teal .section__head p, .section--ink .section__head p { color: rgba(255,255,255,.9); }

/* ---- breadcrumb ------------------------------------------------------------ */
.clb-breadcrumb { margin: 0 0 18px; }
.clb-breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; font-size: 14px; }
.clb-breadcrumb li { display: flex; align-items: center; gap: 6px; color: var(--clb-fg-2); }
.clb-breadcrumb li + li::before { content: "/"; color: var(--clb-fg-3); }
.clb-breadcrumb a { color: var(--clb-teal); text-decoration: underline; text-underline-offset: 2px; border-radius: 3px; }
.clb-breadcrumb [aria-current="page"] { color: var(--clb-fg-2); }
.page-hero--teal .clb-breadcrumb li,
.page-hero--teal .clb-breadcrumb [aria-current="page"] { color: rgba(255,255,255,.85); }
.page-hero--teal .clb-breadcrumb a { color: #fff; }
.page-hero--teal .clb-breadcrumb li + li::before { color: rgba(255,255,255,.55); }

/* ---- page hero ------------------------------------------------------------- */
.page-hero { background: var(--clb-cream); padding: clamp(48px, 5vw, 88px) 0 clamp(40px, 4vw, 64px); }
.page-hero--teal { background: var(--clb-teal); color: #fff; }
.page-hero--compact { padding: clamp(36px, 4vw, 56px) 0; }
.page-hero__inner { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.page-hero--split .page-hero__inner { grid-template-columns: 1.15fr .85fr; }
.page-hero__title { font-size: clamp(32px, 3vw + 18px, 56px); line-height: 1.04; letter-spacing: -.02em; margin: 14px 0 0; }
.page-hero__lead { font-size: clamp(17px, .5vw + 15px, 20px); line-height: 1.55; color: var(--clb-fg-2); margin: 18px 0 0; max-width: 60ch; }
.page-hero--teal .page-hero__lead { color: rgba(255,255,255,.92); }
.page-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 0; }
.page-hero__media img { width: 100%; height: auto; border-radius: var(--clb-radius); box-shadow: var(--clb-shadow); display: block; }

/* small factual stat strip under a hero (uses real facts only) */
.stat-strip { display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 26px 0 0; padding: 0; list-style: none; }
.stat-strip li { display: flex; align-items: baseline; gap: 8px; font-size: 15px; color: var(--clb-fg-2); }
.page-hero--teal .stat-strip li { color: rgba(255,255,255,.9); }
.stat-strip b { font-size: 22px; font-weight: 700; color: var(--clb-teal); letter-spacing: -.01em; }
.page-hero--teal .stat-strip b { color: var(--clb-beam); }

/* ---- generic card grid ----------------------------------------------------- */
.card-grid { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card-grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card { display: flex; }
.card > a, .card__body {
	display: flex; flex-direction: column; width: 100%;
	background: #fff; border: 1px solid var(--clb-line); border-radius: var(--clb-radius);
	padding: 24px; text-decoration: none; color: var(--clb-ink);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.section--cream .card > a, .section--cream .card__body { background: #fff; }
.card > a:hover { transform: translateY(-3px); box-shadow: var(--clb-shadow); border-color: var(--clb-teal-20); }
.card h3 { font-size: 19px; line-height: 1.25; margin: 0 0 8px; letter-spacing: -.01em; }
.card p { font-size: 15px; line-height: 1.55; color: var(--clb-fg-2); margin: 0; }
.card__arrow { margin-top: auto; padding-top: 14px; color: var(--clb-teal); font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }

/* ---- service card (icon tile) ---------------------------------------------- */
.svc-grid { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.svc-card > a {
	display: flex; flex-direction: column; height: 100%; gap: 12px;
	background: #fff; border: 1px solid var(--clb-line); border-radius: var(--clb-radius);
	padding: 22px; text-decoration: none; color: var(--clb-ink);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.svc-card > a:hover, .svc-card > a:focus-visible { transform: translateY(-3px); box-shadow: var(--clb-shadow); border-color: var(--clb-teal); }
.svc-card__icon { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--clb-teal-20); color: var(--clb-teal); }
.svc-card__icon svg { width: 26px; height: 26px; }
.svc-card__title { font-size: 18px; font-weight: 700; line-height: 1.25; letter-spacing: -.01em; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.svc-card__title .clb-arrow { color: var(--clb-teal); transition: transform .18s ease; }
.svc-card > a:hover .clb-arrow { transform: translateX(3px); }
.svc-card__excerpt { font-size: 14.5px; line-height: 1.55; color: var(--clb-fg-2); margin: 0; }

/* ---- feature / quote split ------------------------------------------------- */
.feature-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: stretch; }
.feature-split__panel { background: var(--clb-teal); color: #fff; border-radius: var(--clb-radius); padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.feature-split__panel .clb-eyebrow { align-self: flex-start; }
.feature-split__body { display: flex; flex-direction: column; justify-content: center; }
.feature-split__body h2 { font-size: clamp(24px, 2vw + 14px, 36px); line-height: 1.12; letter-spacing: -.01em; margin: 12px 0 0; }
.feature-split__body p { font-size: 17px; line-height: 1.6; color: var(--clb-fg-2); margin: 16px 0 0; }

.quote-feature { margin: 0; }
.quote-feature blockquote { margin: 0; font-size: clamp(22px, 1.6vw + 14px, 30px); line-height: 1.28; letter-spacing: -.01em; }
.quote-feature blockquote p { margin: 0; }
.quote-feature figcaption { margin-top: 18px; font-size: 15px; }
.quote-feature figcaption b { display: block; font-weight: 700; }
.feature-split__panel .quote-feature figcaption { color: rgba(255,255,255,.85); }
.feature-split__panel .quote-feature figcaption b { color: #fff; }

/* ---- CTA band -------------------------------------------------------------- */
.cta-band { background: var(--clb-teal); color: #fff; padding: clamp(44px, 5vw, 76px) 0; }
.cta-band--beam { background: var(--clb-beam); color: var(--clb-ink); }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 32px; }
.cta-band__text { max-width: 62ch; }
.cta-band__text h2 { font-size: clamp(24px, 2vw + 14px, 36px); line-height: 1.12; letter-spacing: -.01em; margin: 0; }
.cta-band__text p { font-size: 17px; line-height: 1.55; margin: 12px 0 0; color: rgba(255,255,255,.9); }
.cta-band--beam .cta-band__text p { color: rgba(13,19,33,.82); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---- directory (Direction B: sticky service index) ------------------------- */
.dir-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.dir-nav { position: sticky; top: calc(var(--clb-header-h, 76px) + 16px); }
.dir-nav h2 { font-size: 15px; text-transform: uppercase; letter-spacing: .08em; color: var(--clb-fg-3); margin: 0 0 12px; }
.dir-nav ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.dir-nav a { display: block; padding: 8px 12px; border-radius: 8px; text-decoration: none; color: var(--clb-ink); font-size: 15px; border-left: 3px solid transparent; }
.dir-nav a:hover, .dir-nav a:focus-visible { background: var(--clb-cream); border-left-color: var(--clb-teal); }

/* client-side filter (progressive: everything shows with JS off) */
.svc-filter { display: flex; gap: 10px; align-items: center; margin: 0 0 24px; flex-wrap: wrap; }
.svc-filter input { font-family: var(--clb-font); font-size: 16px; padding: 12px 16px; border: 1px solid var(--clb-line); border-radius: 999px; min-width: 260px; }
.svc-filter__count { font-size: 14px; color: var(--clb-fg-3); }
.svc-card[hidden] { display: none; }
.svc-empty { color: var(--clb-fg-2); font-size: 16px; }

/* "RSVP and we'll remind you" nudge under the events list */
.events-rsvp-link { text-align: center; margin: 30px 0 0; font-size: 16px; color: var(--clb-fg-2); }
.events-rsvp-link a { color: var(--clb-teal); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ---- prose (legal / history long-form) ------------------------------------- */
.clb-prose { max-width: 72ch; margin: 0 auto; font-size: 17px; line-height: 1.7; color: var(--clb-ink); }
.clb-prose h2 { font-size: clamp(22px, 1.4vw + 14px, 30px); line-height: 1.15; margin: 40px 0 12px; letter-spacing: -.01em; }
.clb-prose h3 { font-size: 20px; margin: 28px 0 10px; }
.clb-prose p, .clb-prose li { margin: 0 0 14px; }
.clb-prose ul, .clb-prose ol { padding-left: 22px; }
.clb-prose a { color: var(--clb-teal); text-decoration: underline; text-underline-offset: 2px; }

/* ---- timeline (History) ---------------------------------------------------- */
.timeline { list-style: none; margin: 0 auto; padding: 0; max-width: 820px; position: relative; }
.timeline::before { content: ""; position: absolute; left: 14px; top: 6px; bottom: 6px; width: 2px; background: var(--clb-teal-20); }
.timeline > li { position: relative; padding: 0 0 34px 52px; }
.timeline > li::before { content: ""; position: absolute; left: 7px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--clb-teal); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--clb-teal-20); }
.timeline__year { font-size: 22px; font-weight: 700; color: var(--clb-teal); letter-spacing: -.01em; }
.timeline__body { margin: 6px 0 0; font-size: 16px; line-height: 1.6; color: var(--clb-fg-2); }

/* ---- team grid ------------------------------------------------------------- */
.team-grid { list-style: none; padding: 0; margin: 0; display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.team-card { text-align: center; }
.team-card__photo, .team-card__mono { width: 104px; height: 104px; border-radius: 50%; margin: 0 auto 14px; object-fit: cover; display: flex; align-items: center; justify-content: center; }
.team-card__mono { background: var(--clb-teal-20); color: var(--clb-teal); font-size: 30px; font-weight: 700; }
.team-card__name { font-size: 18px; font-weight: 700; margin: 0; }
.team-card__role { font-size: 14.5px; color: var(--clb-fg-2); margin: 4px 0 0; }
.team-card__linkedin { display: inline-flex; align-items: center; justify-content: center; margin-top: 10px; color: var(--clb-teal); border-radius: 6px; }
.team-card__linkedin:hover, .team-card__linkedin:focus-visible { color: var(--clb-teal-ink, #0b5c63); }
/* C-suite featured on top (larger, centred), everyone else in a 4-across grid below. */
.team-grid--lead { max-width: 860px; margin: 0 auto 34px; grid-template-columns: repeat(3, minmax(0, 1fr)); justify-content: center; }
.team-grid--lead .team-card__mono { width: 132px; height: 132px; font-size: 40px; }
.team-grid--lead .team-card__name { font-size: 20px; }
/* Team below the C-suite, grouped by tier: Directors (4), Managers (3), rest (3).
   12-col grid: directors span 3 (→4 across); managers and the remaining team
   span 4 (→3 across). Rows read 4 / 3 / 3. */
.team-grid--rest { grid-template-columns: repeat(12, 1fr); align-items: start; }
.team-grid--rest .team-card { grid-column: span 3; }                 /* directors: 4 across */
.team-grid--rest .team-card:nth-child(n+5) { grid-column: span 4; }  /* managers + team: 3 across */
@media (max-width: 980px) {
	.team-grid--rest { grid-template-columns: repeat(2, 1fr); }
	.team-grid--rest .team-card,
	.team-grid--rest .team-card:nth-child(n) { grid-column: auto; }
}
@media (max-width: 680px) { .team-grid--lead { grid-template-columns: 1fr; max-width: 300px; } }
@media (max-width: 460px) { .team-grid--rest { grid-template-columns: 1fr; } }

/* ---- contact panel --------------------------------------------------------- */
.contact-panel { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.contact-panel__item { display: flex; gap: 12px; align-items: flex-start; }
.contact-panel__item svg { flex: none; width: 22px; height: 22px; color: var(--clb-teal); margin-top: 2px; }
.contact-panel__item h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .06em; color: var(--clb-fg-3); margin: 0 0 4px; }
.contact-panel__item a, .contact-panel__item p { font-size: 17px; color: var(--clb-ink); text-decoration: none; margin: 0; }
.contact-panel__item a { text-decoration: underline; text-underline-offset: 2px; }

/* ---- accordion (disclosure) ------------------------------------------------ */
.clb-accordion { border-top: 1px solid var(--clb-line); }
.clb-accordion__item { border-bottom: 1px solid var(--clb-line); }
.clb-accordion__btn { width: 100%; text-align: left; background: none; border: 0; padding: 20px 8px; font-family: var(--clb-font); font-size: 18px; font-weight: 700; color: var(--clb-ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; }
.clb-accordion__btn svg { flex: none; transition: transform .2s ease; }
.clb-accordion__btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.clb-accordion__panel { padding: 0 8px 22px; font-size: 16px; line-height: 1.6; color: var(--clb-fg-2); }
.clb-accordion__panel[hidden] { display: none; }

/* ---- pagination ------------------------------------------------------------ */
.clb-pagination { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 40px; }
.clb-pagination a, .clb-pagination span { padding: 10px 15px; border-radius: 8px; border: 1px solid var(--clb-line); text-decoration: none; color: var(--clb-ink); font-size: 15px; }
.clb-pagination [aria-current="page"] { background: var(--clb-teal); color: #fff; border-color: var(--clb-teal); }

/* ---- preview toggle (staging only) ----------------------------------------- */
.clb-preview-bar { position: sticky; top: 0; z-index: 60; background: var(--clb-ink); color: #fff; font-size: 14px; }
.clb-preview-bar__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; padding: 8px 24px; }
.clb-preview-bar b { color: var(--clb-beam); }
.clb-preview-bar a { color: #fff; text-decoration: underline; text-underline-offset: 2px; padding: 4px 10px; border-radius: 6px; }
.clb-preview-bar a[aria-current="true"] { background: var(--clb-beam); color: var(--clb-ink); text-decoration: none; font-weight: 700; }

/* ---- focus visibility (AAA) ------------------------------------------------ */
.section a:focus-visible, .page-hero a:focus-visible, .card > a:focus-visible,
.svc-card > a:focus-visible, .dir-nav a:focus-visible, .clb-accordion__btn:focus-visible,
.svc-filter input:focus-visible, .cta-band a:focus-visible, .clb-breadcrumb a:focus-visible,
.clb-preview-bar a:focus-visible { outline: var(--clb-focus); outline-offset: 2px; }

/* ---- responsive ------------------------------------------------------------ */
@media (max-width: 900px) {
	.page-hero--split .page-hero__inner { grid-template-columns: 1fr; }
	.feature-split { grid-template-columns: 1fr; }
	.dir-layout { grid-template-columns: 1fr; }
	.dir-nav { position: static; }
	.dir-nav ol { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 600px) {
	.cta-band__inner { flex-direction: column; align-items: flex-start; }
	.section__head { margin-bottom: 32px; }
}
@media (prefers-reduced-motion: reduce) {
	.card > a, .svc-card > a, .svc-card__title .clb-arrow { transition: none; }
}

/* ---- lead form (reusable conversion block) --------------------------------- */
.lead-block { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: start; }
.lead-block__aside h2 { font-size: clamp(24px, 2vw + 14px, 34px); line-height: 1.12; letter-spacing: -.01em; margin: 12px 0 0; }
.lead-block__aside p { font-size: 17px; line-height: 1.6; color: var(--clb-fg-2); margin: 14px 0 0; }
.lead-block__call { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; font-size: 18px; font-weight: 700; color: var(--clb-teal); text-decoration: none; }
.lead-block__call svg { width: 20px; height: 20px; }
.lead-block__call span { text-decoration: underline; text-underline-offset: 3px; }

.lead-card { background: #fff; border: 1px solid var(--clb-line); border-radius: var(--clb-radius); box-shadow: var(--clb-shadow); padding: clamp(22px, 3vw, 34px); }

/* intent toggle: two real radio inputs styled as a segmented control */
.intent { display: flex; gap: 8px; margin: 0 0 20px; padding: 4px; background: var(--clb-cream); border-radius: 999px; }
.intent__opt { flex: 1; }
.intent__opt input { position: absolute; opacity: 0; pointer-events: none; }
.intent__opt label { display: block; text-align: center; padding: 11px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 700; color: var(--clb-fg-2); cursor: pointer; line-height: 1.2; }
.intent__opt input:checked + label { background: var(--clb-teal); color: #fff; }
.intent__opt input:focus-visible + label { outline: var(--clb-focus); outline-offset: 2px; }

.field { margin: 0 0 16px; }
.field > label { display: block; font-size: 14.5px; font-weight: 700; color: var(--clb-ink); margin: 0 0 6px; }
.field .req { color: var(--clb-teal); }
.field__hint { font-size: 13.5px; color: var(--clb-fg-3); margin: 0 0 6px; }
.field input, .field textarea, .field select {
	width: 100%; font-family: var(--clb-font); font-size: 16px; color: var(--clb-ink);
	padding: 12px 14px; border: 1px solid var(--clb-line); border-radius: 8px; background: #fff;
}
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible { outline: var(--clb-focus); outline-offset: 1px; border-color: var(--clb-teal); }
.field textarea { min-height: 96px; resize: vertical; }
.field--referrer { display: none; }
.lead-card[data-intent="referral"] .field--referrer { display: block; }

.lead-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.lead-form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 4px; }
.lead-status { font-size: 14.5px; margin: 0; }
.lead-status.is-err { color: #8a1c1c; font-weight: 700; }
.lead-status.is-ok { color: var(--clb-teal); font-weight: 700; }
.lead-consent { font-size: 13px; color: var(--clb-fg-3); margin: 14px 0 0; }

.lead-success { text-align: left; }
.lead-success h3 { font-size: 22px; margin: 0 0 10px; letter-spacing: -.01em; }
.lead-success p { font-size: 16px; line-height: 1.6; color: var(--clb-fg-2); margin: 0 0 8px; }
.lead-success__next { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }

@media (max-width: 900px) { .lead-block { grid-template-columns: 1fr; gap: 28px; } }
@media (prefers-reduced-motion: reduce) { .intent__opt input:checked + label { transition: none; } }

/* ---- interior hero image (uniform 3:2 frame, focal-aware) ------------------ */
.page-hero--split .page-hero__media img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--clb-radius); box-shadow: var(--clb-shadow); display: block; }
@media (max-width: 900px) { .page-hero--split .page-hero__media { margin-top: 8px; } }

/* ---- reusable promo band (above footer; toggleable) ------------------------ */
/* Cream treatment: this band always sits directly above the teal footer, and
   often below a teal CTA band, so a light background keeps the sections from
   merging into one teal wall. */
.promo-band { background: var(--clb-cream); color: var(--clb-ink); padding: clamp(40px, 5vw, 68px) 0; border-top: 1px solid var(--clb-line); }
.promo-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 40px; }
.promo-band__copy { max-width: 62ch; }
.promo-band__copy h2 { font-size: clamp(24px, 2vw + 14px, 34px); line-height: 1.12; letter-spacing: -.01em; margin: 12px 0 0; color: var(--clb-teal); }
.promo-band__copy p { font-size: 17px; line-height: 1.55; margin: 12px 0 0; color: rgba(13,19,33,.82); }
.promo-band__cta { display: flex; flex-wrap: wrap; gap: 12px; flex: none; }
/* Eyebrow + secondary button need dark-on-light styling on the cream band. */
.promo-band .clb-eyebrow { background: var(--clb-teal); color: var(--clb-cream); }
.promo-band .btn-clb--ghost-light { color: var(--clb-teal); border-color: var(--clb-teal); }
.promo-band .btn-clb--ghost-light:hover { background: var(--clb-teal); color: #fff; border-color: var(--clb-teal); }
@media (max-width: 760px) { .promo-band__inner { flex-direction: column; align-items: flex-start; } }

/* ---- program detail: two-column body + aside ------------------------------ */
.svc-layout { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(258px, 1fr); gap: 44px; align-items: start; }
.svc-main { min-width: 0; }
.svc-aside { display: flex; flex-direction: column; gap: 18px; position: sticky; top: calc(var(--clb-header-h, 76px) + 16px); }
.stat-card { background: var(--clb-teal); color: #fff; border-radius: var(--clb-radius); padding: 22px 20px; }
.stat-card__num { display: block; font-size: clamp(32px, 3vw + 14px, 44px); font-weight: 700; line-height: 1; letter-spacing: -.02em; color: var(--clb-beam); }
.stat-card__label { display: block; font-size: 15px; line-height: 1.5; margin-top: 10px; color: rgba(255,255,255,.92); }
.stat-card__src { display: block; font-size: 11.5px; margin-top: 12px; color: rgba(255,255,255,.62); }
.aside-cta { background: #fff; border: 1px solid var(--clb-line); border-radius: var(--clb-radius); padding: 22px 20px; }
.aside-cta__title { font-size: 18px; margin: 0 0 6px; letter-spacing: -.01em; }
.aside-cta p { font-size: 14.5px; line-height: 1.5; color: var(--clb-fg-2); margin: 0 0 14px; }
.aside-cta .btn-clb { width: 100%; justify-content: center; }
.aside-cta__call { display: inline-block; margin-top: 12px; font-size: 14.5px; color: var(--clb-teal); text-decoration: underline; text-underline-offset: 2px; }

/* ---- testimonial quote card (card-style blockquote) ------------------------ */
.quote-card { position: relative; margin: 0; background: #fff; border: 1px solid var(--clb-line); border-radius: var(--clb-radius); box-shadow: var(--clb-shadow); padding: clamp(28px, 4vw, 44px); overflow: hidden; }
.quote-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--clb-beam); }
.quote-card__mark { position: absolute; top: 4px; left: 20px; font-size: 96px; line-height: 1; color: var(--clb-beam); font-family: Georgia, "Times New Roman", serif; pointer-events: none; }
.quote-card__quote { margin: 26px 0 0; font-size: clamp(20px, 1.4vw + 13px, 28px); line-height: 1.36; letter-spacing: -.01em; color: var(--clb-ink); position: relative; }
.quote-card__quote p { margin: 0; }
.quote-card__quote p::before { content: "\201C"; }
.quote-card__quote p::after { content: "\201D"; }
.quote-card__by { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--clb-line); }
.quote-card__photo, .quote-card__mono { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex: none; }
.quote-card__mono { display: flex; align-items: center; justify-content: center; background: var(--clb-teal); color: #fff; font-size: 20px; font-weight: 700; }
.quote-card__meta b { display: block; font-weight: 700; font-size: 16px; color: var(--clb-ink); }
.quote-card__meta span { font-size: 14px; color: var(--clb-fg-2); }

@media (max-width: 900px) { .svc-layout { grid-template-columns: 1fr; gap: 28px; } .svc-aside { position: static; } }

/* ============================================================================
   THE ONE CLB LEAD FORM — clb_lead_form(): uniform across every form + modal.
   Warm, trustworthy, accessible (52px targets, visible focus, soft-teal trust
   panel, plain data-use statement). Core fields: name, email, phone.
   ========================================================================== */
.clb-vh { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.clb-lead__head { margin-bottom: 22px; }
.clb-lead__title { font-size: clamp(23px, 3vw, 31px); line-height: 1.15; margin: 0 0 8px; color: var(--clb-teal); }
.clb-lead__intro { font-size: 16.5px; line-height: 1.6; color: var(--clb-fg-2); margin: 0; max-width: 54ch; }

.clb-lead-form { display: grid; gap: 18px; }
.clb-field { display: grid; gap: 6px; }
.clb-field label { font-weight: 700; font-size: 15px; color: var(--clb-teal); }
.clb-field__req { color: #c0392b; margin-left: 2px; }
.clb-field__opt { font-weight: 500; font-size: 13px; color: var(--clb-fg-2); margin-left: 5px; }
.clb-field__hint { font-size: 13.5px; color: var(--clb-fg-2); margin: 0; }
.clb-field input, .clb-field textarea, .clb-field select {
  width: 100%; min-height: 52px; padding: 13px 15px; font: inherit; font-size: 16px;
  color: var(--clb-ink, #16302f); background: #fff;
  border: 1.5px solid var(--clb-teal-20); border-radius: 12px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.clb-field textarea { min-height: 112px; resize: vertical; }
.clb-field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23063e3e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px;
}
.clb-field input:focus, .clb-field textarea:focus, .clb-field select:focus {
  outline: none; border-color: var(--clb-teal); box-shadow: 0 0 0 3px rgba(6,62,62,.16);
}

/* "Prefer to talk?" line under a uniform form (warm phone fallback). */
.clb-lead__alt { margin: 16px 0 0; font-size: 14.5px; color: var(--clb-fg-2); }
.clb-lead__alt a { color: var(--clb-teal); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

.clb-trust {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: 12px;
  background: var(--clb-teal-20, #d6e0e0);
  background: color-mix(in srgb, var(--clb-teal) 8%, #fff);
  border: 1px solid color-mix(in srgb, var(--clb-teal) 16%, #fff);
}
.clb-trust__icon { flex: none; width: 26px; height: 26px; color: var(--clb-teal); margin-top: 1px; }
.clb-trust__text { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--clb-teal); }
.clb-trust__text a { color: var(--clb-teal); text-decoration: underline; text-underline-offset: 2px; }
.clb-trust__text a:hover { color: #000; }

/* Dark-surface variant: the same uniform trust block inside the (night-themed)
   donate modal. clb-interior.css is enqueued site-wide, incl. the donate page,
   so this scopes the palette to the modal without touching clb-donate.css. */
.clb-donate-modal .clb-trust { background: rgba(255,255,255,.05); border-color: rgba(248,246,238,.16); margin: 4px 0 16px; }
.clb-donate-modal .clb-trust__icon { color: #fee065; }
.clb-donate-modal .clb-trust__text { color: rgba(248,246,238,.82); }
.clb-donate-modal .clb-trust__text strong { color: #f8f6ee; }
.clb-donate-modal .clb-trust__text a { color: #fee065; }
.clb-donate-modal .clb-trust__text a:hover { color: #fff; }

.clb-lead__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; margin-top: 2px; }
.clb-lead__reassure { font-size: 13.5px; color: var(--clb-fg-2); }
.clb-lead__status { margin: 6px 0 0; font-size: 14.5px; min-height: 1px; }
.clb-lead__status.is-err { color: #c0392b; font-weight: 600; }
.clb-lead__status.is-ok  { color: var(--clb-teal); font-weight: 600; }

.clb-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.clb-lead__success { text-align: center; padding: 22px 8px; }
.clb-lead__success-icon { width: 56px; height: 56px; color: var(--clb-teal); margin: 0 auto 12px; }
.clb-lead__success h3 { font-size: 22px; color: var(--clb-teal); margin: 0 0 8px; }
.clb-lead__success p { font-size: 16px; color: var(--clb-fg-2); margin: 0 auto; max-width: 46ch; line-height: 1.6; }
.clb-lead__success a { color: var(--clb-teal); font-weight: 600; }

.clb-report-btn {
  display: inline-block; margin: 8px 0 0; padding: 8px 14px; font-size: 14px; font-weight: 600;
  color: var(--clb-teal); background: #fff; border: 1.5px solid var(--clb-teal-20); border-radius: 10px; cursor: pointer;
}
.clb-report-btn:hover, .clb-report-btn:focus-visible { border-color: var(--clb-teal); }
