/* services/<slug> — page styles. The shared pieces live in global.css. */

/* ---------- the job: copy + price panel ---------- */
.job { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.job__body h2 { font-size: var(--step-3); margin-block: 1rem 1.4rem; }
.job__body p:not(.tag) { font-size: 1.04rem; line-height: 1.72; color: var(--fg-2); max-width: 64ch; }
.job__body p + p { margin-top: 1.1rem; }

.job__side { position: sticky; top: 96px; border: 1.5px solid var(--ink); background: var(--paper-2); padding: clamp(1.25rem, 2.4vw, 1.75rem); }
.pl { list-style: none; padding: 0; margin: 1rem 0 0; border-top: 1.5px solid var(--ink); }
.pl__it { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 0.15rem 1rem; padding-block: 0.85rem; border-bottom: 1px solid var(--rule-mid); align-items: baseline; }
.pl__n { font-family: var(--display); font-weight: 700; font-size: 0.98rem; line-height: 1.25; }
.pl__p { font-family: var(--display); font-weight: 800; font-size: var(--step-2); letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; grid-row: span 2; align-self: center; }
.pl__t { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--fg-3); }
.pl__bid { font-family: var(--display); font-weight: 800; font-size: var(--step-3); letter-spacing: -0.03em; margin-top: 1rem; padding-top: 1rem; border-top: 1.5px solid var(--ink); }
.pl__note { font-size: 0.9rem; line-height: 1.6; color: var(--fg-2); margin-top: 1rem; }
.pl__more { display: inline-flex; align-items: center; min-height: 44px; margin-top: 0.5rem; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; border-bottom: 2px solid var(--ink); }
@media (max-width: 880px) { .job { grid-template-columns: 1fr; } .job__side { position: static; } }

/* ---------- call-if cards ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 0; margin-top: clamp(2rem, 4vw, 3rem); border-top: 1.5px solid var(--ink); border-left: 1px solid var(--rule-thin); }
.card { padding: clamp(1.4rem, 2.4vw, 2rem); border-right: 1px solid var(--rule-thin); border-bottom: 1px solid var(--rule-thin); background: var(--paper); }
.card__n { font-family: var(--display); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.1em; }
.card__t { font-size: var(--step-1); margin-block: 0.6rem 0.7rem; text-wrap: balance; }
.card__b { font-size: 0.98rem; line-height: 1.6; color: var(--fg-2); }
.proof { margin-top: clamp(1.75rem, 3vw, 2.5rem); padding-left: clamp(1rem, 2vw, 1.4rem); border-left: 2px solid var(--ink); max-width: 54ch; font-family: var(--display); font-weight: 600; font-size: var(--step-1); line-height: 1.35; }

/* ---------- where ---------- */
.where { border-top: 1.5px solid var(--ink); }
.where__in { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.where__in h2 { font-size: var(--step-3); margin-top: 1rem; }
.where__lede { font-size: 1rem; line-height: 1.65; color: var(--fg-2); margin-top: 1rem; max-width: 36ch; }
.where__zips { margin-top: 1rem; font-size: 0.9rem; color: var(--fg-3); }
@media (max-width: 820px) { .where__in { grid-template-columns: 1fr; } }

/* ---------- related ---------- */
.svc { border-top: 1.5px solid var(--ink); }
.near { list-style: none; padding: 0; margin-top: clamp(1.75rem, 3vw, 2.5rem); border-top: 1.5px solid var(--ink); }
.near li { border-bottom: 1px solid var(--rule-thin); }
.near li:last-child { border-bottom: 1.5px solid var(--ink); }
.near a { display: grid; grid-template-columns: minmax(0, 18rem) minmax(0, 1fr) 2rem; gap: 0.3rem 1.5rem; align-items: baseline; padding-block: 1.1rem; transition: background .25s, padding-inline .25s; }
.near a:hover { background: var(--paper); padding-inline: 1rem; }
.near__t { font-family: var(--display); font-weight: 800; font-size: var(--step-2); line-height: 0.95; }
.near__b { font-size: 0.96rem; line-height: 1.55; color: var(--fg-2); }
.near__x { font-size: 1.1rem; text-align: right; opacity: 0; transform: translateX(-6px); transition: opacity .25s, transform .25s; }
.near a:hover .near__x { opacity: 1; transform: none; }
.near__all { margin-top: 1.2rem; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.near__all a { display: inline-flex; align-items: center; min-height: 44px; }
.near__all a span { border-bottom: 2px solid var(--ink); padding-bottom: 2px; }
@media (max-width: 720px) { .near a { grid-template-columns: 1fr; } .near__x { display: none; } }
