:root {
  --bg: #050506;
  --fg: #f2f2f0;
  --mute: #8a8a86;
  --line: #1a1a1c;
  --pad: clamp(20px, 4vw, 56px);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad);
}

.logo {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.42em;
  padding-left: 0.42em;
}

.nav-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #000;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 46%;
  animation: drift 28s ease-out forwards;
}

@keyframes drift {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

.hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10vh;
  text-align: center;
  z-index: 1;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  letter-spacing: 0.46em;
  padding-left: 0.46em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.hero-copy p {
  margin: 14px 0 0;
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #d8d8d4;
}

.cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  padding: 13px 34px 12px;
  border: 1px solid #f2f2f0;
  min-width: 228px;
  color: #f2f2f0;
  text-shadow: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.cta strong {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cta span {
  margin-top: 5px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #c8c8c4;
}

.cta:hover {
  background: #f2f2f0;
  color: #050506;
}

.cta:hover span {
  color: #3a3a38;
}

.statement {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 12vh var(--pad);
}

.statement p {
  margin: 0;
  font-size: clamp(36px, 6.4vw, 84px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 16ch;
}

.still {
  height: 88vh;
  overflow: hidden;
  background: #000;
}

.still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  filter: contrast(1.05) saturate(0.85);
}

.lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 14vh var(--pad) 16vh;
  border-top: 1px solid var(--line);
}

.lines article {
  padding: 0 clamp(20px, 3vw, 48px) 0 0;
}

.lines article:last-child {
  padding-right: 0;
}

.lines span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--mute);
  margin-bottom: 28px;
}

.lines h2 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.lines p {
  margin: 0;
  max-width: 28ch;
  font-size: 15px;
  line-height: 1.5;
  color: var(--mute);
}

.foot {
  display: flex;
  justify-content: space-between;
  padding: 22px var(--pad) 32px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

@media (max-width: 800px) {
  .lines {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 10vh;
  }

  .lines article {
    padding-right: 0;
  }

  .statement {
    min-height: 70vh;
  }

  .still {
    height: 56vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img {
    animation: none;
  }
}
