/* =============================================================
   Pawsh Mobile Grooming — Service Detail Pages
   Loaded AFTER styles.css?v=40cf4a0bea on every /services/*.html
   All selectors prefixed with .svc- to avoid collisions.
   ============================================================= */

/* ---------- Breadcrumbs ---------- */
.svc-crumbs {
  padding-block: 18px 0;
  background: var(--cream);
}
.svc-crumbs ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: .88rem;
  color: var(--muted);
}
.svc-crumbs li { display: inline-flex; align-items: center; gap: 8px; }
.svc-crumbs li + li::before {
  content: "›";
  color: var(--brass);
  font-weight: 600;
}
.svc-crumbs a {
  color: var(--muted);
  font-weight: 500;
  transition: color .18s var(--ease);
}
.svc-crumbs a:hover { color: var(--terracotta); }
.svc-crumbs [aria-current="page"] {
  color: var(--espresso);
  font-weight: 600;
}

/* ---------- Service hero ---------- */
.svc-hero {
  padding-block: clamp(40px, 5vw + 1rem, 72px);
  background:
    radial-gradient(900px 600px at 90% -10%, rgba(168,94,58,.10), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(62,81,66,.10), transparent 60%),
    var(--cream);
}
.svc-hero-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 960px) {
  .svc-hero-grid { grid-template-columns: 1.05fr 1fr; gap: 72px; }
}
.svc-hero-copy .eyebrow { margin-bottom: 14px; }
.svc-hero h1 {
  font-size: clamp(2.1rem, 3.8vw + 1rem, 3.5rem);
  margin-bottom: .25em;
}
.svc-hero .lede {
  font-size: 1.15rem;
  color: var(--muted);
  margin-top: 14px;
  max-width: 540px;
}
.svc-hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin: 26px 0 22px;
}
.svc-hero-quick {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
  color: var(--muted);
  font-size: .95rem;
  margin-top: 8px;
}
.svc-hero-quick strong { color: var(--espresso); }
.svc-hero-quick .dot { color: var(--brass); }

.svc-hero-media { position: relative; }
.svc-hero-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
}
.svc-hero-badge {
  position: absolute; left: -12px; bottom: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-2);
  display: grid;
  font-size: .92rem;
  max-width: 240px;
}
.svc-hero-badge strong {
  color: var(--espresso);
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.svc-hero-badge span { color: var(--moss); font-weight: 600; }

/* ---------- Included list (what's in this service) ---------- */
.svc-included { background: var(--cream-soft); }
.svc-included-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .svc-included-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 24px; }
}
.svc-included-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.svc-included-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}
.svc-included-item h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--espresso);
}
.svc-included-item p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
}

/* ---------- Pricing card (single service) ---------- */
.svc-pricing { background: var(--cream); }
.svc-pricing-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}
.svc-pricing-card table {
  width: 100%;
  font-size: 1rem;
}
.svc-pricing-card th,
.svc-pricing-card td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.svc-pricing-card thead th {
  background: var(--oat);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--espresso);
}
.svc-pricing-card thead th:last-child { text-align: right; }
.svc-pricing-card tbody th {
  font-weight: 600;
  font-family: var(--font-body);
}
.svc-pricing-card tbody th span {
  display: block;
  font-weight: 400;
  font-size: .85rem;
  color: var(--muted);
  margin-top: 2px;
}
.svc-pricing-card td {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--espresso);
  text-align: right;
}
.svc-pricing-card tr:last-child th,
.svc-pricing-card tr:last-child td {
  border-bottom: none;
}
.svc-pricing-note {
  text-align: center;
  max-width: 640px;
  margin: 24px auto 0;
  font-size: .95rem;
  color: var(--muted);
}

/* ---------- Perfect for (bulleted breeds/scenarios) ---------- */
.svc-perfect { background: var(--oat); }
.svc-perfect-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .svc-perfect-grid { grid-template-columns: 1fr 1.1fr; gap: 56px; }
}
.svc-perfect-list {
  display: grid; gap: 12px;
}
.svc-perfect-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 1rem;
  color: var(--espresso);
}
.svc-perfect-list .check {
  background: var(--moss);
  margin-top: 4px;
}

