/* ══════════════════════════════════════════
   CICCHITTI — HOME CSS
══════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  background: var(--dark);
  pointer-events: none;
}

.hero__preloader {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease;
}

.hero__preloader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.hero__preloader-spinner {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200, 169, 110, 0.18);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: heroSpin 0.9s linear infinite;
}

@keyframes heroSpin {
  to { transform: rotate(360deg); }
}

.hero__overlay-base {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10, 6, 4, 0.5);
}

.hero__overlay-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, transparent 20%, rgba(10, 6, 4, 0.5) 100%),
    linear-gradient(to bottom, rgba(10, 6, 4, 0.45) 0%, transparent 25%, transparent 58%, rgba(10, 6, 4, 0.78) 100%);
}

.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn 1.2s ease 0.4s forwards;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 0.5px;
  background: var(--gold);
  opacity: 0.6;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(54px, 8.5vw, 100px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: 0.03em;
  color: var(--cream);
  margin-bottom: 6px;
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
}

.hero__title strong {
  font-weight: 500;
  color: #fff;
}

.hero__divider {
  width: 1px;
  height: 28px;
  margin: 16px 0;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
  opacity: 0;
  animation: fadeUp 1s ease 1.3s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
  }
}

.hero__sub {
  font-family: var(--sans);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 300;
  color: rgba(244, 236, 216, 0.68);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  line-height: 1.65;
  max-width: 800px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__lateral {
  position: absolute;
  left: 38px;
  bottom: 50%;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: left center;
  z-index: 10;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(244, 236, 216, 0.32);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.hero__lateral::before {
  content: '';
  display: block;
  width: 28px;
  height: 0.5px;
  background: rgba(244, 236, 216, 0.28);
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s ease 2s forwards;
}

.hero__scroll span {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244, 236, 216, 0.4);
}

.hero__scroll-line {
  width: 0.5px;
  height: 38px;
  background: linear-gradient(to bottom, rgba(200, 169, 110, 0.6), transparent);
  animation: scrollPulse 2.2s ease-in-out 2.2s infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

/* ── STATS STRIP ── */
.stats {
  background: var(--cream-deep);
  padding: 56px 60px 52px;
  overflow: hidden;
}

.stats__track {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.stats__item {
  text-align: center;
  flex: 1;
  max-width: 200px;
}

.stats__item--dup,
.stats__div--dup {
  display: none;
}

.stats__num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--wine);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.stats__lbl {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 400;
}

.stats__div {
  width: 0.5px;
  height: 50px;
  background: rgba(75, 15, 26, 0.15);
  flex-shrink: 0;
  margin: 0 20px;
}

/* ── VINOS SECTION ── */
.wines {
  background: var(--cream);
  padding: 80px 52px 92px;
}

.wines__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid rgba(75, 15, 26, 0.15);
}

.wines__header-title {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--wine);
  max-width: none;
}

.wines__header-right {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: var(--wine);
  max-width: none;
  text-align: center;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.wines__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wine-card {
  background: #fff;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 0.5px solid rgba(75, 15, 26, 0.1);
  transition: transform 0.4s ease;
  text-decoration: none;
  display: block;
  color: inherit;
}

.wine-card:hover {
  transform: translateY(-4px);
}

.wine-card__img-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wine-card--featured .wine-card__img-wrap {
  height: 420px;
}

.wine-card--small .wine-card__img-wrap {
  height: 280px;
}

.wine-card__img-wrap img {
  max-height: 100%;
  max-width: 70%;
  object-fit: contain;
  padding: 24px 0;
  transition: transform 0.6s ease;
}

.wine-card:hover .wine-card__img-wrap img {
  transform: scale(1.04);
}

.wine-card__body {
  padding: 22px 26px 26px;
}

.wine-card__line {
  width: 28px;
  height: 0.5px;
  background: var(--gold);
  margin-bottom: 12px;
}

.wine-card__range {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 6px;
}

.wine-card__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--wine);
  line-height: 1.2;
  margin-bottom: 8px;
}

.wine-card--featured .wine-card__name {
  font-size: 28px;
}

.wine-card__desc {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--wine);
  line-height: 1.6;
  margin-bottom: 18px;
}

.wine-card__cta {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 0.5px solid rgba(75, 15, 26, 0.25);
  padding-bottom: 2px;
  transition: all 0.25s;
}

.wine-card:hover .wine-card__cta {
  border-bottom-color: var(--wine);
  gap: 10px;
}

.wine-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--wine);
  padding: 5px 11px;
}

.wines__cta {
  margin-top: 40px;
  text-align: center;
}

/* ── LINE PROMO CARDS (reemplazan wine-card cuando se muestra por línea) ── */
.line-promo-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
  transition: transform 0.4s ease;
}

.line-promo-card:hover {
  transform: translateY(-4px);
}

.line-promo-card--featured {
  height: 520px;
}

.line-promo-card--small {
  height: 360px;
}

