:root {
  --cream: #f9f7f0;
  --ink: #17140f;
  --peach: #ffaf87;
  --font-head: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }

h1, h2, h3 { font-family: var(--font-head); margin: 0; font-weight: 700; }

p { margin: 0 0 1em; }

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

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--peach);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 40px 72px;
  max-width: 720px;
}

.hero__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.hero__subtitle {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
}

.hero__scroll {
  position: absolute;
  z-index: 1;
  left: 40px;
  bottom: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--peach);
  color: var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bob 2.2s ease-in-out infinite;
}

.hero__scroll svg { width: 20px; height: 20px; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---------- SHOW SECTIONS ---------- */
.show {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 40px 48px;
}

.show__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  column-gap: 15%;
  row-gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}

.show__info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.show__info p {
  max-width: 46ch;
  color: #322c22;
}

.show__links {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.show__links a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.show__links a:hover { color: var(--peach); }

.show__card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  color: #fff;
  max-height: 340px;
  margin: 0 auto;
}

.show__card--portrait {
  aspect-ratio: 3 / 4;
  max-width: 260px;
}

.show__card--spotify {
  aspect-ratio: auto;
  max-height: none;
  overflow: visible;
  width: 100%;
}

.show__card--spotify iframe { display: block; }

.show__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.show__card:hover img { transform: scale(1.04); }

.show__card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.show__card-play svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  margin-left: 3px;
  color: var(--ink);
}

.show__card-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(249,247,240,0.92);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.show__card:hover .show__card-play::before { transform: translate(-50%, -50%) scale(1.08); }

.show__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr 3.2fr;
  gap: 20px;
}

.show__thumbs img,
.show__thumbs iframe,
.show__thumbs .thumb-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  border: 0;
  background: #000;
}

.show__thumbs img {
  height: 100%;
  object-fit: cover;
}

.show__thumbs img.wide,
.show__thumbs iframe.wide {
  aspect-ratio: 16 / 9;
}

.show__thumbs .thumb-video.wide {
  aspect-ratio: auto;
  height: auto;
  align-self: stretch;
}

.thumb-video {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.thumb-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.thumb-play svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  margin-left: 3px;
  color: var(--ink);
}

.thumb-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(249,247,240,0.92);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.thumb-video:hover .thumb-play::before { transform: translate(-50%, -50%) scale(1.08); }

.thumb-video.is-playing .thumb-play { display: none; }

/* ---------- PROJECT (NYFW) ---------- */
.project {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px 96px;
}

.project h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 24px;
}

.project__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.project__thumbs img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 12px;
}

/* ---------- START LISTENING ---------- */
.listen {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px 96px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.listen__video video {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.listen__copy p { color: #322c22; max-width: 52ch; }

.listen__copy hr {
  border: none;
  border-top: 2px solid var(--ink);
  margin: 28px 0 20px;
}

.listen__copy h3 { font-size: 1.6rem; margin-bottom: 20px; }

.listen__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px 10px 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.badge img { width: 26px; height: 26px; border-radius: 50%; object-fit: contain; }

/* ---------- REVIEWS ---------- */
.reviews {
  position: relative;
  padding: 96px 40px;
  color: var(--cream);
  overflow: hidden;
}

.reviews__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.reviews__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 5, 0.62);
}

.reviews__content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.reviews h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 40px;
}

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

.review {
  border-top: 2px solid rgba(249,247,240,0.5);
  padding-top: 18px;
}

.review p:first-child { font-size: 0.95rem; opacity: 0.92; }

.review__name { font-family: var(--font-head); font-weight: 700; margin: 0; }

/* ---------- CTA / FOOTER ---------- */
.cta {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  text-align: center;
}

.cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cta__banner {
  height: 260px;
  border-radius: 4px;
  background-size: cover;
  background-position: center 30%;
  margin-bottom: 40px;
}

.cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 24px;
}

.cta__email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}

.cta__email:hover { border-color: var(--ink); }

.cta__email svg { width: 20px; height: 20px; }

.site-footer {
  text-align: center;
  padding: 32px 40px 48px;
  color: #6b6152;
  font-size: 0.85rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .show__grid, .listen {
    grid-template-columns: 1fr;
  }

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

  .show__thumbs img.wide,
  .show__thumbs iframe.wide,
  .show__thumbs .thumb-video.wide { grid-column: span 2; }

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

  .wrap, .show, .project, .listen, .reviews__content, .cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero__content, .hero__scroll { padding-left: 24px; left: 24px; }
}

@media (max-width: 520px) {
  .show__thumbs, .project__thumbs { grid-template-columns: repeat(2, 1fr); }
}
