/**
 * stacciolla/savoir-faire — style.css
 * Dos columnas 50/50: imagen izquierda, texto derecha.
 * Solo var(--fe-*). Cero valores hardcodeados salvo los definidos en spec.
 */

/* ============================================================
   WRAPPER
   ============================================================ */

.fe-savoir-faire {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  background: var(--fe-cream);
  width: 100%;
}

/* ============================================================
   COLUMNA IMAGEN (izquierda)
   ============================================================ */

.fe-savoir-faire__image-col {
  position: relative;
  overflow: hidden;
  background: var(--fe-cream-dark);
}

.fe-savoir-faire__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   COLUMNA TEXTO (derecha)
   ============================================================ */

.fe-savoir-faire__text-col {
  display: flex;
  align-items: center;
  padding: 140px 80px 140px 80px;
}

.fe-savoir-faire__text-inner {
  max-width: 520px;
}

/* ── Eyebrow ── */

.fe-savoir-faire__eyebrow {
  font-family: var(--fe-font-body);
  font-size: 0.65rem;
  font-weight: var(--fe-weight-regular);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fe-warm-gray);
  margin: 0 0 24px;
}

/* ── Línea dorada ── */

.fe-savoir-faire__rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--fe-gold);
  border: none;
  margin: 0 0 32px;
}

/* ── Titular ── */

.fe-savoir-faire__headline {
  font-family: var(--fe-font-display);
  font-size: 2.2rem;
  font-weight: var(--fe-weight-light);
  color: var(--fe-black);
  margin: 0 0 32px;
  line-height: 1.2;
}

/* ── Cuerpo ── */

.fe-savoir-faire__body {
  font-family: var(--fe-font-body);
  font-size: 1rem;
  font-weight: var(--fe-weight-regular);
  line-height: 1.8;
  color: var(--fe-warm-gray);
  margin: 0 0 48px;
}

/* ── CTA texto con línea dorada inferior ── */

.fe-savoir-faire__cta {
  display: inline-block;
  font-family: var(--fe-font-body);
  font-size: 0.7rem;
  font-weight: var(--fe-weight-regular);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fe-black);
  text-decoration: none;
  border-bottom: 1px solid var(--fe-gold);
  padding-bottom: 4px;
  transition: opacity var(--fe-transition);
}

.fe-savoir-faire__cta:hover {
  opacity: 0.6;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1024px) {
  .fe-savoir-faire__text-col {
    padding: 80px 48px;
  }

  .fe-savoir-faire__headline {
    font-size: 1.9rem;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 768px) {
  .fe-savoir-faire {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  /* Imagen arriba */
  .fe-savoir-faire__image-col {
    order: -1;
    aspect-ratio: 4 / 3;
    position: relative;
  }

  .fe-savoir-faire__image {
    position: absolute;
  }

  .fe-savoir-faire__text-col {
    padding: 60px var(--fe-space-4);
  }

  .fe-savoir-faire__text-inner {
    max-width: 100%;
  }

  .fe-savoir-faire__headline {
    font-size: 1.7rem;
  }
}
