/* ──────────────────────────────────────────
   Reset & Custom Properties
   ────────────────────────────────────────── */

:root {
  --c-gold: #e8b900;
  --c-white: #ffffff;
  --c-gray: #ababab;
  --c-bg: #e8b900;

  --font-display: "ff-ginger-pro", sans-serif;
  --font-mono: "DM Mono", monospace;
}

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

html,
body {
  width: 100vw;
  height: 100vh;

  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ──────────────────────────────────────────
   SVG Filter (hidden)
   ────────────────────────────────────────── */

.visually-hidden {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ──────────────────────────────────────────
   Video Background
   ────────────────────────────────────────── */

.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

/* ──────────────────────────────────────────
   Page Layout
   ────────────────────────────────────────── */

.page {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  isolation: isolate;
}

/* ──────────────────────────────────────────
   Hero Section
   ────────────────────────────────────────── */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 13.333px;
  text-transform: uppercase;
}

.hero-titles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  white-space: nowrap;
}

.title-line {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: 90px;
  line-height: 64px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.title--gold {
  color: var(--c-gold);
}

.title--white {
  color: var(--c-white);
}

.sub-hero {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: var(--c-gold);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.05em;
}

/* ──────────────────────────────────────────
   Bottom Navigation Bar
   ────────────────────────────────────────── */

.bottom-bar {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 0 40px;
}

.bottom-bar__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.social-links {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* ──────────────────────────────────────────
   Links & Typography
   ────────────────────────────────────────── */

.link {
  font-family: var(--font-mono);
  font-weight: 400;
  font-style: normal;
  font-size: 13.3px;
  line-height: 20px;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  display: inline-block;
}

.link--primary {
  color: var(--c-gold);
}

.link--secondary {
  color: var(--c-gray);
}

/* ──────────────────────────────────────────
   Distortion hover helper
   ────────────────────────────────────────── */

[data-distort] {
  transition: color 0.3s ease;
  cursor: default;
}

/* ──────────────────────────────────────────
   Responsive — Mobile ≤ 768px
   ────────────────────────────────────────── */

@media (max-width: 768px) {
  .title-line {
    font-size: 70px;
    line-height: 48px;
  }

  .bottom-bar {
    padding: 0 24px;
  }

  .bottom-bar__inner {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
  }

  .social-links {
    justify-content: center;
    width: 100%;
  }
}

/* ──────────────────────────────────────────
   Responsive — Small phones ≤ 400px
   ────────────────────────────────────────── */

@media (max-width: 400px) {
  .title-line {
    font-size: 56px;
    line-height: 40px;
  }

  .sub-hero {
    font-size: 12px;
  }
}

/* ──────────────────────────────────────────
   Link hover pointer
   ────────────────────────────────────────── */

a[data-distort] {
  cursor: pointer;
}
