:root {
  --ink: #f3f1ec;
  --coal: #0a0a0a;
  --fog: rgba(243, 241, 236, 0.15);
  --paper: #f5f4f1;
  --paper-ink: #111111;
  --accent: #c9c2b5;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", "Arial", sans-serif;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: var(--coal);
  overflow: hidden;
}

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

.page {
  min-height: 100vh;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: -150%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.35;
  animation: grainShift 6s steps(6) infinite;
  z-index: 4;
}

@keyframes grainShift {
  0% {
    transform: translate3d(-10%, -10%, 0);
  }
  100% {
    transform: translate3d(10%, 10%, 0);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 8vw 48px;
  background: var(--coal);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-image, #2b2b2b);
  background-size: cover;
  background-position: center;
  filter: saturate(0.95);
  opacity: 0.8;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.topbar-minimal {
  justify-content: center;
}

.topbar button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  padding: 0;
  cursor: pointer;
}

.topbar .menu {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.topbar .menu::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--ink);
  box-shadow: 0 5px 0 var(--ink), 0 -5px 0 var(--ink);
  opacity: 0.8;
}

.logo {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.28em;
}


.brand {
  margin: 24px 0 12px;
  font-size: clamp(28px, 6vw, 64px);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.tagline {
  margin: 0;
  font-size: clamp(15px, 1.6vw, 20px);
  max-width: 520px;
  line-height: 1.6;
  color: rgba(243, 241, 236, 0.75);
}

.nav {
  margin-top: 24px;
  display: flex;
  gap: 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease;
}

.nav a:hover {
  border-color: var(--ink);
}

.lineup {
  position: relative;
  z-index: 2;
  margin-top: 40px;
}

.lineup ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.lineup li {
  font-size: clamp(24px, 4vw, 54px);
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.lineup li span {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(243, 241, 236, 0.6);
}

.scroll-indicator {
  position: absolute;
  right: 8vw;
  bottom: 24px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-indicator {
  display: none;
}

.is-saved {
  display: none;
}

.content {
  background: var(--paper);
  color: var(--paper-ink);
  padding: 80px 8vw 96px;
}

.section {
  display: grid;
  gap: 20px;
  margin-bottom: 72px;
}

.section .eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.55);
  margin-bottom: 12px;
}

.section h2 {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section p {
  margin: 0;
  max-width: 640px;
  line-height: 1.7;
  font-size: 15px;
  color: rgba(17, 17, 17, 0.75);
}

.panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.8);
  display: flex;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.panel-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.panel-drawer {
  width: min(420px, 90vw);
  height: 100%;
  background: #0b0b0b;
  color: #f5f4f1;
  padding: 32px 28px;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  display: grid;
  align-content: start;
  gap: 32px;
}

.panel-overlay.is-open .panel-drawer {
  transform: translateX(0);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel-close {
  background: none;
  border: none;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 10px;
  cursor: pointer;
}

.panel-nav {
  display: grid;
  gap: 16px;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.manifesto {
  grid-template-columns: minmax(240px, 420px) minmax(280px, 1fr);
  align-items: start;
  column-gap: 40px;
}

.manifesto h2 {
  line-height: 1.1;
}

.manifesto p {
  max-width: 520px;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.55);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.tile {
  border-top: 1px solid rgba(17, 17, 17, 0.15);
  padding-top: 16px;
}

.tile h3 {
  margin: 0 0 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.tile p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.7);
}

.footer {
  border-top: 1px solid rgba(17, 17, 17, 0.15);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cta {
  border: 1px solid currentColor;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.28em;
}

@media (max-width: 640px) {
  .topbar {
    font-size: 10px;
  }

  .lineup li {
    flex-direction: column;
    gap: 6px;
  }

  .scroll-indicator {
    right: 6vw;
  }

  .manifesto {
    grid-template-columns: 1fr;
  }

  .content {
    padding: 56px 6vw 72px;
  }

  .section {
    margin-bottom: 56px;
  }

  .section h2 {
    font-size: clamp(20px, 7vw, 32px);
  }

  .section p {
    font-size: 14px;
  }
}
