/* ═══════════════════════════════════════════════════════════
   MAGIA PIURA — Home
   Maquetación fiel al frame de Figma "Home" (node 1446:244)
   Enfoque mobile-first · Metodología BEM
═══════════════════════════════════════════════════════════ */

/* ---------- Design tokens (extraídos del frame) ---------- */
:root {
  /* Colores */
  --color-cream: #f7f0ee;   /* fondo base */
  --color-dark: #3c2b2a;    /* texto oscuro */
  --color-brown: #8c6e4c;   /* marrón principal */
  --color-gold: #b59160;    /* dorado / acentos */
  --color-tan: #a1886d;     /* estadísticas */
  --color-text-muted: rgba(110, 110, 110, 0.72);
  --color-band: rgba(193, 178, 161, 0.3);

  /* Tipografías */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;

  /* Layout */
  --max-width: 1294px;
  --gutter: 24px;

  /* Sombras */
  --shadow-nav: 0 2px 8px rgba(60, 43, 42, 0.08);
  --shadow-nav-scrolled: 0 4px 16px rgba(60, 43, 42, 0.15);
  --shadow-featured: 0 4px 16px 4px rgba(140, 110, 76, 0.7);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-cream);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════
   COMPONENTES REUTILIZABLES
═══════════════════════════════════════════════════════════ */

/* Enlace-botón con subrayado (CTA secundario) */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-brown);
  background: var(--color-cream);
  border-bottom: 1.5px solid var(--color-brown);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-link:hover,
.btn-link:focus-visible {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
}

.btn-link--right {
  align-self: flex-end;
}

.btn-link__arrow {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Botón sólido (tarjetas de producto) */
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-cream);
  background: rgba(140, 110, 76, 0.8);
  border-bottom: 1.5px solid var(--color-cream);
  transition: background 0.2s ease;
}

.btn-solid:hover,
.btn-solid:focus-visible {
  background: var(--color-brown);
}

.btn-solid__arrow {
  width: 22px;
  height: 22px;
  fill: var(--color-cream);
  flex-shrink: 0;
}

/* Divisor de línea decorativo */
.section-divider {
  width: 100%;
  height: auto;
  max-width: 130px;
  margin: 24px auto;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════
   BARRA DE ANUNCIO
═══════════════════════════════════════════════════════════ */
.announcement {
  width: 100%;
  background: var(--color-band);
}

.announcement__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.announcement__text {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--color-dark);
  padding: 10px 16px;
  text-align: center;
}

.announcement__btn {
  height: 100%;
  align-self: stretch;
  min-height: 56px;
  padding: 10px 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: #f5f5f5;
  background: var(--color-dark);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.announcement__btn:hover,
.announcement__btn:focus-visible {
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════
   HEADER / NAVBAR
═══════════════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-cream);
  box-shadow: var(--shadow-nav);
  transition: box-shadow 0.3s ease;
}

.header--scrolled {
  box-shadow: var(--shadow-nav-scrolled);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 var(--gutter);
  height: 72px;
}

.header__logo-link {
  flex-shrink: 0;
}

.header__logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

/* Navegación: en móvil se despliega como panel absoluto bajo el navbar */
.nav__list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  background: var(--color-cream);
  padding: 12px 24px 20px;
  box-shadow: 0 8px 16px rgba(60, 43, 42, 0.1);
  z-index: 200;
}

.nav__list--open {
  display: flex;
}

.nav__link {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-brown);
  padding: 10px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

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

.nav__link--active {
  font-style: italic;
  font-weight: 600;
  border-bottom: 1.5px solid var(--color-gold);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.icon-btn {
  display: flex;
  align-items: center;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.icon-btn:hover {
  opacity: 0.7;
}

.icon-btn__svg {
  width: 24px;
  height: 24px;
  fill: var(--color-brown);
}

/* Hamburguesa */
.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-brown);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 632px;
  padding: 48px var(--gutter);
  text-align: center;
  align-items: center;
  margin: 0 auto;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-dark);
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 400;
}

.hero__title-top {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 6vw, 40px);
  color: var(--color-dark);
  line-height: 1.1;
}

.hero__title-highlight {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(56px, 12vw, 72px);
  color: var(--color-gold);
  line-height: 1;
}

.hero__lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 2.4vw, 20px);
  color: var(--color-dark);
  line-height: 1.5;
  max-width: 541px;
}

.hero .btn-link {
  margin-top: 6px;
  font-size: clamp(18px, 2.4vw, 24px);
}

