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

:root {
  --bg: #060606;
  --surface: #101010;
  --surface-2: #151515;
  --text: #f5f5f5;
  --muted: #a7a7a7;
  --line: rgba(255,255,255,.12);
  --accent: #bd4dff;
  --accent-2: #7e35ff;
  --max: 1240px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(var(--max), calc(100% - 80px));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: #c56aff;
  font-family: "Space Grotesk", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.brand,
.nav,
.btn {
  font-family: "Space Grotesk", sans-serif;
}

h2 {
  margin: 0 0 28px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: .95;
  letter-spacing: -.045em;
}

h2 span {
  color: var(--accent);
}

p {
  color: var(--muted);
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .06em;
  white-space: nowrap;
}

.brand span {
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  color: #ddd;
  transition: color .2s ease;
}

.nav a:hover,
.nav a.active {
  color: #fff;
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: var(--accent);
}

.nav-book {
  margin-left: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(197,106,255,.75);
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

/* Hero */
.hero {
  min-height: 760px;
  height: 92vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 35%, rgba(131,37,255,.24), transparent 30%),
    radial-gradient(circle at 65% 80%, rgba(255,0,204,.13), transparent 30%),
    #050505;
}

.hero-image {
  position: absolute;
  inset: 0 0 0 43%;
  overflow: hidden;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.85) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050505 15%, rgba(5,5,5,.88) 36%, rgba(5,5,5,.2) 67%, rgba(5,5,5,.45) 100%),
    linear-gradient(0deg, rgba(0,0,0,.72), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 65px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(5rem, 10vw, 9.2rem);
  line-height: .78;
  letter-spacing: -.075em;
}

.hero h1 span {
  color: #fff;
}

.tagline {
  margin: 30px 0 14px;
  color: #c56aff;
  font-family: "Space Grotesk", sans-serif;
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .22em;
}

.hero-copy {
  max-width: 450px;
  margin: 0 0 30px;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent-2);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-ghost,
.btn-outline {
  border-color: rgba(255,255,255,.32);
}

.btn-ghost:hover,
.btn-outline:hover {
  border-color: var(--accent);
}

.socials {
  display: flex;
  gap: 20px;
  margin-top: 38px;
}

.socials a {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: #bbb;
}

.socials a:hover {
  color: #fff;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: 40px;
  bottom: 34px;
  color: #888;
  font-size: .62rem;
  letter-spacing: .2em;
}

.hero-scroll span {
  color: var(--accent);
  margin-left: 10px;
}

/* Services */
.services-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service {
  min-height: 160px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}

.service:first-child {
  border-left: 1px solid var(--line);
}

.service-icon {
  flex: 0 0 34px;
  color: var(--accent);
  font-size: 2rem;
  line-height: 1;
}

.service .eyebrow {
  margin-bottom: 5px;
  font-size: .58rem;
}

.service h3 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.service p:last-child {
  margin: 5px 0 0;
  font-size: .78rem;
  line-height: 1.45;
}

/* Mixes */
.mixes {
  background: #050505;
}

.mixes-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 70px;
  align-items: center;
}

.mix-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  align-items: center;
}

.mix-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.mix-art img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15);
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 52px;
  height: 52px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  color: #fff;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.mix-topline {
  display: flex;
  justify-content: space-between;
  color: #ddd;
  font-family: "Space Grotesk", sans-serif;
  font-size: .7rem;
  letter-spacing: .12em;
}

.waveform {
  height: 75px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 16px 0;
}

.waveform i {
  width: 3px;
  height: calc(12px + (var(--n, 1) * 3px));
  background: linear-gradient(to top, var(--accent-2), #d47bff);
  border-radius: 5px;
}

.waveform i:nth-child(3n) { height: 46px; }
.waveform i:nth-child(4n) { height: 22px; }
.waveform i:nth-child(5n) { height: 60px; }
.waveform i:nth-child(7n) { height: 35px; }
.waveform i:nth-child(9n) { height: 52px; }

.mix-progress {
  height: 2px;
  background: #292929;
}

.mix-progress span {
  display: block;
  width: 28%;
  height: 100%;
  background: var(--accent);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  background: #111;
}

.about-image {
  min-height: 600px;
}

.about-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 90px clamp(50px, 8vw, 120px);
}

