/* ==============================================
   LUMIÈRE — SERVICIOS CSS
   ============================================== */

.services-detail {
  padding: 5rem clamp(1.5rem, 5vw, 6rem);
  background: var(--black);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
  padding: 5rem 0;
  position: relative;
  align-items: center;
}

.service-detail--reverse {
  direction: rtl;
}
.service-detail--reverse > * {
  direction: ltr;
}

.service-detail__num {
  position: absolute;
  top: 3rem;
  right: 0;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  pointer-events: none;
}

.service-detail--reverse .service-detail__num {
  right: auto;
  left: 0;
}

.service-detail__img {
  overflow: hidden;
  height: 420px;
}

.service-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
  filter: brightness(.8) saturate(.9);
}

.service-detail:hover .service-detail__img img {
  transform: scale(1.04);
  filter: brightness(.9) saturate(1);
}

.service-detail__body {
  padding: 2rem clamp(1.5rem, 4vw, 4rem);
  position: relative;
  z-index: 1;
}

.service-detail__body h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.service-detail__body em {
  font-style: italic;
  color: var(--gold);
}

.service-detail__body p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.service-detail__list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.service-detail__list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .85rem;
  color: var(--muted);
}

.service-detail__list li::before {
  content: '✦';
  color: var(--gold);
  font-size: .6rem;
  flex-shrink: 0;
}

/* FAQ */
.faq {
  padding: 7rem clamp(1.5rem, 5vw, 6rem);
  background: var(--dark);
}

.faq__header {
  margin-bottom: 3rem;
}

.faq__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
}

.faq__header em {
  font-style: italic;
  color: var(--gold);
}

.faq__list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  text-align: left;
  letter-spacing: .02em;
  transition: color var(--transition);
}

.faq__question:hover { color: var(--gold); }

.faq__icon {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}

.faq__item.open .faq__answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq__answer p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.85;
}

@media (max-width: 820px) {
  .service-detail {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .service-detail--reverse { direction: ltr; }
  .service-detail__img { height: 280px; }
  .service-detail__num { display: none; }
  .service-detail__body { padding: 2rem 0; }
}
