/* =====================================================================
 * Per-service page extensions to app.css.
 * Hero, why-us, pricing table, FAQs.
 * ===================================================================== */

/* Breadcrumb trail — sits just under the header on service pages. */
.crumbs {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: var(--space-3) var(--space-4) var(--space-1);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap;
}
.crumbs__link {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    transition: color .12s ease;
}
.crumbs__link:hover,
.crumbs__link:focus-visible {
    color: var(--red);
    text-decoration: underline;
}
.crumbs__sep {
    color: var(--muted-2);
    flex: none;
}
.crumbs__here {
    color: var(--ink-2);
    font-weight: 600;
    min-width: 0;
}

.service-hero {
    padding: var(--space-4) 0 var(--space-5);
}
.service-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red-50);
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(234, 33, 39, .15);
    margin-bottom: var(--space-3);
}
.service-hero__eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--red);
    flex: none;
}
.service-hero__title {
    font-size: clamp(28px, 6vw, 36px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: var(--space-3);
    line-height: 1.1;
}
.service-hero__title .text-red { display: block; color: var(--red); }
.service-hero__lede {
    font-size: 16px;
    color: var(--muted);
    max-width: 56ch;
}

.why-us {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
    margin: var(--space-5) 0;
}
@media (max-width: 600px) {
    .why-us { grid-template-columns: 1fr; }
}
.why-us__item {
    background: var(--white);
    padding: var(--space-4);
    border: 1px solid var(--line-2);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-xs);
}
.why-us__icon {
    width: 36px; height: 36px;
    background: var(--red-50);
    color: var(--red);
    border-radius: var(--r-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-2);
}
.why-us__title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}
.why-us__body { font-size: 13px; color: var(--muted); }

/* Pricing table */
.pricing {
    margin: var(--space-6) 0 var(--space-5);
}
.pricing__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--space-3);
}
.pricing__table {
    background: var(--white);
    border: 1px solid var(--line-2);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.pricing__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-3);
    align-items: center;
    padding: var(--space-4);
    border-bottom: 1px solid var(--line-2);
}
.pricing__row:last-child { border-bottom: 0; }
.pricing__service {
    font-weight: 600;
    color: var(--ink);
    font-size: 15px;
}
.pricing__service small {
    display: block;
    font-weight: 400;
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}
.pricing__price {
    font-weight: 700;
    color: var(--red);
    font-size: 16px;
    text-align: right;
    white-space: nowrap;
}
.pricing__price small {
    display: block;
    font-weight: 400;
    color: var(--muted);
    font-size: 11px;
}
.pricing__note {
    margin-top: var(--space-2);
    font-size: 12px;
    color: var(--muted);
}

/* What's included */
.included {
    margin: var(--space-5) 0;
    background: var(--white);
    border: 1px solid var(--line-2);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--space-5);
}
.included__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-3);
}
.included__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
}
.included__list--single { grid-template-columns: 1fr; }
@media (max-width: 480px) {
    .included__list { grid-template-columns: 1fr; }
}
.included__list li {
    display: flex;
    gap: var(--space-2);
    align-items: flex-start;
    font-size: 14px;
    color: var(--ink-2);
}
.included__list li::before {
    content: '';
    flex: none;
    margin-top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--red);
    display: inline-block;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7l3 3 5-6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
}

/* FAQ — section spacing (the .faq__* item styles live in app.css) */
.faq {
    margin: var(--space-6) 0 var(--space-5);
}

/* ---------------------------------------------------------------------
 * Limited-time promo callout — cream / ivory editorial style.
 * Warm off-white card with a red left rule and red accent text. Sits
 * quietly next to the surrounding red CTAs without fighting them.
 * ------------------------------------------------------------------- */

.promo {
    margin: var(--space-5) 0;
    background: #FFF6E7;
    border: 1px solid #F1E2BD;
    border-left: 4px solid var(--red);
    border-radius: var(--r-md);
    padding: var(--space-5);
    color: var(--ink);
    box-shadow: var(--shadow-xs);
}
.promo__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 10px;
    border-radius: 999px;
    margin-bottom: var(--space-3);
}
.promo__badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #fff;
    flex: none;
}
.promo__title {
    font-size: clamp(22px, 5vw, 28px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: var(--space-2);
    letter-spacing: -0.01em;
}
.promo__title .promo__pct { color: var(--red); }
.promo__sub {
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: var(--space-3);
    max-width: 56ch;
}
.promo__sub strong { color: var(--red-dark); font-weight: 700; }
.promo__expiry {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}
.promo__expiry strong { color: var(--ink); }

/* Strike-through "usual price" stacked above the promo price. */
.pricing__price-was {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: line-through;
    margin-bottom: 2px;
}

/* Per-service testimonials variant: 2 videos centred (vs. 3-up on home). */
.testimonials--pair .testimonials__row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 720px) {
    .testimonials--pair .testimonials__row {
        max-width: none;
    }
}

/* Per-service testimonials variant: a single centred video. */
.testimonials--single .testimonials__row {
    grid-template-columns: minmax(0, 1fr);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Custom-quote lead-in callout — a soft red-edged note that points at the
   booking form for jobs that aren't fixed-price (panel respray, dent,
   accident, insurance work). */
.custom-quote {
    background: var(--white);
    border: 1px solid var(--line-2);
    border-left: 4px solid var(--red);
    border-radius: var(--r-md);
    padding: var(--space-4) var(--space-5);
    box-shadow: var(--shadow-xs);
    margin: var(--space-5) 0;
}
.custom-quote__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--ink);
}
.custom-quote__body {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}
.custom-quote__body strong { color: var(--ink-2); }
.custom-quote__body a {
    color: var(--red);
    font-weight: 700;
    text-decoration: underline;
}
