:root {
  --bg: #000000;
  --text: #b3b3b3;
  --text-bright: #f9f7f7;
  --contact: #8a0000;
  --content: 794px;
  --grid: 1054px;
  --tile: 1fr;
  --gap: 36px;
  --logo-w: 361px;
  --font-body: "Roboto", sans-serif;
  --font-display: "Dela Gothic One", sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.page {
  width: min(100%, var(--grid));
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.brand {
  width: min(100%, var(--content));
  margin: 24px auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.brand__da {
  width: var(--logo-w);
  max-width: 100%;
}

.brand__kabuki {
  width: var(--logo-w);
  max-width: 100%;
  transition: opacity 0.2s ease;
}

.brand__kabuki:hover {
  opacity: 0.85;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, var(--tile));
  gap: var(--gap);
  margin: 0 auto 40px;
  width: 100%;
}

.tile {
  display: block;
  overflow: hidden;
  background: #111;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

a.tile:hover {
  opacity: 0.92;
  transform: scale(1.01);
}

.tile--static {
  pointer-events: none;
}

.spotify {
  width: min(100%, var(--content));
  margin: 24px auto 48px;
}

.spotify iframe {
  display: block;
  width: 100%;
  height: 700px;
  border: 0;
  border-radius: 12px;
}

.actions {
  width: min(100%, var(--content));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.contact {
  display: inline-block;
  background: var(--contact);
  color: var(--text-bright);
  font-family: var(--font-display);
  font-size: 14.4px;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  text-align: center;
  padding: 10.72px 28px;
  border-radius: 2px;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.contact:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.socials a {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--text-bright);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.socials svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
}

@media (max-width: 900px) {
  :root {
    --gap: 20px;
    --logo-w: 280px;
  }

  .page {
    padding: 32px 16px 48px;
  }

  .spotify iframe {
    height: 520px;
  }
}

@media (max-width: 640px) {
  :root {
    --gap: 12px;
    --logo-w: 220px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand {
    margin-bottom: 28px;
  }

  .spotify iframe {
    height: 420px;
  }

  .socials a,
  .socials svg {
    width: 40px;
    height: 40px;
  }
}
