:root {
  --paper: #fbfbf8;
  --ink: #111;
  --muted: #73716b;
  --line: #d8d4ca;
  --soft: #efede7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}

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

img {
  display: block;
  width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 28px;
  mix-blend-mode: difference;
  color: white;
}

.wordmark {
  display: inline-flex;
  gap: 0.22em;
  align-items: baseline;
  line-height: 1;
}

.wordmark span:first-child {
  font-weight: 700;
}

.wordmark span:last-child {
  font-weight: 300;
}

nav {
  display: flex;
  gap: 22px;
  font-size: 12px;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 80px 24px;
  isolation: isolate;
}

.image-drift {
  position: absolute;
  top: 14vh;
  right: 0;
  left: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  height: min(68vh, 620px);
  overflow: hidden;
  opacity: 0.31;
  filter: grayscale(1) contrast(1.08);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 9%, black 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, black 9%, black 91%, transparent 100%);
}

.image-drift::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, var(--paper) 0%, rgba(251, 251, 248, 0) 20%, rgba(251, 251, 248, 0) 80%, var(--paper) 100%),
    radial-gradient(circle at center, rgba(251, 251, 248, 0.06) 0, rgba(251, 251, 248, 0.28) 48%, var(--paper) 88%);
  content: "";
  pointer-events: none;
}

.crawler-track {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  width: max-content;
  animation: crawl 120s linear infinite;
}

.crawler-track + .crawler-track {
  margin-left: 0;
}

.crawler-track img {
  flex: 0 0 auto;
  width: clamp(520px, 58vw, 980px);
  height: min(72vh, 680px);
  margin-left: clamp(-360px, -24vw, -190px);
  object-fit: cover;
  opacity: 0.92;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse at center, black 0, black 36%, rgba(0, 0, 0, 0.48) 58%, transparent 76%);
  mask-image: radial-gradient(ellipse at center, black 0, black 36%, rgba(0, 0, 0, 0.48) 58%, transparent 76%);
}

.crawler-track img:first-child {
  margin-left: 0;
}

.crawler-track img:nth-child(2n) {
  width: clamp(660px, 72vw, 1180px);
  opacity: 0.78;
  transform: translateY(-4vh);
}

.crawler-track img:nth-child(3n) {
  width: clamp(430px, 47vw, 760px);
  height: min(78vh, 740px);
  opacity: 0.88;
  transform: translateY(5vh) scale(1.16);
}

.crawler-track img:nth-child(4n) {
  width: clamp(760px, 82vw, 1320px);
  opacity: 0.7;
  transform: translateY(1vh) scale(1.08);
  object-position: 58% 50%;
}

.crawler-track img:nth-child(5n) {
  width: clamp(500px, 54vw, 880px);
  opacity: 0.82;
  transform: translateY(-6vh) scale(1.22);
  object-position: 42% 52%;
}

.crawler-track img:nth-child(6n) {
  width: clamp(700px, 78vw, 1260px);
  opacity: 0.76;
  transform: translateY(6vh) scale(1.04);
  object-position: 50% 38%;
}

.hero-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 850px;
}

h1 {
  display: flex;
  justify-content: center;
  gap: 0.14em;
  margin: 0;
  font-size: clamp(58px, 10vw, 132px);
  line-height: 0.84;
  font-weight: 300;
}

h1 span:first-child {
  font-weight: 700;
}

h1 span:last-child {
  font-weight: 300;
}

.hero-copy p {
  max-width: 520px;
  margin: 34px auto 0;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.28;
}

.section {
  padding: clamp(78px, 10vw, 150px) 28px;
}

.intro {
  max-width: 1080px;
  margin: 0 auto;
}

.kicker {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(34px, 6vw, 82px);
  line-height: 0.98;
  font-weight: 700;
}

.intro > p:not(.kicker),
.copy-columns p,
.note,
.direct {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.34;
}

.intro > p:not(.kicker) {
  max-width: 700px;
  margin: 34px 0 0 auto;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
}

.services article,
.sound-list article {
  border-top: 1px solid var(--line);
  padding: 28px 0 0;
}

.services article {
  min-height: 280px;
  padding-right: 36px;
}

.services span {
  color: var(--muted);
  font-size: 12px;
}

h3 {
  margin: 34px 0 16px;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

.services p,
.sound-list p,
.profile p {
  margin: 0;
  color: #2d2c29;
  font-size: 18px;
  line-height: 1.35;
}

.photo-band {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.photo-band img,
.profile img {
  filter: grayscale(1) contrast(1.08);
  object-fit: cover;
  background: var(--soft);
}

.photo-band img {
  height: min(68vw, 720px);
}

.photo-band img:nth-child(2) {
  height: min(74vw, 780px);
  margin-top: 8vw;
}

.about,
.sound,
.inquire {
  max-width: 1180px;
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 52px;
}

.profile img {
  aspect-ratio: 4 / 3;
}

.profile h3 {
  margin: 16px 0 5px;
}

.copy-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.copy-columns p {
  margin: 0;
}

.sound-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px 32px;
}

.note {
  max-width: 680px;
  margin: 54px 0 0 auto;
  color: var(--muted);
}

form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 20px;
  outline: 0;
  padding: 10px 0 12px;
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.wide,
button {
  grid-column: 1 / -1;
}

button {
  justify-self: start;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 16px 22px;
  font: inherit;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
}

button:hover {
  background: transparent;
  color: var(--ink);
}

.direct {
  margin: 34px 0 0;
}

.direct a {
  border-bottom: 1px solid currentColor;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 26px 28px;
  color: var(--muted);
}

footer .wordmark {
  color: var(--ink);
}

footer p {
  margin: 0;
  font-size: 13px;
}

@keyframes drift {
  from {
    transform: translate3d(-4vw, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% + 100vw), 0, 0);
  }
}

@keyframes crawl {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding: 18px;
  }

  nav {
    flex-direction: column;
    gap: 9px;
    text-align: right;
  }

  h1 {
    flex-direction: column;
    gap: 0;
  }

  .image-drift {
    top: 20vh;
    height: 56vh;
    opacity: 0.32;
  }

  .crawler-track {
    animation-duration: 96s;
  }

  .crawler-track img {
    width: 118vw;
    height: 56vh;
    margin-left: -58vw;
  }

  .crawler-track img:nth-child(2n) {
    width: 142vw;
  }

  .crawler-track img:nth-child(3n) {
    width: 104vw;
  }

  .section {
    padding: 78px 18px;
  }

  .services,
  .photo-band,
  .about-grid,
  .copy-columns,
  .sound-list,
  .section-heading,
  form {
    grid-template-columns: 1fr;
  }

  .services article {
    min-height: auto;
    padding-right: 0;
    padding-bottom: 22px;
  }

  .photo-band {
    gap: 10px;
  }

  .photo-band img,
  .photo-band img:nth-child(2) {
    height: 68vh;
    margin-top: 0;
  }

  .section-heading {
    gap: 12px;
  }

  .copy-columns {
    gap: 22px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 18px;
  }
}
