.frame {
  position: fixed;
  left: 18px;
  right: 18px;
  top: 100vh;
  bottom: 18px;
  border: 1px solid var(--line);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: transparent;
}

.site-main {
  padding: 0;
  position: relative;
  z-index: 1;
}

.hero-fullscreen {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}

.hero-slide,
.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
}

.hero-slide {
  will-change: opacity;
}

.hero-slide.is-visible,
.hero-slider img.is-active {
  opacity: 1;
}

.hero-slider__next-zone {
  position: absolute;
  top: 0;
  right: 0;
  width: 5%;
  height: 100%;
  z-index: 4;
  cursor: pointer;
  background: transparent;
}

.hero-slider__next-zone:hover {
  background: rgba(0, 0, 0, 0.06);
}

.hero-copy,
.page-section,
.section-block,
.single,
.guestbook-page,
.guestbook-admin-page,
.newsletter-block {
  padding: 2rem 0;
}

.hero-copy {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  z-index: 3;
  width: min(68vw, 860px);
  color: #fff;
  text-align: center;
  pointer-events: none;
}

.hero-copy__inner {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.25rem 1.5rem 1rem;
  border-radius: 1.25rem;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hero-copy__kicker {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.hero-copy__title {
  margin: 0;
  color: #fff;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.28),
    0 10px 30px rgba(0, 0, 0, 0.18);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.22);
}

.hero-copy__scroll {
  pointer-events: auto;
  display: inline-block;
  margin-top: 0.25rem;
  padding-bottom: 0.15rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  opacity: 0.95;
}

.hero-copy__scroll:hover {
  opacity: 1;
}

.scroll-down {
  margin-top: 1.5rem;
  color: rgba(244, 241, 234, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2rem;
}