/* === Reset & Base === */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: #111111;
  color: #b8b8b8;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

::selection {
  background: #2a2a2a;
  color: #ffffff;
}

/* === Navigation === */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.97);
  border-bottom: 1px solid #1c1c1c;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #d8d8d8;
  transition: color 0.2s;
}

.nav-logo:hover {
  color: #ffffff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #585858;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #d8d8d8;
}

/* === Hamburger === */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #999;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #111111;
  border-top: 1px solid #1a1a1a;
  padding: 0.5rem 2rem 1rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #585858;
  padding: 0.85rem 0;
  border-bottom: 1px solid #191919;
  transition: color 0.2s;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: #d8d8d8;
}

/* === Main === */

main {
  flex: 1;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  padding: 128px 2rem 80px;
}

/* === Home === */

.home-content {
  padding-top: 6vh;
}

.home-name {
  font-size: clamp(2.8rem, 7vw, 4.4rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  color: #f0f0f0;
  line-height: 1.05;
  margin-bottom: 0.7rem;
}

.home-title {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #484848;
  margin-bottom: 0.3rem;
}

.home-genres {
  font-size: 0.82rem;
  color: #3e3e3e;
  letter-spacing: 0.07em;
  margin-bottom: 3.5rem;
}

.home-info {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.home-info-line {
  font-size: 0.875rem;
  color: #585858;
}

.home-info-line a {
  color: #787878;
  transition: color 0.2s;
}

.home-info-line a:hover {
  color: #d8d8d8;
}

/* === Page Header === */

.page-header {
  margin-bottom: 3.5rem;
}

.page-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3e3e3e;
}

/* === Bio === */

.bio-text {
  max-width: 600px;
}

.bio-text p {
  font-size: 1rem;
  color: #a0a0a0;
  line-height: 1.9;
  margin-bottom: 1.6rem;
}

.bio-text p:last-child {
  margin-bottom: 0;
}

/* === Work === */

.credits-list {
  max-width: 680px;
  display: flex;
  flex-direction: column;
}

.credits-placeholder {
  font-size: 0.875rem;
  color: #444;
  font-style: italic;
  letter-spacing: 0.03em;
}

.credit-item {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem 2.5rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid #191919;
}

.credit-item:first-child {
  border-top: 1px solid #191919;
}

.credit-artist {
  font-size: 0.9rem;
  color: #c0c0c0;
}

.credit-project {
  font-size: 0.85rem;
  color: #585858;
}

.credit-year {
  font-size: 0.78rem;
  color: #3e3e3e;
  letter-spacing: 0.05em;
}

/* === Contact === */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-entry {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-entry-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3e3e3e;
}

.contact-entry-value {
  font-size: 0.875rem;
  color: #787878;
}

.contact-entry-value a {
  color: #787878;
  transition: color 0.2s;
}

.contact-entry-value a:hover {
  color: #d8d8d8;
}

/* === Form === */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3e3e3e;
}

.form-field input,
.form-field textarea {
  background: #141414;
  border: 1px solid #1e1e1e;
  color: #c0c0c0;
  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 0.8rem 1rem;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color 0.2s, background-color 0.2s;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #2e2e2e;
  background: #161616;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #282828;
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  align-self: flex-start;
  background: none;
  border: 1px solid #242424;
  color: #585858;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2.4rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-submit:hover {
  border-color: #585858;
  color: #c8c8c8;
}

/* === Footer === */

footer {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.footer-divider {
  border: none;
  border-top: 1px solid #191919;
  margin-bottom: 1.8rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  color: #2e2e2e;
  letter-spacing: 0.06em;
}

/* === Responsive === */

@media (max-width: 680px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  main {
    padding-top: 96px;
    padding-bottom: 60px;
  }

  .home-content {
    padding-top: 8px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .credit-item {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.2rem 1.5rem;
  }

  .credit-artist {
    grid-column: 1;
    grid-row: 1;
  }

  .credit-project {
    grid-column: 1;
    grid-row: 2;
  }

  .credit-year {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }
}

@media (max-width: 420px) {
  .nav-inner {
    padding: 0 1.25rem;
  }

  main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .mobile-menu {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
