/* Tasting Menu-specific layout refinements */

.tasting-body .site-header {
  height: 178px;
  padding: 0 clamp(36px, 2.55vw, 54px);
}

.tasting-body .brand-name {
  font-size: clamp(22px, 1.3vw, 27px);
}

.tasting-body .brand-role {
  font-size: clamp(13px, .82vw, 16px);
}

.tasting-body .main-nav {
  gap: 32px;
  font-size: clamp(12px, .72vw, 14px);
}

.tasting-body .tasting-page {
  max-width: none;
  padding: 0 clamp(28px, 2.55vw, 54px) 0;
}

.tasting-intro {
  padding-top: 54px;
  margin: 0 auto 88px;
  text-align: center;
  color: var(--muted);
  font-family: var(--font-editorial);
  font-size: 14px;
  line-height: 1.6;
}

.tasting-intro p {
  margin: 0;
}

.tasting-intro a {
  color: var(--accent);
  text-decoration: none;
}

.tasting-intro a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tasting-body .tasting-gallery {
  column-gap: 14px;
}

.tasting-body .tasting-item {
  margin-bottom: 14px;
}

/* Keep the selection grid completely visual. */
.tasting-body .tasting-thumb {
  position: relative;
}

/* Tasting Menu expanded view, closer to the Nicholas Kole behavior. */
.lightbox.lightbox--tasting {
  background: rgba(247, 244, 236, .94);
  backdrop-filter: blur(1.5px);
}

.lightbox--tasting .lightbox-content {
  max-width: 95vw;
  max-height: 95vh;
}

.lightbox-tasting-frame {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 92vw;
  max-height: 92vh;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(38, 35, 32, .06);
}

.lightbox-tasting-frame > img {
  display: block;
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
}

.lightbox-tasting-frame > .placeholder {
  width: min(1100px, 82vw);
  height: min(76vh, 760px);
}

.lightbox-tasting-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 18px 22px 19px;
  background: rgba(43, 37, 32, .90);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}

.lightbox-tasting-frame:hover .lightbox-tasting-overlay,
.lightbox-tasting-frame:focus-within .lightbox-tasting-overlay {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-tasting-text + .lightbox-tasting-link {
  margin-left: .35em;
}

.lightbox-tasting-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  pointer-events: auto;
}

.lightbox-tasting-link:hover {
  color: #f2c09d;
}

.lightbox--tasting .lightbox-close,
.lightbox--tasting .lightbox-prev,
.lightbox--tasting .lightbox-next {
  color: var(--ink);
  text-shadow: 0 1px 2px rgba(255,255,255,.85);
}

.lightbox--tasting .lightbox-caption {
  display: none;
}

.tasting-footer {
  margin-top: 120px;
  padding: 105px 0 145px;
  text-align: center;
}

.tasting-footer-label {
  margin: 0 0 34px;
  color: var(--muted);
  font-family: var(--font-editorial);
  font-size: 13px;
}

.tasting-footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.tasting-social-link {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.tasting-social-link:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.tasting-social-link svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tasting-social-link svg .social-dot {
  fill: currentColor;
  stroke: none;
}

@media (hover: none) {
  .lightbox-tasting-overlay {
    opacity: 1;
    transform: translateY(0);
    padding: 13px 15px 14px;
    font-size: 12px;
  }
}

@media (max-width: 820px) {
  .tasting-body .site-header {
    height: auto;
    padding: 28px 22px 24px;
  }

  .tasting-body .brand-name {
    font-size: 22px;
  }

  .tasting-body .brand-role {
    font-size: 13px;
  }

  .tasting-body .main-nav {
    gap: 18px;
    font-size: 12px;
  }

  .tasting-body .tasting-page {
    padding-left: 22px;
    padding-right: 22px;
  }

  .tasting-intro {
    padding-top: 40px;
    margin-bottom: 52px;
    font-size: 13px;
  }

  .lightbox.lightbox--tasting {
    padding: 30px 42px;
  }

  .lightbox-tasting-frame,
  .lightbox-tasting-frame > img {
    max-width: 90vw;
    max-height: 88vh;
  }

  .tasting-footer {
    margin-top: 80px;
    padding: 70px 0 100px;
  }
}
