/* ============================================
   service-page.css — shared service page styles
============================================ */

/* Info grid (description + highlight card) */
.sp-info-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.sp-desc-block .section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 28px;
}

.sp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.sp-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}

/* Highlight card */
.sp-highlight-card {
  border-radius: var(--radius-xl);
  padding: 40px;
  position: sticky;
  top: 100px;
}

.sp-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--accent-dim);
  border: 1px solid rgba(200,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.sp-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.sp-highlight-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.3;
}

.sp-highlight-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.sp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sp-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid var(--border-subtle);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Gallery heading */
.gallery-heading {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

/* CTA strip */
.sp-cta-strip {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0;
}

.sp-cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.sp-cta-strip p {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-primary);
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .sp-info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sp-highlight-card {
    position: static;
    padding: 28px 24px;
  }

  .sp-cta-strip .container {
    flex-direction: column;
    text-align: center;
  }
}
