html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

.scroll-shell {
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.snap-page {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.stage {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  overflow: hidden;
}

.bg-layer {
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hotspot-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hotspot-layer > * {
  pointer-events: auto;
}

.nav-shell {
  position: absolute;
  top: 3.2vh;
  left: 50%;
  transform: translateX(-50%);
  width: min(96vw, 1540px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  gap: 20px;
}

.poster-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 34px);
  flex-wrap: wrap;
}

.poster-link {
  position: relative;
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(13px, 1.02vw, 18px);
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.2;
  padding: 4px 0 12px 0;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65), 0 0 12px rgba(0, 0, 0, 0.20);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.poster-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.95);
  transition: width 0.18s ease;
}

.poster-link:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.poster-link:hover::after,
.poster-link.is-active::after {
  width: 100%;
}

.poster-link:focus-visible {
  outline: none;
  opacity: 0.82;
}

.poster-link.is-active {
  opacity: 1;
}

.nav-socials {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.92;
  transition: opacity 0.18s ease, transform 0.18s ease;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.55));
}

.social-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.mobile-menu-button {
  display: none;
  position: absolute;
  top: 18px;
  right: 16px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  z-index: 40;
  cursor: pointer;
}

.mobile-menu-button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.mobile-menu-icon {
  position: relative;
  width: 18px;
  height: 12px;
}

.mobile-menu-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 0.18s ease, opacity 0.18s ease, top 0.18s ease;
}

.mobile-menu-icon span:nth-child(1) { top: 0; }
.mobile-menu-icon span:nth-child(2) { top: 5px; }
.mobile-menu-icon span:nth-child(3) { top: 10px; }

.mobile-menu-button.is-open .mobile-menu-icon span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.mobile-menu-button.is-open .mobile-menu-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.is-open .mobile-menu-icon span:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

.mobile-menu-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 34;
}

.mobile-menu-panel {
  display: none;
  position: absolute;
  top: 76px;
  right: 16px;
  min-width: 238px;
  max-width: calc(100vw - 32px);
  padding: 18px 18px 16px 18px;
  background: rgba(0, 0, 0, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.30);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
  z-index: 41;
}

.mobile-menu-panel.is-open,
.mobile-menu-overlay.is-open {
  display: block;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-link {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.60);
}

.mobile-menu-link.is-active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.mobile-menu-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.show-cta-row {
  position: absolute;
  left: 50%;
  bottom: 4.2vh;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  width: min(92vw, 720px);
  z-index: 25;
}

.show-cta-link,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(24vw, 240px);
  min-height: 56px;
  padding: 14px 26px 15px 26px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(0, 0, 0, 0.26);
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(16px, 1.18vw, 22px);
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55), 0 0 18px rgba(0, 0, 0, 0.22);
  transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.show-cta-link:hover,
.contact-link:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.36);
  border-color: rgba(255, 255, 255, 0.92);
}

.show-cta-link:focus-visible,
.contact-link:focus-visible {
  outline: none;
  opacity: 0.92;
  background: rgba(0, 0, 0, 0.36);
  border-color: rgba(255, 255, 255, 0.92);
}

.contact-row {
  position: absolute;
  left: 50%;
  bottom: 4.2vh;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 24px);
  width: min(92vw, 980px);
  z-index: 25;
}

.legal-row {
  position: absolute;
  left: 50%;
  bottom: 2.1vh;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 26;
}

.legal-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.60);
  opacity: 0.92;
}

.legal-link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.gallery-strip {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 1380px);
  z-index: 24;
}

.gallery-strip::before {
  content: "";
  position: absolute;
  inset: -10px -16px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.10));
  pointer-events: none;
}

.gallery-strip.photos {
  top: 18vh;
}

.gallery-strip.videos {
  top: 74vh;
}

.gallery-strip-track {
  position: relative;
  display: flex;
  gap: clamp(12px, 1.4vw, 18px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 4px 12px 4px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.6) rgba(0, 0, 0, 0.10);
}

.gallery-strip-track::-webkit-scrollbar {
  height: 10px;
}

.gallery-strip-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}

.gallery-strip-track::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.10);
}

.gallery-item {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: clamp(250px, 30vw, 480px);
  aspect-ratio: 16 / 11;
  overflow: hidden;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.gallery-item:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-strip.videos .gallery-item {
  width: clamp(108px, 12vw, 170px);
  aspect-ratio: 16 / 7;
}

.gallery-item.video::after {
  content: "▶";
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.75), 0 0 10px rgba(0, 0, 0, 0.35);
}

