
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background: #000;
  color: #fff;
  overflow: hidden;
}


h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.7;
  padding-top: 25px;
  padding-bottom: 20px;
}

.subhead,
.info-line {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}


.hidden {
  display: none;
}





.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #000;
  overflow: hidden;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.intro-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.15)),
    linear-gradient(to right, rgba(0, 0, 0, 0.45), transparent 45%);
}

.intro-text {
  position: absolute;
  left: 6vw;
  bottom: 8vh;
  z-index: 2;
  max-width: 520px;
}

.intro-text h1 {
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  line-height: 0.95;
  margin: 0.4rem 0 0.6rem;
}

.subhead {
  opacity: 0.88;
  margin-bottom: 1.4rem;
}

.enter-btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  background: #000;
  color: #fff;
  border-radius: 4px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.88);
  color: #fff;
  
  padding: 0.85rem 1.35rem;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.enter-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}