.about-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 0 18px;
}

/* Reviews */
.reviews {
  border-bottom: 1px solid var(--line);
}

.centered {
  text-align: center;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 65px;
}

blockquote {
  margin: 0;
  padding: 0 10px;
}

.quote {
  color: var(--accent);
  font-size: 3rem;
  line-height: .5;
}

blockquote p {
  margin: 20px 0;
  color: #d0d0d0;
  font-size: .95rem;
}

cite {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: .7rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Gallery */
.gallery {
  background: #090909;
}

.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 40px;
}

.gallery-head h2 {
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 10px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: #161616;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-main {
  grid-row: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

/* CTA */
.cta {
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(129,40,255,.14), transparent 40%),
    #070707;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta h2 {
  margin-bottom: 36px;
}

/* Footer */
footer {
  padding: 65px 0 25px;
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr .7fr auto;
  gap: 40px;
  align-items: start;
}

.footer-brand p {
  max-width: 290px;
  font-size: .82rem;
}

.footer-contact p {
  margin: 0 0 10px;
  color: #ddd;
  font-size: .78rem;
}

.footer-contact span {
  display: inline-block;
  width: 25px;
  color: var(--accent);
}

.footer-social .eyebrow {
  margin-bottom: 10px;
}

.footer-social .socials {
  margin-top: 0;
}

.footer-book {
  align-self: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #666;
  font-family: "Space Grotesk", sans-serif;
  font-size: .6rem;
  letter-spacing: .13em;
}

/* Responsive */
@media (max-width: 1050px) {
  .container {
    width: min(var(--max), calc(100% - 48px));
  }

  .nav {
    gap: 18px;
  }

  .hero-image {
    left: 35%;
  }

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

  .service:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .service:nth-child(3),
  .service:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .mixes-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  .footer-book {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 34px));
  }

  .section {
    padding: 75px 0;
  }

  .site-header {
    background: rgba(0,0,0,.72);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .nav-toggle-label {
    display: flex;
    width: 30px;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .nav-toggle-label span {
    height: 2px;
    width: 100%;
    background: #fff;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 17px 18px;
    background: rgba(5,5,5,.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform .25s ease;
  }

  .nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .nav a.active::after {
    display: none;
  }

  .nav-book {
    margin: 12px 0 0;
    text-align: center;
    border: 1px solid var(--accent);
  }

  .nav-toggle:checked ~ .nav {
    transform: translateY(0);
  }

  .hero {
    height: 850px;
    min-height: 850px;
    align-items: end;
  }

  .hero-image {
    left: 0;
    opacity: .72;
  }

  .hero-image img {
    object-position: 50% top;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.35) 25%, #050505 72%),
      linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.12));
  }

  .hero-content {
    padding-bottom: 100px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 19vw, 7rem);
  }

  .hero-copy {
    font-size: .9rem;
  }

  .hero-scroll {
    display: none;
  }

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

  .service,
  .service:first-child {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service:last-child {
    border-bottom: 0;
  }

  .mix-card {
    grid-template-columns: 95px 1fr;
    gap: 15px;
  }

  .waveform {
    gap: 2px;
    height: 60px;
  }

  .waveform i:nth-child(3n) { height: 38px; }
  .waveform i:nth-child(5n) { height: 48px; }

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

  .about-image {
    min-height: 420px;
  }

  .about-copy {
    padding: 65px 25px;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    margin-top: 40px;
  }

  .gallery-head {
    align-items: start;
    flex-direction: column;
    gap: 22px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }

  .gallery-main {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-tall {
    grid-row: span 2;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
