@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=EB+Garamond:ital,wght@0,400;1,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  background: #000;
  color: #c8a96e;
  font-family: 'EB Garamond', Georgia, serif;
}

/* ── Header ── */
header {
  width: 100%;
  padding: 0.5rem 1rem;
  text-align: center;
}

h1 {
  font-family: 'Cinzel', 'Trajan Pro', 'Times New Roman', serif;
  font-weight: 700;
  font-size: clamp(1rem, 6.5vw, 10rem);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c8a96e;
  text-shadow:
    0 0 40px rgba(200, 169, 110, 0.35),
    0 2px 4px rgba(0, 0, 0, 0.8);
}

/* ── Main ── */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 0 1rem 2rem;
}

/* ── Video ── */
.video-wrapper {
  width: 100%;
  /* 4:3 aspect ratio constrained to ~50vh tall */
  max-height: 50vh;
  /* At 4:3, width = height × (4/3) */
  max-width: calc(50vh * (4 / 3));
  aspect-ratio: 4 / 3;
  border: 1px solid #4a3a1e;
  box-shadow:
    0 0 0 1px #2a1e08,
    0 8px 40px rgba(0, 0, 0, 0.9),
    0 0 60px rgba(200, 169, 110, 0.08);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

/* ── Tagline ── */
.tagline {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #a07840;
  letter-spacing: 0.03em;
  text-align: center;
}