:root {
  --background: #08080a;
  --surface: #111116;
  --surface-light: #17171e;
  --text: #f6f3ee;
  --muted: #aaa6ad;
  --accent: #ff3d00;
  --accent-soft: #ff7a00;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 78px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 8, 10, 0.7);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(8, 8, 10, 0.92);
}

.logo {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.08em;
}

.logo span {
  color: var(--accent);
}

.navigation {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navigation a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.navigation a:hover,
.navigation a:focus-visible {
  color: var(--text);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  min-height: 100svh;
  padding: 140px 6vw 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: 4rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.hero-glow-one {
  width: 34rem;
  height: 34rem;
  right: 4%;
  top: 14%;
  background: var(--accent);
}

.hero-glow-two {
  width: 20rem;
  height: 20rem;
  left: 20%;
  bottom: -8%;
  background: #5f00ff;
}

.eyebrow {
  color: var(--accent-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1,
.section h2,
.statement-section h2 {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.hero h1 {
  font-size: clamp(5rem, 12vw, 10rem);
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--text);
}

.hero-copy {
  max-width: 650px;
  margin-top: 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  min-height: 50px;
  padding: 0.8rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--accent);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff571f;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255,255,255,0.35);
}

.hero-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
  position: relative;
}

.record {
  width: min(38vw, 480px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  background:
    radial-gradient(circle at center, #18181d 0 7%, #d54620 7.5% 17%, #0f0f13 17.5% 22%, transparent 22.5%),
    repeating-radial-gradient(circle at center, #15151a 0 4px, #09090c 5px 8px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.65);
  animation: spin 18s linear infinite;
}

.record::after {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}

.record-ring {
  position: absolute;
  width: 64%;
  height: 64%;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.16);
}

.record-label {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.08em;
  color: var(--text);
}

.hero-visual > p {
  position: absolute;
  right: 2%;
  bottom: 5%;
  color: rgba(255,255,255,0.38);
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.7;
  text-align: right;
  font-size: 0.72rem;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 6vw;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-hint span {
  color: var(--accent);
  margin-left: 0.5rem;
}

.section {
  padding: 9rem 7vw;
  scroll-margin-top: 78px;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 4rem;
}

.section h2,
.statement-section h2 {
  font-size: clamp(3.25rem, 7vw, 7rem);
}

.about-section {
  background: var(--text);
  color: #111116;
}

.about-section .eyebrow {
  color: #c33912;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}

.lead-copy {
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.body-copy {
  font-size: 1.02rem;
  color: #55515a;
}

.body-copy p + p {
  margin-top: 1.4rem;
}

.genre-row {
  margin-top: 5rem;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  border-top: 1px solid rgba(0,0,0,0.14);
}

.genre-row span {
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.artist-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 6vw;
  align-items: start;
  position: relative;
  background:
    linear-gradient(115deg, rgba(255,61,0,0.12), transparent 40%),
    var(--background);
}

.artist-number {
  position: sticky;
  top: 120px;
  color: var(--accent);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(5rem, 12vw, 12rem);
  line-height: 1;
  opacity: 0.25;
}

.artist-content {
  max-width: 900px;
}

.artist-content > p:not(.eyebrow):not(.lead-copy) {
  max-width: 760px;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.artist-content blockquote {
  margin-top: 4rem;
  padding: 2.5rem 0 2.5rem 2rem;
  border-left: 4px solid var(--accent);
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.setup-section {
  background: var(--surface);
}

.setup-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.setup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.setup-card {
  min-height: 390px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface-light);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.setup-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.28);
}

.setup-card span {
  color: var(--accent-soft);
  font-family: "Archivo Black", sans-serif;
  font-size: 0.8rem;
}

.setup-card h3 {
  margin-top: auto;
  margin-bottom: 1.25rem;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.setup-card p {
  color: var(--muted);
}

.featured-card {
  background: var(--accent);
  color: white;
}

.featured-card span,
.featured-card p {
  color: white;
}

.statement-section {
  min-height: 720px;
  padding: 9rem 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(130deg, rgba(95,0,255,0.26), transparent 45%),
    linear-gradient(320deg, rgba(255,61,0,0.34), transparent 50%),
    #09090c;
  text-align: center;
}

.statement-section > p:first-child {
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.statement-section h2 {
  margin: 2rem 0;
}

.statement-copy {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.06rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 8vw;
  align-items: end;
  background: var(--text);
  color: #111116;
}

.contact-section .eyebrow {
  color: #c33912;
}

.contact-details p {
  color: #5a5660;
  margin-bottom: 2rem;
}

.email-link {
  display: block;
  margin-bottom: 2rem;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 700;
  word-break: break-word;
}

footer {
  padding: 2rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

footer .logo {
  color: var(--text);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
    z-index: 22;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .navigation {
    position: fixed;
    inset: 0;
    padding: 7rem 7vw 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: rgba(8, 8, 10, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .navigation.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navigation a {
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(2.2rem, 9vw, 4rem);
    line-height: 1;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 125px;
  }

  .hero-visual {
    min-height: 400px;
  }

  .record {
    width: min(78vw, 430px);
  }

  .scroll-hint {
    display: none;
  }

  .about-grid,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .artist-section {
    grid-template-columns: 1fr;
  }

  .artist-number {
    position: static;
    margin-bottom: -3rem;
  }

  .setup-cards {
    grid-template-columns: 1fr;
  }

  .setup-card {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
  }

  .hero {
    padding-left: 5vw;
    padding-right: 5vw;
  }

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

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .section,
  .statement-section {
    padding: 6rem 5vw;
  }

  .section h2,
  .statement-section h2 {
    font-size: clamp(2.7rem, 15vw, 4.6rem);
  }

  .artist-content blockquote {
    padding-left: 1.2rem;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Photo areas — replace the files inside /images while keeping the same names. */
.hero-photo-frame {
  width: min(38vw, 500px);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 40px 100px rgba(0,0,0,0.65);
  transform: rotate(2deg);
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,10,0.7), transparent 48%);
  pointer-events: none;
}

.hero-photo-frame img,
.about-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.photo-label {
  position: absolute;
  z-index: 2;
  left: 1.25rem;
  bottom: 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.record-small {
  position: absolute;
  width: min(17vw, 210px);
  right: 0;
  bottom: 0;
  border: 8px solid var(--background);
}

.about-photo {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  min-height: 430px;
  overflow: hidden;
  background: #111116;
  color: var(--text);
}

.about-photo > div {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-photo span {
  color: var(--accent-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-photo p {
  margin-top: 0.8rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-photo-frame {
    width: min(78vw, 430px);
  }

  .record-small {
    width: min(34vw, 180px);
  }

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

  .about-photo img {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .hero-photo-frame {
    width: min(86vw, 390px);
  }

  .about-photo {
    min-height: 0;
  }

  .about-photo img {
    min-height: 300px;
  }
}
