* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Cormorant Garamond', serif;
  background: #fff;
  color: #000;
}

/* OVERLAY */
#video-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  overflow: hidden;
}

/* VIDEO — MISMAS DIMENSIONES SIEMPRE */
#video-overlay video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA */
#video-overlay .enter {
  position: absolute;
  bottom: 48px;
  width: 100%;
  text-align: center;

  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  color: #000;

  cursor: pointer;
  user-select: none;

  animation: pulse 2s infinite;
}

/* Subrayado */
#video-overlay .enter::after {
  content: "";
  display: block;
  width: 150px;
  height: 1px;
  background: #000;
  margin: 14px auto 0;
  opacity: 0.6;
}

/* Animación */
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

/* LANDING */
.hero {
  padding: 120px 24px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.1;
}

.hero p {
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
}
