/* ══════════════════════════════════════════
   CICCHITTI — BODEGA / HISTORIA CSS
══════════════════════════════════════════ */

/* ── HERO ── */
.bodega-hero {
  min-height: 100vh;
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.bodega-hero__img {
  position: relative;
  overflow: hidden;
}
.bodega-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.75) brightness(0.85);
}
@media (max-width: 960px) {
  .bodega-hero__img img { object-fit: cover; object-position: center top; }
}

.bodega-hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,10,8,0.25) 0%, rgba(14,10,8,0.6) 100%);
}

.bodega-hero__year {
  position: absolute;
  bottom: 36px;
  left: 36px;
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 300;
  color: rgba(200,169,110,0.18);
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
}

.bodega-hero__info {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 0.5px solid rgba(200,169,110,0.08);
}

.bodega-hero__eyebrow {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0; animation: bodegaIn 0.9s ease 0.2s forwards;
}
.bodega-hero__eyebrow::before { content: ''; width: 24px; height: 0.5px; background: var(--gold); opacity: 0.5; }

.bodega-hero__title {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.0;
  margin-bottom: 32px;
  opacity: 0; animation: bodegaIn 0.9s ease 0.35s forwards;
}
.bodega-hero__title em { font-style: italic; color: var(--gold); }

.bodega-hero__divider {
  width: 40px; height: 0.5px;
  background: rgba(200,169,110,0.3);
  margin-bottom: 32px;
  opacity: 0; animation: bodegaIn 0.9s ease 0.5s forwards;
}

.bodega-hero__lead {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(244,236,216,0.5);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 44px;
  opacity: 0; animation: bodegaIn 0.9s ease 0.65s forwards;
}

.bodega-hero__hitos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 0.5px solid rgba(200,169,110,0.12);
  margin-bottom: 44px;
  opacity: 0; animation: bodegaIn 0.9s ease 0.8s forwards;
}
.bodega-hero__hito {
  padding: 18px 20px;
  border-right: 0.5px solid rgba(200,169,110,0.12);
}
.bodega-hero__hito:last-child { border-right: none; }
.bodega-hero__hito-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.bodega-hero__hito-lbl {
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.3);
}

.bodega-hero__cta {
  opacity: 0; animation: bodegaIn 0.9s ease 0.95s forwards;
}

@keyframes bodegaIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HISTORIA TIMELINE ── */
.historia-section {
  background: var(--cream-deep);
  padding: 96px 72px;
}

.historia-section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(75,15,26,0.1);
}

.historia-section__title {
  font-size: clamp(34px, 4vw, 54px);
  color: var(--wine);
}

.historia-section__intro {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(75,15,26,0.55);
  line-height: 1.8;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 920px;
  padding: 12px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 44px;
  top: 36px;
  bottom: 36px;
  width: 1px;
  background: linear-gradient(to bottom,
    rgba(75,15,26,0) 0%,
    rgba(75,15,26,0.28) 6%,
    rgba(75,15,26,0.28) 94%,
    rgba(75,15,26,0) 100%);
}

.timeline__item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 44px;
  padding: 22px 0;
  position: relative;
}

.timeline__year {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--cream-deep);
  border: 0.5px solid rgba(75,15,26,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--wine);
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  padding-top: 3px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease, background 0.5s ease, color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}
.timeline__item:hover .timeline__year {
  background: var(--wine);
  color: var(--gold);
  border-color: var(--wine);
  transform: scale(1.04);
  box-shadow: 0 10px 30px rgba(75,15,26,0.18);
}

.timeline__content {
  padding-top: 8px;
}

.timeline__label {
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 10px;
  opacity: 0.6;
}

.timeline__title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--wine);
  line-height: 1.15;
  margin-bottom: 14px;
}

.timeline__desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(75,15,26,0.55);
  line-height: 1.78;
  max-width: 500px;
}

/* ── CITA FINAL ── */
.bodega-quote {
  background: var(--wine);
  padding: 88px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bodega-quote::before {
  content: '«';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 300px;
  font-weight: 300;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  line-height: 1;
}

.bodega-quote__text {
  font-family: var(--sans);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.bodega-quote__cite {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.4);
  position: relative;
  z-index: 2;
}

/* ── LA BODEGA HOY ── */
.bodega-hoy {
  background: var(--cream-bg);
  padding: 96px 72px;
  color: var(--wine);
}
.bodega-hoy__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.bodega-hoy__title {
  font-size: clamp(34px, 4.5vw, 56px);
  color: var(--wine);
  margin-bottom: 36px;
}
.bodega-hoy__title em { color: var(--gold-dim); }
.bodega-hoy__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}
.bodega-hoy__desc {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(75,15,26,0.7);
  line-height: 1.85;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .bodega-hero { grid-template-columns: 1fr; min-height: auto; }
  .bodega-hero__img { min-height: 340px; }
  .bodega-hero__info { padding: 52px 32px; }
  .bodega-hero__hitos { grid-template-columns: repeat(3, 1fr); }
  .historia-section { padding: 60px 32px; }
  .historia-section__header { grid-template-columns: 1fr; gap: 24px; }
  .timeline::before { left: 36px; top: 24px; bottom: 24px; }
  .timeline__item { grid-template-columns: 72px 1fr; gap: 28px; padding: 18px 0; }
  .timeline__year { width: 72px; height: 72px; font-size: 22px; }
  .timeline__content { padding-top: 4px; }
  .bodega-quote { padding: 60px 32px; }
  .bodega-hoy { padding: 60px 32px; }
}
