/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
    font-family: system-ui, sans-serif;
    background: #000;
    color: #fff;
}
  
/* FULLSCREEN HERO */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* BACKGROUND LAYERS FOR FADE */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.hero-bg--next {
    opacity: 0;
}

/* GRADIENT OVERLAY */
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      #000 0%,
      #000 25%,
      rgba(0, 0, 0, 0.8) 50%,
      rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* MENU */
.menu {
    position: relative;
    z-index: 2;
    padding: 4rem;
}

.menu ul {
    list-style: none;
}

.menu li + li {
    margin-top: 0.4rem;
}

.menu-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-block;
    padding: 0.4rem 0.2rem;
    will-change: transform;
    transition:
      transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.25s ease;
}

.menu-item span {
    color: #ff5a1f;
}

.menu-item:hover,
.menu-item.is-active {
    transform: translateX(8px) scale(1.04);
    opacity: 0.96;
}