.line-promo-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.line-promo-card:hover .line-promo-card__bg {
  transform: scale(1.04);
}

.line-promo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(14, 10, 8, 0.08) 0%,
      rgba(14, 10, 8, 0.18) 40%,
      rgba(14, 10, 8, 0.75) 100%);
}

.line-promo-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 32px;
  z-index: 2;
}

.line-promo-card__eyebrow {
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.line-promo-card__eyebrow::before {
  content: '';
  width: 18px;
  height: 0.5px;
  background: var(--gold);
  opacity: 0.6;
}

.line-promo-card__name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 8px;
}

.line-promo-card--featured .line-promo-card__name {
  font-size: 36px;
}

.line-promo-card__desc {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(244, 236, 216, 0.7);
  line-height: 1.65;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-promo-card__cta {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 0.5px solid rgba(244, 236, 216, 0.3);
  padding-bottom: 2px;
  transition: gap 0.25s, border-color 0.25s;
}

.line-promo-card:hover .line-promo-card__cta {
  gap: 10px;
  border-bottom-color: var(--gold);
}

/* ── PERSONALIZADO ── */
.personalizado {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  min-height: 560px;
  display: flex;
  align-items: center;
}

.personalizado__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../assets/img/vinedos/lujan-de-cuyo.webp');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.22;
}

.personalizado__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(14, 10, 8, 0.92) 0%, rgba(14, 10, 8, 0.88) 45%, rgba(75, 15, 26, 0.6) 100%);
}

.personalizado__inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 96px 72px;
  width: 100%;
}

.personalizado__eyebrow {
  margin-bottom: 22px;
}

.personalizado__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 22px;
  line-height: 1.05;
}

.personalizado__title em {
  font-style: italic;
}

.personalizado__lead {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(244, 236, 216, 0.62);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}

.personalizado__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 42px;
}

.personalizado__feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.personalizado__feat-icon {
  width: 28px;
  height: 28px;
  border: 0.5px solid rgba(200, 169, 110, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.personalizado__feat-icon svg {
  width: 12px;
  height: 12px;
}

.personalizado__feat-text {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(244, 236, 216, 0.68);
  line-height: 1.55;
}

.personalizado__feat-text strong {
  font-weight: 500;
  color: rgba(244, 236, 216, 0.9);
  display: block;
  margin-bottom: 1px;
}

.personalizado__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.personalizado__bottle-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.personalizado__bottle-wrap img {
  max-height: 460px;
  max-width: 260px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  position: relative;
  z-index: 2;
}

.personalizado__ring {
  position: absolute;
  border-radius: 50%;
  border: 0.5px solid rgba(200, 169, 110, 0.12);
  z-index: 1;
}

.personalizado__ring:nth-child(1) {
  width: 300px;
  height: 300px;
}

.personalizado__ring:nth-child(2) {
  width: 380px;
  height: 380px;
  border-color: rgba(200, 169, 110, 0.07);
}

.personalizado__ring:nth-child(3) {
  width: 460px;
  height: 460px;
  border-color: rgba(200, 169, 110, 0.04);
}

/* ── HISTORIA ── */
.historia {
  background: var(--cream-deep);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.historia__img {
  position: relative;
  overflow: hidden;
  min-height: 580px;
}

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

.historia__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--cream-deep) 100%);
}

.historia__img-year {
  position: absolute;
  bottom: 36px;
  left: 36px;
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
  letter-spacing: -0.02em;
}

.historia__content {
  padding: 88px 72px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.historia__content .section-tag {
  margin-bottom: 22px;
}

.historia__title {
  font-size: clamp(32px, 3.6vw, 50px);
  color: var(--wine);
  margin-bottom: 30px;
}

.historia__text {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--wine);
  line-height: 1.82;
  margin-bottom: 18px;
  max-width: 440px;
}

.historia__quote {
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  margin: 30px 0 38px;
}

.historia__quote blockquote {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--wine);
  line-height: 1.55;
}

.historia__quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  font-style: normal;
}

/* ── SOIGNÉ ── */
.soigne {
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  overflow: hidden;
}

.soigne__left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A0806;
  padding: 80px 60px;
  border-right: 0.5px solid rgba(200, 169, 110, 0.1);
}

.soigne__bottles {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.soigne__bottles img {
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s ease;
}

.soigne__bg-word {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 100px;
  font-weight: 300;
  color: rgba(200, 169, 110, 0.05);
  white-space: nowrap;
  user-select: none;
  letter-spacing: 0.08em;
  z-index: 1;
  pointer-events: none;
}

.soigne__right {
  padding: 88px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.soigne__right .section-tag {
  margin-bottom: 22px;
}

.soigne__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 8px;
}

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

.soigne__method {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(200, 169, 110, 0.5);
  margin-bottom: 28px;
}

.soigne__desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(244, 236, 216, 0.6);
  line-height: 1.78;
  margin-bottom: 36px;
  max-width: 400px;
}

