/* ─── SERVICE PAGE SHARED STYLES ─── */

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.svc-body-text {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 18px;
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 24px 0 32px;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.what-item {
  padding: 14px 18px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.15s, color 0.15s;
}
.what-item:hover { background: var(--ink); color: var(--white); }
.what-arrow { color: var(--blue); font-size: 0.9rem; flex-shrink: 0; transition: color 0.15s; }
.what-item:hover .what-arrow { color: var(--yellow); }

.svc-note {
  background: var(--offwhite);
  border-left: 3px solid var(--blue);
  padding: 18px 22px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 8px;
}
.svc-note strong { color: var(--ink); display: block; margin-bottom: 4px; }
.svc-note a { color: var(--blue); }

/* Sidebar */
.svc-sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-cta {
  background: var(--ink);
  padding: 28px 24px;
}
.sidebar-cta h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.sidebar-cta p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.sidebar-cta .btn-yellow { margin-bottom: 10px; }

.sidebar-trust {
  border: 1px solid var(--border);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tr-check {
  width: 20px;
  height: 20px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--ink);
  font-weight: 900;
  flex-shrink: 0;
}

.sidebar-cities {
  border: 1px solid var(--border);
  padding: 20px 22px;
}
.sidebar-cities h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.sidebar-cities ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-cities ul a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s;
}
.sidebar-cities ul a::before { content: '→'; color: var(--blue); font-size: 0.85rem; }
.sidebar-cities ul a:hover { color: var(--blue); }

/* Related services strip */
.related-services { padding: 56px 0; border-top: 1px solid var(--border); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  margin-top: 32px;
}
.related-item {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.15s, color 0.15s;
}
.related-item:hover { background: var(--ink); color: var(--yellow); }
.related-item span { opacity: 0.4; transition: opacity 0.15s; }
.related-item:hover span { opacity: 1; }

/* ─── STYLED PHOTO PLACEHOLDERS ─── */
.photo-ph {
  background: var(--ink-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.photo-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.015) 20px,
    rgba(255,255,255,0.015) 21px
  );
}
.photo-ph-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  position: relative;
  z-index: 1;
}
.photo-ph-icon {
  font-size: 2rem;
  opacity: 0.2;
  position: relative;
  z-index: 1;
}
/* Service card photo placeholders — 16:9 */
.svc-ph {
  aspect-ratio: 16/9;
}
/* Hero / wide placeholders */
.hero-ph {
  aspect-ratio: 16/7;
  width: 100%;
}
/* Square-ish */
.sq-ph {
  aspect-ratio: 4/3;
}

@media (max-width: 900px) {
  .svc-detail-grid { grid-template-columns: 1fr; }
  .svc-sidebar { order: -1; }
  .what-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .related-grid { grid-template-columns: 1fr; }
}