/* ═══════════════════════════════════════════════════════════
   CITA
═══════════════════════════════════════════════════════════ */
.quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px var(--gutter);
}

.quote__ornament {
  height: 20px;
  width: auto;
  max-width: 90%;
}

.quote__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(16px, 2.4vw, 22px);
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.7;
  max-width: 920px;
}

/* ═══════════════════════════════════════════════════════════
   ¿QUIÉNES SOMOS?
═══════════════════════════════════════════════════════════ */
.about {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px var(--gutter) 40px;
}

.about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.about__media img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

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

.about__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--color-brown);
  line-height: 1.15;
}

.about__subtitle {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 3vw, 30px);
  color: var(--color-brown);
  line-height: 1.3;
}

.about__text {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.2vw, 22px);
  color: var(--color-brown);
  line-height: 1.6;
  max-width: 811px;
}

/* ═══════════════════════════════════════════════════════════
   ESTADÍSTICAS
═══════════════════════════════════════════════════════════ */
.stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px var(--gutter) 48px;
}

.stats__ornament {
  height: 20px;
  width: auto;
}

.stats__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--color-brown);
  text-align: center;
  line-height: 1.2;
}

.stats__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.stat__leaf {
  height: 90px;
  width: auto;
}

.stat__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(48px, 8vw, 64px);
  color: var(--color-tan);
  line-height: 1.1;
}

.stat__label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 3vw, 30px);
  color: var(--color-tan);
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════════
   BANDA DE TEXTURA
═══════════════════════════════════════════════════════════ */
.texture-band {
  position: relative;
  width: 100%;
  height: 117px;
  overflow: hidden;
  margin: 16px 0;
}

.texture-band__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.7);
}

.texture-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(247, 240, 238, 0.58);
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTOS POPULARES
═══════════════════════════════════════════════════════════ */
.products {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px var(--gutter) 48px;
}

.products__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--color-brown);
  text-align: center;
  line-height: 1.2;
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  width: 100%;
  max-width: 400px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.product-card__media {
  width: 100%;
  aspect-ratio: 396 / 361;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

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

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--color-brown);
  text-align: center;
}

.product-card__price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 2.2vw, 22px);
  color: var(--color-brown);
}

/* ═══════════════════════════════════════════════════════════
   SECCIONES DESTACADAS (feature rows)
═══════════════════════════════════════════════════════════ */
.features {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter) 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--color-brown);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 8px;
}

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

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

.feature__media--tall {
  aspect-ratio: 428 / 400;
}

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

.feature:hover .feature__media img {
  transform: scale(1.03);
}

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

.feature__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 46px);
  color: var(--color-brown);
  line-height: 1.2;
}

.feature__subtitle {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(20px, 3vw, 34px);
  color: var(--color-brown);
}

.feature__text {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.2vw, 22px);
  color: var(--color-brown);
  line-height: 1.65;
  max-width: 500px;
}

/* ═══════════════════════════════════════════════════════════
   REDES SOCIALES
═══════════════════════════════════════════════════════════ */
.social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px var(--gutter) 48px;
}

.social__ornament {
  height: 20px;
  width: auto;
}

.social__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--color-brown);
  text-align: center;
  line-height: 1.2;
}

.social__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.social__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 240px;
}

.social__media {
  position: relative;
  width: 100%;
  aspect-ratio: 233 / 393;
  border-radius: 4px;
  overflow: hidden;
}

.social__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social__media--dim::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(60, 43, 42, 0.5);
}

.social__item--center {
  width: 280px;
  order: -1; /* móvil: destacado arriba */
}

.social__featured {
  width: 100%;
  aspect-ratio: 371 / 629;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-featured);
}

.social__label {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--color-brown);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--color-cream);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 295px;
}

.footer__rating {
  display: flex;
  gap: 4px;
}

.footer__star {
  fill: var(--color-gold);
}

.footer__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-brown);
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 16px;
  color: var(--color-brown);
}

.footer__social-link {
  display: flex;
  transition: color 0.2s ease;
}

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

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-brown);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-brown);
  transition: color 0.2s ease;
}

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

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-brown);
  line-height: 1.5;
}

.footer__contact-icon {
  color: var(--color-brown);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-brown);
  text-align: center;
  padding: 16px var(--gutter) 32px;
}

/* ═══════════════════════════════════════════════════════════
   ANIMACIÓN DE ENTRADA (reveal)
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — breakpoints ascendentes (mobile-first)
═══════════════════════════════════════════════════════════ */