.gallery-empty {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(12px, 1vw, 16px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65), 0 0 12px rgba(0, 0, 0, 0.20);
  opacity: 0.9;
  padding: 10px 6px;
}

.photo-lightbox,
.legal-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  background: rgba(0, 0, 0, 0.88);
  z-index: 999;
}

.photo-lightbox.is-open,
.legal-modal.is-open {
  display: flex;
}

.photo-lightbox img {
  display: block;
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

.photo-lightbox-close,
.photo-lightbox-prev,
.photo-lightbox-next,
.legal-modal-close {
  position: absolute;
  border: none;
  background: rgba(0, 0, 0, 0.34);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.photo-lightbox-close,
.legal-modal-close {
  top: 18px;
  right: 22px;
  width: 52px;
  height: 52px;
  font-size: 42px;
  line-height: 1;
}

.photo-lightbox-prev,
.photo-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 72px;
  font-size: 34px;
  line-height: 1;
}

.photo-lightbox-prev {
  left: 18px;
}

.photo-lightbox-next {
  right: 18px;
}

.photo-lightbox-close:hover,
.photo-lightbox-prev:hover,
.photo-lightbox-next:hover,
.legal-modal-close:hover {
  background: rgba(0, 0, 0, 0.52);
}

.legal-modal-panel {
  position: relative;
  width: min(980px, 92vw);
  max-height: 84vh;
  padding: 30px 28px 26px 28px;
  overflow-y: auto;
  background: rgba(18, 18, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.40);
  color: #ffffff;
}

.legal-modal-title {
  margin: 0 0 16px 0;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-modal-content {
  white-space: pre-wrap;
  line-height: 1.52;
  font-size: 14px;
}

@media (max-width: 900px) {
  .nav-shell {
    top: 2.4vh;
    width: 96vw;
    gap: 12px;
    flex-wrap: wrap;
  }

  .poster-nav {
    gap: 10px 16px;
  }

  .poster-link {
    font-size: clamp(12px, 2.2vw, 16px);
    letter-spacing: 0.16em;
    padding-bottom: 9px;
  }

  .show-cta-row,
  .contact-row {
    bottom: 3.2vh;
    gap: 12px;
    width: 92vw;
  }

  .show-cta-link,
  .contact-link {
    min-width: 0;
    flex: 1 1 0;
    min-height: 52px;
    font-size: clamp(14px, 2.4vw, 18px);
    letter-spacing: 0.16em;
    padding: 12px 14px 13px 14px;
  }

  .legal-row {
    bottom: 1.8vh;
  }

  .gallery-strip.photos {
    top: 18vh;
  }

  .gallery-strip.videos {
    top: 73vh;
  }

  .gallery-item {
    width: clamp(220px, 54vw, 360px);
  }

  .gallery-strip.videos .gallery-item {
    width: clamp(100px, 24vw, 150px);
  }
}

@media (max-width: 560px) {
  html, body {
    overflow: hidden;
  }

  .scroll-shell {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-shell {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .show-cta-row,
  .contact-row {
    bottom: 6.1vh;
    gap: 10px;
    width: 92vw;
    flex-wrap: wrap;
  }

  .show-cta-link,
  .contact-link {
    min-height: 48px;
    min-width: 42vw;
    font-size: 13px;
    letter-spacing: 0.12em;
    padding: 11px 10px 12px 10px;
  }

  .legal-row {
    bottom: 2vh;
    gap: 14px;
  }

  .legal-link {
    font-size: 11px;
  }

  .gallery-strip.photos {
    top: 16vh;
  }

  .gallery-strip.videos {
    top: 69vh;
  }

  .gallery-item {
    width: 86vw;
  }

  .gallery-strip.videos .gallery-item {
    width: 28vw;
  }

  .photo-lightbox,
  .legal-modal {
    padding: 3vh 3vw;
  }

  .photo-lightbox-close,
  .legal-modal-close {
    top: 12px;
    right: 12px;
    width: 46px;
    height: 46px;
    font-size: 34px;
  }

  .photo-lightbox-prev,
  .photo-lightbox-next {
    width: 44px;
    height: 58px;
    font-size: 28px;
  }

  .photo-lightbox-prev {
    left: 8px;
  }

  .photo-lightbox-next {
    right: 8px;
  }

  .legal-modal-panel {
    width: 94vw;
    max-height: 86vh;
    padding: 24px 18px 20px 18px;
  }

  .legal-modal-content {
    font-size: 13px;
  }
}
