@font-face {
  font-family: 'GaramontAmsterdam';
  src: url('assets/fonts/GaramontAmsterdamEF-Roman.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'GaramontAmsterdam';
  src: url('assets/fonts/GaramontAmsterdamEF-RomanItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'GaramontAmsterdam';
  src: url('assets/fonts/GaramontAmsterdamEF-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'GaramontAmsterdam';
  src: url('assets/fonts/GaramontAmsterdamEF-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'GoudyOldStyle';
  src: url('assets/fonts/GoudyOldStyleSH-Roman.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'GoudyOldStyle';
  src: url('assets/fonts/GoudyOldStyleSH-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'GoudyOldStyle';
  src: url('assets/fonts/GoudyOldStyleSH-XBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

/* Full-bleed video */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.75;
}

/* Top gradient overlay */
.top-gradient {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

/* Top nav */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 1.25rem 2rem;
  z-index: 10;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-family: 'GaramontAmsterdam', serif;
  font-size: 0.99rem;
  letter-spacing: 0.04em;
  opacity: 0.85;
  mix-blend-mode: luminosity;
  transition: opacity 0.2s;
}

.nav-link:hover {
  opacity: 0.7;
}

/* Bottom gradient overlay */
.bottom-gradient {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

/* Bottom contact info */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 2.5rem 2rem;
  z-index: 10;
}

/* Centered logo */
.logo-wrap {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.logo {
  width: clamp(200px, 28vw, 480px);
  height: auto;
  opacity: 0.75;
  mix-blend-mode: luminosity;
}
