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

body {
    background: #fff;
    color: #000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    overflow-x: hidden;
}

/* HEADER */

.header {
    position: absolute;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo img {
    height: 22px;
}

/* NAV */

.nav a {
    color: #111;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.08em;
    opacity: 0.6;
}

/* AUDIO BUTTON */

.audio-toggle {
    position: absolute;
    top: 75px;
    right: 60px;
    background: none;
    border: none;
    font-size: 11px;
    letter-spacing: 0.1em;
    font-weight: 600;
    cursor: pointer;
    color: #111;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.audio-toggle:hover {
    opacity: 1;
}

/* HERO */

.hero {
    height: 100vh;
    display: flex;
}

/* LEFT */

.left {
    width: 50%;
    padding: 340px 60px 60px 60px;
}

.content {
    max-width: 640px;
}

.manifesto {
    font-size: 1.9rem;
    line-height: 1.05;
    letter-spacing: -0.07em;
}

/* INFO */

.info {
    margin-top: 40px;
    font-size: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.info a {
    color: #888;
    text-decoration: none;
}

.info a:not(:last-child)::after {
    content: " · ";
    margin: 0 20px;
    color: #bbb;
}

/* RIGHT */

.right {
    width: 50%;
    height: 100vh;
    overflow: hidden;
}

.right video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MOBILE */

@media(max-width: 900px) {

  .hero {
    flex-direction: column;
    height: auto;
  }

  .right {
    width: 100%;
    height: 60vh;
  }

  .right video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .left {
    width: 100%;
    padding: 60px 28px 40px 28px;
  }

  .manifesto {
    font-size: 1.4rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
  }

  .info {
    margin-top: 30px;
    font-size: 11px;
    gap: 14px;
  }

  .audio-toggle {
    top: 80px;
    right: 20px;
  }

}