.vg-page .vg-hero {
  min-height: calc(100svh - 88px);
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr);
  background: var(--eg-wine);
}

.vg-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 108px) var(--eg-gutter);
  color: #fff;
}

.vg-hero__copy h1 {
  max-width: 650px;
  margin: 16px 0 22px;
  color: #fff;
  font: 600 clamp(54px, 6vw, 92px)/.9 var(--eg-serif);
  letter-spacing: -.055em;
}

.vg-hero__copy > p {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.75;
}

.vg-hero__copy .mh-actions { margin-top: 28px; }
.vg-hero__copy .mh-btn { border-color: rgba(255,255,255,.46); color: #fff; }
.vg-hero__copy .mh-btn.primary { border-color: var(--eg-gold); color: #2b1708; }

.vg-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 570px;
  margin-top: 38px;
  border-top: 1px solid rgba(255,255,255,.2);
}

.vg-facts > div { padding: 18px 22px 0 0; }

.vg-facts strong,
.vg-facts span { display: block; }

.vg-facts strong {
  overflow: hidden;
  color: #f2c364;
  font: 600 30px/1.1 var(--eg-serif);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vg-facts span {
  margin-top: 5px;
  color: rgba(255,255,255,.57);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vg-feature {
  position: relative;
  min-height: 590px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #2a1812;
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.vg-feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  filter: saturate(.82) contrast(1.04);
  transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .8s;
}

.vg-feature:hover > img {
  transform: scale(1.055);
  filter: saturate(1);
}

.vg-feature__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25,9,8,.03) 30%, rgba(35,8,13,.88) 100%);
}

.vg-feature__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  background: rgba(101,27,37,.75);
  transform: translate(-50%, -50%);
  transition: transform .25s, background .25s;
}

.vg-feature__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
  transform: translate(-50%, -50%);
}

.vg-feature:hover .vg-feature__play {
  background: var(--eg-gold);
  transform: translate(-50%, -50%) scale(1.06);
}

.vg-feature__caption {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  bottom: clamp(28px, 5vw, 72px);
  left: clamp(24px, 5vw, 72px);
}

.vg-feature__caption small {
  display: block;
  margin-bottom: 9px;
  color: #f2c364;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.vg-feature__caption strong {
  display: block;
  max-width: 680px;
  font: 600 clamp(28px, 3.6vw, 52px)/1.06 var(--eg-serif);
}

.vg-feature--empty {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(217,164,65,.24), transparent 30%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0 1px, transparent 1px 18px),
    var(--eg-wine-dark);
}

.vg-feature--empty > span {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  color: #f2c364;
  font: 600 54px var(--eg-serif);
}

.vg-library {
  padding: clamp(72px, 9vw, 124px) var(--eg-gutter);
  background: var(--eg-paper);
}

.vg-library__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--eg-line);
}

.vg-library__head h2 {
  max-width: 820px;
  margin: 12px 0 0;
  font: 600 clamp(38px, 4.7vw, 66px)/1.02 var(--eg-serif);
  letter-spacing: -.035em;
}

.vg-library__head .mh-actions { margin-top: 0; }

.vg-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 72px) 20px;
  margin-top: 46px;
}

.vg-card { min-width: 0; }

.vg-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #dccfc0;
  cursor: pointer;
}

.vg-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.82);
  transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .6s;
}

.vg-card:hover .vg-thumb img { transform: scale(1.045); filter: saturate(1); }

.vg-card__copy { padding-top: 18px; }

.vg-card__copy > span {
  color: var(--eg-wine);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.vg-card__copy h3 {
  margin: 8px 0 0;
  font: 600 clamp(21px, 2vw, 29px)/1.2 var(--eg-serif);
}

.vg-page .mh-empty {
  margin-top: 42px;
  padding: 44px;
  border: 1px solid var(--eg-line);
  border-radius: 0;
  background: transparent;
  color: var(--eg-muted);
  text-align: center;
}

.vg-page .mh-modal { background: rgba(22, 5, 8, .88); backdrop-filter: blur(7px); }
.vg-page .mh-modal__dialog { max-width: 1040px; border: 1px solid rgba(255,255,255,.18); border-radius: 0; background: var(--eg-wine-dark); }
.vg-page .mh-modal__head { color: #fff; border-color: rgba(255,255,255,.18); }
.vg-page .mh-modal__head strong { font-family: var(--eg-serif); font-size: 18px; }
.vg-page .mh-modal__close { border-color: rgba(255,255,255,.4); background: transparent; color: #fff; }

@media (max-width: 1050px) {
  .vg-page .vg-hero { grid-template-columns: 1fr; }
  .vg-hero__copy { min-height: 540px; }
  .vg-feature { min-height: 620px; }
  .vg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .vg-page .vg-hero { min-height: 0; }
  .vg-hero__copy { min-height: 0; padding-block: 74px; }
  .vg-hero__copy h1 { font-size: clamp(52px, 16vw, 72px); }
  .vg-feature { min-height: 480px; }
  .vg-feature__play { width: 68px; height: 68px; }
  .vg-library__head { align-items: flex-start; flex-direction: column; }
  .vg-library__head .mh-actions { width: 100%; }
  .vg-grid { grid-template-columns: 1fr; }
}

@media (max-width: 440px) {
  .vg-facts { grid-template-columns: 1fr; }
  .vg-facts > div + div { margin-top: 14px; }
  .vg-feature { min-height: 390px; }
}
