/* service-detail.css — page-specific styles for individual service pages
   (/services/luxury-dry-cleaning/, /services/knit-blocking/, /bridal/, etc.).
   Loads AFTER services.css (hero, trust bar, section scaffolding, FAQ, schedule
   all come from there). Tokens/reset/buttons live in base.css; chrome in
   header.css / footer.css. */

/* ── Hero CTA row (under the intro paragraph) ────────────────── */
.hero-cta {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

/* ── Photo gallery — staggered fading panels ─────────────────── */
.svc-gallery-section {
  background: var(--white);
  padding: 56px 0 8px;
}
.svc-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.svc-gallery.svc-gallery-4 { grid-template-columns: repeat(4, 1fr); }
.svc-panel {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-md);
  background: var(--border-light);
}
.svc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.svc-slide.active { opacity: 1; }
.svc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.svc-panel-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.6rem 1.2rem 0.85rem;
  background: linear-gradient(180deg, rgba(15,23,42,0) 0%, rgba(15,23,42,0.72) 100%);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}
.svc-gallery-note {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted-light);
}

/* ── Feature trio (Why Choose Alex's) ────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.feature-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.feature-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
}
.feature-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ── Detail split blocks (text + included list) ──────────────── */
.detail-section {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: var(--section-py) 0;
}
.detail-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.6rem;
  align-items: start;
}
.detail-copy h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 1.5rem 0 0.5rem;
}
.detail-copy h3:first-child { margin-top: 0; }
.detail-copy p { font-size: 0.93rem; color: var(--slate); line-height: 1.75; margin-bottom: 0.6rem; }
.detail-copy a { color: var(--navy); font-weight: 600; }
.included-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy-dark);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.included-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.8rem;
}
.included-list { list-style: none; margin: 0; padding: 0; }
.included-list li {
  position: relative;
  padding: 0.34rem 0 0.34rem 1.7rem;
  font-size: 0.89rem;
  color: var(--slate);
  line-height: 1.6;
}
.included-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="black"><path fill-rule="evenodd" d="M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z" clip-rule="evenodd"/></svg>') center / contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="black"><path fill-rule="evenodd" d="M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z" clip-rule="evenodd"/></svg>') center / contain no-repeat;
}

/* ── Garment / item type chips ───────────────────────────────── */
.garment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}
.garment-chips span {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.32rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-dark);
  white-space: nowrap;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .svc-gallery, .svc-gallery.svc-gallery-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
  .feature-item { padding: 1.2rem 1.1rem 1.1rem; }
  .detail-split { grid-template-columns: 1fr; gap: 1.6rem; }
}

@media (max-width: 640px) {
  .svc-gallery-section { padding-top: 36px; }
  /* gallery becomes a swipeable snap row — every panel still reachable */
  .svc-gallery, .svc-gallery.svc-gallery-4 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.9rem;
    padding-bottom: 0.5rem;
  }
  .svc-panel {
    flex: 0 0 78%;
    scroll-snap-align: center;
  }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-cta .btn-outline { margin-left: 0; }
}
