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

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: #fff;
  color: #000;
  height: 100vh;
  overflow: hidden;
}

/* ── LAYOUT ── */
.layout {
  display: flex;
  height: 100vh;
  padding: 48px 52px;
  gap: 56px;
}

/* ── SIDEBAR ── */
.sidebar {
  width: 170px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.name {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 36px;
}

.project-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}

.project {
  font-size: 12px;
  color: #b0b0b0;
  text-decoration: none;
  text-align: right;
  transition: color 0.15s ease;
  cursor: pointer;
}

.project:hover,
.project.active {
  color: #000;
}

.contact-link {
  margin-top: 28px;
  font-size: 12px;
  color: #b0b0b0;
  text-decoration: none;
  text-align: right;
  display: block;
  transition: color 0.15s ease;
}

.contact-link:hover {
  color: #000;
}

/* ── MAIN VIDEO ── */
.main {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: calc(100vh - 96px);
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}
