/* ✨ Coastal Exteriors — service-page conversion components.
   📱 #P2 mobile sticky CTA bar (same as homepage)
   💬 #P3 testimonial: photo of the client's clean home, quote underneath
   📷 #P5 before / after photo pair
   🛡️ #P6 guarantee badge (in the teal price band)
   💰 #P10 bundle & save strip
   Each block is removable by number.
   ⚠️ assets/ is cached immutable for 1 year — if you change this file,
   rename it (v1 → v2) and update the <link> on every service page. */

/* 📱 #P2 — STICKY MOBILE CTA BAR (mirrors homepage) */
.mobile-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 98;
  background: #FBF3EA; border-top: 1px solid var(--border);
  padding: 10px 16px; gap: 10px;
}
@media (max-width: 768px) {
  .mobile-sticky-cta { display: flex; }
  /* keep the footer's last line visible above the sticky bar */
  .footer { padding-bottom: 110px; }
}
.mobile-sticky-cta__call {
  flex: 1; height: 46px; border-radius: 50px;
  background: transparent; border: 2px solid #46697b;
  color: #46697b; font-family: var(--font-sans);
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.mobile-sticky-cta__quote {
  flex: 1.6; height: 46px; border-radius: 50px;
  background: #46697b; border: none; color: #fff;
  font-family: var(--font-sans); font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* 💬 #P3 — TESTIMONIAL (photo + quote underneath) */
.testimonial-feature { max-width: 720px; margin: 0 auto; text-align: center; }
.testimonial-feature__photo {
  aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 4px 24px rgba(42,31,20,0.10);
  background: var(--bg-card);
}
.testimonial-feature__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial-feature__photo--placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  border: 2px dashed var(--border); box-shadow: none;
  color: var(--ink-faint); font-size: 14px;
}
.testimonial-feature__quote {
  margin: 26px auto 0; max-width: 640px;
  font-family: var(--font-serif); font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 300; font-style: italic; line-height: 1.5; color: var(--ink);
}
.testimonial-feature__stars { color: #E2A33C; font-size: 15px; letter-spacing: 3px; margin-top: 14px; }
.testimonial-feature__cite {
  display: block; margin-top: 6px;
  font-family: var(--font-sans); font-style: normal;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted);
}
.sample-tag {
  display: inline-block; margin-top: 14px; padding: 4px 12px; border-radius: 999px;
  background: rgba(255,145,60,0.12); border: 1px solid rgba(255,145,60,0.4);
  color: #9a5b1f; font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
}

/* 📷 #P5 — BEFORE / AFTER PAIR */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 36px auto 0; max-width: 980px; }
@media (max-width: 640px) { .ba-grid { grid-template-columns: 1fr; } }
.ba-card {
  position: relative; aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-card); box-shadow: var(--shadow-card);
}
.ba-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-card__label {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 5px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(42,31,20,0.85); color: #fff;
}
.ba-card--after .ba-card__label { background: var(--teal); }
.ba-card--placeholder {
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed var(--border); box-shadow: none;
  color: var(--ink-faint); font-size: 14px; text-align: center; padding: 0 20px;
}

/* 🛡️ #P6 — GUARANTEE BADGE (sits in the teal band) */
.guarantee-badge {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.92); font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
}
.guarantee-badge svg { flex-shrink: 0; }

/* 🤖 #G-AI — footer fine print: one quotable factual summary, identical site-wide,
   written for AI assistants (ChatGPT/Gemini/Perplexity) to lift verbatim */
.footer__fineprint {
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border);
  font-size: 12px; line-height: 1.7; color: var(--ink-faint);
}
.footer__fineprint a { text-decoration: underline; }

/* 💰 #P10 — BUNDLE & SAVE STRIP */
.bundle-strip {
  max-width: 760px; margin: 0 auto; text-align: center;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 26px 12px;
}
.bundle-strip__title { font-family: var(--font-serif); font-size: 22px; font-weight: 400; margin-bottom: 8px; }
.bundle-strip__text { font-size: 15px; color: var(--ink-muted); margin: 0 auto; }
.bundle-strip__text a { text-decoration: underline; }
