:root {
  --black: #000;
  --white: #f5f5f2;
  --line: rgba(255,255,255,.28);
  --pad: clamp(18px, 3.2vw, 52px);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
.mono { font-family: "DM Mono", monospace; font-weight: 300; }

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px var(--pad);
  color: #fff;
  mix-blend-mode: difference;
}

.wordmark { font-size: 14px; font-weight: 800; letter-spacing: -.04em; }
.location { font-size: 9px; text-transform: uppercase; letter-spacing: .04em; }
.share-button {
  justify-self: end;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  transition: opacity .25s ease, transform .35s var(--ease);
}
.share-button:hover { transform: translateY(-2px); }
.share-button:active { transform: scale(.94); opacity: .65; }
.share-button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #080808;
}

.hero__image {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.hero__image img {
  width: 122%;
  height: 122%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: contrast(1.055) saturate(.94);
  animation: hero-in 2.4s var(--ease) both;
}

@keyframes hero-in {
  from { opacity: .88; transform: scale(1.01); }
  to { opacity: 1; transform: scale(1); }
}

.hero__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,.13) 100%),
    linear-gradient(180deg, rgba(0,0,0,.26) 0%, transparent 25%),
    linear-gradient(180deg, transparent 31%, rgba(0,0,0,.09) 40%, rgba(0,0,0,.24) 51%, rgba(0,0,0,.48) 63%, rgba(0,0,0,.76) 78%, #000 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: .065;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero__content {
  position: absolute;
  z-index: 2;
  left: var(--pad);
  right: var(--pad);
  bottom: clamp(118px, 14vh, 156px);
}

.hero__identity {
  animation: identity-in 1.5s var(--ease) .18s both;
}

@keyframes identity-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.hero__identity h1 {
  margin: 0;
  font-size: clamp(48px, 10.2vw, 158px);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.082em;
}

.hero__identity p {
  margin: 24px 0 0;
  font-size: clamp(9px, .9vw, 12px);
  letter-spacing: .025em;
}

.hero__identity i { padding: 0 4px; color: rgba(255,255,255,.55); font-style: normal; }

.hero__socials {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.5vw, 40px);
  margin-top: 48px;
  animation: socials-in 1.5s var(--ease) .42s both;
}

@keyframes socials-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: none; }
}

.hero__socials a {
  position: relative;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  transition: opacity .25s ease, transform .35s var(--ease);
}

.hero__socials a:hover { transform: translateY(-2px); }
.hero__socials a:active { transform: scale(.92); opacity: .7; }
.hero__socials:has(a:hover) a:not(:hover) { opacity: .35; }
.hero__socials svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.hero__socials svg .fill { fill: currentColor; stroke: none; }
.hero__socials b { font-size: 22px; font-weight: 500; line-height: 1; }
.hero__socials span {
  position: absolute;
  left: 50%;
  bottom: -24px;
  opacity: 0;
  transform: translateX(-50%) translateY(4px);
  white-space: nowrap;
  font: 300 8px "DM Mono", monospace;
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.hero__socials a:hover span { opacity: 1; transform: translateX(-50%) translateY(0); }

.hero__scroll {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: clamp(50px, 7vh, 86px);
  font-size: 9px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.links { padding: clamp(110px, 14vw, 220px) var(--pad) clamp(140px, 18vw, 280px); }
.links__header {
  padding-bottom: clamp(34px, 4.5vw, 68px);
}
.links__header > span { font-size: 9px; text-transform: uppercase; color: #b0b0b0; }

.links__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 66px) clamp(10px, 1.2vw, 18px);
}

.feature {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111;
}

.feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02);
  transition: transform 1.15s var(--ease), filter 1.15s var(--ease);
}

.feature--swell img { object-position: 52% center; }
.feature--music img { object-position: center 42%; }
.feature--sets img { object-position: center 45%; }
.feature--contact img { object-position: center 26%; }
.feature:hover img { transform: scale(1.02); filter: contrast(1.08); }

.feature__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1), transparent 38%, rgba(0,0,0,.76));
}

.feature__copy { position: absolute; z-index: 1; }
.feature__copy { left: clamp(18px, 2.3vw, 36px); right: 20px; bottom: clamp(20px, 2.5vw, 40px); }
.feature__copy strong {
  display: block;
  font-size: clamp(40px, 7vw, 108px);
  line-height: .84;
  letter-spacing: -.085em;
}
.feature__copy small { display: block; margin-top: 18px; font-size: clamp(9px, .9vw, 12px); }

.reveal { transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal.is-visible { opacity: 1; transform: none; }

footer { padding: clamp(70px, 10vw, 150px) var(--pad) 32px; }
.footer__line {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.footer__line span:nth-child(2) { justify-self: center; }
.footer__line a {
  justify-self: end;
  transition: opacity .25s ease;
}
.footer__line a:hover { opacity: .55; }

@media (min-width: 820px) {
  .hero__image { left: 0; }
  .hero__image img {
    width: 100%;
    min-width: 0;
    height: 100%;
    object-fit: cover;
    object-position: 50% 41%;
    background: transparent;
  }
  .hero__shade {
    background:
      radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,.13) 100%),
      linear-gradient(180deg, rgba(0,0,0,.26) 0%, transparent 25%),
      linear-gradient(180deg, rgba(0,0,0,.22) 0%, transparent 30%, rgba(0,0,0,.1) 40%, rgba(0,0,0,.26) 51%, rgba(0,0,0,.5) 64%, rgba(0,0,0,.78) 79%, #000 100%);
  }
  .hero__content { right: var(--pad); }
  .hero__identity h1 { font-size: clamp(72px, 8.3vw, 130px); }
}

@media (max-width: 819px) {
  .site-header { grid-template-columns: 1fr 1fr; padding-top: 18px; }
  .location { display: none; }
  .hero__image img { object-position: 50% 50%; }
  .hero__content { bottom: clamp(112px, 13vh, 142px); }
  .hero__identity h1 { font-size: 15.2vw; }
  .hero__identity p { margin-top: 14px; }
  .hero__socials { justify-content: space-between; gap: 0; margin-top: 48px; padding-right: 36px; }
  .hero__socials a { width: 24px; height: 24px; }
  .hero__socials svg { width: 22px; height: 22px; }
  .hero__socials span { display: none; }
  .hero__scroll { display: none; }
  .links { padding-top: 100px; }
  .links__header { padding-bottom: 34px; }
  .links__grid { grid-template-columns: 1fr; gap: 28px; }
  .feature { aspect-ratio: 3 / 4; }
  .feature__copy strong { font-size: 15.5vw; }
  footer { padding-top: 80px; }
  .footer__line {
    grid-template-columns: 1fr auto;
    row-gap: 14px;
  }
  .footer__line span:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }
  .footer__line a {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
