:root {
  --yellow: #fff338;
  --black: #050505;
  --white: #ffffff;
  --ink: #171717;
  --muted: #686868;
  --line: rgba(5, 5, 5, 0.12);
  --max: 1160px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 48px);
  color: var(--black);
  mix-blend-mode: multiply;
}

.brand {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(100svh, 900px);
  overflow: hidden;
  background: var(--yellow);
}

.hero-art {
  width: 100%;
  height: 100%;
  min-height: min(100svh, 900px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-actions {
  position: absolute;
  left: clamp(18px, 11vw, 204px);
  top: clamp(74px, 9vh, 104px);
  display: flex;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid var(--black);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.button-light {
  color: var(--black);
  background: transparent;
}

.button-yellow {
  color: var(--black);
  background: var(--yellow);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(32px, 8vw, 92px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 12vw, 130px) clamp(20px, 5vw, 44px);
}

.intro-copy h1,
.statement h2,
.contact h2 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(2.6rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-copy p:not(.section-label),
.statement p {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.65vw, 1.24rem);
  line-height: 1.6;
}

.section-label {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listen-panel {
  display: grid;
  border-top: 2px solid var(--black);
}

.listen-panel a {
  display: grid;
  gap: 10px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.listen-panel span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listen-panel strong {
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  line-height: 1.18;
}

.statement {
  color: var(--white);
  background: var(--black);
  padding: clamp(72px, 12vw, 132px) clamp(20px, 6vw, 72px);
}

.statement h2,
.statement p {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.statement p {
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 112px) clamp(20px, 5vw, 44px);
}

.contact h2 {
  font-size: clamp(2rem, 5.5vw, 4.6rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 44px);
  color: var(--black);
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    padding-top: 18px;
  }

  .nav-links {
    gap: 14px;
  }

  .hero,
  .hero-art {
    min-height: 0;
  }

  .hero {
    padding: 112px 10px 96px;
  }

  .hero-art {
    height: auto;
    object-fit: contain;
    padding: 0;
    background: var(--yellow);
  }

  .hero-actions {
    top: auto;
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .hero-actions .button {
    flex: 1;
  }

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

  .contact,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .button {
    padding: 0 16px;
    font-size: 0.72rem;
  }
}
