/** Shopify CDN: Minification failed

Line 164:0 Unexpected "}"

**/

.tw-gallery-hero {
  position: relative;
  width: min(calc(100% - 40px), 1460px);
  aspect-ratio: 2.15 / 1;
  min-height: 0;
  max-height: none;
  margin: 24px auto 0;
  overflow: hidden;
  border-radius: 28px;
}
.tw-gallery-hero-image {
  position: absolute;
  inset: 0;
}

.tw-gallery-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;

}.tw-gallery-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      180deg,
      rgba(35, 22, 16, 0.08),
      rgba(35, 22, 16, 0.16) 52%,
      rgba(35, 22, 16, 0.42)
    ),
    radial-gradient(
      circle at center,
      rgba(255, 248, 230, 0.04),
      rgba(38, 21, 15, 0.18)
    );
}
.tw-gallery-hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 40px));
  padding: 20px;
  text-align: center;
  color: #2d2018;

  background: transparent;
  border: none;
  backdrop-filter: none;
  box-shadow: none;

  text-shadow: 0 3px 22px rgba(23, 14, 10, 0.35);
}

.tw-gallery-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #2d2018;
}

.tw-gallery-hero-content h1 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 500;
  line-height: 0.9;
  color: #2d2018;
}

.tw-gallery-hero-text {
  max-width: 680px;
  margin: 0 auto 34px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.55;
}

.tw-gallery-hero-text p {
  margin: 0;
}

.tw-gallery-enter {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #2d2018;
  text-decoration: none;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.tw-gallery-enter:hover {
  opacity: 0.78;
  transform: translateY(3px);
}

.tw-gallery-enter span {
  font-size: 25px;
  animation: tw-gallery-bounce 2.2s ease-in-out infinite;
}

@keyframes tw-gallery-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@media screen and (max-width: 749px) {

  .tw-gallery-hero {
    width: 100%;
    min-height: 760px;
    aspect-ratio: auto;
    margin: 0;
    border-radius: 0;
  }

  .tw-gallery-hero-image img {
    object-position: center center;
  }
}
  .tw-gallery-hero-content {
    width: min(100% - 28px, 680px);
    padding: 16px;
  }

  .tw-gallery-kicker {
    letter-spacing: 0.3em;
  }

  .tw-gallery-hero-content h1 {
    font-size: clamp(52px, 16vw, 76px);
    line-height: 0.92;
  }

  .tw-gallery-hero-text {
    max-width: 520px;
    font-size: 19px;
    line-height: 1.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tw-gallery-enter span {
    animation: none;
  }

  .tw-gallery-enter {
    transition: none;
  }
}