/* ═══════════════════════════════════════════════════════════
   MAGIA PIURA — Página "Nuestros Chocolates"
   Estilos específicos. Primitivos compartidos en styles.css
   (.section-title, .body-text, .page-hero, .duo, .photo-band).
   Frame de Figma "Nuestros chocolates" (node 1287:892) · Mobile-first · BEM
═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   INTRO — "Desde la tierra hasta tus manos"
═══════════════════════════════════════════════════════════ */
.choc-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px var(--gutter);
  text-align: center;
}

.choc-intro__ornament {
  height: 20px;
  width: auto;
}

.choc-intro__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 2.6vw, 24px);
  color: var(--color-brown);
  line-height: 1.4;
}

.choc-intro__body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 2.2vw, 20px);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 920px;
}

/* ═══════════════════════════════════════════════════════════
   CITAS ALTERNADAS (imagen + frase)
═══════════════════════════════════════════════════════════ */
.quotes {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px var(--gutter);
}

.quote-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 27px;
  padding: 24px 0;
}

.quote-row__media {
  width: 100%;
  max-width: 428px;
  aspect-ratio: 428 / 267;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.quote-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

.quote-row:hover .quote-row__media img {
  transform: scale(1.03);
}

.quote-row__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(22px, 3.6vw, 36px);
  color: var(--color-text-muted);
  line-height: 1.3;
  text-align: center;
  flex: 1;
}

/* ═══════════════════════════════════════════════════════════
   PROCESO BEAN TO BAR
═══════════════════════════════════════════════════════════ */
.process {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px var(--gutter);
}

.process__title {
  text-align: center;
}

.process__panorama {
  width: 100%;
  height: clamp(160px, 20vw, 246px);
  border-radius: 8px;
  overflow: hidden;
}

.process__panorama img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.process__text {
  font-family: var(--font-body);
  font-size: clamp(15px, 2.2vw, 20px);
  color: var(--color-text-muted);
  line-height: 1.7;
  text-align: center;
  max-width: 1194px;
}

.process__trio {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  max-width: 960px;
}

.process__trio-item {
  aspect-ratio: 280 / 529;
  border-radius: 8px;
  overflow: hidden;
}

.process__trio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.process__trio-item:hover img {
  transform: scale(1.04);
}

/* ═══════════════════════════════════════════════════════════
   EL ARTE DEL CHOCOLATE
═══════════════════════════════════════════════════════════ */
.arte {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px var(--gutter);
}

.arte__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 27px;
  text-align: center;
}

.arte__desc {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.6vw, 24px);
  color: var(--color-brown);
  line-height: 1.5;
  max-width: 432px;
}

.arte__media {
  width: 100%;
  max-width: 428px;
  aspect-ratio: 428 / 267;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.arte__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.arte:hover .arte__media img {
  transform: scale(1.03);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  /* Citas: imagen + frase en fila; filas pares invertidas */
  .quote-row {
    flex-direction: row;
    gap: 40px;
  }
  .quote-row--reverse {
    flex-direction: row-reverse;
  }
  .quote-row__media {
    width: 428px;
  }
  .quote-row__text {
    text-align: right;
  }
  .quote-row--reverse .quote-row__text {
    text-align: left;
  }

  /* Proceso: trío en 3 columnas */
  .process__trio {
    grid-template-columns: repeat(3, 1fr);
  }

  /* El Arte: texto izquierda (der.) + imagen derecha */
  .arte {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 100px;
  }
  .arte__body {
    align-items: flex-end;
    text-align: right;
    max-width: 523px;
  }
  .arte__desc {
    text-align: right;
  }
}
