/* =================================================================
   2gether2shine — SERVICE PAGES (photography layer)
   Loaded after style.min.css on the individual service pages.
   ================================================================= */

/* ── Hero: real photo instead of the mascot ─────────────────── */
.svc-hero { position: relative; overflow: hidden; }
.svc-hero__photo {
  position: relative;
  margin: 0 auto 26px;
  width: min(100%, 560px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 22px;
  border: 1.5px solid var(--ink, #1A1A2E);
  background: #e8e2d6;
  box-shadow: 0 24px 48px -26px rgba(26,26,46,.44);
}
.svc-hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.svc-hero__photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 18px 14px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .3px;
  color: #fff;
  background: linear-gradient(to top, rgba(14,14,26,.84), transparent);
  text-align: left;
}

/* ── Work strip: three real job photos ──────────────────────── */
.svc-work {
  background: var(--paper, #fff);
  padding: 74px var(--gutter, 56px);
  border-top: 1px solid var(--line, #E8DFD0);
  border-bottom: 1px solid var(--line, #E8DFD0);
}
.svc-work__inner { max-width: var(--max, 1440px); margin: 0 auto; }
.svc-work__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 36px; flex-wrap: wrap;
  margin-bottom: 34px;
}
.svc-work__head h2 {
  font-family: var(--f-display, 'Bricolage Grotesque', sans-serif);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -1.2px;
  line-height: 1.04;
  margin: 0;
}
.svc-work__head h2 em {
  font-family: var(--f-serif, 'Fraunces', Georgia, serif);
  font-weight: 600; font-style: italic;
  color: var(--primary, #E63946);
}
.svc-work__head p {
  max-width: 360px;
  font-size: 14.5px; line-height: 1.65;
  color: var(--ink-soft, #5E5E70);
  margin: 0;
}

.svc-work__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 16px;
}
.svc-work__cell {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #e8e2d6;
  min-height: 330px;
}
.svc-work__cell img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .8s cubic-bezier(.2,.7,.3,1);
}
.svc-work__cell:hover img { transform: scale(1.04); }
.svc-work__cell::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,14,26,.7) 0%, rgba(14,14,26,.08) 46%, transparent 68%);
}
.svc-work__cell figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 20px;
  color: #fff;
}
.svc-work__cell figcaption strong {
  display: block;
  font-family: var(--f-display, 'Bricolage Grotesque', sans-serif);
  font-weight: 700; font-size: 16px;
  letter-spacing: -.2px;
}
.svc-work__cell figcaption span {
  display: block;
  font-size: 12.5px;
  color: rgba(255,255,255,.8);
  margin-top: 4px;
}

/* ── "When should you book" with a photo alongside ──────────── */
.svc-when--photo .svc-when__inner {
  max-width: var(--max, 1440px);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.svc-when--photo .svc-when__copy h2 { text-align: left; }
.svc-when__media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 4 / 5;
  background: #e8e2d6;
  box-shadow: 0 26px 52px -28px rgba(26,26,46,.4);
}
.svc-when__media img {
  width: 100%; height: 112%;
  object-fit: cover; display: block;
  margin-top: -6%;
  will-change: transform;
}
.svc-when__badge {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 2;
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 15px 18px;
}
.svc-when__badge-ic {
  width: 42px; height: 42px; border-radius: 999px;
  background: var(--accent, #5CC85C); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.svc-when__badge-ic svg { width: 21px; height: 21px; }
.svc-when__badge strong {
  display: block;
  font-family: var(--f-display, 'Bricolage Grotesque', sans-serif);
  font-weight: 700; font-size: 15px;
  color: var(--ink, #1A1A2E);
}
.svc-when__badge small {
  display: block;
  font-size: 12px;
  color: var(--ink-soft, #5E5E70);
  margin-top: 2px;
}

/* ── Equipment section gets a photo header ──────────────────── */
.svc-equipment--photo { position: relative; overflow: hidden; }
.svc-equipment__photo {
  position: relative;
  max-width: 760px;
  margin: 0 auto 34px;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: 20px;
  background: #e8e2d6;
}
.svc-equipment__photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .svc-work__grid { grid-template-columns: 1fr 1fr; }
  .svc-work__cell { min-height: 290px; }
  .svc-when--photo .svc-when__inner { grid-template-columns: 1fr; gap: 34px; }
  .svc-when--photo .svc-when__copy h2 { text-align: center; }
  .svc-when__media { aspect-ratio: 16 / 11; }
}
@media (max-width: 640px) {
  .svc-work { padding: 60px 20px; }
  .svc-work__grid { grid-template-columns: 1fr; }
  .svc-work__cell { min-height: 260px; }
  .svc-hero__photo { border-radius: 18px; }
  .svc-equipment__photo { aspect-ratio: 16 / 10; }
}
@media (prefers-reduced-motion: reduce) {
  .svc-work__cell img { transition: none; }
  .svc-when__media img { transform: none !important; }
}

/* ── Office page: photo above the quotation copy ─────────────── */
.svc-quote__photo {
  position: relative;
  margin: 0 0 26px;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  background: #e8e2d6;
}
.svc-quote__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-quote__photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 18px 14px;
  font-size: 12.5px; font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(14,14,26,.84), transparent);
}

/* ── Laundry page: photo header above the scope checklist ────── */
.svc-checklist__photo {
  position: relative;
  margin: 0 auto 32px;
  max-width: 900px;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 21 / 9;
  background: #e8e2d6;
}
.svc-checklist__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-checklist__photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 20px 15px;
  font-size: 12.5px; font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(14,14,26,.84), transparent);
}
@media (max-width: 640px) {
  .svc-checklist__photo { aspect-ratio: 16 / 10; }
}
