@font-face {
  font-family: "ClassyVogue";
  src: url("classyvogueregular-p7rry.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

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

:root {
  --cream: #f9f8f4;
  --logo-size: clamp(13px, 1.4vw, 18px);
  --headline-size: clamp(52px, 9vw, 140px);
  --sub-size: clamp(12px, 1.1vw, 16px);
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0a09;
  color: var(--cream);
}

/* ── Video background ── */

.video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.62);
}

/* ── Logo ── */

.logo {
  position: fixed;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  white-space: nowrap;
  letter-spacing: 0.22em;
  font-family: "Syne", sans-serif;
  font-size: var(--logo-size);
  color: var(--cream);
}

.logo-light {
  font-weight: 300;
}

.logo-bold {
  font-weight: 600;
  text-transform: uppercase;
}

/* ── Hero ── */

.hero {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
  padding: 0 24px;
}

.headline {
  font-family: "ClassyVogue", serif;
  font-size: var(--headline-size);
  font-weight: normal;
  color: var(--cream);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.subline {
  font-family: "Syne", sans-serif;
  font-size: var(--sub-size);
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
}