.soigne__variants {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.soigne__variant {
  border: 0.5px solid rgba(200, 169, 110, 0.25);
  padding: 7px 18px;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200, 169, 110, 0.7);
  transition: all 0.25s;
  cursor: default;
}

.soigne__variant:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 169, 110, 0.05);
}

/* ── GALERÍA ── */
.galeria {
  background: var(--cream);
  padding: 80px 52px 88px;
}

.galeria__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
}

.galeria__header-left .section-tag {
  margin-bottom: 10px;
}

.galeria__title {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--wine);
}

.galeria__ig-link {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 0.5px solid rgba(75, 15, 26, 0.2);
  padding-bottom: 3px;
  transition: all 0.25s;
  align-self: flex-end;
}

.galeria__ig-link:hover {
  color: var(--wine);
  border-bottom-color: var(--wine);
}

.galeria__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 220px;
  gap: 8px;
}

.galeria__item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--cream-deep);
}

.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: saturate(0.88);
}

.galeria__item:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.galeria__item--tall {
  grid-row: 1 / 3;
}

.galeria__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(75, 15, 26, 0);
  transition: background 0.4s;
}

.galeria__item:hover .galeria__item-overlay {
  background: rgba(75, 15, 26, 0.18);
}

/* ── CTA FINAL ── */
.cta-final {
  background: var(--wine);
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  position: relative;
}

.cta-final::before {
  content: 'CICCHITTI';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 200px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.06em;
}

.cta-final__text {
  position: relative;
  z-index: 2;
}

.cta-final__eyebrow {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(244, 236, 216, 0.5);
  margin-bottom: 14px;
}

.cta-final__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
}

.cta-final__title em {
  font-style: italic;
}

.cta-final__actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* ── HOME NOTICIAS ── */
.home-noticias {
  background: var(--cream);
  padding: 80px 52px 92px;
}

.home-noticias__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid rgba(75, 15, 26, 0.15);
  flex-wrap: wrap;
  gap: 16px;
}

.home-noticias__title {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--wine);
}

.home-noticias__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── HOME NOTICIA PROMO CARD ── */
.home-noticia-promo {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
  transition: transform 0.4s ease;
  height: 420px;
}

.home-noticia-promo:hover {
  transform: translateY(-4px);
}

.home-noticia-promo__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #2a0810;
  transition: transform 0.6s ease;
}

.home-noticia-promo:hover .home-noticia-promo__bg {
  transform: scale(1.04);
}

.home-noticia-promo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(14, 10, 8, 0.08) 0%,
      rgba(14, 10, 8, 0.22) 40%,
      rgba(14, 10, 8, 0.82) 100%);
}

.home-noticia-promo__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 32px;
  z-index: 2;
}

.home-noticia-promo__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.home-noticia-promo__cat {
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 4px 10px;
}

.home-noticia-promo__date {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  color: rgba(244, 236, 216, 0.55);
  letter-spacing: 0.06em;
}

.home-noticia-promo__titulo {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.18;
  margin-bottom: 10px;
}

.home-noticia-promo__bajada {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(244, 236, 216, 0.65);
  line-height: 1.65;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-noticia-promo__cta {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 0.5px solid rgba(244, 236, 216, 0.3);
  padding-bottom: 2px;
  transition: gap 0.25s, border-color 0.25s;
}

.home-noticia-promo:hover .home-noticia-promo__cta {
  gap: 10px;
  border-bottom-color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {

  .hero__lateral {
    display: none;
  }

  .stats {
    padding: 60px 0;
  }

  .stats__track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 16s linear infinite;
  }

  .stats__item--dup,
  .stats__div--dup {
    display: block;
  }

  .stats__item {
    flex: 0 0 auto;
    max-width: none;
    padding: 0 40px;
  }

  .stats__div {
    display: block;
    width: 1px;
    height: 40px;
    margin: 0;
  }

  .stats__num {
    font-size: 42px;
    margin-bottom: 6px;
  }

  @keyframes marquee {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  .wines {
    padding: 60px 24px;
  }

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

  .home-noticias {
    padding: 60px 24px 72px;
  }

  .home-noticias__grid {
    grid-template-columns: 1fr;
  }

  .home-noticia-promo {
    height: 360px;
  }

  .personalizado__inner {
    grid-template-columns: 1fr;
    padding: 60px 32px;
    gap: 48px;
  }

  .personalizado__visual {
    display: none;
  }

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

  .historia__img {
    min-height: 320px;
  }

  .historia__content {
    padding: 52px 32px;
  }

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

  .soigne__left {
    padding: 60px 32px;
    min-height: 360px;
  }

  .soigne__right {
    padding: 52px 32px;
  }

  .cta-final {
    flex-direction: column;
    padding: 60px 32px;
    text-align: center;
  }

  .cta-final::before {
    font-size: 70px;
    right: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .cta-final__actions {
    justify-content: center;
  }
}