/* ---------- What to expect (steps) ---------- */
.svc-expect { background: var(--cream-soft); }
.svc-expect-steps {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
  counter-reset: svcstep;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 760px) {
  .svc-expect-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1040px) {
  .svc-expect-steps { grid-template-columns: repeat(4, 1fr); }
}
.svc-expect-step {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
  counter-increment: svcstep;
}
.svc-expect-step::before {
  content: counter(svcstep, decimal-leading-zero);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 2rem;
  color: var(--terracotta);
  opacity: .35;
  position: absolute;
  top: 16px; right: 22px;
  line-height: 1;
}
.svc-expect-step h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px;
  max-width: 80%;
}
.svc-expect-step p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
}

/* ---------- Service gallery (3-up) ---------- */
.svc-gallery { background: var(--cream); }
.svc-gallery-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .svc-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.svc-gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.svc-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.svc-gallery-item img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
}
.svc-gallery-item figcaption {
  padding: 14px 16px;
  font-size: .9rem;
  color: var(--muted);
}

/* ---------- Empathy block (used on senior/anxious pages) ---------- */
.svc-empathy {
  background:
    radial-gradient(700px 400px at 85% -20%, rgba(168,94,58,.10), transparent 60%),
    var(--cream-soft);
}
.svc-empathy-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 4px solid var(--terracotta);
  border-radius: var(--radius);
  padding: 32px 36px;
  box-shadow: var(--shadow-1);
}
.svc-empathy-card p {
  font-size: 1.1rem;
  color: var(--espresso);
  line-height: 1.65;
  margin: 0 0 14px;
}
.svc-empathy-card p:last-child { margin-bottom: 0; }
.svc-empathy-card em {
  color: var(--muted);
  font-style: italic;
  font-size: .98rem;
}

/* ---------- Booking CTA panel ---------- */
.svc-cta { background: var(--cream); }
.svc-cta-panel {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  box-shadow: var(--shadow-2);
}
.svc-cta-panel h2 {
  font-size: clamp(1.75rem, 2.2vw + 1rem, 2.5rem);
  margin: 0 0 14px;
}
.svc-cta-panel p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 auto 22px;
  max-width: 520px;
}
.svc-cta-buttons {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
}
.svc-cta-meta {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 18px;
  margin-top: 22px;
  font-size: .9rem;
  color: var(--muted);
}
.svc-cta-meta .dot { color: var(--brass); }

/* ---------- "You might also want" cross-link block ---------- */
.svc-related { background: var(--cream-soft); border-top: 1px solid var(--line); }
.svc-related-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .svc-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .svc-related-grid { grid-template-columns: repeat(4, 1fr); }
}
.svc-related-card {
  display: block;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.svc-related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: var(--terracotta);
}
.svc-related-card .eyebrow {
  font-size: .72rem;
  margin: 0 0 6px;
}
.svc-related-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--espresso);
  margin-bottom: 4px;
}
.svc-related-card span {
  display: block;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.45;
}
.svc-related-card .svc-related-arrow {
  display: inline-block;
  margin-top: 10px;
  color: var(--terracotta);
  font-weight: 600;
  font-size: .9rem;
}

/* ---------- Quick stats strip ---------- */
.svc-stats {
  display: grid; gap: 0;
  grid-template-columns: repeat(2, 1fr);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 28px;
  box-shadow: var(--shadow-1);
}
@media (min-width: 640px) {
  .svc-stats { grid-template-columns: repeat(4, 1fr); }
}
.svc-stat {
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.svc-stat:nth-child(2n) { border-right: none; }
@media (min-width: 640px) {
  .svc-stat { border-bottom: none; }
  .svc-stat:nth-child(2n) { border-right: 1px solid var(--line); }
  .svc-stat:last-child { border-right: none; }
}
.svc-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1.1;
}
.svc-stat span {
  display: block;
  font-size: .82rem;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: .02em;
}

/* Demoted poetic tagline above each service H1 (SEO H1 keyword rewrite kept brand voice as eyebrow) */
.svc-hero-tag {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--terracotta-hov);
  margin: 0 0 8px;
  font-weight: 500;
}
.svc-hero-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw + 1rem, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 .4em;
  color: var(--espresso);
}

/* ---------- Print: tidy up service pages ---------- */
@media print {
  .svc-hero-badge,
  .demo-ribbon,
  .sticky-mobile-cta { display: none !important; }
}
