/* ─── Services Hero Banner ───────────────────────────────────────────────── */
@media (min-width: 1024px) { .service-item h3 {
  scroll-margin-top: 160px;
}}

@media (min-width: 768px)  { .service-item h3 { scroll-margin-top: 150px; } }

.service-item h3 {
  scroll-margin-top: 110px;
}

.services-hero {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px)  { .services-hero { height: 350px; } }

.services-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-hero-badge {
  position: relative;
  z-index: 1;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  border-radius: 8px;
  padding: 12px 24px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}
@media (min-width: 768px)  { .services-hero-badge { font-size: 52px; padding: 14px 30px; } }
@media (min-width: 1024px) { .services-hero-badge { font-size: 64px; padding: 16px 36px; } }

/* ─── Intro Section ──────────────────────────────────────────────────────── */
.services-intro {
  padding: 32px 0;
}
@media (min-width: 768px)  { .services-intro { padding: 40px 0; } }

.services-intro .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services-intro-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.29;
  letter-spacing: 0.03em;
  color: var(--color-text);
}
@media (min-width: 768px)  { .services-intro-heading { font-size: 34px; } }
@media (min-width: 1024px) { .services-intro-heading { font-size: 40px; line-height: 1.6; } }

.services-intro-body {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--color-text);
}
@media (min-width: 768px)  { .services-intro-body { font-size: 18px; } }
@media (min-width: 1024px) { .services-intro-body { font-size: 20px; } }

/* ─── Service Items List ─────────────────────────────────────────────────── */
.services-list {
  padding: 0 0 20px;
}
@media (min-width: 1024px) { .services-list { padding: 0 0 100px; } }

.services-list .container {
  display: flex;
  flex-direction: column;
}

.services-list-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: left;
  color: var(--color-text);
  margin-bottom: 20px;
}
@media (min-width: 1024px) { .services-list-heading { font-size: 60px; margin-bottom: 24px; } }

/* ─── Individual Service Item ────────────────────────────────────────────── */
.service-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 0 20px;
}
@media (min-width: 1024px) { .service-item { gap: 8px; padding: 0 0 24px; } }

.service-item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--color-text);
}
@media (min-width: 768px)  { .service-item h3 { font-size: 32px; } }
@media (min-width: 1024px) { .service-item h3 { font-size: 40px; line-height: 1.6; } }

.service-item p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--color-text);
}
@media (min-width: 768px)  { .service-item p { font-size: 18px; } }
@media (min-width: 1024px) { .service-item p { font-size: 20px; } }