/* ── ≥ 480px: tarjetas de producto y branding un poco más amplios ── */
@media (min-width: 480px) {
  .hero__content {
    padding: 64px var(--gutter);
  }
  .about__media img {
    width: 220px;
  }
}

/* ── ≥ 768px: navegación horizontal, filas feature a 2 columnas ── */
@media (min-width: 768px) {
  .header__inner {
    height: 98px;
  }
  .header__logo {
    height: 80px;
  }
  .header__burger {
    display: none;
  }
  .nav__list {
    display: flex;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    padding: 0;
    box-shadow: none;
  }
  .nav__link {
    font-size: 16px;
    padding: 8px;
  }

  /* Hero alineado a la izquierda como en el frame */
  .hero {
    min-height: 722px;
  }
  .hero__content {
    margin: 0;
    margin-left: clamp(24px, 5vw, 46px);
    text-align: center;
  }

  /* ¿Quiénes somos?: badge + texto en fila */
  .about__inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
  .about__body {
    align-items: flex-end;
    text-align: right;
    flex: 1;
  }

  /* Estadísticas en fila */
  .stats__grid {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1000px;
    align-self: center;
  }
  .stat {
    flex: 1;
  }
  .stat__leaf {
    height: 120px;
  }

  /* Feature rows imagen + texto */
  .feature {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 32px 24px;
  }
  .feature__media {
    flex-shrink: 0;
    width: 428px;
  }
  .feature__body {
    align-items: flex-end;
    text-align: right;
    flex: 1;
  }
  .feature--tall {
    align-items: flex-start;
  }

  /* Redes sociales en fila */
  .social__grid {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
  .social__item--center {
    order: 0;
  }

  /* Footer en columnas */
  .footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 32px;
  }
}

/* ── ≥ 1024px: rejilla de productos a 3 columnas y afinado ── */
@media (min-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1160px;
  }
  .about__media img {
    width: 232px;
  }
  .social__item {
    width: 232px;
  }
  .social__item--center {
    width: 360px;
  }
}

/* ── ≥ 1280px: contenedores a ancho máximo del diseño ── */
@media (min-width: 1280px) {
  .header__inner,
  .announcement__inner {
    padding-left: 33px;
    padding-right: 33px;
  }
}

/* ═══════════════════════════════════════════════════════════
   PRIMITIVOS COMPARTIDOS ENTRE PÁGINAS INTERIORES
   (usados por nosotros.css, chocolates.css, etc.)
═══════════════════════════════════════════════════════════ */

/* Título de sección */
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 5vw, 48px);
  color: var(--color-brown);
  line-height: 1.15;
}

.section-title--center {
  text-align: center;
}

/* Texto de cuerpo */
.body-text {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.6vw, 24px);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ── Hero de página interior (texto + imagen a sangre) ── */
.page-hero {
  display: flex;
  flex-direction: column;
}

.page-hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px var(--gutter);
  max-width: 640px;
  margin: 0 auto;
  order: 2;
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 8vw, 57px);
  color: var(--color-dark);
  line-height: 1.1;
}

.page-hero__subtitle {
  line-height: 1.2;
}

.page-hero__subtitle-em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 6vw, 40px);
  color: var(--color-gold);
}

.page-hero__subtitle-alt {
  font-family: var(--font-display);
  font-size: clamp(26px, 5.5vw, 36px);
  color: var(--color-brown);
}

.page-hero__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(16px, 3vw, 24px);
  color: var(--color-brown);
  line-height: 1.5;
  max-width: 541px;
}

.page-hero__media {
  order: 1;
  width: 100%;
  height: clamp(240px, 50vw, 722px);
  overflow: hidden;
}

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

/* ── Dúo de imágenes a sangre ── */
.duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  width: 100%;
  margin: 24px 0;
}

.duo__item {
  overflow: hidden;
}

.duo__item img {
  width: 100%;
  height: 90%;
  object-fit: cover;
}

/* ── Banda de foto a sangre ── */
.photo-band {
  width: 100%;
  height: clamp(160px, 20vw, 271px);
  overflow: hidden;
  margin: 24px 0;
}

.photo-band__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  /* Hero interior: texto izquierda, imagen derecha a sangre */
  .page-hero {
    flex-direction: row;
    align-items: stretch;
    min-height: 690px;
  }
  .page-hero__content {
    order: 1;
    flex: 1;
    justify-content: center;
    max-width: none;
    margin: 0;
    padding-left: clamp(24px, 5vw, 70px);
  }
  .page-hero__media {
    order: 2;
    flex: 1;
    height: auto;
  }

  .duo {
    grid-template-columns: 1fr 1fr;
  }
}
