* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100vh;
  font-family: "Syne", serif;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
h1 {
  font-size: 12vw;
  font-weight: 400;
  line-height: 1;
}
.tagline p {
  font-size: 17px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  overflow: hidden;
}
.gallery-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 160vw;
  height: 100vh;
  display: flex;
  gap: 48px;
}
.gallery-wrapper .column {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  will-change: transform;
}
.img {
  flex: 1;
  overflow: hidden;
  background-color: #fff;
}
.img.main img {
  position: relative;
  transform: scale(2);
  will-change: transform;
}
section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #e1dedc;
  padding: 24px;
}
.hero {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-content {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #fff;
}
.intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 48px 0;
  background-color: #e1dedc;
  color: #05364c;
}
.divider {
  width: 1.5px;
  height: 30%;
  background-color: #05364c;
}
section.ws {
  width: 100%;
  height: 400vh;
  background-color: transparent;
}

.outro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #e1dedc;
  color: #05364c;
}
.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-bg h1 {
  color: #fff;
}
