@font-face {
  font-family: "Humane";
  src: url("../fonts/Humane-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Humane";
  src: url("../fonts/Humane-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Humane";
  src: url("../fonts/Humane-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #000;
  --yellow: #feb721;
  --cream: #e8e3e3;
  --white: #fefdfc;
  --font-display: "Humane", sans-serif;
  --font-head: "bebas-neue-pro", "Bebas Neue", sans-serif;
  --font-body: "aktiv-grotesk", "Host Grotesk", system-ui, sans-serif;
  --page-pad-x: clamp(1.5rem, 3vw, 2.9rem);
  --page-pad-y: clamp(1rem, 2vw, 2rem);
  --page-gap: clamp(1.5rem, 5vw, 4rem);
  --col-copy: minmax(14rem, 18rem);
  --media-w: min(100%, clamp(32rem, 58vw, 68rem));
}

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

html, body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  height: 38px;
}
.logo-icon { height: 38px; width: auto; }
.logo-word { height: 30px; width: auto; }

.cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: #000;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  padding: 0.65rem 1rem;
  white-space: nowrap;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/texture.svg") center / 160px 160px repeat;
  mix-blend-mode: multiply;
  opacity: 0.55;
  pointer-events: none;
}
.cta:hover { filter: brightness(1.05); }

.rated-r {
  width: 175px;
  height: auto;
  mix-blend-mode: screen;
}

.media-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #111;
}
.media-wrap img.media,
.media-wrap video.media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-wrap video.media {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.media-wrap video.media.is-ready { opacity: 1; }

.grain {
  position: absolute;
  inset: 0;
  background: url("../assets/texture.svg") center / 280px 280px repeat;
  mix-blend-mode: multiply;
  opacity: 0.55;
  pointer-events: none;
}

.switcher {
  position: fixed;
  top: calc(1rem + env(safe-area-inset-top, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  gap: 0.5rem;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.4rem;
  backdrop-filter: blur(8px);
}
.switcher a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.switcher a.active,
.switcher a:hover {
  background: var(--yellow);
  color: #000;
}
