/* Wine detail page styles */
.wine-page { background: var(--dark); color: #f4f1ec; }

.breadcrumb {
  padding: 100px var(--gutter) 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(244,241,236,0.5);
  max-width: var(--container); margin: 0 auto;
}
.breadcrumb a { color: var(--gold); }

.wine-hero {
  padding: clamp(60px, 8vw, 100px) var(--gutter) clamp(80px, 10vw, 140px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.wine-hero-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.wine-hero-text h1 {
  font-size: clamp(64px, 9vw, 132px);
  line-height: 0.96; margin: 28px 0 40px; font-weight: 200;
}
.wine-hero-text p.lead { color: rgba(244,241,236,0.72); max-width: 48ch; }

.wine-quick {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}
.wine-quick > div {
  background: var(--dark); padding: 24px 20px;
  display: grid; gap: 10px;
  font-family: var(--serif); font-size: 18px; font-weight: 300;
}
.wine-quick span {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(244,241,236,0.5);
}

.wine-hero-bottle {
  display: grid; place-items: center; min-height: 70vh;
  position: relative;
}
.wine-hero-bottle .bottle-slot {
  aspect-ratio: 1/2.4;
  height: clamp(420px, 62vh, 680px);
  width: auto;
  max-width: 100%;
}
.wine-hero-bottle .bottle-slot::before {
  background-image: repeating-linear-gradient(180deg, transparent 0 16px, rgba(255,255,255,0.04) 16px 17px);
}
.wine-hero-bottle .bottle-slot::after { color: rgba(255,255,255,0.4); }

.wine-section { padding: clamp(80px, 10vw, 140px) 0; }
.wine-section:first-of-type { padding-top: clamp(60px, 8vw, 100px); }

.wine-altitude {
  max-width: 880px; margin: 0 auto; text-align: left;
  padding: 0 var(--gutter);
}
.wine-altitude h2 {
  font-size: clamp(36px, 4.6vw, 64px); margin-top: 32px; max-width: 18ch;
}
.wine-altitude p.lead { margin-top: 32px; color: rgba(244,241,236,0.72); }

.wine-cta { border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }

.other-wines .other-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px;
}
.other-wines .other-grid a {
  display: grid; gap: 20px; text-align: center;
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background .3s ease;
}
.other-wines .other-grid a:hover { opacity: 1; background: rgba(208,170,103,0.05); border-color: rgba(208,170,103,0.25); }
.other-wines .bottle-slot.mini { aspect-ratio: 1/2.6; max-height: 260px; }
.other-wines .other-grid span {
  font-family: var(--serif); font-size: 20px; font-weight: 300;
}

@media (max-width: 880px) {
  .wine-hero-grid { grid-template-columns: 1fr; }
  .wine-hero-bottle { order: -1; min-height: 50vh; }
  .wine-hero-bottle .bottle-slot { max-height: 50vh; }
  .wine-quick { grid-template-columns: repeat(2, 1fr); }
  .other-wines .other-grid { grid-template-columns: 1fr; }
}

/* History page (Passo do Simão) */
.history-section { padding: clamp(80px, 10vw, 140px) 0; border-top: 1px solid rgba(255,255,255,0.08); }
.history-chapter {
  max-width: var(--container); margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: 200px 1fr; gap: clamp(40px, 6vw, 96px);
}
.history-chapter + .history-chapter { margin-top: clamp(80px, 10vw, 140px); }
.history-year {
  font-family: var(--serif); font-size: clamp(80px, 9vw, 140px); font-weight: 200;
  line-height: 0.9; color: var(--gold);
  position: sticky; top: 120px; height: fit-content;
}
.history-body h3 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 32px; max-width: 22ch; }
.history-body p { color: rgba(244,241,236,0.72); margin-bottom: 20px; max-width: 64ch; }
.history-body .img-slot { aspect-ratio: 16/9; margin: 40px 0; }
.history-body .img-slot.portrait { aspect-ratio: 3/4; max-width: 480px; }
.history-body .img-slot.dark { background: #2a2a2a; }

@media (max-width: 880px) {
  .history-chapter { grid-template-columns: 1fr; }
  .history-year { position: static; font-size: 64px; }
}
