/* ==========================================================
   SERVICES.CSS — servicios.html
   ========================================================== */

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 580px;
}
.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }

@media (max-width: 860px) {
  .service-block { grid-template-columns: 1fr; min-height: auto; }
  .service-block:nth-child(even) { direction: ltr; }
}

.service-block__img {
  position: relative;
  overflow: hidden;
}
.service-block__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 420px;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.service-block:hover .service-block__img img { transform: scale(1.04); }

.service-block__body {
  background: var(--charcoal);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-block__num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(201,169,110,0.18);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.service-block__body .t-label { margin-bottom: 0.75rem; }
.service-block__body .t-sm    { margin-bottom: 1.5rem; }
.service-block__body .t-body  { margin-bottom: 2rem; }

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.service-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
}
.service-list__dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.services-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: var(--border-faint);
}
.services-nav__link {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid var(--graphite);
  color: var(--text-muted);
  transition: border-color var(--ease), color var(--ease);
}
.services-nav__link:hover { border-color: var(--gold); color: var(--gold); }
